cancel
Showing results for 
Search instead for 
Did you mean: 

dump

Former Member
0 Kudos

Hi gurus,

CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'

EXPORTING

i_name = pa_form

IMPORTING

e_funcname = gv_fm_name.

some times this FM is giving dump.

please can anyone explain why?

thanks and regards

D.sharma

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member705122
Active Contributor
0 Kudos

Hi,

I think you have to catch the exceptions,

TRY.
CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
      EXPORTING
           i_name = pa_form
      IMPORTING
           e_funcname = gv_fm_name.
      CATCH cx_fp_api_repository.
      CATCH cx_fp_api_usage.
      CATCH cx_fp_api_internal.
    ENDTRY.

Hope this will help you.

Regards

Adil

Former Member
0 Kudos

Hi,

What is the abap dump about?

Cheers.