cancel
Showing results for 
Search instead for 
Did you mean: 

AltCTy -360

Former Member
0 Kudos

Hi

I am configuring my Pricing procedure as per the standard ZFact procedure. While doing so the cond .tye JSED requires the Alternative condition type - 360. In my syatem it is not avilable. Can I any body pls send the programme of 360 on my email so that I can configure it my system.

Vinod

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Vinod,

Alternative Condition type- 300 is for Taxes from ExternSys

and the program is the below one and use the include FV64A300

  • APPL EXTERNAL TAX

***********************************************************************

                                      • SAP - Sales Tax Interface *************************

***********************************************************************

form frm_kondi_wert_300.

call function 'COLLECT_AND_CALCULATE_TAX_DATA'

exporting

i_komp = komp

i_komk = komk

i_xkomv = xkomv

i_tax_procedure = t005-kalsm

i_comp_code = t001-bukrs

i_preisfindungsart = preisfindungsart

tables

t_xkomv = xkomv

changing

o_pricing_ok = komp-prsok

o_kinak = xkomv-kinak

o_fxmsg = xkomv-fxmsg.

endform.

----


  • Old user exit. Obsolet.

  • New user-exit should be used.

----


form fv64a300_old_user_exit using t007a like t007a

ttxd like ttxd

changing com_tax like com_tax.

data: xxkomv like xkomv.

  • Protect header xkomv against changes during "loop at xkomv"

xxkomv = xkomv.

  • User exit for COM_TAX

call customer-function '001'

exporting

i_komk = komk

i_komp = komp

i_t007a = t007a

i_ttxd = ttxd

tables

t_komv = xkomv

changing

c_com_tax = com_tax.

xkomv = xxkomv.

endform.

Reward If Helpful..

Regards..

praveen.D

Former Member
0 Kudos

Hi

Thanks for the replay

But I want the details of AltCTy -360 and not 300.

Can you give me this details

Vinod