<?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: Dynamically call Tcode COR8 thru ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370426#M1993607</link>
    <description>&lt;P&gt;They want to be able to change the quantities and dates of the planned order when converting.  I'll review the BAPI's you suggested and what I can come up with.  &lt;/P&gt;</description>
    <pubDate>Tue, 05 Jan 2021 15:38:45 GMT</pubDate>
    <dc:creator>DarcyMorse</dc:creator>
    <dc:date>2021-01-05T15:38:45Z</dc:date>
    <item>
      <title>Dynamically call Tcode COR8 thru ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370421#M1993602</link>
      <description>&lt;P&gt;We would like to be able to call up COR8 based on a different selection screen allowing multiple Production Supervisors and Stock Planners. When we do this with a call transaction there is no way to default in the dates. When we use a Call Transaction with a background recording stopping at the ALV Grid Screen of COR8, it will only process 1 process order selected (even when multiple are selected to be converted). &lt;/P&gt;
  &lt;P&gt;We would like to avoid an implicit enhancement if possible. Any ideas?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jan 2021 14:07:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370421#M1993602</guid>
      <dc:creator>DarcyMorse</dc:creator>
      <dc:date>2021-01-05T14:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically call Tcode COR8 thru ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370422#M1993603</link>
      <description>&lt;P&gt;Without providing your code, we will not be able to give you any indication of what you might be doing wrong.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jan 2021 14:22:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370422#M1993603</guid>
      <dc:creator>ArthurParisius</dc:creator>
      <dc:date>2021-01-05T14:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically call Tcode COR8 thru ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370423#M1993604</link>
      <description>&lt;P&gt;First I am selecting valid entries from the PLAF table for the selection screen.  I am then removing duplicates to get unique values to feed into COR8.  This is the code within the loop:&lt;/P&gt;&lt;P&gt; clear it_bdcmsgcoll[].&lt;BR /&gt; clear it_bdcdata[].&lt;BR /&gt; PERFORM bdc_dynpro USING 'SAPLCOUP' '5100'.&lt;BR /&gt; PERFORM bdc_field USING 'CAUFVD-WERKS' fp_plwrk.&lt;BR /&gt; PERFORM bdc_field USING 'CAUFVD-SLDTV' g_date1.&lt;BR /&gt; PERFORM bdc_field USING 'CAUFVD-SLDTB' g_date2.&lt;BR /&gt; PERFORM bdc_field USING 'CAUFVD-DISPO' fp_dispo.&lt;BR /&gt; PERFORM bdc_field USING 'CAUFVD-FEVOR' fp_plgrp.&lt;BR /&gt; PERFORM bdc_field USING 'AUFPAR-PI_AUFART' p_aufart.&lt;BR /&gt; PERFORM bdc_field USING 'BDC_OKCODE' '=AUSF'.&lt;BR /&gt;&lt;BR /&gt; CALL TRANSACTION 'COR8' without AUTHORITY-CHECK&lt;BR /&gt; USING it_bdcdata&lt;BR /&gt; MODE 'E'         "'N' no show, e = error a = all&lt;BR /&gt; UPDATE 'S' " lc_update "'A'&lt;BR /&gt; MESSAGES INTO it_bdcmsgcoll.&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;I had a break-point before and after, and it stops successfully at the Grid, so they can make quantity changes, and select the plans they want converted, but I think that it is coming across another screen, so the transaction is then kicking out.  I know that if the Process order type isn't entered in COR8 that there is a popup.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jan 2021 14:29:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370423#M1993604</guid>
      <dc:creator>DarcyMorse</dc:creator>
      <dc:date>2021-01-05T14:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically call Tcode COR8 thru ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370424#M1993605</link>
      <description>&lt;P&gt;Hello &lt;SPAN class="mention-scrubbed"&gt;dmorse&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;As far as I've understood your requirement, you need to build a custom tool to convert planned order. If so, why don't you use BAPI_PRODORD_CREATE_FROM_PLORD function to convert them instead of calling COR8 in background? It's going to be much easier to implement and maintain. BDC are not best practice if there is a BAPI in place.&lt;/P&gt;&lt;P&gt;You might also consider using BAPI_PLANNEDORDER_GET_DET_LIST function to select planned orders. &lt;/P&gt;&lt;P&gt;Both functions are nicely documented.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Dominik Tylczynski&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jan 2021 15:31:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370424#M1993605</guid>
      <dc:creator>Dominik_Tylczynski</dc:creator>
      <dc:date>2021-01-05T15:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically call Tcode COR8 thru ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370425#M1993606</link>
      <description>&lt;P&gt;Could you try to perform some test with the 'OPTIONS FROM opt' option of 'CALL TRANSACTION' statement, using fields RACOMMIT, NOBINPT and/or OPT-NOBIEND of opt.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jan 2021 15:36:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370425#M1993606</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2021-01-05T15:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically call Tcode COR8 thru ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370426#M1993607</link>
      <description>&lt;P&gt;They want to be able to change the quantities and dates of the planned order when converting.  I'll review the BAPI's you suggested and what I can come up with.  &lt;/P&gt;</description>
      <pubDate>Tue, 05 Jan 2021 15:38:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370426#M1993607</guid>
      <dc:creator>DarcyMorse</dc:creator>
      <dc:date>2021-01-05T15:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically call Tcode COR8 thru ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370427#M1993608</link>
      <description>&lt;P&gt;Please use the COMMENT button for comments, questions, adding details, replying to OP comment, etc., ANSWER is only to propose a solution, dixit SAP text at the right of the answer area.&lt;/P&gt;&lt;P&gt;If you want to target someone, if this person has posted an Answer, use the button COMMENT, if this person is the Original Poster of the question he/she will be automatically informed, otherwise copy/paste their hyperlinked name so that the person receives a warning (NB: @ doesn't work/but typing this character will suggest hyperlinked names).&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jan 2021 16:25:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370427#M1993608</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-01-05T16:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamically call Tcode COR8 thru ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370428#M1993609</link>
      <description>&lt;P&gt;The combination of racommit and nobiend seemed to do the trick.  Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jan 2021 16:28:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-call-tcode-cor8-thru-abap/m-p/12370428#M1993609</guid>
      <dc:creator>DarcyMorse</dc:creator>
      <dc:date>2021-01-05T16:28:58Z</dc:date>
    </item>
  </channel>
</rss>

