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

Former Member
0 Likes
285

what is main problems when we upload data flat file into tablecontrol? in call trasaction and session method?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
268

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

1 REPLY 1
Read only

Former Member
0 Likes
269

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