cancel
Showing results for 
Search instead for 
Did you mean: 

Difference Between Export and Direct Import Process.

Former Member
0 Kudos

Hi SD Gurus,

Can anyone help to understnad difference betwenn Export and Direct Import Process.

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Hi Guys,

Thank you for your answers.

Former Member
0 Kudos

null

Edited by: RAJEEV SHARMA on Aug 19, 2010 12:06 AM

Edited by: RAJEEV SHARMA on Aug 19, 2010 12:07 AM

Former Member
0 Kudos

This message was moderated.

Former Member
0 Kudos

Hi,

export = out of the system or country

import = into the system or country

For example in SAP-ABAP

  • On the EXPORT side

DATA: ls_indx TYPE indx.

ls_indx-aedat = sy-datum.

ls_indx-usera = sy-uname.

ls_indx-pgmid = 'ZNAME'.

EXPORT tab = lt_orders

TO DATABASE indx(v1)

FROM ls_indx ID 'PERCENT'.

-


  • On the IMPORT side

DATA: ls_indx TYPE indx.

ls_indx-aedat = sy-datum.

ls_indx-usera = sy-uname.

ls_indx-pgmid = 'ZNAME'.

IMPORT tab = lt_orders

FROM DATABASE indx(v1)

TO ls_indx ID 'PERCENT'

Regards,

Raj

Lakshmipathi
Active Contributor
0 Kudos

The simple difference between these two is that when you export a product, material goes out of country. On the other hand, if you import any product, material comes into India

thanks

G. Lakshmipathi