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

Integrated Planning: Issue while fetching multiple value for exit variable in class

Former Member
0 Likes
592

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>
1 REPLY 1
Read only

0 Likes
451

Bhushan,

I am facing the same issue, did you find the solution.

Thanks,

Sanjay