‎2008 Jun 03 5:58 PM
hi gurus......
could u plz send me codings for a simple BDC table control
using AT NEW <field> concept.
‎2008 Jun 04 5:56 PM
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.
‎2008 Jun 04 5:56 PM
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.