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: 

Need to pass the header tax jurisdiction code in the item level in MIRO

Former Member
0 Kudos

Hi,

I have a requirement wherein i need to pass the same tax jurisdiction code in the item level as entered on the DETAILS tab of MIRO .

Please help.

1 REPLY 1

former_member212002
Active Contributor
0 Kudos

Check for some BADI, probably INVOICE_UPDATE can help you. But the problem in this badi is, there are no changinf parameters . Thus you have to change the data using field symbols.

something like :

      ASSIGN '(SAPLMRMP)RBKPV' TO <l_rbkpv>.
      IF  <l_rbkpv> IS ASSIGNED.
          Do your job.

      ENDIF.

Cheers!

Abhinab