Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 7018 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I have a script to save found set (see below). I don't want user to enter and save duplicate set name. So I want to add a function to check whether the new set name is already exist or not. Please help.

New Record/Request

Show Custom Dialog [Enter the set name]

If [status(CurrentMessageChoice=2]

Delete Record/Request[No Dialog]

Else

Select All

Go to Layout

Paste [Record ID]

End If

Posted

You can prevent dublicate datas in one field by chekking unique option from field validation.

Posted

Hi kfok,

Except field-level validation will not trigger during script (nor would you want it to) so this must be handled yourself. You might consider relationship check. Establish relationship self-join SetName = SetName. Then:

New Record/Request

Show Custom Dialog [ yada yada ]

Exit Record/Request

If [ Status(CurrentMessageChoice) = 2 or Count(selfjoin::setField) > 1 ]

Show Message [ "User Abort or Duplicate Set Name. Request Cancelled" ]

Delete Record/Request

... etc

Personally, I'd use a global to hold their Set Value and only create a new record AFTER the contents have been tested. But that's more a personal choice. :wink2:

LaRetta

This topic is 7018 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.