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

Interactive List

Former Member
0 Likes
351

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
323

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.

2 REPLIES 2
Read only

Former Member
0 Likes
323

Hi,

For u r first req. U have to create a new collective search help.

Kiran

Read only

Former Member
0 Likes
324

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.