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

Module pool screen modification

Madhurivs23
Participant
0 Likes
588

Hi,

I have developed a screen.

In that, the listbox gets filled up with some values for eg. customer.

after user selects the customer from the listbox, the label field should get the customer name after pressing enter key.

how to do it?

rgrds

Madhuri

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
565

hai

go to flow logic

PROCESS AFTER INPUT.

MODULE USER_COMMAND_0010.

&----


*& Module USER_COMMAND_0010 INPUT

&----


  • text

----


MODULE USER_COMMAND_0010 INPUT.

case ok_code.

when 'ENTE'.

select single name1

from kna1

into screen_label

where kunnr eq customer.

endcase.

ENDMODULE. " USER_COMMAND_0010 INPUT

4 REPLIES 4
Read only

Former Member
0 Likes
566

hai

go to flow logic

PROCESS AFTER INPUT.

MODULE USER_COMMAND_0010.

&----


*& Module USER_COMMAND_0010 INPUT

&----


  • text

----


MODULE USER_COMMAND_0010 INPUT.

case ok_code.

when 'ENTE'.

select single name1

from kna1

into screen_label

where kunnr eq customer.

endcase.

ENDMODULE. " USER_COMMAND_0010 INPUT

Read only

0 Likes
565

Hi Subhash

Thanks for the help

Read only

Former Member
0 Likes
565

hi,

in flow logic

in pai event.

try like this,

select single kunnr from kna1 where kunnr = listbox-name into screen-name = 'label'. [where listbox name is the name selected by customer].

if helpful reward some points.

with regards,

Suresh Aluri.

Read only

0 Likes
565

Hi Suresh

thanks for the help