Table to see classification view

Hi All
I have few materials for which classification view is maintained using class typee 001. now one of the characteristics is PPL(Prod plannin level), i wanted to know if there is any table / report where i can input the material number and get value maintained against this PPL characteristics.
Regards
Yogesh

Hi
have a try with  table MARC- field PSTAT
also check table MARA field VPSTA.
if MARA-VPSTA has value C it is maintained with classification view
Vishal...

Similar Messages

  • Table for seeing the Views maintained for a material in material master

    i have maintained CLASSIFICATION view for certain materials, but when i go to table MARC and check the maintenance status, i cannot see the letter "C" which stands for classification.
    I need to sort out the materials for which classifiction view has been maintained.
    Is there any other way to do it?
    Pls help
    Thanks
    Neeraj

    Hi
    U Can check the status of Veiws maintained in  MSTA
    The views are
    A Work scheduling
    B Accounting
    C Classification
    D MRP
    E Purchasing
    F Production resources/tools
    G Costing
    K Basic data
    L Storage
    P Forecasting
    Q Quality management
    S Warehouse management
    V Sales
    X Plant stocks
    Z Storage location stocks
    thanks

  • Classification view in Material Master

    Can any one tell me , how to create a Classification view using program or function module.
    I just wanted to create a Classification views in MM01 transaction . is there any function module there to create the same ?
    if BAPI_OBJCL_CREATE is the FM , then pls tell me how the following input parameters related to the material . from which table i can have the following parameter values based on material number .
    OBJECTKEY_IMP
    OBJECTTABLE_IMP
    CLASSTYPE_IMP
    READ_VALUATIONS
    Edited by: Prakash N on Jan 15, 2008 1:27 AM

    Dear All ,
    Thanks for your reply , I have passed the following value ,
    OBJECTKEYNEW             -      000000000000000925
    OBJECTTABLENEW          -       MARA
    CLASSNUMNEW              -       HLLBATCHCLASS
    CLASSTYPENEW             -      023
    STATUS                           -      1
    STANDARDCLASS
    CHANGENUMBER
    KEYDATE                         -      18.01.2008
    NO_DEFAULT_VALUES
    also im passing the characteristics
    Export  table giving the following result. But when i see the MM02 again i could not see these entries... y ?
    RETURN
                     Result:
    T ID                   NUM MESSAGE
    E CL                   731 Assignment exists and is valid

  • Material Master Classification view

    Hi all,
    I have some doubt in Material Master Classification view.
    I want to know the Database Table name in which the field Class Number
    is  stored.
    I know that these tables are stored in the stucture ( RMCLF
    )  during creation of material master.
    Thanks in advance

    KLART is for Class Type & not for Class number ...
    also i need the table where i can see it ...
    Thanks in advance

  • MM Classification View

    Hi all,
    I want the good explanation about the MM Claasification view.
    I am new to the sap.
    I have to update the classification view. But In bapi_material_savedata, there is no provision for that.
    First i need to understand the classification and tables involved and how they are related to the material etc.
    and the concept of classification.
    And i also need the information of how to update the classisfication view(technically).
    Any document or link availbale to satify my needs.
    Thanks & Regards,
    S.Shankar.

    Hi Shankar,
    Your query relates to SAP R/3 classification:
    For general information about this, see the SAP Help Portal under: http://help.sap.com/saphelp_470/helpdata/en/24/476ed7416711d189ec0000e81ddfac/frameset.htm.
    Regards,
    Markus

  • Table for Material Classification data

    Hi gurus,
    Can anyone please tell me which table we can see data for Material Classification.
    If we goto MM03 and select the classification view we see two fields  in the screen Package Type and Package Size. I want to know which tables keeps that data in.
    Please help!
    Thanks

    Each of the characteristics shown in the Classification view of MM03 is an entry in table CABN.  Each of the CABN records has a characteristic number (field ATINN).  Look up the data in AUSP using your material number in the OBJEK field and the ATINN value from CABN and you'll find the characteristic value in the ATWRT field.
    .. Craig

  • How to create the classification view to the customer ?

    Hi All ,
    I need to create a classification view  (Xd03->extras->classification) to the customer in the customer master programmatically. I.e. for an existing customer , I need to  assign the class and corresponding characteristic  values  based on a condition .
    1) Is there a BAPI or FM that assigns the class and characteristics to the customer ?.
    2)When  there is no classification data for a customer , Xd03-extras-> classifications   will give  a message that Class is not assigned . How SAP Is reading this data?
    3)What is the table that I can see the  link B/w Customer  and class ?
    It is urgent , Please help Me .
    Thanks in advance ,
    Dharma .

    Hi Dharma,
    i've got the same problem.
    On my search through DDIC I found table KSSK with key: CLINT and OBJEK (customer number).
    Perhaps it helps
    I solved the prob with the FMs BAPI_OBJCL_CREATE and BAPI_TRANSACTION_COMMIT.
    Kind Regards
    Markus
    Edited by: Markus Pawlinka on May 30, 2008 9:32 AM

  • How to get the values inputted by the user in Classification view of  MM02

    Hello,
    Does anyone know how to get the inputted values in Classification view of MM02/MM01? I tried to use CLAF_CLASSIFICATION_OF_OBJECTS but this gets the values that is currently saved in the tables and not the values that the user recently inputted in the screen.
    Regards,
    Alfred

    hi
    try this...
    How to Display the Batch Characteristics in BOM?

  • How we can replace the column in Core Table plz see this msg

    Hi,
    How we can replace the column in Core Table plz see this msg
    Req:
    when i push the Insert button the data inserted into the Table
    like
    Cols Values
    FOCD      CUFZ14
    PRDCD FU6
    Month 082008
    AgencyCD AG02
    PLAN 123
    This is FO_Plan Table....
    Requirement:
    i need at table show to replace the Prd_CD to Prd_Desc while inserting the above Row....
    There is no Prd_Desc in FO Plan Table....
    Prd_desc comes from Product Table.
    did u get my point...
    how to solve.
    Thanks
    Ram
    Edited by: Ram Vungarala on Sep 24, 2008 9:09 AM
    Edited by: Ram Vungarala on Sep 24, 2008 9:15 AM

    Hi,
    I'm not sure if I understood what are you trying to do. But you can modify your table in a backing bean code. JSF page code for a table:
    <af:table id="product_search_results_tbl" binding="#{backingBean.boundTable}" ... />
    And a backing bean code:
    import oracle.adf.view.faces.component.core.data.CoreTable;
    public class YourBackingBean {
        private CoreTable boundTable;
        public void setBoundTable(CoreTable boundTable) {
            this.boundTable = boundTable;
        public CoreTable getBoundTable() {
            return boundTable;
       public String insertButtonAction() {
          // Bind your button action to this method and modify here your bound table
         return null;
    {code}
    Look for column modification methods in a CoreTable class documentation.
    Marius                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Create a classification view over bapi

    Hello,
    i start a vb Programm to create a material in sap.
    I get all views with material_savedata but the classification view is missing.
    Does anybody know if there exist a special bapi to create a classification view
    over the .net connector ?
    thanks for any help

    Hello , thanks a lot for the answers. I am using a vb programm with the proxy connector.
    In this connector i have defined:
            Dim oClassnum As String
            Dim oClasstype As String
            Dim oKeydatum As String
            Dim oLanguage As String
            Dim oObjectkey As String
            Dim oObjecttable As String
            Dim oUnvaluated_char As String
            Dim oStandardklasse As String
            Dim oStatus As String
            Dim oAllocvaluechar As New BAPI1003_ALLOC_VALUES_CHARTable
            Dim oAllocvaluecurr As New BAPI1003_ALLOC_VALUES_CURRTable
            Dim oAllocvaluesnum As New BAPI1003_ALLOC_VALUES_NUMTable
            Dim oReturn0 As New BAPIRET2Table
    Try
                oProxy.Bapi_Objcl_Getdetail(oClassnum, oClasstype, oKeydatum, _
                oLanguage, _
                oObjectkey, oObjecttable, oUnvaluated_char, oStandardklasse, _
                oStatus, oAllocvaluechar, _
                oAllocvaluecurr, oAllocvaluesnum, oReturn0)
                MsgBox(oReturn0.Item(0).Message.ToString)
            Catch ex As Exception
                MsgBox(ex.ToString)
            End Try
    When i start the programm i get the error:
    The function  OBJECT_CHECK_ does not exist. 
    WHY ??
    I have also tried to use 
    Bapi_Charact_Getdetail
    to test, if something works but i really do'nt know what the meaning of
    the parameters are . Perhaps somebody can explain them to me.
    I have tried with charactername and used a  *  but the result is always 0.
    Has somebody a documentation of the fields and tables that are
    needed or filled or a little example of the us of the classification.
    thanks a lot

  • Table maintenance Vs Maintenance view

    Hi,
    I would like to know the dif between T.Maintanance And Maintenance view.
    As we know as per the def we know Maintenance view will be used to maintain a table. But I have never created any M.view for the same.
    However we use Table maintenance generator and SM30 for the same. How these 2 concepts are differnet?
    Which one is the best method 2 use?
    what one step and two setp process? Advantage and usage of 2step process?
    Thanks in advance.
    PRa

    Praneet
    In SM30 we can enter values manually
    main diff between these two is "Authorization"
    in sm30 authorization for all users not allowed.
    for extended table maintenance see this below link
    http://help.sap.com/saphelp_sm40/helpdata/en/67/86b257415811d1893d0000e8323c4f/frameset.htm
    Reward if usefull
    Regards
    Raghav

  • Error:While creation of Classification view using-'BAPI_OBJCL_CREATE'

    Hi all,
    I am using function module -
    CALL FUNCTION 'BAPI_OBJCL_CREATE'
      EXPORTING
        OBJECTKEYNEW            = OBJECTKEYNEW1
        OBJECTTABLENEW          = 'MARA'
        CLASSNUMNEW             = CLASSNUMNEW1
        CLASSTYPENEW            = CLASSTYPENEW1
      STATUS                  = '1'
      STANDARDCLASS           =
      CHANGENUMBER            =
      KEYDATE                 = SY-DATUM
      NO_DEFAULT_VALUES       = ' '
    IMPORTING
      CLASSIF_STATUS          =
      TABLES
      ALLOCVALUESNUM          =
        ALLOCVALUESCHAR         = ALLOCVALUESCHAR1
      ALLOCVALUESCURR         =
        RETURN                  = RETURN1
    for creation of classification of material.But it gives me afollowin errors -
    1)Assignment does not exist or is not valid on
    2)Table   not supported for class type
    3)Assignment was not created
    in return table.
    Thanks.

    Hi,
      Please follow the below steps.
    Creating the Classification View using the Function module 'BAPI_OBJCL_CREATE'.
    Check the Class Type and Class Number which you are passing.
    Generally it will be Class type - 001 (Material Class) and Number will be ENGINEERING.
    It depends.
    But, what you can do is, Check material which has classification data filled.
    And just use the same class Type and Class Number Details.
    Try this way.It should work.
    To know the Available Class Types refer to table TCLA.
    Please let me know, if you want further help.
    Thanks & Regards,
    Vamsi.

  • Classification view creation via LSMW for Material master

    Hi,
    We are planning to have an LSMW for creation of material master along with classification view for configurable materials.
    Though we see a flag to indicate classification view  - XEIC1                        Indicator: take Classification view into account
    We do not see a structure where in we can pass all the characteristics and the corresponding values.
    Is this something possible only with BAPIs such as -> BAPI_OBJCL_CREATE after creation of other view for that material.
    Regards,
    HR

    Hi,
    Thanks for the response. This is helpful.
    However, we were intending to use a single LSMW for creation of all views of material master including classification view. Right now we are using Program RMDATIND as direct input method in LSMW.
    Please let me know if there is a way to use single LSMW for creation of all views of material master.
    Thanks
    HR
    Edited by: Hema Rao on Jan 8, 2009 7:58 AM

  • Data for Classification View in Material Master

    Dear all,
    Can someone tell where the data for classification view is stored ??
    We are running a BDC and need to check whether classification view is maintained or not ??
    Thanks in Advance
    Regards,
    Vivek K

    Hi,
    Check the table MARA, there is a Field VPSTA. in this field the Material views will be stores with single charecters. so check for the Clasification view charecter
    also  it's PSTAT in MARA and MARC.
    Work scheduling                A                   
    Accounting                     B                   
    <b>Classification                 C</b>                   
    MRP                            D                   
    Purchasing                     E                   
    Production resources/tools     F                   
    Costing                        G                   
    Basic data                     K                   
    Storage                        L                   
    Forecasting                    P                   
    Quality management             Q                   
    Warehouse management           S                   
    Sales                          V                   
    Plant stocks                   X                   
    Storage location stocks        Z         
    Regards
    Sudheer
    Message was edited by:
            Sudheer Junnuthula

  • No Material classification view in material master.

    Hello all,
    I have created LSMW for material master upload . Material is getting created through this, but 'classification view' is not getting created.
    But i can see the material- class assignment in CL20N.
    This problem is for specific material group.
    Is there any relation between material group & classification view?
    Plz advice how to resolve this?.
    Regards,
    Satpal Mujawar

    Hi,
    I found more information:
    Batch Input for CL20N is no longer supported.
    But you can continue to use batch input with the old transaction cl20.
    Please have a look at note 943559, point 2. It would be even better to
    use BAPI's instead. Please consult the notes 213120 and 373824 about the
    possibilities you've got.
    You can find information about the relevant Bapi's in transaction BAPI via:
    - Cross-Application Components
    - Classification
    - ObjectClassification
    Best Regards,
    Arminda Jack

Maybe you are looking for

  • How do i open an email attachment on ipad?

    I cannot open any attachments on my ipad. Can anyone maybe tell me why or what I can do ?

  • Uploading an excel file in an internal table.

    hi experts, I m trying to upload a excel file comprising of 16,000 records using the function module 'ALSM_EXCEL_TO_INTERNAL_TABLE' as follws CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'        EXPORTING             filename                = p_input

  • Notebook G60-213EM.....Won't start up. \Windows\system32\drivers\mpfilter.sys

     I can't get past the opening page. If i F8 and select any of the safe mode options, it gives a status of 0xc0000221 and asks for installation discs. I haven't got any.  Where can I download to a disc then transfer it to the notebook? Can't remember

  • Custom Subtype table for custom Infotype

    Hi, How can I have a customer table Z* as subtype for an infotype? In PM01 I can set a Z table and field in infotype settings, but an error occurs when genarating my infotype. I would like someting similar to IT 2006 in my custom infotype where I wou

  • Premiere Elements 8 Installation Optimization?

    After using Adobe Elements "3" for the past few years I have decided to upgrade to "8" and I am ready to install it now. I have read a lot of information on the forums about the various improvements and have learned a lot about the causes of my frust