Forward to another Adaptive Form | Community
Skip to main content
Level 2
April 27, 2020
Solved

Forward to another Adaptive Form

  • April 27, 2020
  • 2 replies
  • 6426 views

Hi
I've this scenario where I display a list of records in an Adaptive Form. On clicking a particular record, I InvokeService and pass
Ticket Number and Email address. This service is configured in swagger doc and using POST method. I'm getting the result and now need
to call another Adaptive Form and pass this data.

How do i pass this data to another Adaptive Form.This Adaptive Form is bind to a data model and in the below ImpairmentDetails function i'm getting its
json response. So i should be able to forward to this Adapive Form with the data model.

Please let me know if you need any additional details.


var ImpairmentDetails = function(jsonResult) {

}

guidelib.dataIntegrationUtils.executeOperation(operationInfo, inputs, outputs,ImpairmentDetails);

 

 

Thanks & Regards

   Suresh

 

@mayank_gandhi 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Mayank_Gandhi

Hi @sureshp23286254,

 

Why creating 2 different AF. Use wizard layout keep ticket number in one panel and another form in the second panel and pass the control to the next section of the form after calling the FDM from the first panel. Or, keep all the panels on the same page hide all the panels except ticket number and once you have the JSON then show other panels. Save yourself from session handling and tedious design.

2 replies

Mayank_Gandhi
Adobe Employee
Mayank_GandhiAdobe EmployeeAccepted solution
Adobe Employee
April 27, 2020

Hi @sureshp23286254,

 

Why creating 2 different AF. Use wizard layout keep ticket number in one panel and another form in the second panel and pass the control to the next section of the form after calling the FDM from the first panel. Or, keep all the panels on the same page hide all the panels except ticket number and once you have the JSON then show other panels. Save yourself from session handling and tedious design.

Mayank_Gandhi
Adobe Employee
Adobe Employee
April 27, 2020
@sureshp23286254 Either of two should be fine. See what's easy and clean approach based on the layout.
Level 8
April 27, 2020

Let me send you a sample form