You need to create a one-to-many association from Location to Legal Entity. You also need to configure filtering of the Location field based on the Company field in the Job Information block.
What do you need to add to the data models?
Note: There are 2 correct answers to this question.
- <field-criteria> as part of <hris-field="company">
- <field-criteria> as part of <hris-field="location">
- <association> as part of <hris-element id="jobInfo">
- <association> as part of <hris-element id="location">
Answer(s): B,D
Explanation:
To establish a one-to-many association from Location to Legal Entity and enable filtering of the Location field based on the Company field in the Job Information block, the following configurations are necessary:
Define the Association in the Location Object:
In the location object definition, add an <association> element to link it to the legalEntity object. This association should be defined within the <hris-element id="location"> section.
Configure Field Criteria for the Location Field:
Within the Job Information (jobInfo) element, add a <field-criteria> element as part of the <hris-field id="location">. This configuration ensures that the Location field is filtered based on the selected Company (Legal Entity) in the Job Information block.
Therefore, the correct answers are:
B: <field-criteria> as part of <hris-field id="location">
D: <association> as part of <hris-element id="location"> These configurations align with the standard practices for setting up associations and field criteria in SAP SuccessFactors Employee Central.
Show Answer Next Question