How to connect three UI via a portal if we want simultaneous UI one after the other based on some conditions.

Certified Senior Developer

Hi Experts,

I have one more question regarding the portals. I have three UIs, one is the initial form and the second is the verification UI wherein user will provide the verification code received via an email and if the entered code matches with the email code then we will show up the third UI to provide further details and then it will submit the form.
How can this be achieved from technical POV?

Any solutions/suggestions will be highly appreciated. Thank you!

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

     

    Please try this if feasible

    In the portal object, have 2 pages. One page for Initial data and the other page that combines the verification and data display part.

    In the initial form get needed data and upon submission, save the entered details in temp table. The temp table should also have a column to store the code to be verified with. Then send the email to the user with a reference id and the code (reference id can be primary key from the temp table). You can also include a link to the second page to navigate from the email.

    With the reference id and code from email, user can come to the second page of the portal and validate themselves. If it is a legit user we can display the data.

Reply
  • 0
    Certified Lead Developer

     

    Please try this if feasible

    In the portal object, have 2 pages. One page for Initial data and the other page that combines the verification and data display part.

    In the initial form get needed data and upon submission, save the entered details in temp table. The temp table should also have a column to store the code to be verified with. Then send the email to the user with a reference id and the code (reference id can be primary key from the temp table). You can also include a link to the second page to navigate from the email.

    With the reference id and code from email, user can come to the second page of the portal and validate themselves. If it is a legit user we can display the data.

Children
No Data