‎2008 Aug 18 1:45 PM
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
‎2008 Aug 18 1:50 PM
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.
‎2008 Aug 18 1:50 PM
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.
‎2008 Aug 18 1:55 PM
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.
‎2008 Aug 18 1:57 PM
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.
‎2008 Aug 28 9:03 AM