Workday-Pro-Integrations Exam Dumps

Get All Workday Pro Integrations Certification Exam Questions with Validated Answers

Workday-Pro-Integrations Pack
Vendor: Workday
Exam Code: Workday-Pro-Integrations
Exam Name: Workday Pro Integrations Certification Exam
Exam Questions: 77
Last Updated: June 23, 2026
Related Certifications: Workday Pro Certifications
Exam Tags: professional to advanced Workday Integration Analysts and Workday Implementation Consultants
Gurantee
  • 24/7 customer support
  • Unlimited Downloads
  • 90 Days Free Updates
  • 10,000+ Satisfied Customers
  • 100% Refund Policy
  • Instantly Available for Download after Purchase

Get Full Access to Workday Workday-Pro-Integrations questions & answers in the format that suits you best

PDF Version

$40.00
$24.00
  • 77 Actual Exam Questions
  • Compatible with all Devices
  • Printable Format
  • No Download Limits
  • 90 Days Free Updates

Discount Offer (Bundle pack)

$80.00
$48.00
  • Discount Offer
  • 77 Actual Exam Questions
  • Both PDF & Online Practice Test
  • Free 90 Days Updates
  • No Download Limits
  • No Practice Limits
  • 24/7 Customer Support

Online Practice Test

$30.00
$18.00
  • 77 Actual Exam Questions
  • Actual Exam Environment
  • 90 Days Free Updates
  • Browser Based Software
  • Compatibility:
    supported Browsers

Pass Your Workday-Pro-Integrations Certification Exam Easily!

Looking for a hassle-free way to pass the Workday Pro Integrations Certification Exam? DumpsProvider provides the most reliable Dumps Questions and Answers, designed by Workday certified experts to help you succeed in record time. Available in both PDF and Online Practice Test formats, our study materials cover every major exam topic, making it possible for you to pass potentially within just one day!

DumpsProvider is a leading provider of high-quality exam dumps, trusted by professionals worldwide. Our Workday-Pro-Integrations exam questions give you the knowledge and confidence needed to succeed on the first attempt.

Train with our Workday-Pro-Integrations exam practice tests, which simulate the actual exam environment. This real-test experience helps you get familiar with the format and timing of the exam, ensuring you're 100% prepared for exam day.

Your success is our commitment! That's why DumpsProvider offers a 100% money-back guarantee. If you don’t pass the Workday-Pro-Integrations exam, we’ll refund your payment within 24 hours no questions asked.
 

Why Choose DumpsProvider for Your Workday-Pro-Integrations Exam Prep?

  • Verified & Up-to-Date Materials: Our Workday experts carefully craft every question to match the latest Workday exam topics.
  • Free 90-Day Updates: Stay ahead with free updates for three months to keep your questions & answers up to date.
  • 24/7 Customer Support: Get instant help via live chat or email whenever you have questions about our Workday-Pro-Integrations exam dumps.

Don’t waste time with unreliable exam prep resources. Get started with DumpsProvider’s Workday-Pro-Integrations exam dumps today and achieve your certification effortlessly!

Free Workday Workday-Pro-Integrations Exam Actual Questions

Question No. 1

This is the XML file generated from a Core Connector; Positions integration.

When performing an XSLT Transformation on the Core Connector: Positions XML output file, you want to show a hyperlink of positions that are not available for hiring as an entry in the Message tab.

What are all the needed ETV items to meet the above requirements?

A.

B.

C.

D.

Show Answer Hide Answer
Correct Answer: B

In Workday integrations, the Extension for Transformation and Validation (ETV) framework is used within XSLT transformations to apply validation and formatting rules to XML data, such as the output from a Core Connector (e.g., Positions integration). In this scenario, you need to perform an XSLT transformation on the Core Connector: Positions XML output file to display a hyperlink for positions that are not available for hiring as an entry in the Message tab. This requires configuring ETV attributes to ensure the data is present and correctly targeted for the hyperlink.

Here's why option B is correct:

Requirement Analysis: The requirement specifies showing a hyperlink for positions 'not available for hiring.' In the provided XML, the ps:Available_For_Hire field under ps:Position_Data indicates whether a position is available for hire (e.g., true). For positions where this is false, you need to create a message (hyperlink) in the Message tab, which typically requires linking to a Workday ID (WID) or other identifier.

