Endevor

 View Only
Expand all | Collapse all

Managing Endevor Inflight Elements

  • 1.  Managing Endevor Inflight Elements

    Posted Oct 24, 2024 06:26 AM

    Can someone share with me on how they manage Endevor inflight elements.

    I can easily run CSV Element Reports and manually send a report out to each system but that is time consuming.

    please share your thoughts.. 



  • 2.  RE: Managing Endevor Inflight Elements

    Posted Oct 25, 2024 12:18 PM

    Code the move processors to write to a database? We enforce (with package exit) a requirement that a particular type of element be in our packages (with an element name matching with the package name) and the move processor for that element conditionally sends email notifications to whoever wants to know about particular package executions. We also create automated monthly reports of package activity (REXX programs), but that is not "in flight".



    ------------------------------
    [FirstName]
    ------------------------------



  • 3.  RE: Managing Endevor Inflight Elements

    Posted Oct 25, 2024 01:03 PM
    Thank you Mathew for your response..

    Just to be sure, I ask my question correctly..

    I consider 'INFLIGHT' elements as elements that are NOT in stage 'P'.
    My goal is to generate a list of elements that are not in stage 'P' for over 30days.

    With my re-explanation would your suggestion still apply to my request?

    Allen Newton
    Systems Administrator II - STS
    Endevor Administrator
    ______________________________________________

    [signature_219201347]<http: travelport.com>

    Office: +1 (404) 322-4420
    allen.newton@travelport.com<mailto:allen.newton@travelport.com>
    [Icon Description automatically generated]<https: www.linkedin.com company travelport>[Icon Description automatically generated]<https: www.facebook.com travelportglobal>[A picture containing text Description automatically generated]<https: twitter.com travelport>[Icon Description automatically generated]<https: www.instagram.com travelportofficial> [A picture containing electronics, image Description automatically generated] <https: www.youtube.com user travelporttube>




  • 4.  RE: Managing Endevor Inflight Elements

    Posted Oct 25, 2024 03:36 PM

    If you mean the time in-between moving to the prod stage and shipment, to actual implementation to the live libraries.

    We automatically sign out the elements to #PENDING when the package is executed/shipped. 

    Then when the change is implemented we sign the elements back in (as long as they are still signed out to #PENDING)




  • 5.  RE: Managing Endevor Inflight Elements

    Posted Oct 25, 2024 09:55 PM
    Thank you, Evelyn, for your response..

    Maybe I am misunderstood when I say Inflight Elements but perhaps, I might need to say Orphan Elements.
    Issue: Our developers in conjunction with staff reduction have the tendency of pulling elements from stage 'PROD' and leaving the element abandoned.

    Please advise..

    Allen Newton
    Systems Administrator II - STS
    Endevor Administrator
    ______________________________________________

    [signature_219201347]<http: travelport.com>

    Office: +1 (404) 322-4420
    allen.newton@travelport.com<mailto:allen.newton@travelport.com>
    [Icon Description automatically generated]<https: www.linkedin.com company travelport>[Icon Description automatically generated]<https: www.facebook.com travelportglobal>[A picture containing text Description automatically generated]<https: twitter.com travelport>[Icon Description automatically generated]<https: www.instagram.com travelportofficial> [A picture containing electronics, image Description automatically generated] <https: www.youtube.com user travelporttube>




  • 6.  RE: Managing Endevor Inflight Elements

    Posted Oct 28, 2024 07:32 AM

    All our developers have override signout authority so signout in PROD isn't an issue.

    Once a year we archive all elements in the development stages that are over five years old. We send the users a warning with the list of elements that we are going to delete, along with instructions on how to recover the elements from the archive file. If they want to keep any elements we advise then users to generate them which will remove them from our list.




  • 7.  RE: Managing Endevor Inflight Elements

    Posted Oct 29, 2024 05:59 AM
    Thank you Emlyn, I like your idea, I would put a game plan to do the following:

    Game plan to transfer/delete inflght elements.


    * select elements via CSV report
    * create SCL to transfer/delete each element via REXX (do you have a REXX program to build SCL?)
    * send email to programmer's.. and release archive job 1 week later

    Allen Newton
    Systems Administrator II - STS
    Endevor Administrator
    ______________________________________________

    [signature_219201347]<http: travelport.com>

    Office: +1 (404) 322-4420
    allen.newton@travelport.com<mailto:allen.newton@travelport.com>
    [Icon Description automatically generated]<https: www.linkedin.com company travelport>[Icon Description automatically generated]<https: www.facebook.com travelportglobal>[A picture containing text Description automatically generated]<https: twitter.com travelport>[Icon Description automatically generated]<https: www.instagram.com travelportofficial> [A picture containing electronics, image Description automatically generated] <https: www.youtube.com user travelporttube>




  • 8.  RE: Managing Endevor Inflight Elements

    Posted Oct 29, 2024 06:28 AM

    We list all the elements in the development stages with CSV (NOCSV). Then use DFSORT to select the elements by last action date, and also build the SCL from the CSV output at the same time.

    SORT FIELDS=(ALELM-RS-SUBSYS,A,ALELM-RS-ELEMENT,A)
    INCLUDE COND=(ALELM-RS-RECTYP,EQ,C'M',AND,        
                  ALELM-RS-NOSOURCE,EQ,C'N',AND,      
                  ALELM-RS-LACT-DATE,LT,&FROMDATE)    
    OUTFIL OUTREC=(1:C'ARCH ELE ',1155,71,/,          
                   2:C'FRO ENV ',ALELM-RS-ENV,        
                     C'SYS ',ALELM-RS-SYSTEM,         
                     C'SUB ',ALELM-RS-SUBSYS,         
                     C'TYP ',ALELM-RS-TYPE,           
                     C' STA ',ALELM-RS-STG-ID,C' .',  
                     C' * ',ALELM-RS-LACT-DATE)       

    For SOURCELESS (ALELM-RS-NOSOURCE,EQ,'Y') elements we just delete them without archive.




  • 9.  RE: Managing Endevor Inflight Elements

    Posted Oct 29, 2024 07:42 AM
    Thank you Emlyn, I will try these sort cards..

    Allen Newton
    Systems Administrator II - STS
    Endevor Administrator
    ______________________________________________

    [signature_219201347]<http: travelport.com>

    Office: +1 (404) 322-4420
    allen.newton@travelport.com<mailto:allen.newton@travelport.com>
    [Icon Description automatically generated]<https: www.linkedin.com company travelport>[Icon Description automatically generated]<https: www.facebook.com travelportglobal>[A picture containing text Description automatically generated]<https: twitter.com travelport>[Icon Description automatically generated]<https: www.instagram.com travelportofficial> [A picture containing electronics, image Description automatically generated] <https: www.youtube.com user travelporttube>




  • 10.  RE: Managing Endevor Inflight Elements

    Posted Oct 29, 2024 11:03 AM
    Emlyn attached is my 'NOCSV' report using the SCL below.
    It does not reflect the columns in the Sort cards.

    Am I running the correct report?
    We are on version 19.0.


    //CSVIPT01 DD * DISP=SHR,DSN=PM0AJN.ND
    LIST ELEMENT '*'
    FROM SYSTEM 'TV1P' SUBSYS '*' ENVIRONMENT '*'
    STAGE '*' TYPE '*' TO DDNAME 'LISTELMS'
    NOCSV
    .

    Allen Newton
    Systems Administrator II - STS
    Endevor Administrator
    ______________________________________________

    [signature_219201347]<http: travelport.com>

    Office: +1 (404) 322-4420
    allen.newton@travelport.com<mailto:allen.newton@travelport.com>
    [Icon Description automatically generated]<https: www.linkedin.com company travelport>[Icon Description automatically generated]<https: www.facebook.com travelportglobal>[A picture containing text Description automatically generated]<https: twitter.com travelport>[Icon Description automatically generated]<https: www.instagram.com travelportofficial> [A picture containing electronics, image Description automatically generated] <https: www.youtube.com user travelporttube>




  • 11.  RE: Managing Endevor Inflight Elements

    Posted Oct 29, 2024 11:16 AM

    You'll have to work out your own sort columns, replacing ALELM-RS-SUBSYS with 31,8,CH etc.




  • 12.  RE: Managing Endevor Inflight Elements

    Broadcom Employee
    Posted Oct 29, 2024 12:05 PM

    You can use the Table-Tool-CSV-Sorting and not have to be concerned about sort columns.




  • 13.  RE: Managing Endevor Inflight Elements

    Posted Nov 01, 2024 12:15 PM
    This is my sort code, it works with the exception my Element could be less that 8 and my type can be less than 4, so I have trailing spaces in those fields.

    [cid:image007.png@01DB2C57.A836EB70]


    Can you advise?


    SORT FIELDS=COPY
    OUTFIL BUILD=(4:C'ARCH ELE ',C'''',12,8,C''''/,
    4:C'FRO ENV ',C'''',2,4,C''''/,
    4:C'SYS ',C'''',22,4,C''''/,
    4:C'SUBSYS ',C'''',32,6,C''''/,
    4:C'TYPE ',C'''',42,4,C''''/,
    C'TO ENVIRONMENT OBSOLETE SYSTEM OBS SUBSYSTEM OBS00',/,
    C' TYPE ',C'''',42,4,C''''/,
    C' OPTIONS CCID NDVRMAINT COMMENTS XXXX OVERRIDE SIGNOUT',/,
    C' SYNCHRONIZE BYPASS ELEMENT DELETE',/,
    C' BYPASS GENERATE PROCESSOR'/,
    C' .')

    Allen Newton
    Systems Administrator II - STS
    Endevor Administrator
    ______________________________________________

    [signature_219201347]<http: travelport.com>

    Office: +1 (404) 322-4420
    allen.newton@travelport.com<mailto:allen.newton@travelport.com>
    [Icon Description automatically generated]<https: www.linkedin.com company travelport>[Icon Description automatically generated]<https: www.facebook.com travelportglobal>[A picture containing text Description automatically generated]<https: twitter.com travelport>[Icon Description automatically generated]<https: www.instagram.com travelportofficial> [A picture containing electronics, image Description automatically generated] <https: www.youtube.com user travelporttube>




  • 14.  RE: Managing Endevor Inflight Elements

    Posted Oct 29, 2024 11:19 AM
    Allen Newton
    Systems Administrator II - STS
    Endevor Administrator
    ______________________________________________

    [signature_219201347]<http: travelport.com>

    Office: +1 (404) 322-4420
    allen.newton@travelport.com<mailto:allen.newton@travelport.com>
    [Icon Description automatically generated]<https: www.linkedin.com company travelport>[Icon Description automatically generated]<https: www.facebook.com travelportglobal>[A picture containing text Description automatically generated]<https: twitter.com travelport>[Icon Description automatically generated]<https: www.instagram.com travelportofficial> [A picture containing electronics, image Description automatically generated] <https: www.youtube.com user travelporttube>




  • 15.  RE: Managing Endevor Inflight Elements

    Posted Oct 25, 2024 09:57 PM
    Sorry I meant Emlyn… 😊

    Allen Newton
    Systems Administrator II – STS
    Endevor Administrator
    ______________________________________________

    [signature_219201347]<http: travelport.com>

    Office: +1 (404) 322-4420
    allen.newton@travelport.com<mailto:allen.newton@travelport.com>
    [Icon Description automatically generated]<https: www.linkedin.com company travelport>[Icon Description automatically generated]<https: www.facebook.com travelportglobal>[A picture containing text Description automatically generated]<https: twitter.com travelport>[Icon Description automatically generated]<https: www.instagram.com travelportofficial> [A picture containing electronics, image Description automatically generated] <https: www.youtube.com user travelporttube>