<?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: how to insert some data using BDC??? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248455#M1985877</link>
    <description>&lt;P&gt;your attachment failed. &lt;/P&gt;&lt;P&gt;Could you try to restart your SHDB recording using VL10 or anything else without an "n" on the last char ?  VL10n is enjoy, and enjoy means problem with BDC&lt;/P&gt;</description>
    <pubDate>Thu, 24 Sep 2020 11:06:23 GMT</pubDate>
    <dc:creator>FredericGirod</dc:creator>
    <dc:date>2020-09-24T11:06:23Z</dc:date>
    <item>
      <title>how to insert some data using BDC???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248454#M1985876</link>
      <description>&lt;P&gt;hello experts...&lt;/P&gt;
  &lt;P&gt;now i am making some program..&lt;/P&gt;
  &lt;P&gt;this program write some data in standard program using BDC&lt;/P&gt;
  &lt;P&gt;first step, i go to T-Code SHDB&lt;/P&gt;
  &lt;P&gt;and then i record standard program.. this standard program's t-Code is VL10N&lt;/P&gt;
  &lt;P&gt;this standard program have some tab menu..( this is what i ask some question )&lt;/P&gt;
  &lt;P&gt;i input some data in standard Program&lt;/P&gt;
  &lt;P&gt;and i terminate my recording&lt;/P&gt;
  &lt;P&gt;and then i execute my program and then call my function "BDC_RUN"&lt;/P&gt;
  &lt;P&gt;my Function's some data entered first tab menu.. it is ok..!&lt;/P&gt;
  &lt;P&gt;but some data aren't entered next tab menu&lt;/P&gt;
  &lt;P&gt;i want to enter my data in first tab, next tab, and next tab...&lt;/P&gt;
  &lt;P&gt;this is my BDC_RUN source..&lt;/P&gt;
  &lt;P&gt;-------------------------------------------------------------------------------------------------------------&lt;/P&gt;
  &lt;P&gt;FORM bdc_run .&lt;BR /&gt;DATA : LV_INDEX TYPE SY-tabix.&lt;BR /&gt;&lt;BR /&gt;CLEAR : GT_BDC, GT_BDC[], GS_OPT, GT_MSG, GT_MSG[], GT_MSG.&lt;BR /&gt;&lt;BR /&gt;GS_OPT-dismode = 'E'. " 모든 화면 표시&lt;BR /&gt;GS_OPT-updmode = 'A'. " 비동기&lt;BR /&gt;GS_OPT-defsize = 'X'. " 기본 윈도우&lt;BR /&gt;&lt;BR /&gt;PERFORM BDC_DATA USING :&lt;BR /&gt;'X' 'RVV50R10C' '1000',&lt;BR /&gt;' ' 'ST_LEDAT-LOW' P_LEDAT, " TAB1&lt;BR /&gt;' ' 'ST_LEDAT-HIGH' P_LEDAT, " TAB1&lt;BR /&gt;" ' ' 'BDC_OKCODE' '=S0S_TAB1',&lt;BR /&gt;* 'X' 'RVV50R10C' '1000',&lt;BR /&gt;' ' 'ST_KUNWE-LOW' s_kunwe-low, " TAB1&lt;BR /&gt;' ' 'ST_KUNWE-HIGH' s_kunwe-high, " TAB1&lt;BR /&gt;" ' ' 'BDC_OKCODE' '=S0S_TAB1',&lt;BR /&gt;* 'X' 'RVV50R10C' '1000',&lt;BR /&gt;' ' 'ST_LPRIO-LOW' s_lprio-low, " TAB1&lt;BR /&gt;' ' 'ST_LPRIO-HIGH' s_lprio-high, " TAB1&lt;BR /&gt;" ' ' 'BDC_OKCODE' '=S0S_TAB1',&lt;BR /&gt;* 'X' 'RVV50R10C' '1000',&lt;BR /&gt;' ' 'ST_VSBED-LOW' s_vsbed-low, " TAB1&lt;BR /&gt;' ' 'ST_VSBED-LOW' s_vsbed-high, " TAB1&lt;BR /&gt;" ' ' 'BDC_OKCODE' '=S0S_TAB1',&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;'X' 'RVV50R10C' '1000',&lt;BR /&gt;' ' 'ST_VBELN-LOW' s_vbeln-low, " TAB2&lt;BR /&gt;' ' 'ST_VBELN-LOW' s_vbeln-high, " TAB2&lt;BR /&gt;" ' ' 'BDC_OKCODE' '=S0S_TAB2',&lt;BR /&gt;* 'X' 'RVV50R10C' '1000',&lt;BR /&gt;' ' 'ST_KUNNR-LOW' s_kunnr-low, " TAB2&lt;BR /&gt;' ' 'ST_KUNNR-HIGH' s_kunnr-high, " TAB2&lt;BR /&gt;" ' ' 'BDC_OKCODE' '=S0S_TAB2'&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;'X' 'RVV50R10C' '1000',&lt;BR /&gt;' ' 'ST_WERKS-LOW' P_WERKS, " TAB3&lt;BR /&gt;' ' 'ST_WERKS-HIGH' P_WERKS, " TAB3&lt;BR /&gt;" ' ' 'BDC_OKCODE' '=S0S_TAB3',&lt;BR /&gt;* 'X' 'RVV50R10C' '1000',&lt;BR /&gt;' ' 'ST_LGORT-LOW' p_lgort. " TAB3&lt;BR /&gt;" ' ' 'BDC_OKCODE' '=S0S_TAB3'.&lt;BR /&gt;&lt;BR /&gt;PERFORM BDC_TRANSACTION USING 'VL10A'.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ENDFORM.&lt;/P&gt;
  &lt;P&gt;-------------------------------------------------------------------------------------------------------------&lt;/P&gt;
  &lt;P&gt;i really wonder how to insert some data next tab...??&lt;/P&gt;
  &lt;P&gt;i attach some screen shot&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1847504-screenshot.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG alt="" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1847505-screenshot2.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG alt="" style="background-color: initial; font-size: 15px;" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1847506-screenshot3.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG alt="" /&gt;&lt;/P&gt;
  &lt;P&gt;i want to input my data in red zone ( i remark 'HERE' .. lol )&lt;/P&gt;
  &lt;P&gt;anyone help me plz....................................................!!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 10:35:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248454#M1985876</guid>
      <dc:creator>former_member689586</dc:creator>
      <dc:date>2020-09-24T10:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert some data using BDC???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248455#M1985877</link>
      <description>&lt;P&gt;your attachment failed. &lt;/P&gt;&lt;P&gt;Could you try to restart your SHDB recording using VL10 or anything else without an "n" on the last char ?  VL10n is enjoy, and enjoy means problem with BDC&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 11:06:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248455#M1985877</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-09-24T11:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert some data using BDC???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248456#M1985878</link>
      <description>&lt;P&gt;i re-attach my screen shot..&lt;/P&gt;&lt;P&gt;and then i don't understand your word..&lt;/P&gt;&lt;P&gt;enjoy..??&lt;/P&gt;&lt;P&gt;anyway i try to change my t-code VL10 &amp;lt;&amp;lt; &lt;/P&gt;&lt;P&gt;but same now..&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 11:22:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248456#M1985878</guid>
      <dc:creator>former_member689586</dc:creator>
      <dc:date>2020-09-24T11:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert some data using BDC???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248457#M1985879</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Usually, it is never recommended to use BDC for enjoy transactions. Enjoy transactions are nothing but transactions. Enjoy transactions usually ends with N and is created with an Object-oriented concept.&lt;/P&gt;&lt;P&gt; If you want to use VL10N then go for user exists or Badi's for the same.&lt;/P&gt;&lt;P&gt; If you want to go for BDC then use transaction VL10 for the same.&lt;/P&gt;&lt;P&gt;many fields cannot be recorded for enjoy transaction and that is the reason why, you are not able to achieve your requirement.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 13:21:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248457#M1985879</guid>
      <dc:creator>former_member703998</dc:creator>
      <dc:date>2020-09-24T13:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert some data using BDC???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248458#M1985880</link>
      <description>&lt;P&gt;VL10A is a report with a selection-screen with tabs, you can pass all those values in a SUBMIT report statement , what is your exact requirement?&lt;/P&gt;&lt;P&gt;Nevertheless, did you &lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Respect the sequence of selection-screen dynpro and ok_code to switch from tab to tab&lt;BR /&gt;(correct dynpro followed by correct values of  BDC_OKCODE and BDC_SUBSCR)&lt;/LI&gt;&lt;LI&gt;Record using 'Simulate Background mode'&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 24 Sep 2020 13:46:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248458#M1985880</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2020-09-24T13:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert some data using BDC???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248459#M1985881</link>
      <description>&lt;P&gt;thanks your comment&lt;/P&gt;&lt;P&gt;actually VL10N is my mistake.. it is typo..&lt;/P&gt;&lt;P&gt;T-Code is VL10A..&lt;/P&gt;&lt;P&gt;anyway.. thanks&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 14:29:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248459#M1985881</guid>
      <dc:creator>former_member689586</dc:creator>
      <dc:date>2020-09-24T14:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert some data using BDC???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248460#M1985882</link>
      <description>&lt;P&gt;thanks your comment..&lt;/P&gt;&lt;P&gt;my T-Code is VL10N.. not VL10A&lt;/P&gt;&lt;P&gt; soz for my mistake&lt;/P&gt;&lt;P&gt;it is typo..&lt;/P&gt;&lt;P&gt;anyway i will try your teaching&lt;/P&gt;&lt;P&gt;and then what i want to do exactly.. i want to input some value ( value means some input values that be input in my cbo program )&lt;/P&gt;&lt;P&gt; in field in second, third,  fourth tab.. ( i already input some value to some field in first tab )&lt;/P&gt;&lt;P&gt;plz refer my first screen shot, i was written "HERE" ( second, third, fourth... tab )&lt;/P&gt;&lt;P&gt;( it means some input values that be input in my cbo program )&lt;/P&gt;&lt;P&gt;lastly sorry for my terrible english sorry sorry..&lt;/P&gt;&lt;P&gt;and thanks your comment&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 14:38:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248460#M1985882</guid>
      <dc:creator>former_member689586</dc:creator>
      <dc:date>2020-09-24T14:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert some data using BDC???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248461#M1985883</link>
      <description>&lt;P&gt;Why don't you use user exit V50R0001 and V50R0002 to achieve your requirement. Go for BDC only if we don't have anyother options&lt;/P&gt;</description>
      <pubDate>Fri, 25 Sep 2020 06:37:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248461#M1985883</guid>
      <dc:creator>former_member703998</dc:creator>
      <dc:date>2020-09-25T06:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert some data using BDC???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248462#M1985884</link>
      <description>&lt;P&gt;If the BDC does not return the hand to the user, did you consider the use of BAPI as &lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;BAPI_OUTB_DELIVERY_CREATE_SLS (Sales Order - Delivery) &lt;/LI&gt;&lt;LI&gt;BAPI_OUTB_DELIVERY_CREATE_STO (Stock Transport Order - Delivery) &lt;/LI&gt;&lt;LI&gt;BAPI_OUTB_DELIVERY_CREATE_NOREF (Delivery without Reference)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Don't use any search function in a BDC recording, that will usually not perform well at best.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NB: The report in your BDC recording is RVV50R10C (VL10A) and not SAPMV50A (VL01N) - If you use it to select some records to process, either execute the SELECT yourself, or use a SUBMIT statement with class CL_SALV_BS_RUNTIME_INFO to get the selected records internal table without displaying the dynpro/grid and then loop at the returned table and call the BAPI.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Sep 2020 07:14:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248462#M1985884</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2020-09-25T07:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert some data using BDC???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248463#M1985885</link>
      <description>&lt;P&gt;thanks your comment..&lt;/P&gt;&lt;P&gt;i solve my probelm&lt;/P&gt;&lt;P&gt;i forget to write " " "BDC_SUBSCR" "1002" &amp;lt;&amp;lt;&amp;lt; this code&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 04:52:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248463#M1985885</guid>
      <dc:creator>former_member689586</dc:creator>
      <dc:date>2020-09-28T04:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert some data using BDC???</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248464#M1985886</link>
      <description>&lt;P&gt;thanks your comment..&lt;/P&gt;&lt;P&gt;i solve my probelm&lt;/P&gt;&lt;P&gt;i forget to write " " "BDC_SUBSCR" "1002" &amp;lt;&amp;lt;&amp;lt; this code&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 04:52:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-insert-some-data-using-bdc/m-p/12248464#M1985886</guid>
      <dc:creator>former_member689586</dc:creator>
      <dc:date>2020-09-28T04:52:41Z</dc:date>
    </item>
  </channel>
</rss>

