2010 Mar 30 9:40 AM
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
2010 Mar 30 10:02 AM
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é
2010 Mar 30 11:38 AM
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