‎2008 Aug 21 11:20 AM
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
‎2008 Aug 21 11:22 AM
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
‎2008 Aug 21 11:36 AM
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.