<?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 Classification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-classification/m-p/4372078#M1040326</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. For creating - BAPI_OBJCL_CREATE &lt;/P&gt;&lt;P&gt;2. For change - BAPI_OBJCL_CHANGE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Aug 2008 13:56:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-18T13:56:45Z</dc:date>
    <item>
      <title>Batch Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-classification/m-p/4372076#M1040324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I posted the stock in some batch, now i want to assign classification(charectorstics) to that posted batch,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz if u know any FM or BAPI  to do this, help me out by sending some sample coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gururaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2008 13:34:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-classification/m-p/4372076#M1040324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-18T13:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-classification/m-p/4372077#M1040325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Am not sure, whether you want to assign all the characteristics to a material or change some of the characteristics. Am sending you both the function modules; Try out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI_OBJCL_CREATE and&lt;/P&gt;&lt;P&gt;BAPI_OBJCL_CHANGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For updation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_OBJCL_GETDETAIL'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            objectkey        = Full material number&lt;/P&gt;&lt;P&gt;            objecttable      = 'MARA'&lt;/P&gt;&lt;P&gt;            classnum         = class name&lt;/P&gt;&lt;P&gt;            classtype        = '023'&lt;/P&gt;&lt;P&gt;            unvaluated_chars = c_true&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            allocvaluesnum   = lt_num&lt;/P&gt;&lt;P&gt;            allocvalueschar  = lt_char&lt;/P&gt;&lt;P&gt;            allocvaluescurr  = lt_curr&lt;/P&gt;&lt;P&gt;            return           = lt_ret.  &lt;/P&gt;&lt;P&gt;Now modify the required characteristics in thelt_num, lt_char, lt_curr and call the below function module to update it&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'BAPI_OBJCL_CHANGE'&lt;/P&gt;&lt;P&gt;             EXPORTING&lt;/P&gt;&lt;P&gt;                  objectkey          = Full material number&lt;/P&gt;&lt;P&gt;                  objecttable        = MARA&lt;/P&gt;&lt;P&gt;                  classnum           = class name&lt;/P&gt;&lt;P&gt;                  classtype          = '023'&lt;/P&gt;&lt;P&gt;             TABLES&lt;/P&gt;&lt;P&gt;                  allocvaluesnumnew  = lt_num&lt;/P&gt;&lt;P&gt;                  allocvaluescharnew = lt_char&lt;/P&gt;&lt;P&gt;                  allocvaluescurrnew = lt_curr&lt;/P&gt;&lt;P&gt;                  return             = lt_ret.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is successful in updation callthe below FM&lt;/P&gt;&lt;P&gt;          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran Bobbala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2008 13:50:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-classification/m-p/4372077#M1040325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-18T13:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-classification/m-p/4372078#M1040326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. For creating - BAPI_OBJCL_CREATE &lt;/P&gt;&lt;P&gt;2. For change - BAPI_OBJCL_CHANGE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2008 13:56:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-classification/m-p/4372078#M1040326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-18T13:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-classification/m-p/4372079#M1040327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i got solution,&lt;/P&gt;&lt;P&gt;thanks for all who are all replied&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Oct 2008 07:06:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-classification/m-p/4372079#M1040327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-11T07:06:54Z</dc:date>
    </item>
  </channel>
</rss>

