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

Which Fields Available In User Exit

Former Member
0 Likes
683

Dear All,

How can I come to know which field's value are available in user exit.

For ex. for an Include RV60AFZZ I have user exit USEREXIT_NUMBER_RANGE.

I want to know which fields are available here, is there any method to find out. Please help me.

Regards

H.P.

Dear All,

How can I come to know which field's value are available in user exit.

For ex. for an Include RV60AFZZ I have user exit USEREXIT_NUMBER_RANGE.

I want to know which fields are available here, is there any method to find out. Please help me.

Regards

H.P.

4 REPLIES 4
Read only

Former Member
0 Likes
648

Hi,

Just put a break point and check in debugger. If you are using the new debugger go to the tabs "Locals" and "Globals". You can get details here

Regards

Read only

0 Likes
648

Thanks a lot to all for their response.. !

problem resolved.

Thanks & Regards

H.P.

Read only

Former Member
0 Likes
648

Hi,

The user exit USEREXIT_NUMBER_RANGE is basically called in the FM RV_INVOICE_DOCUMENT_ADD.

So you will have access to the global variables of the main program SAPLV60A.

Regards,

Ankur Parab

Read only

Former Member
0 Likes
648

Hi,

It will hold all the global variables of the main program in which the User exit is existing...