Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

FI / U102 problem: Missing parameter -> Dump

Former Member
0 Likes
1,910

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,331

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.

2 REPLIES 2
Read only

Former Member
0 Likes
1,332

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.

Read only

0 Likes
1,331

Thank you Maxim,

somebody had changed this field to 'none' for testing purposes so your hint was very helpful !

Thanks Johann