Hi Arne,

Arne Gehlhaar wrote:

> the data:
> 1249,4530,MAEU6616757

[snipped some data and column description]
> 
> The command file I use is:
> 
> DATALOAD TABLE cont_base
>          cnt_num 1
>          cnt_isocode 2
>          cnt_ident 3
> INFILE 'contbase.list'
> 
> > Error during execution
> > -->-25319
> > Missing data for specified column CNT_ISOCODE.
> 
> What am I missing?
> 
You're missing to define the absence of a delimiter in your data
in the DATALOAD command.
Your command should look like this according to your data:

 DATALOAD TABLE cont_base
          cnt_num 1
          cnt_isocode 2
          cnt_ident 3
 INFILE 'contbase.list'
 DELIMTER ''

Regards,
 Steffen
_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

Reply via email to