‎2007 Jul 05 4:40 AM
Hi,
can you giv me a brief introduction regarding selection screen with one eg:
pls help me..
regards
shyja
‎2007 Jul 05 4:44 AM
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!
‎2007 Jul 05 4:44 AM
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!
‎2007 Jul 05 4:47 AM
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.
‎2007 Jul 05 4:50 AM
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.