Object class for AUSP table

Hi Experts,
Iam working on change pointers for the Material.
In BD52 transaction iam able to enter some fieds for the material.
But i need to enter Material Classication, and i found AUSP-ATWRT field.
Now, i want to pass this table & field into BD52 transaction. But it is asking Object Class for AUSP.
I know Object class for the table MARA ( is Material)
Could you please let me know how can i find Object Class for AUSP table?
Thanks
kaki

AUSP - Characteristic values

Similar Messages

  • How to create object class for a z table

    Hi All,
    I have a z table and I want to register the changes of fields should be logged to CDHDR and CDPOS table.
    Is this possible?
    If yes how can I creat an object class for a z table. I have already checked the change document option in z data element.
    Please help.
    Regards,
    Jeetu
    Moderator message: standard functionality, please search for available information/documentation before asking.
    locked by: Thomas Zloch on Oct 6, 2010 6:16 PM

    Tcode SCDO. You'll need to create a change document for you Z table and then use the FM created to record the changed data.

  • How to use change document for AUSP table in MM02?

    Hi All,
    I am working with MM02. When I change the characteristic value in classification view, I want that change to be logged in CDHDR table.
    I have created a change document object for AUSP table and generated update program for that. Now that program needs to be called in some <b>badi</b> or <b>exit</b> which can be called upon saving in MM02 after changing the values in classification view.
    Can anybody give me some idea where can I call that program.
    Any help wud be appreciated.
    Regards,
    Pragya

    Hi
    You have 2 possible solutions to meet this requirement.
    Option 1: Implement point # 3 of SAP OSS Note 943559
    Option 2: This is a workaround solution to skip standard SAP check for activation of change documents of Classification system and allow entries to be written into CDHDR and CDPOS table through MM01 / MM02 / CL20N tcode
    Solution: Implement an implicit enhancement inside include program 'LCLVFF10', at end of subroutine 'FILL_REDUN' i.e. line number '337'.
    Here modify the entry of table 'REDUN' where OBTAB = 'MARA' and set the flag 'AEBLGZUORD' equal 'X'. This will activate the change document creation for Change Object 'CLASSIFY' in CDHDR and CDPOS tables.
    Sample Code
    LOOP AT redun WHERE obtab EQ 'MARA'.
           redun-aeblgzuord = 'X'.
    ENDLOOP.

  • Object class for object id 'ADRNR'

    Hi all,
    How can iget teh value of object class for object id 'ADRNR'. i tried to see teh contents in CDHDR but there are no entries in the dev and QA box either.
    I need this value to pass to the CHANGEDOCUMENT_OPEN
    and CHANGEDOCUMENT_CLOSe fm's.
    Thanks

    How can we find the correct object class id for a data element ?
    Regards
    Megha

  • Business Object Types for Z-tables

    hi
    could anyone please guide me how to create business-object-types for Z-tables?
    thanks in advance
    regards
    pavan

    Hi,
    Business objects (SWO1) are representations of business entities.
    So it is impossible to ask I need to create a business object for a z-table, because that's not business specific.
    Normally when you're faced with a BO issue, you first search for useable existing BO's. In there you also search if SAP has already provided the wanted functional requirement. If this is not present, you then search for a BO which is closest to the Functional requirement and then create a subtype of that BO en extend it to suit your needs (attributes, methods, events etc.) via delegation you can then also se it in sap standard.
    for more infor check the SAP Business Workflow

  • LDAP object classes for user creation

    Hello,
    I use a remote LDAP for authentication, works fine. However, i want of copy some attributes from the remote LDAP into the dynamically created user profile. This works fine as long as the attributes are par5t of the standard object classes. The remote LDAP has an extra, site specific, object class for users. Since i want to use the same attribute names i added the schema extension (1 object class with a couple of attributes) to the AM LDAP. So far so good.
    My question is: How do i specify the additional object class to be added to the user which is dynamicaly created?
    Thanks in advance, Robert

    Robert,
    To resolve this, I believe that you will need to add the new objectclass to the "LDAP User Object Classes" field on the LDAP Data Store. You will also need to add the attributes to "LDAP User Attributes" on the same tab.
    Hope this helps.

  • Reg : class for creating table control

    hi everyone,
                 is there any class for creating table control?my requirement is
                  created 2 custom containers,one for alv display and other for table control display.
    For alv i used cl_gui_alv->set_table_first_display,likewise any class for creaitng table control?????????
    pleas find me a solution......
                      thanks in advance......

    Hi,
    You can use the class CL_TABLECONTROL for creating table control and the method SET_VALUES shall be used to fill values for tha tabcntrl.
    Else, you can use the Table Control Wizard to create the tabcntrl easily.
    Regards,
    Renjith Michael.

  • Translate Object class (for authorization objects)

    I wonder where I can translate the objects class (SU21 - auth objects). I manages to find where I can translate the authorization objects in SE63.
    What what is the object type for the objects class in order to translate it.

    SAP itself told me there is no way to do so. They recommend to directly edit the corresponding text table.

  • Object Name for ITL1 Table.

    Hi All,
    I want to add some of rows to ITL1 table using DI-API. It's possible ? if so what's the object name of this table.
    For example, we usually using oDeliveryNotes for Delivery Document like this :
              Public oDO As SAPbobsCOM.Documents
              oDO = oCompany.GetBusinessObject(BoObjectTypes.oDeliveryNotes)
              oDO.DocDate = Now
              lRetCode = oDO.Add()
    How about ITL1 table (Transaction detail for serial & batch) ?
    I am using SAP B1 9.0 PL 04.
    Thank you.
    Best Regards,
    Muh.Ulfah

    Hi Eric,
    Appreciated for your reply.
    I have found the BatchNumbers object, can't you give the pieces of code ?
    Actually what I need is added some of rows into OITL & ITL1 tables when "Add" Delivery Order Document through DI-API.
    Thank you.
    Best Regards,
    Muh.Ulfah

  • Bean classes for all tables ?

    Hi All,
    I am working on a very small project with 6 tables and 2 lookup tables.The form consists of lot of queries to the database.The technologies used are java,jsp and weblogic with MVC2 pattern.My question is do I need to have bean class(setter,getter) methods for each tables.
    Suggest a good approach.

    drop.any wrote:
    SET SERVEROUTPUT ON
    DECLARE
    num_corrupt INT;
    BEGIN
    for t in (select owner, table_name from dba_tables) loop
    num_corrupt := 0;
    DBMS_REPAIR.CHECK_OBJECT (
    SCHEMA_NAME => t.Owner,
    OBJECT_NAME => t.Table_Name,
    REPAIR_TABLE_NAME => 'REPAIR_TABLE',
    CORRUPT_COUNT => num_corrupt);
    DBMS_OUTPUT.PUT_LINE('number corrupt: ' || TO_CHAR (num_corrupt));
    END;
    END;
    Yes but change one thing:
    DBMS_OUTPUT.PUT_LINE('Table: '||t.Owner||'.'||t.Table_Name||' number corrupt: ' || TO_CHAR (num_corrupt));Edited by: kendenny on Nov 5, 2009 9:35 AM

  • Needed object class for Reconciliation of OID groups?

    Hi,
    When I run OID Connector Gruop Lookup Reconciliation I only get the groups thath have the object class *'groupOfUniqueNames'*. All rest of groups are note reconcilied into the Lookup.OID.Group Lookup.
    The problem is that I can´t modify all those groups that haven't this object class.
    The groups that I can get actually have this object classes:
    top
    groupOfNames
    it's possible to modify OID Connector Gruop Lookup Reconciliation to get all groups???
    Tanks in advance.
    regards.
    Edited by: Daniel Cermeño on Sep 14, 2012 2:59 PM
    Edited by: Daniel Cermeño on Sep 14, 2012 4:06 PM

    Its a matter of setting the right ldap filter in the scheduled task . Find out what is required to fetch all the groups from OID using ldap browser or something else .
    And then simply use the same ldap filter in OID Group look up recon ST.
    try with (objectclass=group)
    Thanks
    Suren

  • Development Class for Dimension Tables

    I'm trying to change the development package for a dimension within our salecube. Right now its assigned to $TMP. I'm very familar with the basic steps to change this but its not there. The cube itself is assigned to a "z" package but not the dimension. Can someone tell me how to change the package on a dimension.
    (will award points)

    Hi Richard,
    You should be able to do this in SE11 > yrcubename and F4 will give you all the tables fo the dube including the dimension tables. Then Display the table. On the mneu Goto > Object Directory Entry.
    Hope this helps...
    Message was edited by: Bhanu Gupta
    - But why would you like to do this?

  • CSS Class for Table Cell Text

    When we were using messageStlyedText in a table region, it was shriking multiple whitespaces to a single whitespace. To solve the problem we are planning to use "rawText" with <pre> tag. But we are not able to specify the default CSS class for a table cell text. Can you please let us know the CSS class to use so that even if we use rawText UI(font, size etc) is similar to adjacent messageStlyedText columns ?
    Note: We are not using formattedText because it is not allowing to add prompt.

    Please try using CSS class OraTableCellText
    Thanks
    Abhay

  • How to use the TableSorter for two tables at the same view?

    Hello,
    I am using the TableSorter object in order to sort Dynpro tables.
    Suppose I have two tables at the same view, is it possible to use it seperatly for both of them?
    I assume that at the wdModifyView method I will need to catch the table that the user clicked on, yet I don't have an idea of how to do it...

    Hi Roy,
    Constructor of TableSorter
    public TableSorter(IWDTable table, IWDAction sortAction, Comparator[] comparators)
    So, you have to create instance of TableSorter class for each table on the view.
    best regards, Maksim Rashchynski.

  • Data retrivel from table ausp table

    Helllo Experts,
    I want to retrive data from table ausp based on the data retrived from the VBAK table.
    I have selected data from VBAK and VBAP tabble using code :
    SELECT VKORG VTWEG VBAKSPART VKGRP VKBUR KUNNR KNUMV VBAKVBELN VBAPMATNR VBAPARKTX INTO CORRESPONDING FIELDS OF  TABLE GT_DATA
    FROM VBAK INNER JOIN VBAP ON VBAKVBELN = VBAPVBELN
    WHERE VKORG        IN SVKORG
    AND  VTWEG        IN SVTWEG
    AND  VBAK~SPART   IN SSPART
    AND  VKGRP        IN SVKGRP
    AND  VKBUR        IN SVKBUR
    AND  KUNNR        IN SKUNNR
    AND  MATNR        IN SMATNR.
    SELECT MATNR BREIT ZEINR BRGEW INTO CORRESPONDING FIELDS OF TABLE GT_EANCODE FROM MARA
    FOR ALL ENTRIES IN LT_DATA WHERE MATNR = GT_DATA-MATNR.
    SORT GT_EANCODE BY MATNR.
    ENDIF.
    SELECT MATNR MVGR1 MVGR2 MVGR3 INTO CORRESPONDING FIELDS OF TABLE GT_MVGR FROM MVKE
    FOR ALL ENTRIES IN LT_DATA WHERE MATNR = LT_DATA-MATNR.
    SORT GT_MVGR BY MATNR.
    ENDIF.
    SELECT KNUMV KPOSN KSCHL KWERT INTO CORRESPONDING FIELDS OF TABLE GT_KONV  FROM KONV
    FOR ALL ENTRIES IN LT_DATA WHERE KNUMV = LT_DATA-KNUMV AND KSCHL IN ('ZG02').
    SORT GT_KONV BY KNUMV.
    So based on the material field in the table GT_DATA i have to select data from table ausp. The ausp table also having the field
    material ( but the name of the material field in the ausp table is OBJEK) . Material field in t the VBAP table have data type character and field length 18 and OBJEC field in the ausp table have data type character and lenght 50.
    So if i give select statement for ausp table
    SELECT OBJEK ATINN ATWRT  INTO CORRESPONDING FIELDS OF TABLE GT_AUSP FROM AUSP
    FOR ALL ENTRIES IN GT_DATA WHERE OBJEK = LT_DATA-MATNR AND
              .                        MFID = '01' AND
                                       KLART = '001' AND
                                       ATINN = V_ATINN.
    it is giving  error : when you use addition for all entries in internal table the object and GT_DATA-MATNR must have same data type and same length.
    So if i change the length of the matnr field it will effect for other select statement.
    please let me know hw to over come errors.
    Thakns in advace.
    Best Regards,
    Zubera

    Hi shridarudupi ,
    when you are declaring structure  for GT_DATA,define matnr field of type ausp-objek , so when you will select data from AUSP using for all entries of GT_DATA , there will  not be any type mismatch.
    For Ex.
    TYPES : BEGIN OF t_mara ,
             matnr TYPE ausp-objek,
             ersda TYPE mara-ersda,
            END OF t_mara,
             BEGIN OF t_ausp ,
             objek TYPE ausp-objek,
             atinn  TYPE ausp-atinn,
            END OF t_ausp.
    DATA : i_mara     TYPE STANDARD TABLE OF t_mara,
                 i_ausp     TYPE STANDARD TABLE OF t_ausp,
                wa_mara  LIKE LINE OF i_mara,
                wa_ausp  LIKE LINE OF i_ausp.
    SELECT matnr
                 ersda
                 FROM mara INTO TABLE i_mara
                 WHERE matnr = '4510'.
    IF sy-subrc = 0 .
      SELECT objek
                    atinn
                    FROM ausp
                    INTO TABLE i_ausp
                    FOR ALL ENTRIES IN i_mara
                    WHERE objek = i_mara-matnr.
      IF sy-subrc = 0 .
        WRITE : 'successful'.
      ENDIF.
    ENDIF.
    Hope this helps.
    Edited By Tejaswini Khante

