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

BDC data not coming correctly

Former Member
0 Likes
614

Hi

Am using BDC for one tcode but data is coming with errors like with # and all file is TXT file and Type i tried with DAT and ASC both but still facing same problem.

pls help me out if you have any clue.

Regards

Meeta

1 ACCEPTED SOLUTION
Read only

former_member585060
Active Contributor
0 Likes
575

Declare ur internal table which holds the data from Flat file as character type, and check

Use File type as ASC.

Has_field_Seperator = ' ' "space

Ur flat file must have as Tab separated data.

4 REPLIES 4
Read only

former_member585060
Active Contributor
0 Likes
576

Declare ur internal table which holds the data from Flat file as character type, and check

Use File type as ASC.

Has_field_Seperator = ' ' "space

Ur flat file must have as Tab separated data.

Read only

Former Member
0 Likes
575

is the file is Tab Delimited file. if so when you are calling the Function GUI_UPLOAD

Don't give any File type, let the file type as Default Type.

set the Importing parameter HAS_FIELDSEPARATOR = 'X'

this will take care. But if your file is not Tabdelimited one then save it as Tab Delimited file and see.

Read only

Former Member
0 Likes
575

Hi

Check whether ur flat file is tab delimited, if so...then give..

Has_field_separator = 'X'.

after uploading data from flat file to internal table, check whether u r the gettin the proper data into it.

Read only

Former Member
0 Likes
575

Thanks