- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2023 01:22 AM
HII All i have requirement ,my requirement is i am using transform map script to update or set new value like my target field name is u_firstname for that on after i am doing
target.setValue('u_firstname','xyz');
but after completing transformation in my target table nothing is comming even though source field name and target field name are correct any help
Note:- i am very weak in transform script please provide me stuff with code like how to use ,map, source , target
thanks everyone
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2023 04:29 AM - edited 11-28-2023 04:29 AM
In field map add target field you want to set. And check the checkbox for script(field : Use Source Script). Add below code.
return "xyz";
It will set the target field value you want to set.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2023 09:42 PM
This is working on in field map source script
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2023 04:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2023 04:29 AM
okay i will try