<?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 Identify Class for Customer Developement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/identify-class-for-customer-developement/m-p/3382507#M812117</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are writing ABAP program to create PO. There's a class  CL_WB2_PO_CREATE doing similar things. We would like to know how to identify the Class is released for customer use. We know that there's a "Release On" field in BAPI attributes which means that it is open for customer use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any one use the class already written in the system? Any documentation on using class? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Feb 2008 01:22:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-21T01:22:43Z</dc:date>
    <item>
      <title>Identify Class for Customer Developement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/identify-class-for-customer-developement/m-p/3382507#M812117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are writing ABAP program to create PO. There's a class  CL_WB2_PO_CREATE doing similar things. We would like to know how to identify the Class is released for customer use. We know that there's a "Release On" field in BAPI attributes which means that it is open for customer use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any one use the class already written in the system? Any documentation on using class? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Feb 2008 01:22:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/identify-class-for-customer-developement/m-p/3382507#M812117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-21T01:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Identify Class for Customer Developement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/identify-class-for-customer-developement/m-p/3382508#M812118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check also function module BAPI_PO_CREATE1, &lt;/P&gt;&lt;P&gt;in header there is a field PO_REL_IND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 09:28:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/identify-class-for-customer-developement/m-p/3382508#M812118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T09:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: Identify Class for Customer Developement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/identify-class-for-customer-developement/m-p/3382509#M812119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My concern is whether there is SAP documentation talking about using those class. We know that there is BAPI to create PO. But we wanna try new OO approach to solve problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 10:30:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/identify-class-for-customer-developement/m-p/3382509#M812119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T10:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: Identify Class for Customer Developement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/identify-class-for-customer-developement/m-p/3382510#M812120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Thomas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Trading Execution Workbench (package WB2B_METHODS) contains many fancy classes which are worth being investigated and used.&lt;/P&gt;&lt;P&gt;However, I am not sure if you are on the right track.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you look under the hood of BAPI_PO_CREATE1 you will see that the following classes are used:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
...
* local data
  DATA:
  lf_header_currency  LIKE tcurc-waers,
* local references
  l_messages          TYPE mepo_t_messages_bapi,
  l_po                TYPE REF TO cl_po_header_handle_mm,      " Handle of a Purchasing Document
  my_handler          TYPE REF TO cl_message_handler_mm,  " Message Handler
  lt_models           TYPE mmpur_models,
* local structure
...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you browse the class library of package &lt;STRONG&gt;ME&lt;/STRONG&gt; (Purchasing) you will find another useful class:&lt;/P&gt;&lt;P&gt;CL_PO_ITEM_HANDLE_MM (Item of a Purchasing Document).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I regard the BAPI_PO_CREATE1 as a nice encapsulation of the complexity when creating new purchase orders. Therefore, I would prefer to use the BAPI over the currently available classes.&lt;/P&gt;&lt;P&gt;However, if you deal with existing purchase order the classes will be extremly useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, if you make yourself familiar with these two classes ( &lt;STRONG&gt;CL_PO_HEADER_HANDLE_MM&lt;/STRONG&gt; &amp;amp; &lt;STRONG&gt;CL_PO_ITEM_HANDLE_MM&lt;/STRONG&gt; ) you will understand any &lt;STRONG&gt;BAdI&lt;/STRONG&gt; related to purchasing.&lt;/P&gt;&lt;P&gt;&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>Tue, 04 Mar 2008 11:21:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/identify-class-for-customer-developement/m-p/3382510#M812120</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-03-04T11:21:10Z</dc:date>
    </item>
  </channel>
</rss>

