<?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: Info required regarding Customer Classification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724481#M315988</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 the sample code below. I think it will result in all customers. I think you have to pass the customer characterstic name to get the respective classification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: BEGIN OF LT_CHAR OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE  BAPI_CHAR.&lt;/P&gt;&lt;P&gt;DATA: END OF LT_CHAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LT_CHAR_VALUES OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE  BAPI_CHAR_VALUES.&lt;/P&gt;&lt;P&gt;DATA: END OF LT_CHAR_VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LT_SELECTIONCRITERIONS OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE  BAPI_SELECTION_CRITERIONS.&lt;/P&gt;&lt;P&gt;DATA: END OF LT_SELECTIONCRITERIONS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LT_SELECTEDOBJECTS OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE  BAPI_SELECTED_OBJECTS.&lt;/P&gt;&lt;P&gt;DATA: END OF LT_SELECTEDOBJECTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LT_OBJECTCLASSIFICATION OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE  BAPI_OBJECT_VALUES.&lt;/P&gt;&lt;P&gt;DATA: END OF LT_OBJECTCLASSIFICATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*...Function module to get Characteristics and Allowed Values for Class&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_CLASS_GET_CHARACTERISTICS'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        CLASSNUM              = 'XXXXXX'  "Class Name&lt;/P&gt;&lt;P&gt;        CLASSTYPE             = '011'     "Class Type&lt;/P&gt;&lt;P&gt;        LANGU_ISO             = 'EN'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        CHARACTERISTICS       = LT_CHAR&lt;/P&gt;&lt;P&gt;        CHAR_VALUES           = LT_CHAR_VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT LT_CHAR_VALUES.&lt;/P&gt;&lt;P&gt;     MOVE-CORRESPONDING LT_CHAR_VALUES TO LT_SELECTIONCRITERIONS.&lt;/P&gt;&lt;P&gt;     APPEND LT_SELECTIONCRITERIONS. CLEAR LT_SELECTIONCRITERIONS.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*...Function module to get Customer Groups&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_CLASS_SELECT_OBJECTS'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        CLASSTYPE                  = '011'&lt;/P&gt;&lt;P&gt;        CLASSNUM                   = 'XXXXXX'&lt;/P&gt;&lt;P&gt;        LANGUISO                   = '999999'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        SELECTIONCRITERIONS        =  LT_SELECTIONCRITERIONS&lt;/P&gt;&lt;P&gt;        SELECTEDOBJECTS            =  LT_SELECTEDOBJECTS&lt;/P&gt;&lt;P&gt;        OBJECTCLASSIFICATION       =  LT_OBJECTCLASSIFICATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Oct 2006 15:12:27 GMT</pubDate>
    <dc:creator>venkata_ramisetti</dc:creator>
    <dc:date>2006-10-30T15:12:27Z</dc:date>
    <item>
      <title>Info required regarding Customer Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724480#M315987</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;Am working on SF in which i need to retrive the charectestic values of &amp;lt;i&amp;gt;customer : classification&amp;lt;/i&amp;gt; while searching in this forum i came across two FM i need to retrive the values i.e 'BAPI_OBJCL_GETCLASS' BAPI_CLASS_GET_CHARECTERSTICS'.[Not sure this is right or not]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the first time am working on classification, i request you how to retrive the values from those and store in internal tables. All i have is 'class name', 'class type'. Don't know how to send the customer number in that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I request do any one have the sample code or clue regarding above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 14:52:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724480#M315987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T14:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Info required regarding Customer Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724481#M315988</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 the sample code below. I think it will result in all customers. I think you have to pass the customer characterstic name to get the respective classification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: BEGIN OF LT_CHAR OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE  BAPI_CHAR.&lt;/P&gt;&lt;P&gt;DATA: END OF LT_CHAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LT_CHAR_VALUES OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE  BAPI_CHAR_VALUES.&lt;/P&gt;&lt;P&gt;DATA: END OF LT_CHAR_VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LT_SELECTIONCRITERIONS OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE  BAPI_SELECTION_CRITERIONS.&lt;/P&gt;&lt;P&gt;DATA: END OF LT_SELECTIONCRITERIONS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LT_SELECTEDOBJECTS OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE  BAPI_SELECTED_OBJECTS.&lt;/P&gt;&lt;P&gt;DATA: END OF LT_SELECTEDOBJECTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LT_OBJECTCLASSIFICATION OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE  BAPI_OBJECT_VALUES.&lt;/P&gt;&lt;P&gt;DATA: END OF LT_OBJECTCLASSIFICATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*...Function module to get Characteristics and Allowed Values for Class&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_CLASS_GET_CHARACTERISTICS'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        CLASSNUM              = 'XXXXXX'  "Class Name&lt;/P&gt;&lt;P&gt;        CLASSTYPE             = '011'     "Class Type&lt;/P&gt;&lt;P&gt;        LANGU_ISO             = 'EN'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        CHARACTERISTICS       = LT_CHAR&lt;/P&gt;&lt;P&gt;        CHAR_VALUES           = LT_CHAR_VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT LT_CHAR_VALUES.&lt;/P&gt;&lt;P&gt;     MOVE-CORRESPONDING LT_CHAR_VALUES TO LT_SELECTIONCRITERIONS.&lt;/P&gt;&lt;P&gt;     APPEND LT_SELECTIONCRITERIONS. CLEAR LT_SELECTIONCRITERIONS.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*...Function module to get Customer Groups&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_CLASS_SELECT_OBJECTS'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        CLASSTYPE                  = '011'&lt;/P&gt;&lt;P&gt;        CLASSNUM                   = 'XXXXXX'&lt;/P&gt;&lt;P&gt;        LANGUISO                   = '999999'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        SELECTIONCRITERIONS        =  LT_SELECTIONCRITERIONS&lt;/P&gt;&lt;P&gt;        SELECTEDOBJECTS            =  LT_SELECTEDOBJECTS&lt;/P&gt;&lt;P&gt;        OBJECTCLASSIFICATION       =  LT_OBJECTCLASSIFICATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 15:12:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724481#M315988</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-10-30T15:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Info required regarding Customer Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724482#M315989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shinoy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls check the Function Module &amp;lt;b&amp;gt;CLAP_DDB_SHOW_CLASSIFICATION&amp;lt;/b&amp;gt; this might help u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vishnu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 15:13:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724482#M315989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T15:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Info required regarding Customer Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724483#M315990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramakrishna &amp;amp; Vishnu...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx for the responce, let me check both and will be back.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 15:27:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724483#M315990</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T15:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Info required regarding Customer Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724484#M315991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramakrishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply, it helped me alot in retrive the values, apart of that i didn't get the logic how to retrive for purticular customer coz in the program no where am passing the customer data. Please help me down in this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 16:34:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724484#M315991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T16:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: Info required regarding Customer Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724485#M315992</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;If you pass only one customer characteristic name in the TABLE parameter LT_CHAR of bapi function module BAPI_CLASS_GET_CHARACTERISTICS, then other table parameter  LT_CHAR_VALUES will return characteristics of that customer only. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_CLASS_GET_CHARACTERISTICS'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;CLASSNUM = 'XXXXXX' "Class Name&lt;/P&gt;&lt;P&gt;CLASSTYPE = '011' "Class Type&lt;/P&gt;&lt;P&gt;LANGU_ISO = 'EN'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;CHARACTERISTICS = LT_CHAR&lt;/P&gt;&lt;P&gt;CHAR_VALUES = LT_CHAR_VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 16:41:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724485#M315992</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-10-30T16:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Info required regarding Customer Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724486#M315993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RamaKrishna&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for asking this question since this is the first am dealing with classification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had a requirement in SmartForms where based on the customer number i need to check the classification's in terms as per the condition it has to generate the SF if one of the classification value falls below the limit. My question is: The form will running B/G periodically based on customer no. If i place this code in the form, will it check based on that customer no.? Pls do reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 17:01:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724486#M315993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T17:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Info required regarding Customer Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724487#M315994</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;Sorry for my late reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to check this for all customers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No prolem at all provided you have not hardcoded the customer in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let meknow if you have any doubts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:09:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/info-required-regarding-customer-classification/m-p/1724487#M315994</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-10-30T20:09:47Z</dc:date>
    </item>
  </channel>
</rss>

