<?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 related problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699761#M625164</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is your BDC running...since we dont write BDC for MIGO, instead we use BAPi &lt;/P&gt;&lt;P&gt;BAPI_GOODSMVT_CREATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Aug 2007 07:03:22 GMT</pubDate>
    <dc:creator>amit_khare</dc:creator>
    <dc:date>2007-08-13T07:03:22Z</dc:date>
    <item>
      <title>BDC related problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699760#M625163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear friends&lt;/P&gt;&lt;P&gt;   I am developing a bdc for the migo... here i am having one problem at the spliting time. as i am doing concatenation with index for passing the values to the table control of the screen, from the BDCDATA table i am receiving the error message ( 'L_FIELD doesnt find in the screen 1000).  please see the code and tell me what i am supposed to do to rectify this issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT int_record1 WHERE po_number    = int_record-po_number AND&lt;/P&gt;&lt;P&gt;                                lfsnr        = int_record-lfsnr     AND&lt;/P&gt;&lt;P&gt;                                exnum        = int_record-exnum     AND&lt;/P&gt;&lt;P&gt;                                exdat        = int_record-exdat     AND&lt;/P&gt;&lt;P&gt;                                detail_zeile = int_record-detail_zeile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        l_index = l_index + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        PERFORM bdc_dynpro      USING 'SAPLMIGO' '1000'.&lt;/P&gt;&lt;P&gt;        PERFORM bdc_field       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                      '=OK_SP_CH'.&lt;/P&gt;&lt;P&gt;        CONCATENATE 'GOSPLIT-ERFMG(' l_index ')' INTO l_field.&lt;/P&gt;&lt;P&gt;        PERFORM bdc_field       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                      'l_field'. &amp;lt;--- here i am inserting the values of screen field with the index to make this way 'GOSPLIT-ERFMG(1).&lt;/P&gt;&lt;P&gt;        PERFORM bdc_field       USING 'l_field'&lt;/P&gt;&lt;P&gt;                                       int_record1-erfmg1.&lt;/P&gt;&lt;P&gt;        CLEAR l_field.&lt;/P&gt;&lt;P&gt;        CONCATENATE 'GOSPLIT-LGOBE(' l_index ') ' INTO l_field.&lt;/P&gt;&lt;P&gt;        PERFORM bdc_field       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                      'l_field'.&lt;/P&gt;&lt;P&gt;        PERFORM bdc_field       USING 'l_field'&lt;/P&gt;&lt;P&gt;                                      int_record1-lgobe1.&lt;/P&gt;&lt;P&gt;        CLEAR l_field.&lt;/P&gt;&lt;P&gt;        CONCATENATE 'GOSPLIT-CHARG(' l_index ') ' INTO l_field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        PERFORM bdc_field       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                      'l_field'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                                     'GOSPLIT-CHARG'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        PERFORM bdc_field       USING  'l_field'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      PERFORM bdc_field       USING 'GOSPLIT-CHARG'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                                      int_record1-charg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        PERFORM bdc_dynpro      USING 'SAPLMIGO' '1000'.&lt;/P&gt;&lt;P&gt;        PERFORM bdc_field       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                      '=OK_GOON'.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the BDC data table i am receiving the output this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAPLMIGO	1000	X		&lt;/P&gt;&lt;P&gt;	0		BDC_OKCODE	#NAME?&lt;/P&gt;&lt;P&gt;	0		BDC_CURSOR	l_field&lt;/P&gt;&lt;P&gt;	0		l_field	                2&lt;/P&gt;&lt;P&gt;	0		BDC_CURSOR	l_field&lt;/P&gt;&lt;P&gt;	0		l_field	               SGN1&lt;/P&gt;&lt;P&gt;	0		BDC_CURSOR	l_field&lt;/P&gt;&lt;P&gt;	0		l_field	                A1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think instead of the l_field value 'GOSPLIT-ERFMG(1) the modified value should be appear over there... can you please tell me how can i do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help will be appreciated,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Naeem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 07:01:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699760#M625163</guid>
      <dc:creator>naimkhans_babi</dc:creator>
      <dc:date>2007-08-13T07:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: BDC related problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699761#M625164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is your BDC running...since we dont write BDC for MIGO, instead we use BAPi &lt;/P&gt;&lt;P&gt;BAPI_GOODSMVT_CREATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 07:03:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699761#M625164</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-08-13T07:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: BDC related problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699762#M625165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Amit&lt;/P&gt;&lt;P&gt;   I know that the Bapi would much more desirable to have... intead of BDC&amp;gt;. but here i need to pass the excise document numbers and Exices date as well which is not there in the BAPI_GOODS_MVT... thats i need to that.,, if you know how to pass the excise related infromation along with the bapi suggested by you please tell me,,, if you go to the MB01 and will pass some material related infroation.. the pop-up would be there if the material required to have excies related infromation,... the problme is this only with this bapi.. &lt;/P&gt;&lt;P&gt;Regads&lt;/P&gt;&lt;P&gt;Naeem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 07:08:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699762#M625165</guid>
      <dc:creator>naimkhans_babi</dc:creator>
      <dc:date>2007-08-13T07:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: BDC related problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699763#M625166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are not supposed to use BDC for MIGO. Please see OSS Note #381630.&lt;/P&gt;&lt;P&gt;You call this FM J_1IEXGM_UPDATE_EXCISE after calling BAPI BAPI_GOODSMVT_CREATE.&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;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 07:13:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699763#M625166</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-08-13T07:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: BDC related problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699764#M625167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naim,&lt;/P&gt;&lt;P&gt;Remove the single Quotes while passing the field name thru variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT int_record1 WHERE po_number = int_record-po_number AND&lt;/P&gt;&lt;P&gt;lfsnr = int_record-lfsnr AND&lt;/P&gt;&lt;P&gt;exnum = int_record-exnum AND&lt;/P&gt;&lt;P&gt;exdat = int_record-exdat AND&lt;/P&gt;&lt;P&gt;detail_zeile = int_record-detail_zeile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_index = l_index + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM bdc_dynpro USING 'SAPLMIGO' '1000'.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=OK_SP_CH'.&lt;/P&gt;&lt;P&gt;CONCATENATE 'GOSPLIT-ERFMG(' l_index ')' INTO l_field.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;l_field. &amp;lt;/b&amp;gt;&amp;lt;--- here i am inserting the values of screen field with the index to make this way 'GOSPLIT-ERFMG(1).&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING &amp;lt;b&amp;gt;l_field&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;int_record1-erfmg1.&lt;/P&gt;&lt;P&gt;CLEAR l_field.&lt;/P&gt;&lt;P&gt;CONCATENATE 'GOSPLIT-LGOBE(' l_index ') ' INTO l_field.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;l_field&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING &amp;lt;b&amp;gt;l_field&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;int_record1-lgobe1.&lt;/P&gt;&lt;P&gt;CLEAR l_field.&lt;/P&gt;&lt;P&gt;CONCATENATE 'GOSPLIT-CHARG(' l_index ') ' INTO l_field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;l_field.&amp;lt;/b&amp;gt;* 'GOSPLIT-CHARG'.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING 'l_field'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PERFORM bdc_field USING 'GOSPLIT-CHARG'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;int_record1-charg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM bdc_dynpro USING 'SAPLMIGO' '1000'.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=OK_GOON'.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 07:24:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699764#M625167</guid>
      <dc:creator>former_member491305</dc:creator>
      <dc:date>2007-08-13T07:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: BDC related problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699765#M625168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx a lot..&lt;/P&gt;&lt;P&gt;   its a silly me... i am notorious to do such a silly mistakes...&lt;/P&gt;&lt;P&gt;Thanx again..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 07:31:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-related-problem/m-p/2699765#M625168</guid>
      <dc:creator>naimkhans_babi</dc:creator>
      <dc:date>2007-08-13T07:31:37Z</dc:date>
    </item>
  </channel>
</rss>

