‎2008 Jun 05 5:38 PM
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?
‎2008 Jun 05 6:13 PM
Check your perform statement that is calling the form.
In your perform statement, you should be passing bool_data and result.
Srinivasa Varrey
‎2008 Jun 05 6:28 PM
It is a sap generated program thats calling the form. I'm not suppose to change it.
‎2008 Jun 10 3:57 PM
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.