<?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: upload in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015967#M712770</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Our arsenal consists of: Eggs, tomatoes, delete button, cream pies... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy the weekend,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 30 May 2009 08:20:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-30T08:20:03Z</dc:date>
    <item>
      <title>upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015962#M712765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;How to upload ME11 using BDC. it will be helpfull if any one can send steps of recording &amp;amp; code.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 18:33:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015962#M712765</guid>
      <dc:creator>former_member329386</dc:creator>
      <dc:date>2007-11-05T18:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015963#M712766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here is the program for the BDC Recording for ME11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report ZTEST_ME11
       no standard page heading line-size 255.

include bdcrecx1.

parameters: dataset(132) lower case.
***    DO NOT CHANGE - the generated data section - DO NOT CHANGE    ***
*
*   If it is nessesary to change the data section use the rules:
*   1.) Each definition of a field exists of two lines
*   2.) The first line shows exactly the comment
*       '* data element: ' followed with the data element
*       which describes the field.
*       If you don't have a data element use the
*       comment without a data element name
*   3.) The second line shows the fieldname of the
*       structure, the fieldname must consist of
*       a fieldname and optional the character '_' and
*       three numbers and the field length in brackets
*   4.) Each field must be type C.
*
*** Generated data section with specific formatting - DO NOT CHANGE  ***
data: begin of record,
* data element: ELIFN
        LIFNR_001(010),
* data element: INFNR
        INFNR_002(010),
* data element: NORMB
        NORMB_003(001),
* data element: EINATX
        TXZ01_004(040),
* data element: MATKL
        MATKL_005(009),
* data element: ULAND
        URZLA_006(003),
* data element: TELF0
        TELF1_007(016),
* data element: BSTME
        MEINS_008(003),
* data element: SORTI
        SORTL_009(010),
* data element: LTEXT
        LTEX1_01_010(040),
      end of record.

*** End generated data section ***

start-of-selection.

perform open_dataset using dataset.
perform open_group.

do.

read dataset dataset into record.
if sy-subrc &amp;lt;&amp;gt; 0. exit. endif.

perform bdc_dynpro      using 'SAPMM06I' '0100'.
perform bdc_field       using 'BDC_CURSOR'
                              'EINA-LIFNR'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'EINA-LIFNR'
                              record-LIFNR_001.
perform bdc_field       using 'EINA-INFNR'
                              record-INFNR_002.
perform bdc_field       using 'RM06I-NORMB'
                              record-NORMB_003.
perform bdc_dynpro      using 'SAPMM06I' '0101'.
perform bdc_field       using 'BDC_CURSOR'
                              'EINA-SORTL'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'EINA-TXZ01'
                              record-TXZ01_004.
perform bdc_field       using 'EINA-MATKL'
                              record-MATKL_005.
perform bdc_field       using 'EINA-URZLA'
                              record-URZLA_006.
perform bdc_field       using 'EINA-TELF1'
                              record-TELF1_007.
perform bdc_field       using 'EINA-MEINS'
                              record-MEINS_008.
perform bdc_field       using 'EINA-SORTL'
                              record-SORTL_009.
perform bdc_dynpro      using 'SAPMM06I' '0103'.
perform bdc_field       using 'BDC_CURSOR'
                              'RM06I-LTEX1(01)'.
perform bdc_field       using 'BDC_OKCODE'
                              '=BU'.
perform bdc_field       using 'RM06I-LTEX1(01)'
                              record-LTEX1_01_010.
perform bdc_transaction using 'ME11'.

enddo.

perform close_group.
perform close_dataset using dataset.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 18:38:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015963#M712766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-05T18:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015964#M712767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 08:54:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015964#M712767</guid>
      <dc:creator>former_member329386</dc:creator>
      <dc:date>2009-05-29T08:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015965#M712768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;User ID deleted for answering lazy questions...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 10:18:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015965#M712768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T10:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015966#M712769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about people asking them ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 10:20:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015966#M712769</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-05-29T10:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015967#M712770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Our arsenal consists of: Eggs, tomatoes, delete button, cream pies... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy the weekend,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2009 08:20:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload/m-p/3015967#M712770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-30T08:20:03Z</dc:date>
    </item>
  </channel>
</rss>

