When creating an ISU, what should you do to ensure the user only authenticates via web services?
Choose a constrained security group.
Select the Do Not Allow UI Sessions checkbox.
Update the session timeout minutes.
Generate a random password.
When creating an Integration System User (ISU) in Workday, the goal is often to ensure that the user is restricted to performing tasks via web services (e.g., API calls or integrations) and cannot log into the Workday user interface (UI). This is a critical security measure to limit the ISU’s access to only what is necessary for integration purposes, adhering to the principle of least privilege. Let’s evaluate each option provided in the question to determine the correct approach based on Workday’s functionality and best practices as outlined in official documentation and the Workday Pro Integrations program.
Option A: Choose a constrained security group.In Workday, security groups define the permissions and access levels for users, including ISUs. There are two types of Integration System Security Groups (ISSGs): constrained and unconstrained. A constrained ISSG limits access to specific organizations or data scopes, while an unconstrained ISSG provides broader access across the tenant. While choosing a constrained security group can enhance security by limiting the scope of data the ISU can access, it does not directly control whether the ISU authenticates via web services or the UI. The type of security group affects data access permissions, not the authentication method or UI access. Therefore, this option does not address the requirement of ensuring authentication only via web services.
Option B: Select the Do Not Allow UI Sessions checkbox.When creating an ISU in Workday, the "Create Integration System User" task presents an option labeled "Do Not Allow UI Sessions." Selecting this checkbox explicitly prevents the ISU from logging into the Workday UI using its credentials. This setting ensures that the ISU can only authenticate and operate through programmatic means, such as web service calls (e.g., SOAP or REST APIs), which is precisely the intent of the question. This is a standard security practice recommended by Workday to isolate integration activities from interactive user sessions, reducing the risk of misuse or unauthorized access through the UI. This option directly aligns with the requirement and is the correct answer.
Option C: Update the session timeout minutes.The "Session Timeout Minutes" field in the ISU creation task determines how long an ISU’s session remains active before it expires. By default, this is set to 0, meaning the session does not expire, which is suitable for integrations that require continuous operation without interruption. Updating this value (e.g., setting it to a specific number of minutes) would cause the session to time out after that period, potentially disrupting long-running integrations. However, this setting pertains to session duration, not the method of authentication or whether UI access is allowed. It does not prevent the ISU from logging into the UI or ensure that authentication occurs only via web services, making this option irrelevant to the question.
Option D: Generate a random password.Generating a random password for the ISU is a good security practice to ensure the credentials are strong and not easily guessable. However, the password itself does not dictate how the ISU authenticates or whether it can access the UI. A random password enhances security but does not inherently restrict the ISU to web service authentication. Without selecting "Do Not Allow UI Sessions," the ISU could still log into the UI with that password, assuming no other restrictions are applied. Thus, this option does not fulfill the requirement of ensuring authentication only via web services.
Why Option B is Correct
The "Do Not Allow UI Sessions" checkbox is a specific configuration in the ISU setup process that directly enforces the restriction of authentication to web services. This setting is part of Workday’s security framework for integrations, ensuring that ISUs—designed as non-human accounts for programmatic access—cannot be used interactively. This aligns with Workday’s best practices for securing integrations, as outlined in the Workday Pro Integrations Study Guide and related documentation. For example, when an ISU is created with this checkbox selected, any attempt to log into the Workday UI with its credentials will fail, while web service requests (e.g., via SOAP or REST APIs) will succeed, assuming proper permissions are granted via an ISSG.
Practical Application
To implement this in Workday:
Log into your Workday tenant with administrative privileges.
Search for and select the "Create Integration System User" task.
Enter a username and password for the ISU.
Check the "Do Not Allow UI Sessions" checkbox.
Leave "Session Timeout Minutes" at 0 (default) to avoid session expiration during integrations.
Save the ISU and assign it to an appropriate ISSG (constrained or unconstrained, depending on the integration’s needs).
This configuration ensures the ISU is locked to web service authentication, meeting the question’s objective.
Verification with Workday Documentation
The Workday Pro Integrations Study Guide emphasizes securing ISUs by restricting them to integration-specific tasks. The "Do Not Allow UI Sessions" option is highlighted as a key control for preventing UI access, ensuring that ISUs operate solely through web services. This is also consistent with broader Workday security training materials, such as those available on Workday Community, which stress isolating integration accounts from human user activities.
Workday Pro Integrations Study Guide References
Section: Integration Security Fundamentals– Discusses the role of ISUs and the importance of restricting their access to programmatic interactions.
Section: Configuring Integration System Users– Details the "Create Integration System User" task, including the "Do Not Allow UI Sessions" checkbox as a security control.
Section: Best Practices for Integration Security– Recommends using this setting to enforce least privilege and protect the tenant from unauthorized UI access by integration accounts.
What is the purpose of a namespace in the context of a stylesheet?
Provides elements you can use in your code.
Indicates the start and end tag names to output.
Restricts the data the processor can access.
Controls the filename of the transformed result.
In the context of a stylesheet, particularly within Workday's Document Transformation system where XSLT (Extensible Stylesheet Language Transformations) is commonly used, anamespaceserves a critical role in defining the scope and identity of elements and attributes. The correct answer, as aligned with Workday’s integration practices and standard XSLT principles, is that a namespace "provides elements you can use in your code." Here’s a detailed explanation:
Definition and Purpose of a Namespace:
A namespace in an XML-based stylesheet (like XSLT) is a mechanism to avoid naming conflicts by grouping elements and attributes under a unique identifier, typically a URI (Uniform Resource Identifier). This allows different vocabularies or schemas to coexist within the same document or transformation process without ambiguity.
In XSLT, namespaces are declared in the stylesheet using the xmlns attribute (e.g., xmlns:xsl="http://www.w3.org/1999/XSL/Transform" for XSLT itself). These declarations define the set of elements and functions available for use in the stylesheet, such as
For example, when transforming Workday data (which uses its own XML schema), a namespace might be defined to reference Workday-specific elements, enabling the stylesheet to correctly identify and manipulate those elements.
Application in Workday Context:
In Workday’s Document Transformation integrations, namespaces are essential when processing XML data from Workday (e.g., Core Connector outputs) or external systems. The namespace ensures that the XSLT processor recognizes the correct elements from the source XML and applies the transformation rules appropriately.
Without a namespace, the processor might misinterpret elements with the same name but different meanings (e.g.,
Why Other Options Are Incorrect:
B. Indicates the start and end tag names to output: This is incorrect because namespaces do not dictate the structure (start and end tags) of the output. That is determined by the XSLT template rules and output instructions (e.g.,
C. Restricts the data the processor can access: While namespaces help distinguish between different sets of elements, they do not inherently restrict data access. Restrictions are more a function of security settings or XPath expressions within the stylesheet, not the namespace itself.
D. Controls the filename of the transformed result: Namespaces have no bearing on the filename of the output. In Workday, the filename of a transformed result is typically managed by the Integration Attachment Service or delivery settings (e.g., SFTP or email configurations), not the stylesheet’s namespace.
Practical Example:
Suppose you’re transforming a Workday XML file containing employee data into a custom format. The stylesheet might include:
Here, the wd namespace provides access to Workday-specific elements like
Workday Pro Integrations Study Guide References:
Workday Integration System Fundamentals: Explains XML and XSLT basics, including the role of namespaces in identifying elements within stylesheets.
Document Transformation Module: Highlights how namespaces are used in XSLT to process Workday XML data, emphasizing their role in providing a vocabulary for transformation logic (e.g., "Understanding XSLT Namespaces").
Core Connectors and Document Transformation Course Manual: Includes examples of XSLT stylesheets where namespaces are declared to handle Workday-specific schemas, reinforcing that they provide usable elements.
Workday Community Documentation: Notes that namespaces are critical for ensuring compatibility between Workday’s XML output and external system requirements in transformation scenarios.
You are creating an outbound connector using the Core Connector: Job Postings template. The vendor has provided the following specification for worker subtype values:
The vendor has also requested that any output file have the following format "CC_Job_Postings_dd-mm-yy_#.xml". Where the dd is the current day at runtime, mm is the current month at runtime, yy is the last two digits of the current year at runtime, and # is the current value of the sequencer at runtime. What configuration step(s) must you complete to meet the vender requirements?
• Enable the Sequence Generator Field Attribute
• Configure the Sequence Generator
• Configure the Worker Sub Type Integration Mapping leaving the default value blank
• Enable the Integration Mapping Field Attribute
• Configure the Worker Sub Type Integration Mapping leaving the default value blank
• Configure the Sequence Generator
• Enable the Integration Mapping Integration Service
• Configure the Worker Sub Type Integration Mapping and include a default value of "U"
• Configure the Sequence Generator
• Enable the Sequence Generator Integration Service
• Configure the Sequence Generator
• Configure the Worker Sub Type Integration Mapping and include a default value of "U"
This question involves configuring an outbound connector using the Core Connector: Job Postings template in Workday Pro Integrations. We need to meet two specific vendor requirements:
Map worker subtype values according to the provided table (e.g., Seasonal (Fixed) = "S", Regular = "R", Contractor = "C", Consultant = "C", and any other value = "U").
Format the output file name as "CC_Job_Postings_dd-mm-yy_#.xml", where:
"dd" is the current day at runtime,
"mm" is the current month at runtime,
"yy" is the last two digits of the current year at runtime,
"#" is the current value of the sequencer at runtime.
Let’s break down the requirements and evaluate each option to determine the correct configuration steps.
Understanding the Requirements
1. Worker Subtype Mapping
The vendor provides a table for worker subtype values:
Internal Seasonal (Fixed) maps to "S"
Internal Regular maps to "R"
Internal Contractor maps to "C"
Internal Consultant maps to "C"
Any other value should be assigned "U"
In Workday, worker subtypes are typically part of the worker data, and for integrations, we use integration mappings to transform these values into the format required by the vendor. The integration mapping allows us to define how internal Workday values (e.g., worker subtypes) map to external values (e.g., "S", "R", "C", "U"). If no specific mapping exists for a value, we need to set a default value of "U" for any unmatched subtypes, as specified.
This mapping is configured in the integration system’s "Integration Mapping" or "Field Mapping" settings, depending on the template. For the Core Connector: Job Postings, we typically use the"Integration Mapping" feature to handle data transformations, including setting default values for unmapped data.
2. Output File Name Format
The vendor requires the output file to be named "CC_Job_Postings_dd-mm-yy_#.xml", where:
"CC_Job_Postings" is a static prefix,
"dd-mm-yy" represents the current date at runtime (day, month, last two digits of the year),
"#" is the current value from a sequence generator (sequencer) at runtime.
In Workday, file names for integrations are configured in the "File Utility" or "File Output" settings of the integration. To achieve this format:
The date portion ("dd-mm-yy") can be dynamically generated using Workday’s date functions or runtime variables, often configured in the File Utility’s "Filename" field with a "Determine Value at Runtime" setting.
The sequence number ("#") requires a sequence generator, which is enabled and configured to provide a unique incrementing number for each file. Workday uses the "Sequence Generator" feature for this purpose, typically accessed via the "Create ID Definition / Sequence Generator" task.
The Core Connector: Job Postings template supports these configurations, allowing us to set filename patterns in the integration’s setup.
Evaluating Each Option
Let’s analyze each option step by step, ensuring alignment with Workday Pro Integrations best practices and the vendor’s requirements.
Option A:
• Enable the Sequence Generator Field Attribute• Configure the Sequence Generator• Configure the Worker Sub Type Integration Mapping leaving the default value blank
Analysis:
Sequence Generator Configuration:Enabling the "Sequence Generator Field Attribute" and configuring the sequence generator is partially correct for the file name’s "#" (sequencer) requirement. However, "Sequence Generator Field Attribute" is not a standard term in Workday; it might refer to enabling a sequence generator in a field mapping, but this is unclear and likely incorrect. Sequence generators are typically enabled as an "Integration Service" or configured in the File Utility, not as a field attribute.
Worker Subtype Mapping:Configuring the worker subtype integration mapping but leaving the default value blank is problematic. The vendor requires any unmapped value to be "U," so leaving it blank would result in missing or null values, failing to meet the requirement.
Date in Filename:This option doesn’t mention configuring the date ("dd-mm-yy") in the filename, which is critical for the "CC_Job_Postings_dd-mm-yy_#.xml" format.
Conclusion:This option is incomplete and incorrect because it doesn’t address the default "U" for unmapped subtypes and lacks date configuration for the filename.
Option B:
• Enable the Integration Mapping Field Attribute• Configure the Worker Sub Type Integration Mapping leaving the default value blank• Configure the Sequence Generator
Analysis:
Sequence Generator Configuration:Configuring the sequence generator addresses the "#" (sequencer) in the filename, which is correct for the file name requirement.
Worker Subtype Mapping:Similar to Option A, leaving the default value blank for the worker subtype mapping fails to meet the vendor’s requirement for "U" as the default for unmapped values. This would result in errors or null outputs, which is unacceptable.
Date in Filename:Like Option A, there’s no mention of configuring the date ("dd-mm-yy") in the filename, making this incomplete for the full file name format.
Integration Mapping Field Attribute:This term is ambiguous. Workday uses "Integration Mapping" or "Field Mapping" for data transformations, but "Field Attribute" isn’t standard for enabling mappings. This suggests a misunderstanding of Workday’s configuration.
Conclusion:This option is incomplete and incorrect due to the missing default "U" for worker subtypes and lack of date configuration for the filename.
Option C:
• Enable the Integration Mapping Integration Service• Configure the Worker Sub Type Integration Mapping and include a default value of "U"• Configure the Sequence Generator
Analysis:
Sequence Generator Configuration:Configuring the sequence generator is correct for the "#" (sequencer) in the filename, addressing part of the file name requirement.
Worker Subtype Mapping:Including a default value of "U" for the worker subtype mapping aligns perfectly with the vendor’s requirement for any unmapped value to be "U." This is a strong point.
Date in Filename:This option doesn’t mention configuring the date ("dd-mm-yy") in the filename, which is essential for the "CC_Job_Postings_dd-mm-yy_#.xml" format. Without this, the file name requirement isn’t fully met.
Integration Mapping Integration Service:Enabling the "Integration Mapping Integration Service" is vague. Workday doesn’t use this exact term; instead, integration mappings are part of the integration setup, not a separate service. This phrasing suggests confusion or misalignment with Workday terminology.
Conclusion:This option is partially correct (worker subtype mapping) but incomplete due to the missing date configuration for the filename and unclear terminology.
Option D:
• Enable the Sequence Generator Integration Service• Configure the Sequence Generator• Configure the Worker Sub Type Integration Mapping and include a default value of "U"
Analysis:
Sequence Generator Configuration:Enabling the "Sequence Generator Integration Service" and configuring the sequence generator addresses the "#" (sequencer) in the filename. While "Sequence Generator Integration Service" isn’t a standard term, it likely refers to enabling and configuring the sequence generator functionality, which is correct. In Workday, this is done via the "Create ID Definition / Sequence Generator" task and linked in the File Utility.
Worker Subtype Mapping:Configuring the worker subtype integration mapping with a default value of "U" meets the vendor’s requirement for any unmapped value, ensuring "S," "R," "C," or "U" is output as specified in the table. This is accurate and aligns with Workday’s integration mapping capabilities.
Date in Filename:Although not explicitly mentioned in the steps, Workday’s Core Connector: Job Postings template and File Utility allow configuring the filename pattern, including dynamic date values ("dd-mm-yy"). The filename "CC_Job_Postings_dd-mm-yy_#.xml" can be set in the File Utility’s "Filename" field with "Determine Value at Runtime," using date functions and the sequence generator. This is a standard practice and implied in the configuration, making this option complete.
Conclusion:This option fully addresses both requirements: worker subtype mapping with "U" as the default and the file name format using the sequence generator and date. The terminology ("Sequence Generator Integration Service") is slightly non-standard but interpretable as enabling/configuring the sequence generator, which is correct in context.
Final Verification
To confirm, let’s summarize the steps for Option D and ensure alignment with Workday Pro Integrations:
Enable the Sequence Generator Integration Service:This likely means enabling and configuring the sequence generator via the "Create ID Definition / Sequence Generator" task, then linking it to the File Utility for the "#" in the filename.
Configure the Sequence Generator:Set up the sequence generator to provide incremental numbers, ensuring each file has a unique "#" value.
Configure the Worker Sub Type Integration Mapping with a default value of "U":Use the integration mapping to map Internal Seasonal (Fixed) to "S," Regular to "R," Contractor to "C," Consultant to "C," and set "U" as the default for any other value. This is done in the integration’s mapping configuration.
Filename Configuration (Implied):In the File Utility, set the filename to "CC_Job_Postings_dd-mm-yy_#.xml," where "dd-mm-yy" uses Workday’s date functions (e.g., %d-%m-%y) and "#" links to the sequence generator.
This matches Workday’s documentation and practices for the Core Connector: Job Postings template, ensuring both requirements are met.
Why Not the Other Options?
Options A and B fail because they leave the default worker subtype value blank, not meeting the "U" requirement.
Option C fails due to missing date configuration for the filename and unclear terminology ("Integration Mapping Integration Service").
Option D is the only one that fully addresses both the worker subtype mapping (with "U" default) and implies the filename configuration, even if the date setup isn’t explicitly listed (it’s standard in Workday).
Supporting Documentation
The reasoning is based on Workday Pro Integrations best practices, including:
Workday Tutorial: Activity Creating Unique Filenames from EIB-Out Integrations– Details on using sequence generators for filenames.
Workday Tutorial: EIB Features– Explains integration mappings and default values.
Get_Sequence_Generators Operation Details– Workday API documentation on sequence generators.
Workday Advanced Studio Tutorial– Covers Core Connector templates and file name configurations.
r/workday Reddit Post: How to Create a New Sequence Generator for Filename for EIB– Community insights on sequence generators.
Refer to the following scenario to answer the question below.
You need to configure a Core Connector: Candidate Outbound integration for your vendor. The connector requires the data initialization service (DIS).
The vendor requests additional formatting of the candidate Country field. For example, if a candidate's country is the United States of America, the output should show USA.
What steps do you follow to meet this request?
Use an Evaluated Expression calculation and add it to the integration's report data source.
Use the integration related action Configure Integration Population Eligibility.
Use the integration services to only output shortened country codes.
Use the integration related action Configure Integration Maps.
The scenario involves a Core Connector: Candidate Outbound integration with the Data Initialization Service (DIS), where the vendor requires the "Country" field to be formatted differently (e.g., "United States of America" to "USA"). This is a data transformation requirement, and Core Connectors provide specific tools to handle such formatting. Let’s evaluate the solution:
Requirement:The vendor needs a shortened country code (e.g., "USA" instead of "United States of America") in the output file. This involves transforming the delivered "Country" field value from the Candidate business object into a vendor-specific format.
Integration Maps:In Workday Core Connectors,integration mapsare used to transform or map field values from Workday’s format to a vendor’s required format. For example, you can create a map that replaces "United States of America" with "USA," "Canada" with "CAN," etc. This is configured via the "Configure Integration Maps" related action on the integration system, allowing you to define a lookup table or rule-based transformation for the Country field.
Option Analysis:
A. Use an Evaluated Expression calculation and add it to the integration’s report data source: Incorrect. While an Evaluate Expression calculated field could transform the value (e.g., if-then logic), Core Connectors don’t directly use report data sources for output formatting. Calculated fields are better suited for custom reports or EIBs, not Core Connector field mapping.
B. Use the integration related action Configure Integration Population Eligibility: Incorrect. This action filters the population of candidates included (e.g., based on eligibility criteria), not the formatting of individual fields like Country.
C. Use the integration services to only output shortened country codes: Incorrect. Integration services define the dataset or events triggering the integration, not field-level formatting or transformations.
D. Use the integration related action Configure Integration Maps: Correct. Integration maps are the standard Core Connector tool for transforming field values (e.g., mapping "United States of America" to "USA") to meet vendor requirements.
Implementation:
Navigate to the Core Connector: Candidate Outbound integration system.
Use the related actionConfigure Integration Maps.
Create a new map for the "Country" field (e.g., Source Value: "United States of America," Target Value: "USA").
Apply the map to the Country field in the integration output.
Test the output file to ensure the transformed value (e.g., "USA") appears correctly.
References from Workday Pro Integrations Study Guide:
Core Connectors & Document Transformation: Section on "Configuring Integration Maps" details how to transform field values for vendor-specific formatting.
Integration System Fundamentals: Explains how Core Connectors handle data transformation through maps rather than calculated fields or services for field-level changes.
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?
Brian Hill will be included in both integration runs.
Brian Hill will only be included in the second integration run.
Brian Hill will only be included in the first integration run.
Brian Hill will be excluded from both integration runs.
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 theEntry Moment(when the change was entered) andEffective Date(when the change takes effect). The integration captures changes where:
TheEntry Momentfalls between theLast Successful As of Entry Momentand theAs of Entry Moment, and
TheEffective Datefalls between theLast Successful Effective Dateand theEffective 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:
TheEntry 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.
TheEffective Date(04/30/2024) must be between 05/01/2024 (Last Successful Effective Date) and 05/15/2024 (Effective Date). However, 04/30/2024 isbefore05/01/2024, so this condition isnot met.
Since the effective date of Brian’s change (04/30/2024) precedes theLast 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:
TheEntry 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 isbefore05/15/2024 3:00:00 AM, so this condition isnot met.
TheEffective Date(04/30/2024) must be between 05/15/2024 (Last Successful Effective Date) and 05/31/2024 (Effective Date). Since 04/30/2024 isbefore05/15/2024, this condition is alsonot met.
In Run #2, theEntry Moment(05/13/2024) precedes theLast 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, theEffective Date(04/30/2024) is well before theLast 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, makingD. Brian Hill will be excluded from both integration runsthe correct answer.
Workday Pro Integrations Study Guide References
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.
TESTED 23 Feb 2025