<?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 IMPLEMENT A METHOD in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-implement-a-method/m-p/1796865#M342364</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun &lt;/P&gt;&lt;P&gt; This error may be due to the reason that  the method SAVE_AND_PUBLISH_BEFORE_OUTPUT may not have been implemented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To check this if its implemented , &lt;/P&gt;&lt;P&gt;go to SE18 -&amp;gt; put  the BADI name as LE_SHP_DELIVERY_PROC&lt;/P&gt;&lt;P&gt; -&amp;gt; click display -&amp;gt; choose IMPLEMENTATION----DISPLAY in the menu bar &lt;/P&gt;&lt;P&gt;-- &amp;gt;click Interface&lt;/P&gt;&lt;P&gt; --&amp;gt; double click on the method name &lt;/P&gt;&lt;P&gt;--&amp;gt; If no code is shown then the method has not been implemented yet. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  Check if this works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Dec 2006 09:31:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-20T09:31:14Z</dc:date>
    <item>
      <title>HOW TO IMPLEMENT A METHOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-implement-a-method/m-p/1796863#M342362</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;In T-Code VL10D, I am getting Short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"You called an interface method that has not been implemented yet."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An exception occurred. This exception is dealt with in more detail below&lt;/P&gt;&lt;P&gt;. The exception, which is assigned to the class&lt;/P&gt;&lt;P&gt; 'CX_SY_DYN_CALL_ILLEGAL_METHOD', was neither&lt;/P&gt;&lt;P&gt;caught nor passed along using a RAISING clause, in the procedure&lt;/P&gt;&lt;P&gt; "IF_EX_LE_SHP_DELIVERY_PROC~SAVE_AND_PUBLISH_BEFORE_OUTPUT" "(METHOD)"&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Since the caller of the procedure could not have expected this exception&lt;/P&gt;&lt;P&gt; to occur, the running program was terminated.&lt;/P&gt;&lt;P&gt;The reason for the exception is:&lt;/P&gt;&lt;P&gt;The system tried to call interface method&lt;/P&gt;&lt;P&gt; "IF_EX_LE_SHP_DELIVERY_PROC~SAVE_AND_PUBLISH_BEFORE_OUTPUT"&lt;/P&gt;&lt;P&gt;at class "/BEV1/CL_IM_LU_SD_SHIPM_1" that has not been implemented yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to solve this issue, this is after applying patches.&lt;/P&gt;&lt;P&gt;Appropriate pointswill be rewarded.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 09:07:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-implement-a-method/m-p/1796863#M342362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T09:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: HOW TO IMPLEMENT A METHOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-implement-a-method/m-p/1796864#M342363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Arun&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BAdI LE_SHP_DELIVERY_PROC (Enhancements in Delivery Processing) [see transaction SE18]contains the interface IF_EX_LE_SHP_DELIVERY_PROC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The implementation /BEV1/LU_SD_SHIPM_1 (transaction SE19) implements the BAdI using class /BEV1/CL_IM_LU_SD_SHIPM_1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The method IF_EX_LE_SHP_DELIVERY_PROC~SAVE_AND_PUBLISH_DOCUMENT exists but has no coding on our system (ECC 5.0).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For testing purposes you could implement the method (using transaction SE24) by just putting a break-point there. Note that you have to modify the class because it is a SAP standard object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 09:26:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-implement-a-method/m-p/1796864#M342363</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2006-12-20T09:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: HOW TO IMPLEMENT A METHOD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-implement-a-method/m-p/1796865#M342364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun &lt;/P&gt;&lt;P&gt; This error may be due to the reason that  the method SAVE_AND_PUBLISH_BEFORE_OUTPUT may not have been implemented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To check this if its implemented , &lt;/P&gt;&lt;P&gt;go to SE18 -&amp;gt; put  the BADI name as LE_SHP_DELIVERY_PROC&lt;/P&gt;&lt;P&gt; -&amp;gt; click display -&amp;gt; choose IMPLEMENTATION----DISPLAY in the menu bar &lt;/P&gt;&lt;P&gt;-- &amp;gt;click Interface&lt;/P&gt;&lt;P&gt; --&amp;gt; double click on the method name &lt;/P&gt;&lt;P&gt;--&amp;gt; If no code is shown then the method has not been implemented yet. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  Check if this works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 09:31:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-implement-a-method/m-p/1796865#M342364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T09:31:14Z</dc:date>
    </item>
  </channel>
</rss>

