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: 

push puttons and input fields

Former Member
0 Kudos

Hello,

How can I create a push putton and an input field in SAP?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

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

3 REPLIES 3

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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.