hello together
I am looking for a way to transfer the parameters from the FloorPlan Manger to the POWL. The POWL is embedded in a WD component and this WD component is in FPM embedded .In the WD component I get the parameters from the FPM with:
DATA: lr_fpm TYPE REF TO if_fpm,
lr_if_fpm_parameter TYPE REF TO if_fpm_parameter,
lt_keys TYPE TABLE OF string,
lv_string TYPE string.
lr_fpm = cl_fpm_factory=>get_instance( ).
lr_if_fpm_parameter = lr_fpm->mo_app_parameter.
********** get result *************
CALL METHOD lr_if_fpm_parameter->get_value
EXPORTING
iv_key = 'RESULT'
IMPORTING
ev_value = lv_string.
but if I try to get the parameters from the FPM to the POWL feeder class it returned a null object.
Has anybody done this before, if so, please help me with the solution?
Thanks a lot for your help
Regards,
Jim