‎2009 Aug 06 11:16 AM
Dear Friends,
Please suggest me a way to put a link(not a hyper-link) to navigate to the next page. This can be done by putting push button also but i want to create a link like 'href' in J2EE. Eg.- if the user click at 'admin' it should rederect the user to the admin home page.Please reply as soon as possible.
‎2009 Aug 06 11:22 AM
Hi,
You can achieve this by selecting "respond to double click" for the text element in the attributes window.
Thanks,
Sri.
‎2009 Aug 06 11:52 AM
i have selected the option responds to double click in attributes window and simply wrote a test code to the PAI of the screen....but wen i double click it shows a msg 'choose a valid function'. the code as given below--
save_ok = sy-ucomm.
case save_ok.
when 'SAVE' or 'PRNT' or 'FIND'.
message 'THIS FUNCTION IS NOT AVAILABLE' type 'S'.
when 'BACK'.
call screen 100.
when 'EXIT' or 'CNCL'.
leave program.
when '&IC1' .
case sy-lilli.
when 9.
call screen 102.
when 11.
call screen 103.
endcase.
endcase.
‎2009 Aug 06 12:00 PM