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

Screen development

Former Member
0 Likes
381

Hi All,

I am having a screen with two text box. One text box I took as a lebel.

My requirement is when I put f4 help on text1 then the data automatically updated

in text2(label).

for text1 I took FM RH_OBJID_REQUEST and value comes in text1.

how will I change the label text2 accordingly. Any FM is there for this.

Please help me.

Thanks,

Rakesh

2 REPLIES 2
Read only

Former Member
0 Likes
348

Hi,

you have to use event blocks.

eg: http://it.toolbox.com/wiki/index.php/ABAP_Documentation_for_Newbies

...when sth. happens on your screen an event will be triggered doing sth.

Cheers,

André

Read only

Former Member
0 Likes
348

Hi Rakesh,

In the VALUE REQUEST event just pass the new value to the second text box field. It will automatically change.

Process on value-request.

module request.

module request input.

if text_box1 = '1'.

text_box2 = '2'.

endif.

endmodule.

Thanks,

Srinath s

Edited by: Srinath Srinivasan on Mar 30, 2010 12:39 PM