<?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: Function to retrieve PM Notification Item Classification data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408116#M1407330</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adrian,&lt;/P&gt;&lt;P&gt;what about this FM?&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CLFM_SELECT_AUSP'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    MAFID                    = 'O'&lt;/P&gt;&lt;P&gt;    CLASSTYPE                = '015'&lt;/P&gt;&lt;P&gt;    OBJECT                   = your_obj "notification number&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FEATURE                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CLEAR_BUFFER             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  KEY_DATE                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WITH_CHANGE_NUMBER       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TABLE                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_ATZHL_SAME_INI         = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_AENNR                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;   EXP_AUSP                 = it_AUSP "Like Standard table AUSP&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NO_VALUES                = 1&lt;/P&gt;&lt;P&gt;   OTHERS                   = 2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Dec 2009 08:12:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-09T08:12:14Z</dc:date>
    <item>
      <title>Function to retrieve PM Notification Item Classification data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408113#M1407327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I have added classification to my PM Notification item (IW21), and would like to have a BAPI / FM to retrieve these classification datas. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been trying BAPI_OBJCL_GETDETAIL but facing some problem populating the parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'BAPI_OBJCL_GETDETAIL'
  EXPORTING
    objectkey              = 
    objecttable            = 'QMFE'
    classnum               = 'SC'
    classtype              = '015'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SC is the classification I've created. I tried putting the Notification number as objectkey but it returns an error saying that the object does not exist. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I on the right track to obtain the information I wanted? If so, how do I find the objectkey to use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2009 09:50:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408113#M1407327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-01T09:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Function to retrieve PM Notification Item Classification data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408114#M1407328</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;Try using BAPI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'BAPI_ALM_NOTIF_GET_DETAIL'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      number             = Notificatoin number&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      notifheader_export = &lt;/P&gt;&lt;P&gt;      notifhdtext        = &lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      notlongtxt         = &lt;/P&gt;&lt;P&gt;      notitem            =&lt;/P&gt;&lt;P&gt;      notifcaus          =&lt;/P&gt;&lt;P&gt;      notifactv          = &lt;/P&gt;&lt;P&gt;      notiftask          = &lt;/P&gt;&lt;P&gt;      notifpartnr        =&lt;/P&gt;&lt;P&gt;      return             = &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hema&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 03:47:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408114#M1407328</guid>
      <dc:creator>former_member15918</dc:creator>
      <dc:date>2009-12-08T03:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Function to retrieve PM Notification Item Classification data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408115#M1407329</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; You should call the FM "BAPI_OBJCL_GETDETAIL" as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;CALL FUNCTION 'BAPI_OBJCL_GETDETAIL'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;EXPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;OBJECTKEY        = &amp;lt; Here your notification number &amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;OBJECTTABLE      = &amp;lt; The table name &amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;CLASSNUM         = &amp;lt; Here you specify class eg. GL_INSP ( for inspection related )&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;CLASSTYPE        = &amp;lt; Specify the class type here &amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;UNVALUATED_CHARS = 'X'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;LANGUAGE         = SY-LANGU&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;TABLES&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;ALLOCVALUESNUM   = I_ALLOCNUM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;ALLOCVALUESCHAR  = I_ALLOCCHAR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;ALLOCVALUESCURR  = I_ALLOCCURR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;RETURN           = I_RETURN.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Smart Varghese&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 04:50:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408115#M1407329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T04:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Function to retrieve PM Notification Item Classification data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408116#M1407330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adrian,&lt;/P&gt;&lt;P&gt;what about this FM?&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CLFM_SELECT_AUSP'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    MAFID                    = 'O'&lt;/P&gt;&lt;P&gt;    CLASSTYPE                = '015'&lt;/P&gt;&lt;P&gt;    OBJECT                   = your_obj "notification number&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FEATURE                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CLEAR_BUFFER             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  KEY_DATE                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WITH_CHANGE_NUMBER       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TABLE                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_ATZHL_SAME_INI         = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_AENNR                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;   EXP_AUSP                 = it_AUSP "Like Standard table AUSP&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NO_VALUES                = 1&lt;/P&gt;&lt;P&gt;   OTHERS                   = 2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Dec 2009 08:12:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408116#M1407330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-09T08:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: Function to retrieve PM Notification Item Classification data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408117#M1407331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys, thanks for the suggestions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hemalata, I've tried the function and it doesn't return any object key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;smartvarghese, also tried putting in the Notification number but it returns an error saying the object does not exist.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Dec 2009 10:21:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408117#M1407331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-09T10:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Function to retrieve PM Notification Item Classification data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408118#M1407332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi KevinCann, this function works perfect! Just exactly what I was looking for. Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 06:20:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-retrieve-pm-notification-item-classification-data/m-p/6408118#M1407332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T06:20:58Z</dc:date>
    </item>
  </channel>
</rss>

