<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: BDC Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679170#M299433</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How many records do you have in your flat file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Nov 2006 11:40:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-23T11:40:47Z</dc:date>
    <item>
      <title>BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679169#M299432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a transction in which i am entering employee number, salary, department and name. First screen have only employee number as an edit field and create, display as push button. When we click on create second screen will be displayed where we can enter rest of the details (salary, department and name).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And i have created BDC program on this, but when i execute the program...it asks for the path of data file.... and after selecting proper file...in status bar system shows message "Uploading data from data file" and after about 20 minutes it shows "time-out" error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC Code:&lt;/P&gt;&lt;P&gt;report ZBDC_EMPN&lt;/P&gt;&lt;P&gt;       no standard page heading line-size 255.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include bdcrecx1.&lt;/P&gt;&lt;P&gt;TABLES: ZTRGEMP, ZTRGDEPT, ZTRGTXN.&lt;/P&gt;&lt;P&gt;parameters: dataset(132) lower case.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;   DO NOT CHANGE - the generated data section - DO NOT CHANGE    ***&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  If it is nessesary to change the data section use the rules:&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  1.) Each definition of a field exists of two lines&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  2.) The first line shows exactly the comment&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      '* data element: ' followed with the data element&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      which describes the field.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      If you don't have a data element use the&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      comment without a data element name&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  3.) The second line shows the fieldname of the&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      structure, the fieldname must consist of&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      a fieldname and optional the character '_' and&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      three numbers and the field length in brackets&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  4.) Each field must be type C.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Generated data section with specific formatting - DO NOT CHANGE  ***&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;data: begin of record,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;data element:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        IEMP_001(006),&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;data element:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        INAME_002(010),&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;data element:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        ISAL_003(010),&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;data element:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        IDPT_004(020),&lt;/P&gt;&lt;P&gt;      end of record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;End generated data section ***&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;        EMPNO LIKE ZTRGEMP-EMPNO,&lt;/P&gt;&lt;P&gt;        EMPNAME LIKE ZTRGEMP-EMPNAME,&lt;/P&gt;&lt;P&gt;        EMPDPT LIKE ZTRGDEPT-EMPDPT,&lt;/P&gt;&lt;P&gt;        SALARY LIKE ZTRGTXN-SALARY,&lt;/P&gt;&lt;P&gt;       END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'UPLOAD'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   FILENAME                      = 'C:\EMP.TXT'&lt;/P&gt;&lt;P&gt;   FILETYPE                      = 'ASC'&lt;/P&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;    DATA_TAB                      = ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*perform open_dataset using dataset.&lt;/P&gt;&lt;P&gt;perform open_group.&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*read dataset dataset into record.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0. exit. endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'ZASS_6' '0100'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=CRT'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'IEMP'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'IEMP'&lt;/P&gt;&lt;P&gt;                              ITAB-EMPNO.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'ZASS_6' '0200'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=CRT'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'IDPT'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'INAME'&lt;/P&gt;&lt;P&gt;                              ITAB-EMPNAME.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'ISAL'&lt;/P&gt;&lt;P&gt;                              ITAB-SALARY.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'IDPT'&lt;/P&gt;&lt;P&gt;                              ITAB-EMPDPT.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'ZASS_6' '0200'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=C'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'INAME'.&lt;/P&gt;&lt;P&gt;perform bdc_transaction using 'ZEMPN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;perform close_group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 11:38:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679169#M299432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T11:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679170#M299433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How many records do you have in your flat file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 11:40:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679170#M299433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T11:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679171#M299434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*do.&amp;lt;/b&amp;gt;---&amp;gt;remove it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*read dataset dataset into record.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0. exit. endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'ZASS_6' '0100'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=CRT'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'IEMP'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'IEMP'&lt;/P&gt;&lt;P&gt;ITAB-EMPNO.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'ZASS_6' '0200'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=CRT'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'IDPT'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'INAME'&lt;/P&gt;&lt;P&gt;ITAB-EMPNAME.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'ISAL'&lt;/P&gt;&lt;P&gt;ITAB-SALARY.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'IDPT'&lt;/P&gt;&lt;P&gt;ITAB-EMPDPT.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'ZASS_6' '0200'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=C'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'INAME'.&lt;/P&gt;&lt;P&gt;perform bdc_transaction using 'ZEMPN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*enddo&amp;lt;/b&amp;gt;----&amp;gt;remove it.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;y  u  r using do and enddo...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kishan negi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 11:41:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679171#M299434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T11:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679172#M299435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there's an infinite loop because&lt;/P&gt;&lt;P&gt;you've inactivated :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*read dataset dataset into record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls activate and remove star&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Andreas Mann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 11:42:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679172#M299435</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2006-11-23T11:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679173#M299436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why you are reading data from application server within loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read data from application server outside the loop. and try to run the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 11:43:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679173#M299436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T11:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679174#M299437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U're using the statament LOOP/ENDLOOP to fill the BDC table with file data (because now you use a file of presentation server), but you haven't delete the statament DO/ENDO and so you've an infinite loop, so delete it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;do. &amp;lt;----&lt;/P&gt;&lt;HR originaltext="---------------" /&gt;&lt;P&gt;DELETE THIS ROW&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*read dataset dataset into record.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;if sy-subrc &amp;lt;&amp;gt; 0. exit. endif. &amp;lt;----&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;DELETE THIS ROW&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'ZASS_6' '0100'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=CRT'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'IEMP'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'IEMP'&lt;/P&gt;&lt;P&gt;ITAB-EMPNO.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'ZASS_6' '0200'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=CRT'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'IDPT'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'INAME'&lt;/P&gt;&lt;P&gt;ITAB-EMPNAME.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'ISAL'&lt;/P&gt;&lt;P&gt;ITAB-SALARY.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'IDPT'&lt;/P&gt;&lt;P&gt;ITAB-EMPDPT.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'ZASS_6' '0200'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=C'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'INAME'.&lt;/P&gt;&lt;P&gt;perform bdc_transaction using 'ZEMPN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;enddo. &amp;lt;----&lt;/P&gt;&lt;HR originaltext="------------" /&gt;&lt;P&gt;DELETE THIS ROW&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 11:47:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679174#M299437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T11:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679175#M299438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hullo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your problem looks like to be caused after you've changed the automatically generated program that used a file on the AS, which you changed to a file on the PS using the upload function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You did remove the 'READ DATASET' statement, but you forgot to remove the test on the sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT ITAB.
  DO.

