‎2017 Jan 16 9:18 AM
Hello,
I am not able to fetch the multiple values for the variable defined in BI-IP area in custom class.
Below is the code snippet I have I am using the method CHECK_PARAM_SET of the interface IF_RSPLFA_SRVTYPE_IMP_CHECK in custom class assigned to planning function type. The coded is returning the single value for the variable which holds multiple values.While defining the parameter for the function type using tcode RSPLF1
I have checked the checkbox for 'Parameter Is Tabular' Please let me know if how to get the multiple values for the variable.
CALL METHOD i_r_param_set->get_tab_param_elem
EXPORTING
i_param_name = lv_param * (Variable holding multiple value)
RECEIVING
r_t_param_elem = l_r_t_param_elem.
LOOP AT l_r_t_param_elem INTO l_r_param_elem.
l_r_param_elem->get_value( IMPORTING e_value = ls_fisper-period ).
APPEND ls_fisper TO gt_fisper.
CLEAR ls_fisper.
ENDLOOP.
<br>
‎2017 Feb 14 5:10 PM
Bhushan,
I am facing the same issue, did you find the solution.
Thanks,
Sanjay