免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2166 | 回复: 5
打印 上一主题 下一主题

怎样取得所有的JOB SCHEDULE ENTRIES到表中 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-10-30 11:17 |只看该作者 |倒序浏览
我现在需要取得所有的SCHEDULE ENTRIES的上一次的提交状态,然后做相应的操作.
现在可以用API QWCLSCDE取得一个SCHEDULE ENTRIES的所有信息.
有什么好的办法可以循环的取得.
好象所有的SCHEDULE ENTRIES存放在QUSRSYS/QDFTJOBSCD中.
怎样读取上面的文件.

论坛徽章:
0
2 [报告]
发表于 2006-10-30 13:37 |只看该作者
怎么没有人理我!!
那位好心人帮帮忙!!
谢谢!

论坛徽章:
0
3 [报告]
发表于 2006-10-30 14:18 |只看该作者
不断的执行不就可以循环读取了...

取SCDE中的历史状态有意义么? 那只是记录作业已经SUBMIT而已,至于程序是否运行正常,我觉得最好在程序内部自己控制...

评分

参与人数 1可用积分 +2 收起 理由
michael9406 + 2

查看全部评分

论坛徽章:
0
4 [报告]
发表于 2006-10-30 16:05 |只看该作者
我很想知道WRKJOBSCDE是怎么做出来的
顺便学习使用API

论坛徽章:
0
5 [报告]
发表于 2006-10-30 16:59 |只看该作者
关注中。。。。。

