PL-400 Exam QuestionsBrowse all questions from this exam

PL-400 Exam - Question 363


HOTSPOT -

You need to design functionality to process background check results.

What should you implement? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Hot Area:

Exam PL-400 Question 363
Show Answer
Correct Answer:
Exam PL-400 Question 363

Box 1: Pull -

After submitting candidate information, users must periodically check the website to see if a response has been posted.

Box 2:

The background check process goes through a number of stages before reaching the final result.

Need just to update the state changes, not to insert.

Note:

Exam PL-400 Question 363

Reference:

https://docs.microsoft.com/en-us/power-apps/developer/data-platform/use-upsert-insert-update-record

Discussion

4 comments
Sign in to comment
Vinodds
Oct 15, 2024

1st need to be event based as it says. The solution must connect to the service and update the background check stage for candidates at least once per hour for incomplete background checks.

MarioM
Sep 26, 2024

pull/upsert - as status can not only be updated, but also inserted in case new status value is retrieved (subjct to change)

SKIPSKIPPERSON
Mar 3, 2025

Me thinks this answer is correct "The solution must connect to the service and update the background check stage for candidates at least once per hour for incomplete background checks." Therefore status is not changed based on some events. Status is changed from periodic pull request that will reflect changes within an hour of the status being updated by the third party. I also cahttps://www.examtopics.com/exams/microsoft/pl-400/view/37/#n't ever see a scenario where you would need to insert (i.e. Create) a new record for the background status... Update should be plenty fine

Juan0414
Mar 7, 2025

"The API also returns one of ten possible values identifying the current stage of the verification process." "The content and number of stage values is subject to change." "The HR department must be able to update the stage values." I think that implies that if a new stage is obtained from the API then it needs to be added to Dataverse. So, I would go with: Pull Upsert