Click HERE to see how Saviynt Intelligence is transforming the industry. |
02/22/2024 07:36 AM
Hi,
Requirement : Authoritative source is workday and there are 33 attributes for transformation . Can you suggest what will be the best option pre-processor queries or Sav to Sav. Please share some samples also.
Thanks
Geeta
02/22/2024 07:52 AM
Hi @geet14
I would suggest to go with inline preprocessor just to reduce the number of jobs run in the system. Also may I know the complexity of these transformations?
02/23/2024 05:13 AM
Hi Naveen,
I am not sure how it will behave in Saviynt there are 33 attributes for transformations for each attributes there is 5-6 conditions to check.
Thanks
Geeta
02/25/2024 11:21 AM
You can use inline processor with indexing
02/26/2024 07:17 AM
Hi,
Can you share any sample with indexing.
Thank you
02/26/2024 08:02 AM
02/22/2024 08:40 PM
Refer https://forums.saviynt.com/t5/user-import/best-practice-for-inline-preprocessing/ta-p/35948
02/27/2024 07:03 AM
Hi Team,
Can you suggest for in-line pre-processor query:
For example : Workday logic for Department:
implemented in Saviynt
Can you suggest for one of attribute in Workday CEO1 and this value is store in Saviynt in CP2
login in workday and how to implement it in Saviynt:
Thank you
02/27/2024 08:14 PM
Can you share data in text format
02/28/2024 07:01 AM
CEO-1 - Attribute Name
<xsl:choose>
<xsl:when
test="ws:Status/ws:Terminated = 'true' and (ws:Additional_Information/ws:CEO-1/@ws:PriorValue != '' and ws:Additional_Information/ws:CEO-1 = '')">
<xsl:value-of select = "this:formatvalue(ws:Additional_Information/ws:CEO-1/@ws:PriorValue)"/>
</xsl:when>
<xsl:when test="ws:Status/ws:Hire_Rescinded = 'true'">
<xsl:value-of select = "this:formatvalue(ws:Additional_Information/ws:CEO-1/@ws:PriorValue)"/>
</xsl:when>
<xsl:when
test="ws:Status/ws:Terminated = 'true' and (ws:Additional_Information/ws:CEO-1/@ws:PriorValue != '' and ws:Additional_Information/ws:CEO-1 !='' )">
<xsl:value-of select = "this:formatvalue(ws:Additional_Information/ws:CEO-1)"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select = "this:formatvalue(ws:Additional_Information/ws:CEO-1)"/>
</xsl:otherwise>
</xsl:choose>