<?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: Batch Input ML81N in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-ml81n/m-p/12711849#M2019175</link>
    <description>&lt;P&gt;Read OSS notes such as &lt;A href="https://launchpad.support.sap.com/#/notes/381805"&gt;381805 - ML81N: Batch input is not possible&lt;/A&gt; and Business Object BUS2091 method Create, implemented &lt;/P&gt;&lt;P&gt;What exactly was the problem with the BAPI?&lt;/P&gt;</description>
    <pubDate>Mon, 16 Jan 2023 12:42:55 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2023-01-16T12:42:55Z</dc:date>
    <item>
      <title>Batch Input ML81N</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-ml81n/m-p/12711848#M2019174</link>
      <description>&lt;P&gt;Hallo,&lt;/P&gt;
  &lt;P&gt;ich habe einen BI, der das anlegen von Erfassungsblättern in der ML81N simuliert. Dieser ist für das monatliche Leasing von Fahrzeugen angedacht. Prinzipiell funktioniert der BI, nur er legt nicht mehrere Erfassungsblätter hintereinander an. Dann kommt die Meldung Benutzer x/y bearbeitet bereits Bestellung x/y und es wird nur die erste Position angelegt.&lt;/P&gt;
  &lt;P&gt;Davor habe ich bereits den Baustein BAPI_ENTRYSHEET_CREATE getestet, dieser hat aber nicht das gewünschte erfüllt.&lt;/P&gt;
  &lt;P&gt;Hier der Programmausschnitt für den BI:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;IF p_echtl = 'X'. &lt;BR /&gt; PERFORM open_group USING '01MM_MI02' P_ct. &lt;BR /&gt;ENDIF. &lt;BR /&gt;LOOP AT gt_loop INTO gs_loop. &lt;BR /&gt; CALL METHOD zcl_bc_tools=&amp;gt;schraffur. &lt;BR /&gt; WRITE: / gs_loop-EBELN, &lt;BR /&gt; gs_loop-EBELP. &lt;BR /&gt; CALL METHOD zcl_bc_tools=&amp;gt;auffuellen. &lt;BR /&gt; IF p_echtl = 'X'. &lt;BR /&gt; PERFORM anlegen USING gs_loop-ebeln &lt;BR /&gt; gs_loop-EBELp. &lt;BR /&gt; ENDIF. &lt;BR /&gt;ENDLOOP. &lt;BR /&gt;IF p_echtl = 'X'. &lt;BR /&gt;PERFORM close_group USING p_ct. &lt;BR /&gt;ENDIF.&lt;BR /&gt;------------------------ Batch-Input---------------------------------&lt;BR /&gt;FORM anlegen USING i_ebeln &lt;BR /&gt; i_ebelp. &lt;BR /&gt;if sy-subrc &amp;lt;&amp;gt; 0. exit. endif. &lt;BR /&gt;perform bdc_dynpro using 'SAPLMLSR' '0400'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '=SELP'. &lt;BR /&gt;perform bdc_field using 'BDC_CURSOR' &lt;BR /&gt; 'RM11P-NEW_ROW'. &lt;BR /&gt;perform bdc_field using 'RM11P-NEW_ROW' &lt;BR /&gt; '10'. &lt;BR /&gt;perform bdc_dynpro using 'SAPLMLSR' '0340'. &lt;BR /&gt;perform bdc_field using 'BDC_CURSOR' &lt;BR /&gt; 'RM11R-EBELP'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '=ENTE'. &lt;BR /&gt;perform bdc_field using 'RM11R-EBELN' &lt;BR /&gt; i_ebeln. &lt;BR /&gt;perform bdc_field using 'RM11R-EBELP' &lt;BR /&gt; i_ebelp. &lt;BR /&gt;perform bdc_dynpro using 'SAPLMLSR' '0400'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '=NEU'. &lt;BR /&gt;perform bdc_field using 'BDC_CURSOR' &lt;BR /&gt; 'RM11P-NEW_ROW'. &lt;BR /&gt;perform bdc_field using 'RM11P-NEW_ROW' &lt;BR /&gt; '10'. &lt;BR /&gt;perform bdc_dynpro using 'SAPLMLSR' '0400'. &lt;BR /&gt;perform bdc_field using 'BDC_CURSOR' &lt;BR /&gt; 'ESSR-TXZ01'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '=VOKO'. &lt;BR /&gt;perform bdc_field using 'ESSR-LBLDT' &lt;BR /&gt; date_LBLDT. &lt;BR /&gt;perform bdc_field using 'ESSR-BLDAT' &lt;BR /&gt; date_bldat. &lt;BR /&gt;perform bdc_field using 'ESSR-BUDAT' &lt;BR /&gt; date_budat. &lt;BR /&gt;perform bdc_field using 'RM11P-NEW_ROW' &lt;BR /&gt; '10'. &lt;BR /&gt;perform bdc_dynpro using 'SAPLMLSP' '0500'. &lt;BR /&gt;perform bdc_field using 'BDC_CURSOR' &lt;BR /&gt; 'RM11P-MUSTER_LV'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '=OK'. &lt;BR /&gt;perform bdc_field using '*RM11P-BEST_SEL' &lt;BR /&gt; 'X'. &lt;BR /&gt;perform bdc_dynpro using 'SAPLMLSP' '0201'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '=GRPD'. &lt;BR /&gt;perform bdc_field using 'BDC_CURSOR' &lt;BR /&gt; 'ESLL-KTEXT1(01)'. &lt;BR /&gt;perform bdc_field using 'RM11P-NEW_ROW' &lt;BR /&gt; '10'. &lt;BR /&gt;perform bdc_dynpro using 'SAPLMLSK' '0200'. &lt;BR /&gt;perform bdc_field using 'BDC_CURSOR' &lt;BR /&gt; 'RM11K-MKNTM(01)'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '/00'. &lt;BR /&gt;perform bdc_field using 'VRTKZ1' &lt;BR /&gt; 'X'. &lt;BR /&gt;perform bdc_dynpro using 'SAPLMLSK' '0200'. &lt;BR /&gt;perform bdc_field using 'BDC_CURSOR' &lt;BR /&gt; 'RM11K-MKNTM(01)'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '=UMOD'. &lt;BR /&gt;perform bdc_field using 'VRTKZ1' &lt;BR /&gt; 'X'. &lt;BR /&gt;perform bdc_dynpro using 'SAPLMLSK' '0100'. &lt;BR /&gt;perform bdc_field using 'BDC_CURSOR' &lt;BR /&gt; 'ESKN-SAKTO'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '=ENTE'. &lt;BR /&gt;*perform bdc_field using 'ESKN-SAKTO' &lt;BR /&gt;* record-SAKTO_013. &lt;BR /&gt;*perform bdc_field using 'DKACB-FMORE' &lt;BR /&gt;* record-FMORE_014. &lt;BR /&gt;perform bdc_dynpro using 'SAPLKACB' '0002'. &lt;BR /&gt;perform bdc_field using 'BDC_CURSOR' &lt;BR /&gt; 'COBL-AUFNR'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '=ENTE'. &lt;BR /&gt;*perform bdc_field using 'COBL-AUFNR' &lt;BR /&gt;* record-AUFNR_015. &lt;BR /&gt;perform bdc_dynpro using 'SAPLMLSR' '0400'. &lt;BR /&gt;perform bdc_field using 'BDC_CURSOR' &lt;BR /&gt; 'ESSR-TXZ01'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '=ACCP'. &lt;BR /&gt;perform bdc_field using 'ESSR-BLDAT' &lt;BR /&gt; date_bldat. &lt;BR /&gt;perform bdc_field using 'ESSR-BUDAT' &lt;BR /&gt; date_budat. &lt;BR /&gt;perform bdc_field using 'RM11P-NEW_ROW' &lt;BR /&gt; '10'. &lt;BR /&gt;perform bdc_dynpro using 'SAPLMLSR' '0400'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '=SAVE'. &lt;BR /&gt;perform bdc_field using 'BDC_CURSOR' &lt;BR /&gt; 'RM11P-NEW_ROW'. &lt;BR /&gt;perform bdc_field using 'RM11P-NEW_ROW' &lt;BR /&gt; '10'. &lt;BR /&gt;perform bdc_dynpro using 'SAPLSPO1' '0300'. &lt;BR /&gt;perform bdc_field using 'BDC_OKCODE' &lt;BR /&gt; '=YES'. &lt;BR /&gt;perform bdc_transaction using 'ML81N' p_ct 'MZ_T02'. &lt;BR /&gt;ENDFORM. &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 Jan 2023 09:58:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-ml81n/m-p/12711848#M2019174</guid>
      <dc:creator>zuerbesm</dc:creator>
      <dc:date>2023-01-16T09:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input ML81N</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-ml81n/m-p/12711849#M2019175</link>
      <description>&lt;P&gt;Read OSS notes such as &lt;A href="https://launchpad.support.sap.com/#/notes/381805"&gt;381805 - ML81N: Batch input is not possible&lt;/A&gt; and Business Object BUS2091 method Create, implemented &lt;/P&gt;&lt;P&gt;What exactly was the problem with the BAPI?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 12:42:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-ml81n/m-p/12711849#M2019175</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2023-01-16T12:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input ML81N</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-ml81n/m-p/12711850#M2019176</link>
      <description>&lt;P&gt;Bitte bearbeiten Sie Ihre Frage, wählen Sie Ihren Code aus und drücken Sie die Schaltfläche [CODE], wodurch der Code farbig/eingerückt erscheint, damit die Leute ihn leichter sehen können. Danke dir!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 13:13:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-ml81n/m-p/12711850#M2019176</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-01-16T13:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input ML81N</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-ml81n/m-p/12711851#M2019177</link>
      <description>&lt;P&gt;I already solved the problem, the time in between creating two entrysheets was too short. Because of that it was blocked.&lt;/P&gt;&lt;P&gt;But thanks anyways! &lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 13:26:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-ml81n/m-p/12711851#M2019177</guid>
      <dc:creator>zuerbesm</dc:creator>
      <dc:date>2023-01-16T13:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Input ML81N</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-ml81n/m-p/12711852#M2019178</link>
      <description>&lt;P&gt;Then please close your question&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 13:44:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-ml81n/m-p/12711852#M2019178</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2023-01-16T13:44:43Z</dc:date>
    </item>
  </channel>
</rss>

