‎2009 Jun 01 1:05 PM
Hi,
I want to create a selection screen which will have three fields(Field1,Field2,Field3).And the F4 entry for all the three fields to be linked to three different tables(T1,T2 and T3).When I choose the field1 and field2 value, the field3 value is to be populated automatically.This means all the three fields are linked.
Now when I press F8, one more selection screen should come where I can upload a file from presentation server.
Can anyone tell me how to develop the code.I am new to interactive reporting.
Thanks.
‎2009 Jun 01 1:12 PM
Hi,
Check this link for you first question http://docs.google.com/Doc?id=dfv2hmgs_15dkrx8rfh&hl=en
2. use the method CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG
call method cl_gui_frontend_services=>file_open_dialog.
exporting
window_title = 'Select Files'
default_extension = '*.txt'
changing
file_table = it_pcfiles
rc = lv_rc.
‎2009 Jun 01 1:10 PM
Hi,
For u r first req. U have to create a new collective search help.
Kiran
‎2009 Jun 01 1:12 PM
Hi,
Check this link for you first question http://docs.google.com/Doc?id=dfv2hmgs_15dkrx8rfh&hl=en
2. use the method CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG
call method cl_gui_frontend_services=>file_open_dialog.
exporting
window_title = 'Select Files'
default_extension = '*.txt'
changing
file_table = it_pcfiles
rc = lv_rc.