- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2022 06:55 AM
Hello
I have just started to create a new App in App Engine Studio. I could create a Record Producer form easily but I would like to add some client script ie. allow numeric only or allow only 15 digits. How could I add in App Engine Sudio?
Solved! Go to Solution.
- Labels:
-
Now Platform App Engine

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2022 02:37 AM
Hi Bird,
If it's just checking if the entered field is numeric or is 15 digits, there is no need to create a script.
To validate a field to be numeric, select "Number" as Validation.
Custom validation can also be created.
- From Navigator, select "Service Catalog" > "Catalog Variables" > "Variable Validation Regex"
- Create the "New" button and enter a regular expression.
For example, regular expression to check if the entered string is 15 digits is as follows:
^[0-9]{15}$
If the question is about creating a client script, client script can be created by the following step. Scripts are defined from the UI pages.
- From Navigator, select "Service Catalog" > "Record Producer"
- Select the record producer
- At the bottom of the page, select "Catalog Client Scripts" tab and select the "New" button.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2022 07:21 AM
Hi Bird
App Engine Studio is just a central where you can create Apps from templates or imported data easily.
If you want to add some additional logic, you have to use the UI Builder.
Kind regards
Maik

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2022 02:37 AM
Hi Bird,
If it's just checking if the entered field is numeric or is 15 digits, there is no need to create a script.
To validate a field to be numeric, select "Number" as Validation.
Custom validation can also be created.
- From Navigator, select "Service Catalog" > "Catalog Variables" > "Variable Validation Regex"
- Create the "New" button and enter a regular expression.
For example, regular expression to check if the entered string is 15 digits is as follows:
^[0-9]{15}$
If the question is about creating a client script, client script can be created by the following step. Scripts are defined from the UI pages.
- From Navigator, select "Service Catalog" > "Record Producer"
- Select the record producer
- At the bottom of the page, select "Catalog Client Scripts" tab and select the "New" button.