Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Retain previous entry from first view after processing

Former Member
0 Likes
524

Hi Gurus,

We have requirement that after processing, when I click on the return to first page, the previous entries to the input fields should be retained.

The current process is that after the first page, the second page is called to display the message of the processing and there is a link to return to first page however previous entries are already refreshed.

Please help how to do it. Thanks!

3 REPLIES 3
Read only

antony_paul2
Active Participant
0 Likes
471

Set Parameter IDs for all the fields of the first screen.

Read only

awin_prabhu
Active Contributor
0 Likes
471

When the link or BACK button is clicked from 2nd page, in the USER_COMMAND use like below,


CASE ok_code.
  WHEN 'BACK'.
    GET PARAMETER ID 'WRK' FIELD p_werks.
ENDCASE.

Also navigate to System -> User Profile -> Own Data -> Parameters tab -> Enter WRK (Parameter ID) & 5140 (Parameter value) -> Save -> Logoff and login -> Now run your program.

Similarly set Parameter ids for required fields. For Plant it is WRK, similarly for other fields we can find it in the Further Characteristics tab of their Data elements.

Read only

0 Likes
471

HI Sap Fan and Antony Paul,

Thanks for your response!

Sorry, I forgot to include that the requirement is for BSP. Thanks!