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: 

Mode of Transport for Foreign Trade

Former Member
0 Kudos

Hi,

I need to obtain the field EXPVZ(Mode of Transport for Foreign Trade). I have purcahse order number. How do i drill down to field EXPVZ using PO number. Can anybody give me the linkage of the tables and their fields to achieve this task .

Regards

Nishant

Message was edited by: Nishant Gupta

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Nishant,

Try this... In EKKO you will get "EXNUM" for a PO. Then from table EIKP you can obtain the field - "EXPVZ".

Thanks and Regards,

Bharat Kumar Reddy.V

4 REPLIES 4

Former Member
0 Kudos

Hi Nishant,

Try this... In EKKO you will get "EXNUM" for a PO. Then from table EIKP you can obtain the field - "EXPVZ".

Thanks and Regards,

Bharat Kumar Reddy.V

Former Member
0 Kudos

from EXNUM in EKKO, use in EIKP n get ur field EXPVZ...

0 Kudos

Thankx guys... Got it

former_member181962
Active Contributor
0 Kudos

In EKKO you get BSTYP

BSART and RESWK.

Pass them to T161W table to get EXPVZ.

select single BSTYP

BSART

RESWK

from EKKO

into x_ekko

where ebeln = p_ebeln.

select EXPVZ

from T161W

into v_EXPVZ

where BSTYP = x_ekko-bstyp

BSART = x_ekko-BSART

RESWK = x_ekko-RESWK.

Regards,

Ravi