ETV Attributes:

etv:required='true': This ensures that the ps:WID value under ps:Additional_Information is mandatory for the transformation. If the WID is missing, the transformation will fail or generate an error, ensuring that the hyperlink can be created only for valid positions with an associated WID.

etv:target='[ps:Additional_Information/ps:WID]': This specifies that the target of the transformation (e.g., the hyperlink) should be the WID value found at ps:Additional_Information/ps:WID in the XML. This WID can be used to construct a hyperlink to the position in Workday, meeting the requirement to show a hyperlink for positions not available for hiring.

Context in XML: The XML shows ps:Additional_Information containing ps:WID (e.g., 73bd4d8562e04b1820f55818467905b), which is a unique identifier for the position. By targeting this WID with etv:target, you ensure the hyperlink points to the correct position record in Workday when ps:Available_For_Hire is false.

Why not the other options?

A .

etv:minLength='0'

etv:targetWID='[ps:Additional_Information/ps:WID]'

etv:minLength='0' allows the WID to be empty or have zero length, which contradicts the need for a valid WID to create a hyperlink. It does not ensure the data is present, making it unsuitable. Additionally, etv:targetWID is not a standard ETV attribute; the correct attribute is etv:target, making this option incorrect.

C .

etv:minLength='0'

etv:target='[ps:Additional_Information/ps:WID]'

Similar to option A, etv:minLength='0' allows the WID to be empty, which does not meet the requirement for a mandatory WID to create a hyperlink. This makes it incorrect, as the hyperlink would fail if the WID is missing.

D .

etv:required='true'

etv:targetWID='[ps:Additional_Information/ps:WID]'

While etv:required='true' ensures the WID is present, etv:targetWID is not a standard ETV attribute. The correct attribute is etv:target, making this option syntactically incorrect and unsuitable for the transformation.

To implement this in XSLT for a Workday integration:

Use the ETV attributes from option B (etv:required='true' and etv:target='[ps:Additional_Information/ps:WID]') within your XSLT template to validate and target the ps:WID for positions where ps:Available_For_Hire is false. This ensures the transformation generates a valid hyperlink in the Message tab, linking to the position's WID in Workday.

:

Workday Pro Integrations Study Guide: Section on 'ETV in XSLT Transformations' -- Details the use of ETV attributes like required and target for validating and targeting data in Workday XML, including handling identifiers like WID for hyperlinks.

Workday Core Connector and EIB Guide: Chapter on 'XML Transformations' -- Explains how to use ETV attributes in XSLT to process position data, including creating messages or hyperlinks based on conditions like Available_For_Hire.

Workday Integration System Fundamentals: Section on 'ETV for Message Generation' -- Covers applying ETV attributes to generate hyperlinks in the Message tab, ensuring data integrity and correct targeting of Workday identifiers like WID.


Question No. 2

Refer to the following XML to answer the question below.

Within the template which matches on wd:Report_Entry, you would like to conditionally process the wd:Education_Group elements by using an element. What XPath syntax would be used for the select to iterate over only the wd:Education_Group elements where the Degree is an MBA?

Show Answer Hide Answer
Correct Answer: A

In Workday integrations, XSLT is used to transform XML data, such as the output from a web service-enabled report or EIB, into a desired format for third-party systems. In this scenario, you need to write XSLT to process wd:Education_Group elements within a template matching wd:Report_Entry, using an <xsl:apply-templates> element to iterate only over wd:Education_Group elements where the wd:Degree is 'MBA.' The correct XPath syntax for the select attribute is critical to ensure accurate filtering.

Here's why option A is correct:

XPath Syntax In XPath, square brackets [ ] are used to specify predicates or conditions to filter elements. The condition wd:Degree='MBA' checks if the wd:Degree child element has the value 'MBA.' When applied to wd:Education_Group, the expression wd:Education_Group[wd:Degree='MBA'] selects only those wd:Education_Group elements that contain a wd:Degree child element with the value 'MBA.'

