Application Development 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: 

SDBILLDL

Former Member
0 Kudos

Hi,

I have never working on the user_exit.

Would you please teach me how to identify the user_exit for the SAP delivered program SDBILLDL? Our production job cancelled for the invalid data. I need modify the 'error message' to 'warning message' and let it continue process.

Thanks a lot.

Helen

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

These are the userexits we have for VF04

SDVFX007 User exit: Billing plan during transfer to Accounting

SDVFX008 User exit: Processing of transfer structures SD-FI

SDVFX009 Billing doc. processing KIDONO (payment reference number)

SDVFX010 User exit item table for the customer lines

SDVFX011 Userexit for the komkcv- and kompcv-structures

V05I0001 User exits for billing index

V05N0001 User Exits for Printing Billing Docs. using POR Procedure

V60A0001 Customer functions in the billing document

V60P0001 Data provision for additional fields for display in lists

V61A0001 Customer enhancement: Pricing

Nataraju

6 REPLIES 6

Former Member
0 Kudos

Hi

These are the userexits we have for VF04

SDVFX007 User exit: Billing plan during transfer to Accounting

SDVFX008 User exit: Processing of transfer structures SD-FI

SDVFX009 Billing doc. processing KIDONO (payment reference number)

SDVFX010 User exit item table for the customer lines

SDVFX011 Userexit for the komkcv- and kompcv-structures

V05I0001 User exits for billing index

V05N0001 User Exits for Printing Billing Docs. using POR Procedure

V60A0001 Customer functions in the billing document

V60P0001 Data provision for additional fields for display in lists

V61A0001 Customer enhancement: Pricing

Nataraju

0 Kudos

Would you please tell me hww do you find out those User_Exit name? Do SAP has documentation for it or can you trace from the program?

Thanks,

Helen

0 Kudos

(1) Search the string 'call customer-function' in the code.

or

(2) Using CMOD transaction we can identity the user exits.Execute CMOD transaction then Utilities->Find.

Give the package name and execute. It list all the exits available for this package.

( For program SDBILLDL Package name is : VF).

About the problem you are discussing, As Rich mentioned Error message might not be generated in the exit. It might generated in the standard program. First idenity the program name then decide wether its exit or not.

Hope this helps.

regards,

vamshi tallada

0 Kudos

Our company consultant give me a hint that the 'RV60AFZZ' is the module I should look into. Do you have any idea how this source code got link to the SDBILLDL?

Thanks,

Helen

0 Kudos

HI Helen

Please find the reply in your other post for the same. Request your help in closing one thread to avoid confusion.

Kind Regards

Eswar

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Hi Helen, these may be the user exits for your transaction, but my concern is that this will not help you in your effort to change the error message to a warning, if the error message is directly(statically) defined in the program, a user exit will not allow you to change it. In some cases, configuration will allow you to change the error message to warning via transaction SPRO.

Regards,

Rich Heilman