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

OB28 user exit validation

Former Member
0 Likes
1,535

Hi all,

I have been trying to figure out this for a couple of days now. In ZRGGBR000 where you put the user exits, I'm trying to figure out how to pass BOOL_DATA to my user exit.

heres my code:

FORM GET_EXIT_TITLES

exits-name = 'UZ900'.

exits-param = c_exit_param_class. "complete data

exits-title = text-105.

APPEND exits.

ENDFORM.

FORM uZ900 USING bool_data

CHANGING b_result.

ENDFORM.

now when the generated program calls form uz900, I'm getting a short dump saying the program call pass 1 parameter while uz900 is expecting 2. Does anyone know how to solve this?

3 REPLIES 3
Read only

Former Member
0 Likes
1,162

Check your perform statement that is calling the form.

In your perform statement, you should be passing bool_data and result.

Srinivasa Varrey

Read only

0 Likes
1,162

It is a sap generated program thats calling the form. I'm not suppose to change it.

Read only

0 Likes
1,162

We finally got the code to start seeing the structure bool_data. I'm not sure how it started working, I think it had something to do with the functional guy doing the validation part.