cancel
Showing results for 
Search instead for 
Did you mean: 

How to navigate to previous step from the "confirmation screen" in GAF

Former Member
0 Kudos

How to navigate to previous step from the "confirmation screen" in GAF application?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello Anthony,

As per the UI guidelines, the confirmation step is the last step of the GAF. As a result, once you are on the confirmation screen, it is not possible to go back to a previous step. Hence it is also not supported by FPM.

Regards

Rohan

Former Member
0 Kudos

Let's say I want to start over from step 1 like " Go to the next planning" after I finish all the steps. Are you sure that it is not possible? Thanks!

ChrisPaine
Active Contributor
0 Kudos

Hi Anthony,

Yes it is possible!

just fire the FPM event start over from your confirmation screen component

e.g.

data: lo_fpm type ref to if_fpm,
        lo_event type ref to cl_fpm_event.


  lo_fpm = cl_fpm=>get_instance( ).
  lo_event = cl_fpm_event=>create_by_id( cl_fpm_event=>gc_event_start_over ).

  lo_fpm->raise_event( lo_event ).

Cheers,

Chris

Former Member
0 Kudos

Thank you Chris for your solution!

Answers (0)