Endevor

 View Only
  • 1.  how to get change details of (lets say 500) elements for a particular region from endevor?

    Posted Sep 29, 2015 07:45 PM

    how to get change details of (lets say 500) elements for a particular region from endevor?



  • 2.  Re: how to get change details of (lets say 500) elements for a particular region from endevor?

    Posted Sep 30, 2015 05:14 PM

    Hello Suhas91

     

    Have you tried you the PRINT Action?

     

    000027  PRINT ELEMENT *

    000028  FROM ENV XYZ  SYSTEM * SUBSYSTEM * TYPE * STAGE NUM 1

    000029    OPTION

    000030      ELEMENT CHANGE  .



  • 3.  Re: how to get change details of (lets say 500) elements for a particular region from endevor?

    Posted Sep 30, 2015 09:20 PM

    Hello Thomas,

     

    where do we find the below lines that you mentioned in endevor??

     

    000027  PRINT ELEMENT *

    000028  FROM ENV XYZ  SYSTEM * SUBSYSTEM * TYPE * STAGE NUM 1

    000029    OPTION

    000030      ELEMENT CHANGE .

     

    I have tried v.en; DEV; U

    U = USER MENU

     

    in that if we choose REPORTS, in that it shows some info regd element.

     

    But doesnt show LAST ELEMENT ACTION (DATE/TIME)......

     

    Please Reply.

     

    Thanks in advance!!!

    Suhas



  • 4.  Re: how to get change details of (lets say 500) elements for a particular region from endevor?

    Posted Oct 01, 2015 10:04 AM

    Suhas91

     

    The PRINT Element action is a batch action not a report.  It can be built and executed by going through the BATCH option on the Primary Options Panel and then selecting option 7 Print Element. 

     

    One can also review the PRINT ELEMENT action in the Endevor SCL GUIDE and build their own JCL and SCL to execute the action.  

     

    If you have any additional questions on how to accomplish  this please open a support issue via CA SUPPORT ONLINE.



  • 5.  Re: how to get change details of (lets say 500) elements for a particular region from endevor?

    Posted Oct 01, 2015 11:18 AM

    Further to Tim's suggestion, I would also suggest experimenting with the LIST ELEMENT CSV requests and resulting data. That might give you more flexibility in terms of formatting the output....



  • 6.  Re: how to get change details of (lets say 500) elements for a particular region from endevor?

    Posted Oct 02, 2015 03:13 PM

    Thanks John for your advice.

     

    I tried below code, it worked fine....

     

    LIST ELEMENT 'xxxxxxx'                                

      VERSION 01 LEVEL 00                                  

      FROM ENVIRONMENT 'TEST' SYSTEM '***' SUBSYSTEM '***' 

        TYPE 'JCL' STAGE X                                 

      OPTIONS NOSEARCH                                     

      BUILD ACTION &&ACTION                                

      TO DDN CSVLST                                        

    .       

     

    But it doesn't display all DATA, further i tried DATA Summary to take change summary which i need but it shows below error:


    LIST ELEMENT 'xxxxxxx'                               

      VERSION 01 LEVEL 00                                 

      FROM ENVIRONMENT 'TEST' SYSTEM '***' SUBSYSTEM '***'

        TYPE 'JCL' STAGE X                                

      DATA SUMMARY                                        

      BUILD ACTION &&ACTION                               

      TO DDN CSVLST                                       

    .                                                    

    BSTPPARS: E004 INVALID COMMAND WORDING, FOUND: DATA   

     

    Please help me correct the syntax!!

     

    Thanks in advance!!!!



  • 7.  Re: how to get change details of (lets say 500) elements for a particular region from endevor?

    Posted Oct 02, 2015 04:45 PM

    to execute a CSV LIST Element function as explained in the Endevor Utilities Guide, used the following SCL as a guide:  

     

    000026 LIST ELEMENT *

    000027 TO DDN CSVLST

    000028 FROM ENVIRONMENT  ......

    000029      SYSTEM .....

    000030      SUBSYSTEM .......

    000031      TYPE      .......

    000032      STAGE NUM  1

    000033   DATA SUM

    000034  .

    If there are additional questions I would recommend opening an issue with the Endevor support team.