
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2022 01:56 PM
Hello! I am using UI Builder in San Diego version, and I use two components, an Input and a Button. The idea is to take the value that is entered through the Input and update the "value" field of the sys_properties table with the same value that was entered in the Input. I understand that I should use an Script Include, but do you have any idea how to do it, and what Apis should I use for this? Thank you.
Solved! Go to Solution.
- Labels:
-
Multiple Versions
-
Team Development

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2022 08:19 PM
First, you need to retrieve the value of the field. In your scenario, it is a system property.
In my example, I will create a system property "uib_example.date_format" in my application "UIB Examples"
- Navigate to System Properties > UI Properties (sys_properties.list)
- Then create a new property and set the following values
- name = "date.format"
- scope= your application
- type = string
- value = dd-mm-yyyy
- Add the role snc_internal to both read and write
- (If you're trying to change a Global system property it will require a separate discussion)
The answer started to get quite long so I created an article
How to read and update a record with the value from a field in UI Builder?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2022 08:19 PM
First, you need to retrieve the value of the field. In your scenario, it is a system property.
In my example, I will create a system property "uib_example.date_format" in my application "UIB Examples"
- Navigate to System Properties > UI Properties (sys_properties.list)
- Then create a new property and set the following values
- name = "date.format"
- scope= your application
- type = string
- value = dd-mm-yyyy
- Add the role snc_internal to both read and write
- (If you're trying to change a Global system property it will require a separate discussion)
The answer started to get quite long so I created an article
How to read and update a record with the value from a field in UI Builder?