Context in XSLT: Within an <xsl:apply-templates> element in a template matching wd:Report_Entry, the select attribute uses XPath to specify which nodes to process. This syntax ensures that the template only applies to wd:Education_Group elements where the degree is 'MBA,' aligning with the requirement to conditionally process only those specific education groups.

XML Structure Alignment: Based on the provided XML snippet, wd:Education_Group contains wd:Education and wd:Degree child elements (e.g., <wd:Degree>MBA</wd:Degree>). The XPath wd:Education_Group[wd:Degree='MBA'] correctly navigates to wd:Education_Group and filters based on the wd:Degree value, matching the structure and requirement.

Why not the other options?

B . wd:Education_Group/wd:Degree='MBA': This is not a valid XPath expression for a predicate. It attempts to navigate to wd:Degree as a child but does not use square brackets [ ] to create a filtering condition. This would be interpreted as selecting wd:Degree elements under wd:Education_Group, but it wouldn't filter based on the value 'MBA' correctly within an <xsl:apply-templates> context.

C . wd:Report_Entry/wd:Education_Group/wd:Degree='MBA' 1:Degree='MBA': This is syntactically incorrect and unclear. It includes a malformed condition (1:Degree='MBA') and does not use proper XPath predicate syntax. It fails to filter wd:Education_Group elements based on wd:Degree='MBA' and is not valid for use in select.

D . wd:Report_Entry/wd:Education_Group[wd:Degree='MBA' 1:Degree='MBA']: This is also syntactically incorrect due to the inclusion of 1:Degree='MBA' within the predicate. The 1: prefix is not valid XPath syntax and introduces an error. The correct predicate should only be wd:Degree='MBA' to filter the wd:Education_Group elements.

To implement this in XSLT:

Within your template matching wd:Report_Entry, you would write an <xsl:apply-templates> element with the select attribute set to wd:Education_Group[wd:Degree='MBA']. This ensures that only wd:Education_Group elements with a wd:Degree value of 'MBA' are processed by the corresponding templates, effectively filtering out other degrees (e.g., B.S., B.A.) in the transformation.

This approach ensures the XSLT transformation aligns with Workday's XML structure and integration requirements for processing education data in a report output.

:

Workday Pro Integrations Study Guide: Section on 'XSLT Transformations for Workday Integrations' -- Details the use of XPath in XSLT for filtering XML elements, including predicates for conditional processing based on child element values.

Workday EIB and Web Services Guide: Chapter on 'XML and XSLT for Report Data' -- Explains the structure of Workday XML (e.g., wd:Education_Group, wd:Degree) and how to use XPath to navigate and filter data.

Workday Reporting and Analytics Guide: Section on 'Web Service-Enabled Reports' -- Covers integrating report outputs with XSLT for transformations, including examples of filtering elements based on specific values like degree types.


Question No. 3

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?

Show Answer Hide Answer
Correct Answer: D

The scenario involves a Core Connector: Worker integration with two runs detailed in the integration events report. The goal is to determine whether Brian Hill's compensation change, effective April 30, 2024, and entered on May 13, 2024, will be included in either of the runs based on their date launch parameters. Let's analyze each run against the change details to identify the correct answer.

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.


Question No. 4

What is the purpose of granting an ISU modify access to the Integration Event domain via an ISSG?

Show Answer Hide Answer
Correct Answer: B

Understanding ISUs and Integration Systems in Workday

Integration System User (ISU): An ISU is a specialized user account in Workday designed for integrations, functioning as a service account to authenticate and execute integration processes. ISUs are created using the 'Create Integration System User' task and are typically configured with settings like disabling UI sessions and setting long session timeouts (e.g., 0 minutes) to prevent expiration during automated processes. ISUs are not human users but are instead programmatic accounts used for API calls, EIBs, Core Connectors, or other integration mechanisms.

Integration Systems: In Workday, an 'integration system' refers to the configuration or setup of an integration, such as an External Integration Business (EIB), Core Connector, or custom integration via web services. Integration systems are defined to handle data exchange between Workday and external systems, and they require authentication, often via an ISU, to execute tasks like data retrieval, transformation, or posting.

