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

Language Problem in BDC upload?

Former Member
0 Likes
569

Hi All,

Can anyone tell me how can we handle language translations in BDC upload? Please let me know the steps that we need to follow or provide me with the appropriate code?

Regards,

MD.

1 ACCEPTED SOLUTION
Read only

shadow
Participant
0 Likes
472

Hi MD,

use

function module to upload your data, such as GUI_UPLOAD,

CALL FUNCTION 'GUI_UPLOAD'

IMPORTING

EXPORTING

FILENAME = 'C:/SHAIK.TXT'

FILETYPE = 'ASC'

HAS_FIELD_SEPARATOR = 'X'

TABLES

DATA_TAB = IT.

then you have an importing parameter CODEPAGE ( TYPE ABAP_ENCODING ).

Regard's

shaik.

3 REPLIES 3
Read only

Former Member
0 Likes
472

Hello There.

I would like to suggest my opinion,

In case use of function module, GUI_UPLOAD.

Use the IMPORTING PARAMETER - CODEPAGE.

Refer, [BDC to Load Chinese Description|;

Hope this works out.

Good Luck & Regards.

Harsh Dave

Read only

shadow
Participant
0 Likes
473

Hi MD,

use

function module to upload your data, such as GUI_UPLOAD,

CALL FUNCTION 'GUI_UPLOAD'

IMPORTING

EXPORTING

FILENAME = 'C:/SHAIK.TXT'

FILETYPE = 'ASC'

HAS_FIELD_SEPARATOR = 'X'

TABLES

DATA_TAB = IT.

then you have an importing parameter CODEPAGE ( TYPE ABAP_ENCODING ).

Regard's

shaik.

Read only

Former Member
0 Likes
472

thanks for your help