- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-25-2025 06:40 AM
want to copy attachment from current record in ui builder so i write a script include to achieve this but that script include is not visible in client script include section in ui builder. if you have any idea how to copy attachment from current record and attach that attachment to newly created record, can you help me.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2025 02:00 AM
Hi @vishwas2002,
Just a quick heads-up — Script Includes used in UI Builder are different from standard Script Includes. You’ll need to use a UX Client Script Include, which is stored in the sys_ux_client_script_include table.
Here’s how you can create one:
Navigate to:
sys_ux_client_script_include.LIST to see all
or sys_ux_client_script_include.NEW to create a new one
Write your business logic in this Script Include.
Once created, you can go to UI Builder, and under the Client Script Includes section, select the one you just created to use it in your client script.
Let me know if you need help with the syntax or usage!
If this was helpful, please mark it as Helpful and Accept as Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-06-2025 02:00 AM
Hi @vishwas2002,
Just a quick heads-up — Script Includes used in UI Builder are different from standard Script Includes. You’ll need to use a UX Client Script Include, which is stored in the sys_ux_client_script_include table.
Here’s how you can create one:
Navigate to:
sys_ux_client_script_include.LIST to see all
or sys_ux_client_script_include.NEW to create a new one
Write your business logic in this Script Include.
Once created, you can go to UI Builder, and under the Client Script Includes section, select the one you just created to use it in your client script.
Let me know if you need help with the syntax or usage!
If this was helpful, please mark it as Helpful and Accept as Solution.