Hi, Is there a way to have better access to Tempo apps? There are a l

Hi,

Is there a way to have better access to Tempo apps? There are a lot of clicks to get into the application as Launch Tempo -> Actions -> Go to a specific App -> Launch the action. Can we have a URL from where users can directly start the actions? I see that the actions can be marked as favourites or starred. Also, when I tried to create the dynamic URl, it just shows all the applications but not a particular one and its action URL can be created.

Any help regarding this will be appreciated. Thanks! ...

OriginalPostID-106100

OriginalPostID-106100

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    you can create intuitive URL to launch your process model from external system in one click.
    e.g
    In our case below is the URL to launch the process model , this will navigate you to the start form of the process model in single click.
    172.18.1.27:8080/.../configureprocess.simplepopup

    To answer your second question of DB number should get displayed on first form and form should get submit automatically.you can follow following approach
    pass the DB number in URL as parameter and use the below JavaScript on your start form

    function gup( name ){
    name = name.replace(/[\\[]/,"\\\\\\[").replace(/[\\]]/,"\\\\\\]");
    var regexS = "[\\\\?&]"+name+"=([^&#]*)";
    var regex = new RegExp( regexS );
    var results = regex.exec( window.location.href );
    if( results == null ) return "";
    else return results[1];}

    here name is parameter name, in our case name is 'encounterID', this will return you the parameter value(101306284013).
    once you have the parameter value save this in one of the field using JavaScript function and save field value in process variable,
    and for auto submitting form you can use auto submit JavaScript


    Note:- I am assuming that your form is not mobile enabled, else you will be not able to use javaScript and auto submit of form.
Reply
  • 0
    Certified Lead Developer
    you can create intuitive URL to launch your process model from external system in one click.
    e.g
    In our case below is the URL to launch the process model , this will navigate you to the start form of the process model in single click.
    172.18.1.27:8080/.../configureprocess.simplepopup

    To answer your second question of DB number should get displayed on first form and form should get submit automatically.you can follow following approach
    pass the DB number in URL as parameter and use the below JavaScript on your start form

    function gup( name ){
    name = name.replace(/[\\[]/,"\\\\\\[").replace(/[\\]]/,"\\\\\\]");
    var regexS = "[\\\\?&]"+name+"=([^&#]*)";
    var regex = new RegExp( regexS );
    var results = regex.exec( window.location.href );
    if( results == null ) return "";
    else return results[1];}

    here name is parameter name, in our case name is 'encounterID', this will return you the parameter value(101306284013).
    once you have the parameter value save this in one of the field using JavaScript function and save field value in process variable,
    and for auto submitting form you can use auto submit JavaScript


    Note:- I am assuming that your form is not mobile enabled, else you will be not able to use javaScript and auto submit of form.
Children
No Data