- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2023 08:44 AM
On the selection of requested for field org id should auto populate according to that user
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2023 09:26 AM
Hello @Shrabanti
Go to Record Producer > Open Dictionary of OrgID variable> Under Related Tab, Open Auto Populate Tab.
Dependent Question - Requested For
Reference - User
Dot Walk Path - Field of User Table whose value you want in OrgID field.
Plz mark my solution as Accept, If you find it helpful.
Regards,
Samaksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2023 09:26 AM
Hello @Shrabanti
Go to Record Producer > Open Dictionary of OrgID variable> Under Related Tab, Open Auto Populate Tab.
Dependent Question - Requested For
Reference - User
Dot Walk Path - Field of User Table whose value you want in OrgID field.
Plz mark my solution as Accept, If you find it helpful.
Regards,
Samaksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2023 09:43 AM
Hi @Shrabanti ,
Please try using the below script.
var req_for = g_form.getReference("requested_for",setorgid);
fun setorgid(req_for){ // "setorgid" is callback function
g_form.setValue("org_id",req_for.orgid); // where "org_id" variable of catalog item & orgid is present in User table.
}
Please mark helpful & correct answer if it's really worthy for you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2023 03:04 AM