cancel
Showing results for 
Search instead for 
Did you mean: 

SD pricing routine

Former Member
0 Kudos

Hi,

I would be most grateful if somebody could explain the function of the pricing routine - 70 (Tax. Incl.) in the SD pricing procedure.

Could someone also share the link to a good document that covers all SD pricing routines.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Requirement for determining whether there is a customer subject to tax

Requirement 70 also checks whether there is domestic trade. It also must be ensured that these transactions are subject to tax. The requirement is used in the pricing procedure RVAB02 for processing gross business transations.

Former Member
0 Kudos

Hi Prashant,

Your reply got me thinking in the right direction. It also helped me solve another problem that i had posted about - 'gross pricing'. Thanks a ton. I'm marking your answer as being helpful.

Srimurugan

Answers (2)

Answers (2)

Former Member
0 Kudos

hi,

pl check this link :

[Pricing Routine|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/SDBFPR/SDBFPR.pdf]

regards

sadhu kishore

Former Member
0 Kudos

Hi,

This is the code for routine 70

  • plant or country of departure defined?

form kobed_070.

sy-subrc = 4.

if komp-kposn ne 0.

check: komp-werks ne space or komk-aland ne space.

  • sale with tax included??

  • (domestic; taxable)

check: komk-aland = komk-land1.

check: komk-taxk1 = '1'.

endif.

sy-subrc = 0.

endform.

What i understand out of this is if Destination Country = Departure Country, and if Tax code = 1, then set Sy-Subrc = 0.

Reward if helpful.

Regards

Ravi

Former Member
0 Kudos

Hi Ravi,

I've seen the code. Could you please tell me in what scenario this routine may be used ?