‎2007 Jul 23 3:07 PM
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
‎2007 Jul 23 3:11 PM
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.
‎2007 Jul 23 3:11 PM
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.
‎2007 Jul 23 3:12 PM
Hi see following link:
http://www.sapmaterial.com/dialog_programming.html
Reward point if helpful.
Regards.
Srikanta Gope
‎2007 Jul 23 3:15 PM
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.