论坛徽章:
0
6 [报告]
发表于 2006-11-01 15:03 |只看该作者
想了好几天终于做出来了.
可以用US指针来做
不对之处请大家指正.

  1.       *****************************************************************
  2.       *
  3.       * Program Name: SCDE - List Job Schedule Entries
  4.       * Author: Pan Tierui
  5.       * Date: 2006/11/01
  6.       *
  7.       *****************************************************************
  8.      H   Option(*SRCSTMT:*NODEBUGIO)
  9.       *****************************************************************
  10.       *Standard Parameters for Retrieve User Space
  11.       *****************************************************************
  12.      DQUAL_SPACE       DS
  13.      D SPC_NAME                      10
  14.      D SPC_LIB                       10    INZ('QTEMP')
  15.       * Returned Data Variable
  16.      D@DATA            DS                  BASED(SPCPTR)
  17.      D    @offsethdr         117    120b 0
  18.      D    @headrsize         121    124b 0
  19.      D    @offsetlst         125    128b 0
  20.      D    @numlstent         133    136b 0
  21.      D    @lstentsz          137    140b 0
  22.       * Pointer to Returned Variable
  23.      D SPCPTR          S               *   inz(*null)
  24.       * Work Fields
  25.      D Error_Msg       S             50
  26.      D FORMAT          S              8    INZ('SCDL0200')                      Format name
  27.      D JOBSCDNM        S             10    INZ('*ALL      ')                    Job schedule entry
  28.      D CONHANDL        S             16    inz(' ')                             Continuation handle
  29.      D SPC_ATR         S             10    INZ('SPACE')                         Attibute
  30.      D SPC_INIT_S      S              9B 0 INZ(1)                               Initial Size
  31.      D SPC_INIT_V      S              1    INZ(X'00')                           Initial Value
  32.      D SPC_AUTH        S             10    INZ('*ALL')                          Authoritie
  33.      D SPC_TEXT        S             50                                         Text
  34.      D SPC_REPLAC      S             10    INZ('*YES')                          Replace
  35.       *****************************************************************
  36.       *Record structure for Error Code Parameter
  37.       *****************************************************************
  38.      d/COPY qsysinc/qrpglesrc,QUSEC
  39.       *****************************************************************
  40.       *Type Definition for the SCDL0100 and SCDL0200 header section.
  41.       *****************************************************************
  42.      d/COPY qsysinc/qrpglesrc,QWCLSCDE
  43.       *****************************************************************
  44.      **-- Remove program message:  ----------------------------------**
  45.      D RmvPgmMsg       Pr                  ExtPgm( 'QMHRMVPM' )
  46.      D  RpMsgQ                      276a   Const
  47.      D  RpStack                      10i 0 Const
  48.      D  RpMsgKey                      4a   Const
  49.      D  RpMsgRmv                     10a   Const
  50.      D  RpError                      10i 0 Const
  51.       *****************************************************************
  52.       * Main Program
  53.       *****************************************************************
  54.       * Load the User Space - Initial Load
  55.      C                   Exsr      Load_US
  56.       * End of Program
  57.      C                   Eval      *INLR = *On
  58.      C                   Return
  59.       *****************************************************************
  60.       * Load the User Space with the Job List
  61.       *****************************************************************
  62.      C     Load_US      Begsr
  63.       * Clear the Error Message Subfile
  64.      C                   CallP     RmvPgmMsg( '*'
  65.      C                                      : *Zero
  66.      C                                      : *Blanks
  67.      C                                      : '*ALL'
  68.      C                                      : *Zero
  69.      C                                      )
  70.       *
  71.       * Set the User Space Name
  72.      C                   Eval      SPC_NAME = 'QLSTSCDE'
  73.       * Build the User Space
  74.      C                   Exsr      Create_Sp
  75.       * Process the User Space
  76.      C                   Exsr      Proc_US
  77.       * Delete the User Space
  78.      C                   Exsr      Delete_Sp
  79.       *
  80.      C                   Endsr
  81.       *****************************************************************
  82.       * Process the User Space
  83.       *****************************************************************
  84.      C     Proc_US      Begsr
  85.       * Get the Pointer
  86.      C                   Exsr      Get_Point
  87.       * List Job Schedule Entries
  88.      C                   Exsr      Lst_Scde
  89.       * Here, the offset is set for:
  90.       * The retrieved list
  91.      C                   Eval      @offsetlst = (@offsetlst + 1)
  92.       * and the header information (if applicable to your API)
  93.      C                   Eval      @offsethdr = (@offsethdr + 1)
  94.       * Start the Loop
  95.      C                   Do        @numlstent
  96.       * Get the List Element
  97.      C                   Exsr      Get_Data
  98.      c     QWCJN00       dsply
  99.      C                   goto      nextloop
  100.       * The next loop tag
  101.      C     nextloop      tag
  102.       * Update the Off-Set
  103.      C                   Eval      @offsetlst = @offsetlst + @lstentsz
  104.       * Loop
  105.      C                   Enddo
  106.       *
  107.      C                   Endsr
  108.       *****************************************************************
  109.       * Create and Extend User Space
  110.       *****************************************************************
  111.      C     Create_Sp    Begsr
  112.       * Create the User Space
  113.      C                   CALL      'QUSCRTUS'
  114.      C                   PARM                    QUAL_SPACE
  115.      C                   PARM                    SPC_ATR
  116.      C                   PARM                    SPC_INIT_S
  117.      C                   PARM                    SPC_INIT_V
  118.      C                   PARM                    SPC_AUTH
  119.      C                   PARM                    SPC_TEXT
  120.      C                   PARM                    SPC_REPLAC
  121.      C                   PARM                    QUSEC
  122.       * Check for Errors
  123.      C                   If        QUSEI <> *Blanks
  124.      C                   Eval      Error_Msg = 'Create Space Error: ' + QUSEI
  125.      C     Error_Msg     Dsply
  126.      C                   Endif
  127.       *
  128.      C                   Endsr
  129.       *****************************************************************
  130.       * Delete User Space
  131.       *****************************************************************
  132.      C     Delete_Sp    Begsr
  133.       * Delete the User Space
  134.      C                   CALL      'QUSDLTUS'
  135.      C                   PARM                    QUAL_SPACE
  136.      C                   PARM                    QUSEC
  137.       * Check for Errors
  138.      C                   If        QUSEI <> *Blanks
  139.      C                   Eval      Error_Msg = 'Delete Space Error: ' + QUSEI
  140.      C     Error_Msg     Dsply
  141.      C                   Endif
  142.       *
  143.      C                   Endsr
  144.       *****************************************************************
  145.       * Get Data from the User Space
  146.       *****************************************************************
  147.      C     Get_Data     Begsr
  148.       *
  149.      C                   Call      'QUSRTVUS'
  150.      C                   Parm                    QUAL_SPACE
  151.      C                   Parm                    @offsetlst
  152.      C                   Parm                    @lstentsz
  153.      C                   Parm                    QWCL0200
  154.      C                   Parm                    QUSEC
  155.       * Check for Errors
  156.      C                   If        QUSEI <> *Blanks
  157.      C                   Eval      Error_Msg = 'Get Data Error: ' + QUSEI
  158.      C     Error_Msg     Dsply
  159.      C                   Endif
  160.       *
  161.      C                   Endsr
  162.       *****************************************************************
  163.       * Get Pointer to the User Space
  164.       *****************************************************************
  165.      C     Get_Point    Begsr
  166.       *
  167.      C                   Call      'QUSPTRUS'
  168.      C                   Parm                    QUAL_SPACE
  169.      C                   Parm                    SPCPTR
  170.      C                   Parm                    QUSEC
  171.       * Check for Errors
  172.      C                   If        QUSEI <> *Blanks
  173.      C                   Eval      Error_Msg = 'Pointer Error: ' + QUSEI
  174.      C     Error_Msg     Dsply
  175.      C                   Endif
  176.       *
  177.      C                   Endsr
  178.       *****************************************************************
  179.       * List Job Schedule Entries
  180.       *****************************************************************
  181.      C     Lst_Scde     Begsr
  182.       *
  183.      C                   Call      'QWCLSCDE'
  184.      C                   Parm                    QUAL_SPACE
  185.      C                   Parm                    FORMAT
  186.      C                   Parm                    JOBSCDNM
  187.      C                   Parm                    CONHANDL
  188.      C                   Parm                    QUSEC
  189.       * Check for Errors
  190.      C                   If        QUSEI <> *Blanks
  191.      C                   Eval      Error_Msg = 'List Error: ' + QUSEI
  192.      C     Error_Msg     Dsply
  193.      C                   Endif
  194.       *
  195.      C                   Endsr

复制代码

[ 本帖最后由 pantierui 于 2006-11-1 15:06 编辑 ]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP