Endevor

 View Only
  • 1.  Mass update to Endevor Generate Processor names across all the System Environment.

    Posted Oct 06, 2021 05:43 PM
    Hello,

    We are looking for a solution to do a mass update rename Generate Processor names across all the System Environments.
    Example. Rename Generate processor "GENA" to Generate processor "GENB". Is there a known solution to this, perhaps a Batch job? We are running on Version 18.0.12. Any information on this is very much appreciated.


  • 2.  RE: Mass update to Endevor Generate Processor names across all the System Environment.

    Broadcom Employee
    Posted Oct 06, 2021 06:04 PM
    Search and Replace?
     
    Bernie Beriau
    Principal Mainframe Software Engineer
    Broadcom CA/Endevor SCM Administrator
    Broadcom Inc.
    +1.781.313.3566 - Office (Internal x33566)
    +1.508.472.3286 - Mobile

    This electronic communication and the information and any files transmitted with it, or attached to it, are confidential and are intended solely for the use of the individual or entity to whom it is addressed and may contain information that is confidential, legally privileged, protected by privacy laws, or otherwise restricted from disclosure to anyone else. If you are not the intended recipient or the person responsible for delivering the e-mail to the intended recipient, you are hereby notified that any use, copying, distributing, dissemination, forwarding, printing, or copying of this e-mail is strictly prohibited. If you received this e-mail in error, please return the e-mail to the sender, delete it from your computer, and destroy any printed copy of it.





  • 3.  RE: Mass update to Endevor Generate Processor names across all the System Environment.

    Broadcom Employee
    Posted Oct 06, 2021 08:39 PM
    Yes, you can use the Endevor Batch administration for this. Search Techdocs for "Manage Environments in Batch".
    The output from this process can be tailored and then used as input.  However, I recommend you start with a small sample.  I seem to remember that you might get errors for attempting to MOVE elements after their Generate processor name has changed.

    A more surgical alternative is the use of the CSV utility and the Table tool. This approach also leverages the Endevor Batch administration facility but can target just the specific area(s) you want to change. In a single job, you can execute the CSV utility to list the processor groups you want to change. Then a Table tool step could include something like this:

    //MODEL DD *
    *Update Gen processor at &PROC_GRP_NAME &SYS_NAME &TYPE_NAME &STG_#
    * previously updated on &UPDT_DATE &UPDT_TIME by &UPDT_USRID
    DEFINE PROCESSOR GROUP '&PROC_GRP_NAME'
          TO ENVIRONMENT &ENV_NAME
                SYSTEM &SYS_NAME
                TYPE &TYPE_NAME
                STAGE NUMBER &STG_#
                GENERATE PROCESSOR NAME IS 'GENB'            
                DO NOT ALLOW FOREGROUND EXECUTION   
        .
    //OPTIONS DD * 
    If PROC_TYPE /= 'GEN' then $SkipRow = 'Y'
    if SYM_OVRD_# > '1' then $SkipRow = 'Y'

    You can review the results before making the output from this job be input to a Batch Administration job.