Application Development 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: 

adding multiple screens with single screen exit

Former Member
0 Kudos

Hi Gurus,

   Here i need to add 3 tabs but Sap has given only one screen-exit

so i added one tab.

Now according to the requirement i need to create one tabstrip(with 3 tabs) .

1st screen i fill 2 fields

2nd screen i fill 2 fields

3rd screen i fill 1 fields.

How to update all these screen fields at single click(that click is in main screen).

Please do the needful thanks in advance.

Regards,

kranthi

5 REPLIES 5

nabheetscn
Active Contributor
0 Kudos


Hi Kranthi

You have added your one tab as a subscreen right. Now in that subscreen you have a tabstrip with 3 tabs. Now in your PBO of the custom main single strip you are calling your three different tabs basd on which is clicked.

Lets say on those 3 tabs we have different fields. What you can do in PAI of the main subscreen which is where you ahve call for these 3 tab strip you can update all the fields at one go.

Nabheet

0 Kudos

Hi nabheet,

    Here when the user fills data in the field1 on tab1, field2 on tab2 and field3 on tab3

then i need to capture all these 3 fields data into one structure that is enough for me.

   because when the the user click on save which is in the main screen these structure datails

are pickedup by sap and posting is taken care by SAP

thanks and regards,

kranthi

0 Kudos

Keep you all fields as a part of a global work area so that when user clicks on save irrespective of which tab he has opened you should be able to pass back the value in main subscreen PAI back to standard

Nabehet

Former Member
0 Kudos

Create a Function Group and in this FG create 3 sub screens

Create one Function to reset data, one to update, one to pass data to screen and one to receive data from screen.

now use these screens in you one screen exit provided by creating a tabstrip.

Pass data on PBO.

Receive data on PAI.

On click of update call the update FM.

Regards

Former Member
0 Kudos

Hello sir ,

  How to add screen exit in standard user exit of sales order .

Please explain .