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

Infotype 1002 description

Former Member
0 Likes
517

I am using BDC program to Upload It1002-descrition.While recording it is not capturing data for TLINE(08) as it is a table control.I tried using follow code.

concatenate 'PT1002-TLINE( ' V_Count ' )' INTO fn.

perform bdc_field using 'BDC_CURSOR' fn.

perform bdc_field using fn it_out-output.

V_Count = V_Count + 1.

ERROR - "TLINE(08) is not an input field ".

Edited by: venkatesh kamalamurthy on Aug 21, 2008 3:50 PM

2 REPLIES 2
Read only

Former Member
0 Likes
384

Hi Venkatesh,

Where is the code?

For table control search in this form TABLE CONTROL + BDC . hope this is will solves ur probelm.

let me know for further clarification.

Regards

Sas

Read only

0 Likes
384

concatenate 'PT1002-TLINE( ' V_Count ' )' INTO fn.

perform bdc_field using 'BDC_CURSOR' fn.

perform bdc_field using fn it_out-output.

V_Count = V_Count + 1.

Please check the above code.