Chinaunix
标题:
怎样取得所有的JOB SCHEDULE ENTRIES到表中
[打印本页]
作者:
cu400
时间:
2006-10-30 11:17
标题:
怎样取得所有的JOB SCHEDULE ENTRIES到表中
我现在需要取得所有的SCHEDULE ENTRIES的上一次的提交状态,然后做相应的操作.
现在可以用API QWCLSCDE取得一个SCHEDULE ENTRIES的所有信息.
有什么好的办法可以循环的取得.
好象所有的SCHEDULE ENTRIES存放在QUSRSYS/QDFTJOBSCD中.
怎样读取上面的文件.
作者:
cu400
时间:
2006-10-30 13:37
怎么没有人理我!!
那位好心人帮帮忙!!
谢谢!
作者:
xuguopeng
时间:
2006-10-30 14:18
不断的执行不就可以循环读取了...
取SCDE中的历史状态有意义么? 那只是记录作业已经SUBMIT而已,至于程序是否运行正常,我觉得最好在程序内部自己控制...
作者:
cu400
时间:
2006-10-30 16:05
我很想知道WRKJOBSCDE是怎么做出来的
顺便学习使用API
作者:
pantierui
时间:
2006-10-30 16:59
关注中。。。。。
作者:
pantierui
时间:
2006-11-01 15:03
想了好几天终于做出来了.
可以用US指针来做
不对之处请大家指正.
*****************************************************************
*
* Program Name: SCDE - List Job Schedule Entries
* Author: Pan Tierui
* Date: 2006/11/01
*
*****************************************************************
H Option(*SRCSTMT:*NODEBUGIO)
*****************************************************************
*Standard Parameters for Retrieve User Space
*****************************************************************
DQUAL_SPACE DS
D SPC_NAME 10
D SPC_LIB 10 INZ('QTEMP')
* Returned Data Variable
D@DATA DS BASED(SPCPTR)
D @offsethdr 117 120b 0
D @headrsize 121 124b 0
D @offsetlst 125 128b 0
D @numlstent 133 136b 0
D @lstentsz 137 140b 0
* Pointer to Returned Variable
D SPCPTR S * inz(*null)
* Work Fields
D Error_Msg S 50
D FORMAT S 8 INZ('SCDL0200') Format name
D JOBSCDNM S 10 INZ('*ALL ') Job schedule entry
D CONHANDL S 16 inz(' ') Continuation handle
D SPC_ATR S 10 INZ('SPACE') Attibute
D SPC_INIT_S S 9B 0 INZ(1) Initial Size
D SPC_INIT_V S 1 INZ(X'00') Initial Value
D SPC_AUTH S 10 INZ('*ALL') Authoritie
D SPC_TEXT S 50 Text
D SPC_REPLAC S 10 INZ('*YES') Replace
*****************************************************************
*Record structure for Error Code Parameter
*****************************************************************
d/COPY qsysinc/qrpglesrc,QUSEC
*****************************************************************
*Type Definition for the SCDL0100 and SCDL0200 header section.
*****************************************************************
d/COPY qsysinc/qrpglesrc,QWCLSCDE
*****************************************************************
**-- Remove program message: ----------------------------------**
D RmvPgmMsg Pr ExtPgm( 'QMHRMVPM' )
D RpMsgQ 276a Const
D RpStack 10i 0 Const
D RpMsgKey 4a Const
D RpMsgRmv 10a Const
D RpError 10i 0 Const
*****************************************************************
* Main Program
*****************************************************************
* Load the User Space - Initial Load
C Exsr Load_US
* End of Program
C Eval *INLR = *On
C Return
*****************************************************************
* Load the User Space with the Job List
*****************************************************************
C Load_US Begsr
* Clear the Error Message Subfile
C CallP RmvPgmMsg( '*'
C : *Zero
C : *Blanks
C : '*ALL'
C : *Zero
C )
*
* Set the User Space Name
C Eval SPC_NAME = 'QLSTSCDE'
* Build the User Space
C Exsr Create_Sp
* Process the User Space
C Exsr Proc_US
* Delete the User Space
C Exsr Delete_Sp
*
C Endsr
*****************************************************************
* Process the User Space
*****************************************************************
C Proc_US Begsr
* Get the Pointer
C Exsr Get_Point
* List Job Schedule Entries
C Exsr Lst_Scde
* Here, the offset is set for:
* The retrieved list
C Eval @offsetlst = (@offsetlst + 1)
* and the header information (if applicable to your API)
C Eval @offsethdr = (@offsethdr + 1)
* Start the Loop
C Do @numlstent
* Get the List Element
C Exsr Get_Data
c QWCJN00 dsply
C goto nextloop
* The next loop tag
C nextloop tag
* Update the Off-Set
C Eval @offsetlst = @offsetlst + @lstentsz
* Loop
C Enddo
*
C Endsr
*****************************************************************
* Create and Extend User Space
*****************************************************************
C Create_Sp Begsr
* Create the User Space
C CALL 'QUSCRTUS'
C PARM QUAL_SPACE
C PARM SPC_ATR
C PARM SPC_INIT_S
C PARM SPC_INIT_V
C PARM SPC_AUTH
C PARM SPC_TEXT
C PARM SPC_REPLAC
C PARM QUSEC
* Check for Errors
C If QUSEI <> *Blanks
C Eval Error_Msg = 'Create Space Error: ' + QUSEI
C Error_Msg Dsply
C Endif
*
C Endsr
*****************************************************************
* Delete User Space
*****************************************************************
C Delete_Sp Begsr
* Delete the User Space
C CALL 'QUSDLTUS'
C PARM QUAL_SPACE
C PARM QUSEC
* Check for Errors
C If QUSEI <> *Blanks
C Eval Error_Msg = 'Delete Space Error: ' + QUSEI
C Error_Msg Dsply
C Endif
*
C Endsr
*****************************************************************
* Get Data from the User Space
*****************************************************************
C Get_Data Begsr
*
C Call 'QUSRTVUS'
C Parm QUAL_SPACE
C Parm @offsetlst
C Parm @lstentsz
C Parm QWCL0200
C Parm QUSEC
* Check for Errors
C If QUSEI <> *Blanks
C Eval Error_Msg = 'Get Data Error: ' + QUSEI
C Error_Msg Dsply
C Endif
*
C Endsr
*****************************************************************
* Get Pointer to the User Space
*****************************************************************
C Get_Point Begsr
*
C Call 'QUSPTRUS'
C Parm QUAL_SPACE
C Parm SPCPTR
C Parm QUSEC
* Check for Errors
C If QUSEI <> *Blanks
C Eval Error_Msg = 'Pointer Error: ' + QUSEI
C Error_Msg Dsply
C Endif
*
C Endsr
*****************************************************************
* List Job Schedule Entries
*****************************************************************
C Lst_Scde Begsr
*
C Call 'QWCLSCDE'
C Parm QUAL_SPACE
C Parm FORMAT
C Parm JOBSCDNM
C Parm CONHANDL
C Parm QUSEC
* Check for Errors
C If QUSEI <> *Blanks
C Eval Error_Msg = 'List Error: ' + QUSEI
C Error_Msg Dsply
C Endif
*
C Endsr
复制代码
[
本帖最后由 pantierui 于 2006-11-1 15:06 编辑
]
欢迎光临 Chinaunix (http://bbs.chinaunix.net/)
Powered by Discuz! X3.2