Maybe you are looking for

  • Who has a yellow tinted screen?

    Finally was able to get my sister a replacement, and the first thing I even noticed without hearing or reading of the issue was the retina display seemed kinda yellowish. So I looked it up and compared, and the phone has a yellow tint on the entire s

  • Mavericks:  Killer of Networked Printing

    I'm a veteran user of PC/Windows after 2y owning a MBP I'm still amazed at how much stuff just is bizarre in the OSX world that worked flawlessly in the Windows world, at least since Win 7 especially.  Very difficult to do the most common tasks used

  • How to show content of OutputStreamWriter?

    Hi all, I try to generate a post method which sends strings via POST. try { OutputStream raw = m_uc.getOutputStream(); OutputStream buffered = new BufferedOutputStream(raw); OutputStreamWriter out = new OutputStreamWriter(buffered); out.write(sQuery)

  • Airplay not working with non-apple router

    I use an airport express only for playing music in a remote location. It stopped working after I switched my main wireless router from a Time Capsule to a Linksys running Tomato USB firmware. The Express is set up as "join a wireless network" with th

  • Thermocoup​le channel NOT valid

    I have a DAQCard-AI-16XE-50 connected to a SC-2345 that I set up to use with DasyLab 5.03.34 on a Win2000 (Ver. 5.00.2195 SP 4) IBM ThinkPad. A week of testing was done recently and everything worked as expected. Today I opened the Measurement & Auto