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

regarding how to use bcd table control

Former Member
0 Likes
801

hi ,

this is raghu

pls send to me about bdctable control process and source code

hi ,

this is raghu

pls send to me about bdctable control process and source code

4 REPLIES 4
Read only

Former Member
0 Likes
730

Hi,

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

Check out this link

Read only

Former Member
0 Likes
730

Hello

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

Read only

Former Member
0 Likes
730

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

Read only

Former Member
0 Likes
730

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 ...