IDMS

  • 1.  RESOURCE ADSCDME IS UNDEFINED

    Posted Jun 22, 2017 06:28 AM

    Hi all, 

     

    I hope you can help me with this problem.  My COBOL developers get the error " IDMS DC021101 V?? RESOURCE ADSCDME IS UNDEFINED" when they try to adapt program code via DME.  They have to completely logout of IDMS and re-login for DME to function again.  

     

    I know that there is something missing in the definition, but I don't know what.  I checked the Release 18.5 Dictionary Module Editor manual, but it doesn't give much information about the setup.  Please help

     

    Kind regards,

    Sandra Mabena



  • 2.  Re: RESOURCE ADSCDME IS UNDEFINED
    Best Answer

    Broadcom Employee
    Posted Jun 22, 2017 07:00 AM

    ADSCDME is a TASK code.  You have RESTYPE=TASK secured in the IDMS security table RHDCSRTT that is being used by the CV.  If the #SECRTT macro for RESTYPE=TASK has parameter SECBY=INT, then it means there is no Resource CATEGORY defined in the system dictionary that contains this Task Code.  For internal TASK security you must define all TASK codes that may be executed in a Resource Category and Grant Execute to all Users who should be allowed to execute the TASKs in that Category.  

    If you have SECBY=EXT then the TASK resource (determined by EXTCLS and EXTNAME parms on the #SECRTT macro) is not defined in the External Security Manager.

     

      If you secure RESTYPE=TASK then every TASK Code defined to the System via the Sysgen Compiler must be defined and access must be granted to whoever should be allowed to execute the Task in question.



  • 3.  Re: RESOURCE ADSCDME IS UNDEFINED

    Posted Jul 05, 2017 06:08 AM

    Thank you Brian; that was very helpful