Pegasystems Certified Pega Lead System Architect (CPLSA) Exam 8.8 PEGACPLSA88V1 Question # 2 Topic 1 Discussion
PEGACPLSA88V1 Exam Topic 1 Question 2 Discussion:
Question #: 2
Topic #: 1
A health insurance application receives a weekly feed of customer insurance quotes as CSV files from each partner company. Which of the following options is the best solution to create policy cases based on the received customer insurance quotes?
A.
Use file listener to read the file, and then feed the data from file into a datatype. Configure a Job scheduler to read the records and place them in a queue to create the cases.
B.
Use file listener to read the file, and then invoke the pxCreateTopCase utility to create case immediately.
C.
Use file listener to read the file, and then feed the data from file into a datatype. Invoke the pxCreateTopCase utility to create case.
D.
Use file listener to read the file, and then feed the data from file into a datatype. Configure a job scheduler to read the records and create cases.
For processing weekly CSV files of customer insurance quotes and creating policy cases:
File Listener and Job Scheduler (D):
Use a file listener to read the incoming CSV file and feed the data into a data type.
Configure a job scheduler to read the records from the data type and create cases. This approach decouples the file reading and case creation processes, allowing for better control and error handling.
References:
Pega File Listener Configuration Guide
Pega Job Scheduler Documentation
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit