Assignment method directly in the form

Hello,
I would like to know if it is possible to let the user of a form choose the next one (for exemple for an approval). In my WorkFlow I used the assignment method : Manually by the person who handled.

So now when the form is completed and the user click on the “Send” button they have to choose the next user in an other page through this :
image

I would like to have this user interface directly at the end of the form and not in an other page. Does someone know if it is possible ?

Thank you very much.

Hello,

Kindly open a ticket in our Helpdesk system and we’ll investigate possible solution.

Regards,
Lynn.

Hello,
For a similar case, we added a field to search for a user in the form.

Field “reponsable” is a simple text box.

Drop down list is linked to users table in workflowgen :


The query in the DDL is linked to the previous text box. It filters on username, first and last name.

SELECT ‘’ AS VALUE, ‘Sélectionner un élément …’ AS TEXT
UNION
SELECT ‘’ AS VALUE, ‘Supprimer sélection’ AS TEXT
UNION
SELECT USERNAME AS VALUE,
(USERNAME + ’ - ’ + FIRSTNAME + ’ ’ + LASTNAME) AS TEXT
FROM USERS
WHERE USERNAME LIKE (‘%’ + @FILTRE + ‘%’)
OR LASTNAME LIKE (‘%’ +@FILTRE + ‘%’)
OR FIRSTNAME LIKE (‘%’ +@FILTRE + ‘%’)

Connexion name “ReadMainDbSource” must be added to the web.config (same as MainDbSource line)

<connectionStrings>
<add name="MainDbSource" connectionString="Data Source=bla bla bla;" providerName="bli bli" />
<add name="ReadMainDbSource" connectionString="Data Source=same bla bla bla;" providerName="same bli bli" />    
</connectionStrings>

Best regards