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

Structure in a User-Exit

Former Member
0 Likes
747

Hi Folks,

I am using an function module exit EXIT_SAPLOIIQ_001. While this exit gets triggered a few programs are also called during the execution. There is a program SAPFV50W. In the program there is structure XVBPA. I want to use that structure in the exit.

Can you suggest me how to use it.

Regards,

Santosh

Hi Folks,

I am using an function module exit EXIT_SAPLOIIQ_001. While this exit gets triggered a few programs are also called during the execution. There is a program SAPFV50W. In the program there is structure XVBPA. I want to use that structure in the exit.

Can you suggest me how to use it.

Regards,

Santosh

2 REPLIES 2
Read only

Former Member
0 Likes
658

Dear Satosh,

With in this FM u can use only LIPSVB, LBEFU, IMSEG and any global fields. If u require to use XVBPA, there r two process.

1. goto debugging mode and check wether XVBPA is declared as global. If OK then u can directly use.

2. If not declared then u have to declare it throug enhancement spots. i.e in globla section of SAPFV50W declare one temp structure of type XVBPA. and use this in ur exit.

Rgds,

Kiran

Read only

Former Member
0 Likes
658

answered