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

Trouble with modulepool

Former Member
0 Likes
538

Hi,

I'm creating a modulepool screen with an input field and some output fields (all in the same screen).

The program has to do the following: when I enter data in the input field and press enter, the output fields have to fill with data from a select. I don't know how to control the pressing of the enter key.

Thanks

Carles

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
520

HI,

goto ABAPDOCU tcode.

select ABAP User Dialogs ->Screens ->Processing Screens ->Input and Output Fields on Screeos

THERE U CAN SEE AN EXAMPLE SIMILAR TO UR REQUIREMENT.

<b>reward if helpful</b>

rgds,

bharat.

3 REPLIES 3
Read only

Former Member
0 Likes
521

HI,

goto ABAPDOCU tcode.

select ABAP User Dialogs ->Screens ->Processing Screens ->Input and Output Fields on Screeos

THERE U CAN SEE AN EXAMPLE SIMILAR TO UR REQUIREMENT.

<b>reward if helpful</b>

rgds,

bharat.

Read only

Former Member
0 Likes
520

Hi see following link:

http://www.sapmaterial.com/dialog_programming.html

Reward point if helpful.

Regards.

Srikanta Gope

Read only

Former Member
0 Likes
520

Hi,

U have to use the system field sy-ucomm.

In the PAI of the screen.

Module m.

Module m.

case sy-ucomm.

when 'ENTER'.

.......

endcase.

Endmodule.