Clarity

  • 1.  Process to validate documents uploaded in CA PPM

    Posted Sep 29, 2017 02:09 PM

    Hello guys, 

     

    I don´t know to how can I create process to validate if a file has been uploaded to CA. 

    Is it possible to perfonrm this validation?

     

    Thanks for your help. 

     

    Regards, 



  • 2.  Re: Process to validate documents uploaded in CA PPM
    Best Answer

    Posted Sep 29, 2017 02:27 PM

    Hi Saulex,

     

    You can use the following:

     

    <util:available uri="file:${fullpath}">
    ....
    </util:available>

     

    With fullpath being the full path where your file is "supposed" to be stored.

     

    If it is available, then the process will run the code where the "..." is.

     

    Make sure to declare: xmlns:util="jelly:util" in your <gel:script .... >

     

    Hope that helps..