cancel
Showing results for 
Search instead for 
Did you mean: 

Error while calling Subroutine from Script

Former Member
0 Kudos

HI Friends,

I am getting a short dump whilecalling a suboutine from Script.

Please suggest if am wrong with below code

/: PERFORM GET_ADDRESS IN PROGRAM ZSUBROUTINES

/: USING &MHND-KUNNR&

/: CHANGING &ADRS-LINE0&

/: CHANGING &ADRS-LINE1&

/: ENDPERFORM

All above fields are available in script window

In the program

FORM get_address TABLES in_tab STRUCTURE itcsy

out_tab stucture itcsy.

ENDFORM.

Error is

PERFORM_PARAMETER_MISSING

CX_SY_DYN_CALL_PARAM_MISSIN

Thanks

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Your code all looks fine, is the dump definitely related to this subroutine?

Regards,

Nick

P.S. You could have just edited your original post, you didn't need to log it again to add the dump info

Former Member
0 Kudos

Please check your parameters you are passing

there are different parameters in the FORM and different ones in the Perform

The signatures have to match