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

Regarding Selection screen

Former Member
0 Likes
358

Hi,

can you giv me a brief introduction regarding selection screen with one eg:

pls help me..

regards

shyja

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
341

Hi,

It is an user interface to interact with an application of SAP or a report.

Simply type in your exectable program,

selection-screen: begin of block b1.

parameters: par type matnr.

selection-screen: end of block b1.

Output: Will show you the box having material nos to choose.

Check this:

http://help.sap.com/saphelp_nw04/helpdata/en/56/1eb6c705ad11d2952f0000e8353423/content.htm

Reward if useful!

3 REPLIES 3
Read only

Former Member
0 Likes
342

Hi,

It is an user interface to interact with an application of SAP or a report.

Simply type in your exectable program,

selection-screen: begin of block b1.

parameters: par type matnr.

selection-screen: end of block b1.

Output: Will show you the box having material nos to choose.

Check this:

http://help.sap.com/saphelp_nw04/helpdata/en/56/1eb6c705ad11d2952f0000e8353423/content.htm

Reward if useful!

Read only

Former Member
0 Likes
341

HI,

TABLES:MARA.

selection-screen begin of screen 100.

parameters:name(10).

SELECT-OPTIONS:S_MATNR FOR MARA-MATNR.

selection-screen end of screen 100.

CALL SELECTION-SCREEN 100.

if u simply write as below also it will give u the same screen.that is a default selection screen with screen number 1000.u don't need to call this default selection-screen.

TABLES:MARA.

parameters:name(10).

SELECT-OPTIONS:S_MATNR FOR MARA-MATNR.

for more help on selection-screen place ur cursor on 'selection-screen' and press F1.

rgds,

bharat.

Read only

amit_khare
Active Contributor
0 Likes
341

Search https://www.sap-img.com

for 'selection screen' you will get lots of examples there.

Also check tcode ABAPDOCU for real time examples.

You can also go through SAP HELP for examples and details.

Regards,

Amit

reward all helpful replies.