zoukankan      html  css  js  c++  java
  • 取目标描述

    可用RTOBJD命令取某个目标的描述返回给CL过程,用变量来返回描述,也可以
    用这些描述帮助你确定没有用的目标。也可以用QUSRJOBD API来返回目标描述
    也是用变量返回的。
    DSPOBJD
    DCL &LIB TYPE(*CHAR) LEN(10)
    DCL &CRTDATE TYPE(*CHAR) LEN(13)
    DCL &USEDATE TYPE(*CHAR) LEN(13)
    DCL &USECNT TYPE(*DEC) LEN(5 0)
    DCL &RESET TYPE(*CHAR) LEN(13)
    ...
    RTVOBJD OBJ(MYLIB/MOBJ) OBJTYPE(*FILE) RTNLIB(&LIB)
    CRTDATE(&CRTDATE) USEDATE(&USEDATE)
    USECOUNT(&USECNT) RESETDATE(&RESET)
    The following information is returned to the program:
    v The current library name (MYLIB) is placed into the CL variable name &LIB.
    v The creation date of MOBJ is placed into the CL variable called &CRTDATE.
    v The date that MOBJ was last used is placed into the CL variable called
    &USEDATE.
    v The number of days that MOBJ has been used is placed into the CL variable
    called &USECNT. The start date of this count is the value placed into the CL
    variable called &RESET.

  • 相关阅读:
    Xcode9学习笔记74
    Xcode9学习笔记73
    Xcode9学习笔记72
    Xcode9学习笔记71
    【Finish】Python Day 8
    【Finish】Python Day 7
    【Finish】Python Day 6
    【Finish】Python Day 5
    【Finish】Python Day 4
    【Finish】Python Day 3
  • 原文地址:https://www.cnblogs.com/wildfish/p/1031851.html
Copyright © 2011-2022 走看看