- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2024 05:15 AM
how to copy variable field on catalog task form to another field ?
i need to copy select from select a peripheral to the asset field , is it to use business rule ?
Solved! Go to Solution.
- Labels:
-
Request Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2024 07:50 AM
Hi @chercm ,
Can you please try the below in your business rule:
current.u_asset = current.request_item.variables.item_requested;
If you find my response helpful, please consider marking it as the 'Accepted Solution' and giving it a 'Helpful' rating. Your feedback not only supports the community but also encourages me to continue providing valuable assistance.
Thanks,
Amitoj Wadhera
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2024 05:17 AM
Hi @chercm ,
Create before insert/update BR on sc_task table with the following script:
current.field_name = current.variables.variable_name;
If you find my response helpful, please consider marking it as the 'Accepted Solution' and giving it a 'Helpful' rating. Your feedback not only supports the community but also encourages me to continue providing valuable assistance.
Thanks,
Amitoj Wadhera
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2024 05:42 AM - edited 06-02-2024 05:48 AM
@Amitoj Wadhera here the information :
is it some thing like this ?
on the catalog form it is the asset field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2024 05:44 AM
Hello @chercm ,
yes,need to create business rule catalog task table and add following script:
current.field_name=curretn.varables.variable_name;
If my answer is helpful please mark it as helpful or correct!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2024 06:17 PM
@Pratima Kalamka @Amitoj Wadhera
i tried the following to the before and after in BR does not copy .