Assigning ISUs to Integration Systems: ISUs are used to authenticate and authorize integration systems to interact with Workday. When configuring an integration system, you assign an ISU to provide the credentials needed for the integration to run. This assignment ensures that the integration can access Workday data and functionalities based on the security permissions granted to the ISU via its associated Integration System Security Group (ISSG).

Limitation on Assignment: Workday's security model imposes restrictions to maintain control and auditability. Specifically, an ISU is designed to be tied to a single integration system to ensure clear accountability, prevent conflicts, and simplify security management. This limitation prevents an ISU from being reused across multiple unrelated integration systems, reducing the risk of unintended access or data leakage.

Evaluating Each Option

Let's assess each option based on Workday's integration and security practices:

Option A: An ISU can be assigned to five integration systems.

Analysis: This is incorrect. Workday does not impose a specific numerical limit like 'five' for ISU assignments to integration systems. Instead, the limitation is more restrictive: an ISU is typically assigned to only one integration system to ensure focused security and accountability. Allowing an ISU to serve multiple systems could lead to confusion, overlapping permissions, or security risks, which Workday's design avoids.

Why It Doesn't Fit: There's no documentation or standard practice in Workday Pro Integrations suggesting a limit of five integration systems per ISU. This option is arbitrary and inconsistent with Workday's security model.

Option B: An ISU can be assigned to an unlimited number of integration systems.

Analysis: This is incorrect. Workday's security best practices do not allow an ISU to be assigned to an unlimited number of integration systems. Allowing this would create security vulnerabilities, as an ISU's permissions (via its ISSG) could be applied across multiple unrelated systems, potentially leading to unauthorized access or data conflicts. Workday enforces a one-to-one or tightly controlled relationship to maintain auditability and security.

Why It Doesn't Fit: The principle of least privilege and clear accountability in Workday integrations requires limiting an ISU's scope, not allowing unlimited assignments.

Option C: An ISU can be assigned to only one integration system.

Analysis: This is correct. In Workday, an ISU is typically assigned to a single integration system to ensure that its credentials and permissions are tightly scoped. This aligns with Workday's security model, where ISUs are created for specific integration purposes (e.g., an EIB, Core Connector, or web service integration). When configuring an integration system, you specify the ISU in the integration setup (e.g., under 'Integration System Attributes' or 'Authentication' settings), and it is not reused across multiple systems to prevent conflicts or unintended access. This limitation ensures traceability and security, as the ISU's actions can be audited within the context of that single integration.

Why It Fits: Workday documentation and best practices, including training materials and community forums, emphasize that ISUs are dedicated to specific integrations. For example, when creating an EIB or Core Connector, you assign an ISU, and it is not shared across other integrations unless explicitly reconfigured, which is rare and discouraged for security reasons.

Option D: An ISU can only be assigned to an ISSG and not an integration system.

Analysis: This is incorrect. While ISUs are indeed assigned to ISSGs to inherit security permissions (as established in Question 26), they are also assigned to integration systems to provide authentication and authorization for executing integration tasks. The ISU's role includes both: it belongs to an ISSG for permissions and is linked to an integration system for execution. Saying it can only be assigned to an ISSG and not an integration system misrepresents Workday's design, as ISUs are explicitly configured in integration systems (e.g., EIB, Core Connector) to run processes.

Why It Doesn't Fit: ISUs are integral to integration systems, providing credentials for API calls or data exchange. Excluding assignment to integration systems contradicts Workday's integration framework.

Final Verification

The correct answer is Option C, as Workday limits an ISU to a single integration system to ensure security, accountability, and clarity in integration operations. This aligns with the principle of least privilege, where ISUs are scoped narrowly to avoid overexposure. For example, when setting up a Core Connector: Job Postings (as in Question 25), you assign an ISU specifically for that integration, not multiple ones, unless reconfiguring for a different purpose, which is atypical.

Supporting Documentation

The reasoning is based on Workday Pro Integrations security practices, including:

Workday Community documentation on creating and managing ISUs and integration systems.

Tutorials on configuring EIBs, Core Connectors, and web services, which show assigning ISUs to specific integrations (e.g., Workday Advanced Studio Tutorial).

Integration security overviews from implementation partners (e.g., NetIQ, Microsoft Learn, Reco.ai) emphasizing one ISU per integration for security.