*   read dataset dataset into record.
    IF sy-subrc &amp;lt;&amp;gt; 0. EXIT. ENDIF.

*** &amp;lt;snipped rest of the code&amp;gt;

  ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;Since no new sy-subrc will be set after the upload function the sy-subrc will always be 0 and thus in your loop you have created a never ending do loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remove these three commands from your code ("DO.", "IF sy-subrc &amp;lt;&amp;gt; 0. EXIT. ENDIF." and "ENDDO.")  and your program should work correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 11:47:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679175#M299438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T11:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679176#M299439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) declare your input fields as character fields with respective lengths&lt;/P&gt;&lt;P&gt;2) use FM 'GUI_UPLOAD' and pass your input file to it&lt;/P&gt;&lt;P&gt;3) Call your transaction&lt;/P&gt;&lt;P&gt;4) loop at your data tab and populate screens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 11:48:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679176#M299439</guid>
      <dc:creator>former_member189629</dc:creator>
      <dc:date>2006-11-23T11:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679177#M299440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Trying for 10 records only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 14:23:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679177#M299440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T14:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679178#M299441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can any one explain me where to write code for recording error messages using bdcmsgcoll and "format message" FM?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 14:30:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679178#M299441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T14:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679179#M299442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It worked perfectly. Thank you all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 10:39:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1679179#M299442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T10:39:17Z</dc:date>
    </item>
  </channel>
</rss>

