- Home
- Workday Certification
- Workday-Pro-Integrations Exam
- Workday.Workday-Pro-Integrations.v2026-06-16.q85 Dumps
Question 36
You have successfully configured an ISU and an ISSG with the correct security policies and have assigned them to an EIB.
What task do you need to run before you can launch the EIB?
Context of the Scenario
You've completed the following:
* Created an ISU and configured it (e.g., with " Do Not Allow UI Sessions " checked for web service- only access).
* Set up an ISSG and assigned the ISU to it.
* Defined the necessary security policies (e.g., domain security policies with " Get " and/or " Put " access) for the ISSG to support the EIB's operations.
* Assigned the ISU and ISSG to the EIB integration system.
The question now is what must be done before launching the EIB to ensure it functions as intended. In Workday, changes to security policies-such as adding permissions to an ISSG-do not take effect immediately. They remain in a " pending " state until activated, which is a key aspect of Workday's security administration process.
Evaluation of Options
* Option A: Activate Pending Security Policy ChangesIn Workday, whenever you modify security policies (e.g., granting domain permissions like " Integration Build " or " Custom Report Creation " to an ISSG), these changes are staged as " pending. " To apply them to the tenant and make them active, you must run the " Activate Pending Security Policy Changes " task. This task reviews all pending security updates, allows you to add a comment for audit purposes, and, upon confirmation, activates the changes. Without this step, the ISSG will not have the effective permissions required for the EIB to access data or execute its operations, potentially causing the launch to fail due to insufficient authorization. This aligns directly with the scenario, as security policies have been configured and assigned, but not yet activated.
* Option B: View Security for Securable ItemThe " View Security for Securable Item " report is a diagnostic tool in Workday that allows you to inspect the security configuration for a specific object (e.
g., a web service operation, report, or task). It shows which security groups have access and what permissions (e.g., " Get, " " Put, " " View, " " Modify " ) are granted. While this is useful for verifying that the ISSG has the correct policies assigned, it is a passive report-it does not modify or activate anything. Running this task would not enable the EIB to launch, as it doesn't affect the pending security changes. Thus, it's not the required step before launching the EIB.
* Option C: Assign the ISSG to only one security policyThis option suggests limiting the ISSG to a single security policy, but this is neither a standard Workday requirement nor a task that exists as a standalone action. ISSGs can and often do have multiple security policies assigned (e.g., permissions for various domains like " Integration Build, " " Custom Report Access, " etc.), depending on the integration's needs. Moreover, the question states that the ISSG has already been configured with the " correct security policies " and assigned to the EIB, implying this step is complete. Restricting the ISSG to one policy after the fact would require editing permissions again, triggering more pending changes, and still necessitate activation-making this option illogical and incorrect.
* Option D: Maintain Integration Security PoliciesThere is no specific task in Workday called " Maintain Integration Security Policies. " This option seems to be a misnomer or a conflation of other tasks, such as " Maintain Domain Permissions for Security Group " (used to assign permissions to an ISSG) or broader security maintenance activities. However, the question indicates that the security policies are already correctly configured and assigned. If this option intended to imply further configuration, it would still result in pending changes requiring activation via Option A. As a standalone action, it does not represent a valid or necessary task to enable the EIB launch.
Why Option A is Correct
The " Activate Pending Security Policy Changes " task is a mandatory step in Workday's security workflow after modifying security policies, such as those assigned to an ISSG for an EIB. Workday's security model uses a pending changes queue to ensure that updates are reviewed and deliberately applied, maintaining control and auditability. Without activating these changes:
* The ISSG will lack the effective permissions needed for the EIB to access required domains or perform its operations (e.g., retrieving data from a custom report or delivering a file).
* The EIB launch could fail with errors like " Insufficient Privileges " or " Access Denied. " Running this task ensures that the security configuration is live, allowing the ISU (via the ISSG) to authenticate and execute the EIB successfully. This is a standard practice in Workday integration setup, as emphasized in the Workday Pro Integrations curriculum.
Practical Steps to Perform Option A
* Log into the Workday tenant with a security administrator role.
* Search for and select the " Activate Pending Security Policy Changes " task.
* Review the list of pending changes (e.g., new permissions added to the ISSG).
* Enter a comment (e.g., " Activating security for EIB launch - ISSG permissions " ).
* Check the " Confirm " box and click " OK " to activate the changes.
* Once completed, the security policies are live, and the EIB can be launched.
Verification with Workday Documentation
The Workday Pro Integrations Study Guide and related training materials confirm that activating pending security policy changes is a prerequisite after configuring security for integrations. This step ensures that all permissions are in effect, enabling the ISU and ISSG to support the EIB's functionality. Community resources and implementation guides also consistently highlight this task as the final step before launching integrations that rely on updated security settings.
Workday Pro Integrations Study Guide References
* Section: Integration Security Configuration - Explains the process of assigning security policies to ISSGs and the need to activate changes to operationalize them.
* Section: Enterprise Interface Builder (EIB) - Notes that security updates for EIBs must be activated before launching to ensure proper access.
* Section: Security Administration - Details the " Activate Pending Security Policy Changes " task as the mechanism to apply pending security modifications across the tenant.
Question 37
What is the purpose of the <xsl:template> element?
Here's a detailed explanation of why this is the correct answer:
* In XSLT, the <xsl:template> element is used to create reusable transformation rules. It typically includes a match attribute, which specifies the XML node or pattern (e.g., an element, attribute, or root node) to which the template applies. For example, <xsl:template match="Employee"> would target all
<Employee> elements in the source XML.
* Inside the <xsl:template> element, you define the logic-such as extracting data, restructuring it, or applying conditions-that determines how the matched node is transformed into the output. This makes it a core mechanism for controlling the transformation process in Workday integrations.
* In the context of Workday, where XSLT is often used to reformat XML data into formats like CSV, JSON, or custom XML for external systems, <xsl:template> provides the structure for specifying how data from Workday's XML output (e.g., payroll or HR data) is mapped and transformed.
Let's evaluate why the other options are incorrect:
* A. Determine the output file type: The <xsl:template> element does not control the output file type (e.
g., XML, text, HTML). This is determined by the <xsl:output> element in the XSLT stylesheet, which defines the format of the resulting file independently of individual templates.
* B. Grant access to the XSLT language: This option is nonsensical in the context of XSLT. The <xsl:
template> element is part of the XSLT language itself and does not "grant access" to it; rather, it is a functional building block used within an XSLT stylesheet.
* D. Generate an output file name: The <xsl:template> element has no role in naming the output file. In Workday, the output file name is typically configured within the integration system settings (e.g., via the EIB or connector configuration) and is not influenced by the XSLT transformation logic.
An example of <xsl:template> in action might look like this in a Workday transformation:
<xsl:template match="wd:Worker">
<Employee>
<Name><xsl:value-of select="wd:Worker_Name"/></Name>
</Employee>
</xsl:template>
Here, the template matches the Worker node in Workday's XML schema and transforms it into a simpler
<Employee> structure with a Name element, demonstrating its role in providing rules for node transformation.
References:
* Workday Pro Integrations Study Guide: "Configure Integration System - TRANSFORMATION" section, which explains XSLT usage in Workday and highlights <xsl:template> as the mechanism for defining transformation rules.
* Workday Documentation: "XSLT Transformations in Workday" under the Document Transformation Connector, noting <xsl:template> as critical for node-specific processing.
* W3C XSLT 1.0 Specification (adopted by Workday): Section 5.3, "Defining Template Rules," which confirms that <xsl:template> provides rules for applying transformations to specified nodes.
* Workday Community: Examples of XSLT in integration scenarios, consistently using <xsl:template> for transformation logic.
Question 38
What is the purpose of the < xsl:template > element?
Here's a detailed explanation of why this is the correct answer:
* In XSLT, the < xsl:template > element is used to create reusable transformation rules. It typically includes a match attribute, which specifies the XML node or pattern (e.g., an element, attribute, or root node) to which the template applies. For example, < xsl:template match= " Employee " > would target all < Employee > elements in the source XML.
* Inside the < xsl:template > element, you define the logic-such as extracting data, restructuring it, or applying conditions-that determines how the matched node is transformed into the output. This makes it a core mechanism for controlling the transformation process in Workday integrations.
* In the context of Workday, where XSLT is often used to reformat XML data into formats like CSV, JSON, or custom XML for external systems, < xsl:template > provides the structure for specifying how data from Workday's XML output (e.g., payroll or HR data) is mapped and transformed.
Let's evaluate why the other options are incorrect:
* A. Determine the output file type: The < xsl:template > element does not control the output file type (e.
g., XML, text, HTML). This is determined by the < xsl:output > element in the XSLT stylesheet, which defines the format of the resulting file independently of individual templates.
* B. Grant access to the XSLT language: This option is nonsensical in the context of XSLT. The < xsl:
template > element is part of the XSLT language itself and does not " grant access " to it; rather, it is a functional building block used within an XSLT stylesheet.
* D. Generate an output file name: The < xsl:template > element has no role in naming the output file. In Workday, the output file name is typically configured within the integration system settings (e.g., via the EIB or connector configuration) and is not influenced by the XSLT transformation logic.
An example of < xsl:template > in action might look like this in a Workday transformation:
< xsl:template match= " wd:Worker " >
< Employee >
< Name > < xsl:value-of select= " wd:Worker_Name " / > < /Name >
< /Employee >
< /xsl:template >
Here, the template matches the Worker node in Workday's XML schema and transforms it into a simpler < Employee > structure with a Name element, demonstrating its role in providing rules for node transformation.
Workday Pro Integrations Study Guide: " Configure Integration System - TRANSFORMATION " section, which explains XSLT usage in Workday and highlights < xsl:template > as the mechanism for defining transformation rules.
Workday Documentation: " XSLT Transformations in Workday " under the Document Transformation Connector, noting < xsl:template > as critical for node-specific processing.
W3C XSLT 1.0 Specification (adopted by Workday): Section 5.3, " Defining Template Rules, " which confirms that < xsl:template > provides rules for applying transformations to specified nodes.
Workday Community: Examples of XSLT in integration scenarios, consistently using < xsl:template > for transformation logic.
Question 39
How many integration systems can an ISU be assigned to concurrently?
From Workday documentation and Pro training:
"A single ISU can be assigned to multiple integration systems across tenants and environments, provided it has the correct permissions and security group assignments. Workday does not impose a hard limit on the number of systems an ISU can be linked to." This design provides scalability for environments with multiple integrations (e.g., EIBs, Core Connectors, Studio integrations) without needing to create redundant users.
Incorrect Options Explained:
* A, B, C: These options imply arbitrary limits (one, three, five), which do not exist in Workday ' s ISU architecture.
References:
Workday Pro: Integrations - Integration System Security User Management Workday Community: How ISUs Function in Multi-Integration Environments
Question 40
Refer to the following scenario to answer the question below. Your integration has the following runs in the integration events report (Date format of MM/DD/YYYY):
Run #1
* Core Connector: Worker Integration System was launched on May 15, 2024 at 3:00:00 AM.
* As of Entry Moment: 05/15/2024 3:00:00 AM
* Effective Date: 05/15/2024
* Last Successful As of Entry Moment: 05/01/2024 3:00:00 AM
* Last Successful Effective Date: 05/01/2024
Run #2
* Core Connector: Worker Integration System was launched on May 31, 2024 at 3:00:00 AM.
* As of Entry Moment: 05/31/2024 3:00:00 AM
* Effective Date: 05/31/2024
* Last Successful As of Entry Moment: 05/15/2024 3:00:00 AM
* Last Successful Effective Date: 05/15/2024 On May 13, 2024 Brian Hill receives a salary increase. The new salary amount is set to $90,000.00 with an effective date of April 30,2024. Which of these runs will include Brian Hill's compensation change?
In Workday, the Core Connector: Worker integration in incremental mode (as indicated by the presence of "Last Successful" parameters) processes changes based on the Transaction Log, filtering them by the Entry Moment (when the change was entered) and Effective Date (when the change takes effect). The integration captures changes where:
The Entry Moment falls between the Last Successful As of Entry Moment and the As of Entry Moment, and The Effective Date falls between the Last Successful Effective Date and the Effective Date.
Brian Hill's compensation change has:
Entry Moment: 05/13/2024 (time not specified, so we assume it occurs at some point during the day, before or up to 11:59:59 PM).
Effective Date: 04/30/2024.
Analysis of Run #1
Launch Date: 05/15/2024 at 3:00:00 AM
As of Entry Moment: 05/15/2024 3:00:00 AM - The latest point for when changes were entered.
Effective Date: 05/15/2024 - The latest effective date for changes.
Last Successful As of Entry Moment: 05/01/2024 3:00:00 AM - The starting point for entry moments.
Last Successful Effective Date: 05/01/2024 - The starting point for effective dates.
For Run #1 to include Brian's change:
The Entry Moment (05/13/2024) must be between 05/01/2024 3:00:00 AM and 05/15/2024 3:00:00 AM. Since 05/13/2024 falls within this range (assuming the change was entered before 3:00:00 AM on 05/15/2024, which is reasonable unless specified otherwise), this condition is met.
The Effective Date (04/30/2024) must be between 05/01/2024 (Last Successful Effective Date) and 05/15/2024 (Effective Date). However, 04/30/2024 is before 05/01/2024, so this condition is not met.
Since the effective date of Brian's change (04/30/2024) precedes the Last Successful Effective Date (05/01/2024), Run #1 will not include this change. In incremental mode, Workday excludes changes with effective dates prior to the last successful effective date, as those are assumed to have been processed in a prior run (before Run #1's baseline of 05/01/2024).
Analysis of Run #2
Launch Date: 05/31/2024 at 3:00:00 AM
As of Entry Moment: 05/31/2024 3:00:00 AM - The latest point for when changes were entered.
Effective Date: 05/31/2024 - The latest effective date for changes.
Last Successful As of Entry Moment: 05/15/2024 3:00:00 AM - The starting point for entry moments.
Last Successful Effective Date: 05/15/2024 - The starting point for effective dates.
For Run #2 to include Brian's change:
The Entry Moment (05/13/2024) must be between 05/15/2024 3:00:00 AM and 05/31/2024 3:00:00 AM. However, 05/13/2024 is before 05/15/2024 3:00:00 AM, so this condition is not met.
The Effective Date (04/30/2024) must be between 05/15/2024 (Last Successful Effective Date) and 05/31/2024 (Effective Date). Since 04/30/2024 is before 05/15/2024, this condition is also not met.
In Run #2, the Entry Moment (05/13/2024) precedes the Last Successful As of Entry Moment (05/15/2024 3:00:00 AM), meaning the change was entered before the starting point of this run's detection window. Additionally, the Effective Date (04/30/2024) is well before the Last Successful Effective Date (05/15/2024). Both filters exclude Brian's change from Run #2.
Conclusion
Run #1: Excluded because the effective date (04/30/2024) is before the Last Successful Effective Date (05/01/2024).
Run #2: Excluded because the entry moment (05/13/2024) is before the Last Successful As of Entry Moment (05/15/2024 3:00:00 AM) and the effective date (04/30/2024) is before the Last Successful Effective Date (05/15/2024).
Brian Hill's change would have been processed in an earlier run (prior to May 1, 2024) if the integration was running incrementally before Run #1, as its effective date (04/30/2024) predates both runs' baselines. Given the parameters provided, neither Run #1 nor Run #2 captures this change, making D. Brian Hill will be excluded from both integration runs the correct answer.
Workday Pro Integrations Study Guide Reference
Workday Integrations Study Guide: Core Connector: Worker - Section on "Incremental Processing" explains how changes are filtered based on entry moments and effective dates relative to the last successful run.
Workday Integrations Study Guide: Launch Parameters - Details how "Last Successful As of Entry Moment" and "Last Successful Effective Date" define the starting point for detecting new changes, excluding prior transactions.
Workday Integrations Study Guide: Change Detection - Notes that changes with effective dates before the last successful effective date are assumed processed in earlier runs and are skipped in incremental mode.
Download PDF File
Enter your email address to download Workday.Workday-Pro-Integrations.v2026-06-16.q85 Dumps
