Application Development 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: 

regarding how to use bcd table control

Former Member
0 Kudos

hi ,

this is raghu

pls send to me about bdctable control process and source code

4 REPLIES 4

Former Member
0 Kudos

Hi,

[http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm]

Check out this link

Former Member
0 Kudos

Hello

https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=bdctablecontrol&adv=false&sortby=cm_rnd_rankvalue

Former Member
0 Kudos

Hi Raghu,

Check this one for complete information on BDC Table Control:

Regards,

Chandra Sekhar

Edited by: Chandrasekhar Gandla on Sep 19, 2008 2:19 PM

Former Member
0 Kudos

VAL = VAL + 1.

CONCATENATE : 'KNVK-NAME1(' VAL ')' INTO INAME1,

'KNVK-NAMEV(' VAL ')' INTO INAMEV.

perform bdc_field using INAMEV

  • 's'.

W_MAILID-NAMEV.

perform bdc_field using INAME1

  • 'sd'.

W_MAILID-NAME1.

inamev is the variable i declared , actually in recording u will be getting like this KNVK-NAME1(01)..

here the count 01 should be increased for table control fields, to increase the count i have declared the variable val and i am passing the variable with the structure into variable iname1 ...