‎2008 May 05 9:36 AM
Hello,
How can I create a push putton and an input field in SAP?
‎2008 May 05 9:47 AM
Hi,
In Dialog Programming You can create push puttons and input fields first goto se38 create a driver program, save (copy the program name) and then goto se51 paste here the driver program name and create a screen number say 100 and got to layout , here you find two options (left side). one is PUSHBUTTON and INPUT/OUTPUT fields .just drag n drop on the screen as your requirement.
Reward Points if usefull
Regards
Fareedas
‎2008 May 05 9:41 AM
You can create them for a screen using SE51.
Please have a look at belwo link for processing of them:
[Pushbuttons on the Screen|http://help.sap.com/saphelp_nw70/helpdata/en/9f/dba9a635c111d1829f0000e829fbfe/frameset.htm]
I hope it helps.
Best Regards,
Vibha
Please mark all the helpful answers
‎2008 May 05 9:47 AM
Hi,
In Dialog Programming You can create push puttons and input fields first goto se38 create a driver program, save (copy the program name) and then goto se51 paste here the driver program name and create a screen number say 100 and got to layout , here you find two options (left side). one is PUSHBUTTON and INPUT/OUTPUT fields .just drag n drop on the screen as your requirement.
Reward Points if usefull
Regards
Fareedas
‎2008 May 05 9:54 AM
Incase you need to create in a normal report program, you can check below example:
PARAMETERS: p_text TYPE char20.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN PUSHBUTTON 5(10) but USER-COMMAND com.
SELECTION-SCREEN END OF LINE.
INITIALIZATION.
MOVE 'Button' TO but.