2014 May 21 9:41 AM
Hi,
I have created own code within U102, program RGGBS00, and activated it.
When I run it, e.g. from FB01, I get a dump, with note 'PERFORM_PARAMETER_MISSING'.
When I go through the dump, I see that when the FORM u102 is called from the SAP program, the necessary BOOL_DATA is not provided as a using parameter.
Is this an error or problem in the SAP part?
Regards Johann
2014 May 21 10:11 AM
Hi,
check definition of form u102
exits-name = 'U102'.
exits-param = c_exit_param_field. " replace by c_exit_param_none (without parameters)
exits-title = text-102.
APPEND exits.
2014 May 21 10:11 AM
Hi,
check definition of form u102
exits-name = 'U102'.
exits-param = c_exit_param_field. " replace by c_exit_param_none (without parameters)
exits-title = text-102.
APPEND exits.
2014 May 21 4:01 PM
Thank you Maxim,
somebody had changed this field to 'none' for testing purposes so your hint was very helpful !
Thanks Johann