‎2007 May 27 5:54 AM
what is main problems when we upload data flat file into tablecontrol? in call trasaction and session method?
‎2007 May 28 7:43 AM
hi,
note that CONACTENATE stmt is very very important while handling table control in bdc.
while u record the records in table contrl,
example they will be stored as ebelp(1), ebelp(2).....ebelp(20).
(1)----implies row.
to handle that its not possible, as we cant declare , DATA A(N) TYPE CHAR.
so, we can handle like this,
for example..
declare,
DATA VALUE(10) TYPE CHAR, n type i.
loop .......
n = 1.
concatenate 'ebelp(' n ')' into value.
n = n + 1.
endloop.
now value contaions ebelp(1), ebelp(2)................
rewards if useful
regads,
nazeer
‎2007 May 28 7:43 AM
hi,
note that CONACTENATE stmt is very very important while handling table control in bdc.
while u record the records in table contrl,
example they will be stored as ebelp(1), ebelp(2).....ebelp(20).
(1)----implies row.
to handle that its not possible, as we cant declare , DATA A(N) TYPE CHAR.
so, we can handle like this,
for example..
declare,
DATA VALUE(10) TYPE CHAR, n type i.
loop .......
n = 1.
concatenate 'ebelp(' n ')' into value.
n = n + 1.
endloop.
now value contaions ebelp(1), ebelp(2)................
rewards if useful
regads,
nazeer