<?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: Error i nBDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-i-nbdc/m-p/2004048#M408296</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi.....&lt;/P&gt;&lt;P&gt; got ur problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the form bdc_dynpro...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM bdc_dynpro USING program dynpro.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Populate BDC table with screen information&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;bdcdata-program = program.&lt;/P&gt;&lt;P&gt;bdcdata-dynpro = dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;BDCDATA-DYNBEGIN = 'X'.&amp;lt;/b&amp;gt; &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;( U forgot this to fill this field )&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND bdcdata.&lt;/P&gt;&lt;P&gt;ENDFORM. " bdc_dynpro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if it solves ur problem&lt;/P&gt;&lt;P&gt;sai ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Mar 2007 14:08:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-07T14:08:33Z</dc:date>
    <item>
      <title>Error i nBDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-i-nbdc/m-p/2004045#M408293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I am trying to create condition record for vendors using tcode MN04.&lt;/P&gt;&lt;P&gt;When I execute my program I get the error&lt;/P&gt;&lt;P&gt;   &amp;lt;u&amp;gt;&amp;lt;b&amp;gt;"Start screen does not exist in batch input data "[&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;and it aborts. message type A in bdcmsgcoll.&lt;/P&gt;&lt;P&gt;whereas when i execute the recording (which i converted into program), it creates without any error.&lt;/P&gt;&lt;P&gt;Appreciate immediate reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;PROGRAM&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : LFM1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : i_lfm1 LIKE lfm1 OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       bdcdata LIKE bdcdata OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       msgtab  LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : lv_lifnr TYPE char10,&lt;/P&gt;&lt;P&gt;       lv_mode VALUE 'N'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS : c_6     VALUE 6,&lt;/P&gt;&lt;P&gt;            c_4     VALUE 4,&lt;/P&gt;&lt;P&gt;            c_VN(2) VALUE 'VN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;       INTO TABLE i_lfm1&lt;/P&gt;&lt;P&gt;       FROM lfm1&lt;/P&gt;&lt;P&gt;       WHERE lifnr = 'C101021' AND&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;            ekorg = 'SHCS' OR&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;             ekorg = 'SCCS'.  " OR&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;            ekorg = 'SATE'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;LOOP AT i_lfm1.&lt;/P&gt;&lt;P&gt;MOVE i_lfm1-lifnr TO lv_lifnr.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMV13B'        '0100'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'      'RV13B-KSCHL'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'      '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RV13B-KSCHL'     'Z3PO'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLV14A'        '0100'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'      'RV130-SELKZ(01)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'      '=WEIT'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMV13B'        '1027'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'      'NACH-SPRAS(01)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'      '=SICH'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'KOMB-EKORG'      i_lfm1-ekorg.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'KOMB-LIFNR(01)'  'C101021'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'NACH-PARVW(01)'  c_VN.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'NACH-NACHA(01)'  c_6.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'NACH-VSZTP(01)'  c_4.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'NACH-SPRAS(01)'  'EN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH msgtab.&lt;/P&gt;&lt;P&gt;CLEAR msgtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Call transaction MN04 to create condition record.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;CALL TRANSACTION 'MN04' USING bdcdata&lt;/P&gt;&lt;P&gt;                        MODE  'A'&lt;/P&gt;&lt;P&gt;                        UPDATE 'S'&lt;/P&gt;&lt;P&gt;                        MESSAGES INTO msgtab.&lt;/P&gt;&lt;P&gt;LOOP AT msgtab.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM bdc_dynpro USING program dynpro.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Populate BDC table with screen information&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-program = program.&lt;/P&gt;&lt;P&gt;  bdcdata-dynpro = dynpro.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " bdc_dynpro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM bdc_field USING fnam fval.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Populate BDC table with field information&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;bdcdata-fnam = fnam.&lt;/P&gt;&lt;P&gt;bdcdata-fval = fval.&lt;/P&gt;&lt;P&gt;APPEND bdcdata.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " bdc_field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 10:05:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-i-nbdc/m-p/2004045#M408293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T10:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error i nBDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-i-nbdc/m-p/2004046#M408294</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to debug in MODE 'P'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kishore.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 10:12:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-i-nbdc/m-p/2004046#M408294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T10:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Error i nBDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-i-nbdc/m-p/2004047#M408295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use refresh bdcdata and also&lt;/P&gt;&lt;P&gt;while looping say loop at msgtab where msgtab-type = 'E' or msgtab-type ='A'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u try in this way you may solve your problem just try it ok bye........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 13:58:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-i-nbdc/m-p/2004047#M408295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T13:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error i nBDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-i-nbdc/m-p/2004048#M408296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi.....&lt;/P&gt;&lt;P&gt; got ur problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the form bdc_dynpro...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM bdc_dynpro USING program dynpro.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Populate BDC table with screen information&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;bdcdata-program = program.&lt;/P&gt;&lt;P&gt;bdcdata-dynpro = dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;BDCDATA-DYNBEGIN = 'X'.&amp;lt;/b&amp;gt; &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;( U forgot this to fill this field )&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND bdcdata.&lt;/P&gt;&lt;P&gt;ENDFORM. " bdc_dynpro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if it solves ur problem&lt;/P&gt;&lt;P&gt;sai ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 14:08:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-i-nbdc/m-p/2004048#M408296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T14:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Error i nBDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-i-nbdc/m-p/2004049#M408297</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;Welcome to SDN!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes..Ramesh is right...&lt;/P&gt;&lt;P&gt;u need to give..&lt;/P&gt;&lt;P&gt;bdcdata-dynbegin = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2007 14:14:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-i-nbdc/m-p/2004049#M408297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-07T14:14:21Z</dc:date>
    </item>
  </channel>
</rss>

