‎2008 Oct 25 8:29 AM
hi all,
I am able to put a table control in subscreen of co11n using CONFPP07 exit.
but when i am trying to write pbo & pai events for the same in include ZXCOFZZZ of SAPLXCOF it is showing internal table is unkown or not declared.
how to proceed?
Regards,
Uday Madhav
‎2008 Oct 26 1:53 PM
Declare the global exit data in the TOP include (global data) of the exit function group main program SAPLXCOF which contains an include (ZXCOFTOP in LXCOFTOP) for this.
Usually, there is an exit function to transfer data from calling program to exit function group program (here ZXCOFU23 in EXIT_SAPLCORU_S_100) and another to wrtie back (here ZXCOFU24 in EXIT_SAPLCORU_S_101), these functions must write and update data defined in this include, as will modules included in PBO/PAI of the screen exit (in ZXCOFZZZ).
- Define global data (controls, internal table, work area, etc) in ZXCOFTOP
- Move data from caller to global data in ZXCOFU23
- Define the flow logic in exit dynpro SAPLXCOF 090x
- Define modules in ZXCOFZZZ
- Move updated data from global data in ZXCOFU24
Regards