Error report by province in batch file

Discussions about CSEntry
Forum rules
New release: CSPro 8.0
Post Reply
khurshid.arshad
Posts: 572
Joined: July 9th, 2012, 11:32 am
Location: Islamabad, Pakistan

Error report by province in batch file

Post by khurshid.arshad »

Dear Gregory Martin;

How can i see error report by province in batch editing.

Regards.

Arshad
Gregory Martin
Posts: 1777
Joined: December 5th, 2011, 11:27 pm
Location: Washington, DC

Re: Error report by province in batch file

Post by Gregory Martin »

If you only want to run the report for a certain province, you could use the endcase function to selectively process cases. For example:
PROC QUEST

preproc

    
if PROVINCE <> 5 then // only process province 5
        endcase;
    
endif;
You could customize what province you want to display by editing the PFF file's parameter attribute, and then writing:
if PROVINCE <> tonumber(sysparm()) then
Post Reply