Here is the comprehensive SOP for the INT Studio Prism Data Change Task Initiator Inbound integration.
This document serves as both a User Guide and a Technical Reference. I have analyzed the provided beans.xml (orchestration) and XT-InitDocsToFlow_04.xsl (logic) to determine exactly how this integration functions.
My analysis of your XSLT file revealed a specific, somewhat complex architecture for defining "Flows." Please pay special attention to Section 3.2 below, as the standard "comma-separated list" assumption was incorrect. The code expects a specific Map structure involving Numeric Sequences.
Integration ID: WorkdayAssembly
Type: Workday Studio (Inbound)
This integration is an orchestrator designed to load data into Prism Analytics. It does not simply run one task; it can execute a "Flow"—a pre-defined sequence of Data Change Tasks and Accounting Center Batches. It handles:
Authentication: Generates OAuth tokens to talk to the Prism REST API.
File Management: Grabs files from the Integration Event, compresses them (GZIP), and uploads them to Prism File Containers.
Orchestration: Executes tasks in a specific numeric order (Sequence 1, Sequence 2, etc.).
Monitoring: Polls the Prism API to ensure one task finishes successfully before starting the next.
Before configuring the integration, ensure the "Workday Side" foundation is ready.
The integration communicates with Workday via REST API, requiring OAuth.
Create API Client: Navigate to Register API Client for Integrations.
Client Name: Prism_Integration_Client (example).
Scope: Select Prism Analytics.
Access Token Grant Type: Authorization Code Grant.
Generate Refresh Token:
Generate a Refresh Token for the Integration System User (ISU) that will run this integration.
Important: Save the Client ID, Client Secret, and Refresh Token. You will need these for the integration attributes.
The ISU must have security access to:
Domain: Prism Analytics Data Loading (Get, Put).
Domain: Integration Process (to attach/retrieve logs).
This integration relies heavily on Integration Maps to link user-friendly names (Aliases) to Prism IDs.
Configure these on the Integration System > Configure Integration Maps screen.
Based on the XSLT analysis, the flow logic is indirect. You cannot simply list tasks in a text field.
How it works:
You launch the integration and select a Flow Name (e.g., Month_End_Close).
The integration looks at the Flow Mapping map to find the Name of a Sequence Map.
It then looks for that specific Sequence Map to determine the order of tasks.
Step A: Configure "Flow Mapping"
| Map Name | Key (Flow Name) | Value (Target Map Name) |
| :--- | :--- | :--- |
| Flow Mapping | Month_End_Close | Month_End_Sequence_Map |
Step B: The Missing Piece
Your beans.xml defines the "Flow Mapping" map, but it is missing the definitions for the Sequence Maps (e.g., Month_End_Sequence_Map).
Action Required:
You typically cannot create new maps in the Workday UI that aren't defined in the beans.xml.
Scenario A: If you are updating the Studio code, you must add a new <cloud:map> element for every Flow you intend to support, where the Internal Type is Numeric and External Type is Text.
Scenario B: If you cannot edit Studio, check if there is a generic map already available (e.g., "Sequence Map 1") and map your flow to that.
If you update the Studio code, the Sequence Map structure must be:
Internal Key (Numeric): 1
External Value (Text): Load_Finance_Data (Must match a Task Alias from Section 3.1).
Configure these under Integration System > Configure Integration Attributes.
Use this if you only want to run one specific Data Change Task.
Action: Launch / Schedule Integration.
Attachment: Upload the data file (CSV/GZIP). Ensure the filename matches the Input File Prefix for your task.
Parameters:
Task: Select the Task Alias (e.g., Load_Finance_Data).
Data Change Task Flow: Leave Empty.
Use this to run a sequence of tasks.
Action: Launch / Schedule Integration.
Attachments: Upload ALL files required for the flow.
Example: If the flow runs Task A (Prefix: Fin_) and Task B (Prefix: HR_), you must upload Fin_Data.csv and HR_Data.csv.
Parameters:
Task: Leave Empty.
Data Change Task Flow: Select the Flow Name (e.g., Month_End_Close).
Cause: The integration tried to run a task, but the alias mapped in Data Change Task does not match any Data Change Task ID in Prism.
Fix: Check the Data Change Task map. The "Internal Key" must match the Prism Task API Name exactly.
Cause: The Flow/Sequence map contains an alias (e.g., Task_XYZ), but that alias is not defined in either the "Data Change Task" map or the "Accounting Center Batch" map.
Fix: Ensure every alias used in a Flow is also defined in the base maps.
Cause: API limits or incorrect file prefixes.
Fix:
Check the logs for "File Container Upload Commenced".
If it fails, verify the attached filename starts with the Input File Prefix.
If you see HTTP 429 (Too Many Requests), increase the Polling Interval.
Host: hhmhotels.couchdrop.io
Path: /Workday SFTP Drives/Actabl/Actabl Inbound/Income Journals
Cause: As noted in Section 3.2, if the beans.xml lacks the specific sequence maps, the XSLT will return an empty flow.
Fix: You will see "Number of items in Flow: 0" in the logs. You must update the beans.xml to include the specific Map definition for your sequence.