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

External Tax Interface - MM

Former Member
0 Likes
818

Hi all,

I am working on External Tax Interface - RFC_ Calculate_taxes_Doc . while passing values thru' communication stru - KOMK and KOMP the additional fields values not comming to user exit EXIT_SAPlfytx_user_001 ( only MM trans)

I can able to get from Va01 & Fb60 but while running MM related transaction the values are not comming . Anyone can help to solve this issue ?

Thanks,

Muthu

Hi all,

I am working on External Tax Interface - RFC_ Calculate_taxes_Doc . while passing values thru' communication stru - KOMK and KOMP the additional fields values not comming to user exit EXIT_SAPlfytx_user_001 ( only MM trans)

I can able to get from Va01 & Fb60 but while running MM related transaction the values are not comming . Anyone can help to solve this issue ?

Thanks,

Muthu

4 REPLIES 4
Read only

Former Member
0 Likes
768

Hi,

Yes, In this 'EXIT_SAPlfytx_user_001' tax user exit you will not get the Purchasing details. You should export those details from corresponding transaction user exits and import it. Ex. if Purchase order use 'MM06E005' enhacement and function exit-17 to export the PO detials...

Thanks

Abbu

Read only

0 Likes
768

Thanks for your reply.

I am using EXIT_SAPLMEKO_001 for additional fields and expecting the same values at EXIT_SAPlfytx_user_001.

Please help me how to get the values from EXIT_SAPLMEKO_001 .

Thanks,

Muthu

Read only

0 Likes
768

Hi,

First put a break point in both the exits and check which one is triggering first. If

EXIT_SAPLMEKO_001 exit is triggering first export the values which you require in the tax user eixt using 'EXPORT' statement to memory id. And import those values in EXIT_SAPlfytx_user_001 user exit using IMPORT statement.

ex . EXPORT l_zzacct TO l_acnt FROM

MEMORY ID 'ZZACCT'.

Thanks

Abbu.

Read only

Former Member
0 Likes
768

Thanks Abbu. its working fine now.