Questions King Posted April 20, 2007 Posted April 20, 2007 hi all, I need to create a script for open the new record by my field is Empty. Field name: Over Limit If my Over Limit field are IsEmpty then pass to open the new record, if Over Limit field are not IsEmpty come out a message "This Customer Are Over Limit". Can this done? Thank for your help! ;)
aldipalo Posted April 20, 2007 Posted April 20, 2007 (edited) If(Not IsEmpty(Overlimitfield) Show Custom Dialog( "Customer is over limit";Ok;Cancel) If (GetLastMessageChoice = 1) Exit Script() endif Else Set variable($CustID;CustomerID) New record Request Set Field(CustomerID;$CustID) Endif This should work. There may be a few bugs (I never get a script to work on the first shot) so you may have to fool around with it a little. HTH Al Ooops, don't believe you can use the variable in FM 7. May need to set up a global field (gCustID) Not sure how to do that in 7 since I have never used it. All the rest should work. Edited April 20, 2007 by Guest
Questions King Posted April 24, 2007 Author Posted April 24, 2007 Thank aldiplo! This is what I want.... Thank you very much!
Recommended Posts
This topic is 6425 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now