Hi, One of the client is using Documentum and they are managing a scenario like,

Hi, One of the client is using Documentum and they are managing a scenario like, say a task is assigned to a manager and he needs to take an action on the task, say for example Approve/Reject. As and when he clicks on any one of these actions, he is prompted to provide his user name and password to complete the action. Any pointer to achieve same in Appian?

OriginalPostID-162574

OriginalPostID-162574

  Discussion posts and replies are publicly visible

Parents
  • Hi Mohan, I would like to add to nellimaj's comment. I would suggest using a SAIL wizard. In the first form, have the task form with Approve/reject button. You can have confirmMessage attribute set to the Approve/Reject buttons. On the next form, have two components: a textField - for username and a encryptedTextField - for password.

    Your SAIL code will look something like this:
    load(
    local!option: 1,

    choose(

    local!option ,

    a!formLayout(
    /*Your task form SAIL code goes here.. */
    ),

    a!formLayout(
    /* SAIL code for username and password*/
    )


    )
    )
Reply
  • Hi Mohan, I would like to add to nellimaj's comment. I would suggest using a SAIL wizard. In the first form, have the task form with Approve/reject button. You can have confirmMessage attribute set to the Approve/Reject buttons. On the next form, have two components: a textField - for username and a encryptedTextField - for password.

    Your SAIL code will look something like this:
    load(
    local!option: 1,

    choose(

    local!option ,

    a!formLayout(
    /*Your task form SAIL code goes here.. */
    ),

    a!formLayout(
    /* SAIL code for username and password*/
    )


    )
    )
Children
No Data