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 Table control

Former Member
0 Likes
309

hi gurus......

could u plz send me codings for a simple BDC table control

using AT NEW <field> concept.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
290

Hi,

You can use the AT NEW in table controls if you have a single flat file data which contains both the header data and item data in a single record.

sample eg:

loop at itab.

at new keyfield.

put header data into work area.

endat.

insert item data into workarea (tablecontrol ).

endloop.

whenever the new vendor comes then automatically the data changes.

Hope this is helpful to you.

Thanks and Regards.

1 REPLY 1
Read only

Former Member
0 Likes
291

Hi,

You can use the AT NEW in table controls if you have a single flat file data which contains both the header data and item data in a single record.

sample eg:

loop at itab.

at new keyfield.

put header data into work area.

endat.

insert item data into workarea (tablecontrol ).

endloop.

whenever the new vendor comes then automatically the data changes.

Hope this is helpful to you.

Thanks and Regards.