Community discussions on Reddit and Workday forums reinforcing that ISUs are tied to single integrations for auditability (r/workday on Reddit).

This question focuses on the purpose of granting an Integration System User (ISU) modify access to the Integration Event domain via an Integration System Security Group (ISSG) in Workday Pro Integrations. Let's analyze the role of the ISU, the Integration Event domain, and evaluate each option to determine the correct answer.

Understanding ISUs, ISSGs, and the Integration Event Domain

Integration System User (ISU): As described in previous questions, an ISU is a service account for integrations, used to authenticate and execute integration processes in Workday. ISUs are assigned to ISSGs to inherit security permissions and are linked to specific integration systems (e.g., EIBs, Core Connectors) for execution.

Integration System Security Group (ISSG): An ISSG is a security group that defines the permissions for ISUs, controlling what data and functionalities they can access or modify. ISSGs can be unconstrained (access all instances) or constrained (access specific instances based on context). Permissions are granted via domain security policies, such as 'Get,' 'Put,' 'View,' or 'Modify,' applied to Workday domains.

Integration Event Domain: In Workday, the Integration Event domain (or Integration Events security domain) governs access to integration-related activities, such as managing integration events, schedules, attributes, mappings, and logs. This domain is critical for integrations, as it controls the ability to create, modify, or view integration configurations and runtime events.

'Modify' access to the Integration Event domain allows the ISU to make changes to integration configurations, such as attributes (e.g., file names, endpoints), mappings (e.g., data transformations), and event settings (e.g., schedules or triggers).

This domain does not typically grant UI access or ownership of schedules but focuses on configuration and runtime control.

Purpose of Granting Modify Access: Granting an ISU modify access to the Integration Event domain via an ISSG enables the ISU to perform configuration tasks for integrations, ensuring the integration system can adapt or update its settings programmatically. This is essential for automated integrations that need to adjust mappings, attributes, or event triggers without manual intervention. However, ISUs are not designed for UI interaction or administrative ownership, as they are service accounts.

Evaluating Each Option

Let's assess each option based on Workday's security and integration model:

Option A: To have the ISU own the integration schedule.

Analysis: This is incorrect. ISUs do not 'own' integration schedules or any other integration components. Ownership is not a concept applicable to ISUs, which are service accounts for execution, not administrative entities. Integration schedules are configured within the integration system (e.g., EIB or Core Connector) and managed by administrators or users with appropriate security roles, not by ISUs. Modify access to the Integration Event domain allows changes to schedules, but it doesn't imply ownership.

Why It Doesn't Fit: ISUs lack administrative control or ownership; they execute based on permissions, not manage schedules as owners. This misinterprets the ISU's role.

Option B: To let the ISU configure integration attributes and maps.

Analysis: This is correct. Granting modify access to the Integration Event domain allows the ISU to alter integration configurations, including attributes (e.g., file names, endpoints, timeouts) and mappings (e.g., data transformations like worker subtype mappings from Question 25). The Integration Event domain governs these configuration elements, and 'Modify' permission enables the ISU to update them programmatically during integration execution. This is a standard use case for ISUs in automated integrations, ensuring flexibility without manual intervention.

Why It Fits: Workday's documentation and training materials indicate that the Integration Event domain controls integration configuration tasks. For example, in an EIB or Core Connector, an ISU with modify access can adjust mappings or attributes, as seen in tutorials on integration setup (Workday Advanced Studio Tutorial). This aligns with the ISU's role as a service account for dynamic configuration.

Option C: To log into the user interface as the ISU and launch the integration.

Analysis: This is incorrect. ISUs are not intended for UI interaction. When creating an ISU, a best practice is to disable UI sessions (e.g., set 'Allow UI Sessions' to 'No') and configure a session timeout of 0 minutes to prevent expiration during automation. ISUs operate programmatically via APIs or integration systems, not through the Workday UI. Modify access to the Integration Event domain enables configuration changes, not UI login or manual launching.

Why It Doesn't Fit: Logging into the UI contradicts ISU design, as they are service accounts, not user accounts. This option misrepresents their purpose.

