How to populate data in particular domain in transform map/import set table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-06-2022 03:00 AM
Hi,
I am trying to populate a data into transform map via an import set table in a domain-separated environment. I wanted to populate the data in a particular domain let's say XYZ domain. By default, it is populating in the default global domain.
Also, in the transform map and import set table am not able to see the domain column.
Is there any way to populate data into a particular domain?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-07-2022 04:41 AM
Hello Anuja,
Normally, in domain separation environment, when you want to load records (users, groups, ci items, locations etc), you associate them to the company.
e.g, let us say that, ACME is the domain in which you have company A with sys_id of xyz32bit, your code should be like
target.company = 'xyz32bit'; // this will associate your record to the company A which indeed in domain ACME.
Here, target represents target table and 'company' is the company name field.
But if you are loading some configuration related things like choice list, then your code would be like
target.sys_domain = '32bitsysIDof ACME domain';
Mark the answer as correct or helpful..
Regards,
Kalyani Shaha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-07-2022 08:40 AM
Thanks @kalyani
Any idea about how to populate data in import set/transform map from external resources in a particular domain.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2022 10:03 PM
Thanks
Do you have any idea about how to populate data into a particular domain from external resources into the import table or transform the map?