Page 1 of 1

Completed Case Reports

Posted: November 19th, 2019, 5:41 pm
by sergiofurtado
Hello everyone

Taking as an example an application that has multiple records and most of the time is not collected at the same time, does CSPro have any tools or functions that indicate whether a case has been fully populated according to the logic set by the application developer?

If not, what strategy to adopt to obtain this information?

Thanks

Re: Completed Case Reports

Posted: November 20th, 2019, 6:49 am
by Gregory Martin
What some people do is simply an item to their dictionary, something like COMPLETE, and then prefill it using logic.
PROC PROGRAM_LEVEL

preproc

   
COMPLETE = 0;

postproc

   
COMPLETE = 1;
What would happen is that, whenever you open the case, it would get set to 0, and it would only be marked as complete when they successfully navigated all the logic and ended the case.

Re: Completed Case Reports

Posted: November 20th, 2019, 7:03 am
by sergiofurtado
Hi Gregory,

Thanks for the guidance.