Option D: To build the integration system as the ISU.

Analysis: This is incorrect. ISUs do not 'build' integration systems; they execute or configure existing integrations based on permissions. Building an integration system (e.g., creating EIBs, Core Connectors, or web services) is an administrative task performed by users with appropriate security roles (e.g., Integration Build domain access), not ISUs. Modify access to the Integration Event domain allows configuration changes, not the creation or design of integration systems.

Why It Doesn't Fit: ISUs lack the authority or capability to build integrations; they are for runtime execution and configuration, not development or design.

Final Verification

The correct answer is Option B, as granting an ISU modify access to the Integration Event domain via an ISSG enables it to configure integration attributes (e.g., file names, endpoints) and maps (e.g., data transformations), which are critical for dynamic integration operations. This aligns with Workday's security model, where ISUs handle automated tasks within defined permissions, not UI interaction, ownership, or system building.

For example, in the Core Connector: Job Postings from Question 25, an ISU with modify access to Integration Event could update the filename pattern or worker subtype mappings, ensuring the integration adapts to vendor requirements without manual intervention. This is consistent with Workday's design for integration automation.

Supporting Documentation

The reasoning is based on Workday Pro Integrations security practices, including:

Workday Community documentation on ISUs, ISSGs, and domain security (e.g., Integration Event domain permissions).

Tutorials on configuring EIBs and Core Connectors, showing ISUs modifying attributes and mappings (Workday Advanced Studio Tutorial).

Integration security overviews from implementation partners (e.g., NetIQ, Microsoft Learn, Reco.ai) detailing domain access for ISUs.

Community discussions on Reddit and Workday forums reinforcing ISU roles for configuration, not UI or ownership (r/workday on Reddit).


Question No. 5

Refer to the scenario. You are configuring a Core Connector: Worker integration with the Data Initialization Service (DIS) enabled, scheduled to run once daily. The integration must extract only active worker records with changes to compensation, home address, or business title since the last 24 hours. It uses Workday's change detection to avoid full extracts.

During testing, the Core Connector: Worker DIS output unexpectedly includes terminated workers, even though the change detection date parameters are correctly defined for a Full-Diff extract. The requirements specify that only active workers should be included in the output.

What configuration step should you modify to ensure the integration excludes terminated workers?

Show Answer Hide Answer
Correct Answer: C

This scenario addresses an issue where a Core Connector: Worker integration --- with DIS enabled and Full-Diff mode configured --- unexpectedly includes terminated workers in the output, despite a requirement to include only active workers.

The correct step to address this issue is the configuration of Integration Population Eligibility.

From the Workday Pro: Integrations -- Core Connector Configuration Guide, the relevant extract states:

''The Integration Population Eligibility step allows users to define which workers or populations are eligible to be included in the integration output. This includes filtering by worker status, organization, supervisory org, or other eligibility criteria. If this is not configured to exclude terminated workers, the integration will include all workers who meet the event conditions, regardless of their current status.''

Even though the integration uses change detection and the correct launch parameters, Workday still considers any worker with a qualifying change, including those terminated, unless they are explicitly excluded via eligibility rules.

Therefore, to prevent terminated workers from appearing in the output, you must set a filter in the Integration Population Eligibility step to include only active workers (e.g., using Worker.Status = Active or similar criteria).

Incorrect Options Explained:

A . Configure Integration Attributes... Include Inactive Workers in Full FileThis option would cause inactive (e.g., terminated) workers to be included when enabled. It doesn't help filter them out.

B . Configure Integration Transaction Log... subscribe to everything except terminationSubscription controls which events trigger processing but does not control population eligibility. Terminated workers with address changes prior to termination could still appear if eligibility is not defined.

D . Configure Integration Field Overrides... use Eligibility CriterionField Overrides change data mappings or formats, not population eligibility. It cannot exclude terminated workers.


Workday Pro: Integrations Curriculum -- Core Connector: Worker Configuration and Population Eligibility

Workday Community: Integration System Configuration > Integration Population Eligibility

Workday Training Materials: Core Connector Deployment Best Practices

100%

Security & Privacy

10000+

Satisfied Customers

24/7

Committed Service

100%

Money Back Guranteed