cancel
Showing results for 
Search instead for 
Did you mean: 

Message VF 073 'Pricing error in item 00010' but Acc. Doc. was created.

Former Member
0 Kudos

Dear experts,

I have some problem in Billing Process.

When I process billing, 'S' type message(VF 073) is displayed but billing doc. & accounting doc were created normally.

So I checked pricing procedure and condition types, but actually there is no pricing error.

Could you advise to me about this strange matter?

In addition, below logic is point that message was displayed.

=============================================================

Include : MV60AF0X_XVBRP_LESEN

----


  • FORM XVBRP_LESEN *

----


  • Die interne Tabelle XVBRP wird zur Anzeige am Bildschirm *

  • gelesen. *

----


FORM XVBRP_LESEN.

  • Anzahl Loop-Zeilen fuer Blaettern

XVBRP_LOOPC = SY-LOOPC.

READ TABLE XVBRP INDEX XVBRP_TABIX_AKTUELL.

........

........

........

IF XVBRP-UVPRS = 'X' AND SY-MSGID NE 'V1'.

  • Meldung nur bringen, wenn die Preisfindung selbst keine Meldung

  • gebracht hat. Preisfindung hat MSGID = V1

MESSAGE S073 WITH XVBRP-POSNR. ==> this point

ELSEIF XVBRP-UVALL = 'X'.

MESSAGE S074 WITH XVBRP-POSNR.

ENDIF.

ENDIF.

ENDFORM.

Edited by: Ock Seo Park on Sep 22, 2009 3:48 AM

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

I checked table KONV-KOPOS field that there is no data.

That's the cause.

Thanks.

sarthak_mohantysd
Active Contributor
0 Kudos

Hello,

Understanding the point of your issue, i find that the message which is mainly displayed while saving the billing document pertains

to the error generally due to pricing. May be some mandatory pricing being picked from VK13 is missing.

Please check the Sales order and make sure that document is complete in all aspect and also check the pricing procedure too.

My advice would be to check the accounting document properly as you have said that accounting document gets generated

easily.

Secondly i would suggest you to check the program to see if any changes have been made based on date or conditions.

Regards,

Sarthak

Former Member
0 Kudos

Hi sarthak mohanty,

Thanks for your reply.

I checked all condition type but there is no missing mandatory con. type.

Anyway I will keep in mind your advise.

Regards.

OceSeo Park.