cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

List for an input field in Rf framework

Former Member
0 Kudos
3,943

Hi,

This is my screen  (created using rf framework)

Rsrc group is an input field, clicking on f8 by placing cursor on I/o field,

corresponding list values are displayed,following is the screen

Iam not able to pull the value to  field .

It should happen automatically when we click on on pushbutton 1.manager .

Please help me to solve this problem.

Thanks in Advance.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi swetha,

create a module in PBO of a screen, in which there is a list box.

then fill the list box using the methods mentioned below

1.     /SCWM/CL_RF_BLL_SRVC=>INIT_LISTBOX (field name)

          To refresh the list box.

2.     /SCWM/CL_RF_BLL_SRVC=>INSERT_LISTBOX (field name, value, and text)

         To fill the list box.    

   

Also you need to add FCODE 'LIST'  in the Function Code profile and assign F8 as function key to it.

Note : INSERT_LISTBOX method should be called 'n' times if you need 'n'                     values in your list box.

Former Member
0 Kudos


Hi Sunil,

Thank you,Its working.....

Answers (0)