Page 1 of 1

Error report by province in batch file

Posted: February 27th, 2013, 8:22 am
by khurshid.arshad
Dear Gregory Martin;

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

Regards.

Arshad

Re: Error report by province in batch file

Posted: February 27th, 2013, 9:18 am
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