<?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 bdc for mr21 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-for-mr21/m-p/2758649#M642109</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to all experts,&lt;/P&gt;&lt;P&gt; I need a sample bdc code for uploading price change using mr21 tcode&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Sep 2007 14:17:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-03T14:17:08Z</dc:date>
    <item>
      <title>bdc for mr21</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-for-mr21/m-p/2758649#M642109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to all experts,&lt;/P&gt;&lt;P&gt; I need a sample bdc code for uploading price change using mr21 tcode&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 14:17:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-for-mr21/m-p/2758649#M642109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T14:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: bdc for mr21</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-for-mr21/m-p/2758650#M642110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;best thing would be do the recording using SHDB Transaction and capture all screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyhow see the sample code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report ZTESTMR21&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;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform open_group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPRCKM_MR21' '0201'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'MR21HEAD-BUKRS'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=ENTR'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'MR21HEAD-BUDAT'&lt;/P&gt;&lt;P&gt;                              '08/21/2007'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'MR21HEAD-BUKRS'&lt;/P&gt;&lt;P&gt;                              '0011'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'MR21HEAD-WERKS'&lt;/P&gt;&lt;P&gt;                              '1000'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'MR21HEAD-SCREEN_VARIANT'&lt;/P&gt;&lt;P&gt;                              'MR21_LAGERMATERIAL_0250'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPRCKM_MR21' '0201'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=ENTR'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'CKI_MR21_0250-NEWPEINH(01)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'MR21HEAD-SCREEN_VARIANT'&lt;/P&gt;&lt;P&gt;                              'MR21_LAGERMATERIAL_BWKEY_0250'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'CKI_MR21_0250-MATNR(01)'&lt;/P&gt;&lt;P&gt;                              '300300300'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'CKI_MR21_0250-NEWVALPR(01)'&lt;/P&gt;&lt;P&gt;                              '1'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'CKI_MR21_0250-NEWPEINH(01)'&lt;/P&gt;&lt;P&gt;                              '1'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPRCKM_MR21' '0201'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=SAVE'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'CKI_MR21_0250-MATNR(02)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'MR21HEAD-SCREEN_VARIANT'&lt;/P&gt;&lt;P&gt;                              'MR21_LAGERMATERIAL_BWKEY_0250'.&lt;/P&gt;&lt;P&gt;perform bdc_transaction using 'MR21'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform close_group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2007 14:32:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-for-mr21/m-p/2758650#M642110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-03T14:32:38Z</dc:date>
    </item>
  </channel>
</rss>

