Hi,
I am facing problem running sqr program in process schduler.Please provide me steps to run program in ps.
how to run the below sqr program in process scheduler.
#include 'setenv.sqc'
BEGIN-HEADING 2
PRINT 'SQR PROGRAM'() center
PRINT 'EMPID' (+1,6,20)
PRINT 'NAME' (,+2,23)
PRINT 'COUNTRY' (,+4,25)
END-HEADING
BEGIN-PROGRAM
DO PROCEDURE1
END-PROGRAM
BEGIN-PROCEDURE PROCEDURE1
#DEBUG SHOW 'START PROCEDURE1'
BEGIN-SELECT
EMPLID (+1,6,20)
NAME (,+2,23)
COUNTRY (,+4,25) ON-BREAK SKIPLINES=1
FROM PS_PERSONAL_DATA
END-SELECT
graphic (5,1,66) horz-line 40
END-PROCEDURE PROCEDURE1
| Title | Under | Posted on |
|---|---|---|
| MD5 - SHA checksum of a file. | PeopleSoft Technical | 02/07/2012 - 5:29am |
| nVision Tabular Report through PIA with prompts | PeopleSoft Technical | 02/02/2012 - 10:07pm |
| Can we create an AE to mass update Position - Jobcode data? | PeopleSoft Technical | 01/18/2012 - 3:11am |
| Pay Components on job data can be defaulted and setup based on the rules? | PeopleSoft Functional | 01/05/2012 - 4:58am |
U need to attach stdapi.sqc in your sqr program. call stdapinit procedure as the first procedure and stdapiterm as the last procedure. These procedures makes an SQR program api aware and u will be able to run the program from process scheduler. For more information, refer any delivered SQR program.
Post new comment