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
Completed Case Reports
-
- Posts: 1851
- Joined: December 5th, 2011, 11:27 pm
- Location: Washington, DC
Re: Completed Case Reports
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.preproc
COMPLETE = 0;
postproc
COMPLETE = 1;
-
- Posts: 29
- Joined: October 5th, 2019, 1:43 pm
Re: Completed Case Reports
Hi Gregory,
Thanks for the guidance.
Thanks for the guidance.