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

table control in screen exit

Former Member
0 Likes
709

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

1 REPLY 1
Read only

RaymondGiuseppi
Active Contributor
0 Likes
538

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