Page 1 of 1

Android: Allow partially saved cases to modify

Posted: December 11th, 2014, 11:00 am
by naylinnsoe
Dear All,
I want to lock modifying cases that are complet.
That is not too difficult and I can do by setting lock=modify in PFF file.
But problem is I can't allow to modify partially saved case.
How to solve it or CSPro can support this fearure?
Thanks.
Nay Lin Soe
Myanmar

Re: Android: Allow partially saved cases to modify

Posted: June 30th, 2015, 1:37 pm
by naylinnsoe
There is no solution for this issue?

Re: Android: Allow partially saved cases to modify

Posted: July 6th, 2015, 11:04 am
by bidhu
If you can create a PFF file from using a separate menu program, this problem can be easily dealt with.

Re: Android: Allow partially saved cases to modify

Posted: July 7th, 2015, 5:55 am
by naylinnsoe
Dear Bidhu,

My problem is .
I want to allow partially saved cases can be modified in capi.
But I don't want to allow completed cased to be modify in capi.

How to setting it?

Thanks,
Nay Lin Soe

Re: Android: Allow partially saved cases to modify

Posted: July 7th, 2015, 1:26 pm
by bidhu
It is very simple if you are running a menu driven program. In the menu, you can have an options that allow modification of partially entered case. Write the PFF file statements in the logic. The DataEntryInit section should be written as follows:

filewrite(pffFile,"[DataEntryInit]");
if ispartial() then
filewrite(pffFile,"StartMode=Verify");
endif;
filewrite(pffFile,"Lock= Add");

This will allow you to modify the partially completed case.