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
Android: Allow partially saved cases to modify
-
naylinnsoe
- Posts: 31
- Joined: June 22nd, 2012, 7:14 am
- Location: Yangon
-
naylinnsoe
- Posts: 31
- Joined: June 22nd, 2012, 7:14 am
- Location: Yangon
-
bidhu
- Posts: 25
- Joined: April 15th, 2013, 12:43 pm
Re: Android: Allow partially saved cases to modify
If you can create a PFF file from using a separate menu program, this problem can be easily dealt with.
-
naylinnsoe
- Posts: 31
- Joined: June 22nd, 2012, 7:14 am
- Location: Yangon
Re: Android: Allow partially saved cases to modify
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
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
Myanmar
-
bidhu
- Posts: 25
- Joined: April 15th, 2013, 12:43 pm
Re: Android: Allow partially saved cases to modify
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.
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.