cancel
Showing results for 
Search instead for 
Did you mean: 

Get parameters from FPM to POWL

Former Member
0 Kudos

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

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Try method GET_URL_PARAMETER of ABAP class CL_WD_RUNTIME_SERVICES. Another option is to define the application parameters in the Web Dynpro application, that way the parameters will be exposed via IF_FPM->MO_APP_PARAMETER.

Answers (0)