Track changes to material characteristics

Hi,
We need to track changed made to the material characteristic values. This change is not visible in CDHDR. Any help on this is greatly appreciated.
Regards
Hari

Hi,
I checked this note and our system. We are curretnly in 4.6C. In the customizing, there are entries for table CABN. There is no entry for table AUSP or the material class 001. Should I add this table here?
Can you please explain further?
Regards
Hari

Similar Messages

  • Track changes in Materialized view.

    Hi all,
    i would like to know if it is possibile to track changes in a Materialized view.
    1) i have a materialized view tha can be fast refreshed, built on remote tables
    2) base tables have, on remote DB, Materialized view log with rowid and primary key
    3) Changes in the base tables are not frequent so the refresh of my mv is very fast even if master tables have millions of records.
    I would like to know if it is possibile to insert into my materialized view the date of the refresh of the single record. In this way i can read only data that have changed in my MV. The problem is that even if only one row has changed i have to read all the data from my mview.
    thanks
    Fra
    Edited by: 859718 on 24-mag-2011 0.08

    Hi,
    firstly I must say - it's silly to refuse materialized view log. The impact of this solution is minimal and it's standard and reliable. Then you can use fast refresh and that is certaily the best for both - master and MV side. The MV log is just a table, where trigger stores rowid of changed rows. There are not other solution, bacause you need to do the same things as MV log funcionality.
    If you cannot make changes to the remote database, I see only one (but unreliable solution) - use the flashback query. Then you will be able to see row changes for some period in past. The information is read from undo tablespace so that the period length depends on remote database workload. It's risky to rely on information from UNDO tablespace, but you can write your own refresh with some special fucionailty - if flashback query returns the desired changes, refresh only changed rows, otherwise do complete refresh.
    SELECT
        ROWID,
        VERSIONS_STARTSCN,
        VERSIONS_ENDSCN,
        VERSIONS_OPERATION,
        t.*
    FROM master_table versions between timestamp minvalue and maxvalue t
    where VERSIONS_STARTSCN is not null;Columns description is for example here:
    http://www.oracle-developer.net/display.php?id=320
    And if you wrote your own custom refresh function you could add the timestamp functionality too :-)

  • HOW TO TRACK CHANGES IN MATERIAL MASTER

    Dear All,
        I have changed material master with change number.
    Now i want to see both old and new material master.
    how to do this?

    Dear
    Goto MM03/MM02-Enter material code -hit Enviornement  at the header -Display Changes -It will display the list of changes WITH DATE TIME -Double Click on the Chekc box  to know the details of changes .
    Regards
    JH

  • How do you copy and paste track changes material in Pages from one point in a document to another and keep both the old text along with the track changed thus far in the new pasted location?

    Depending on whether track changes is on/paused, Pages thinks the pasted material is either all new and thus highlights it as a big track change or just copies the old material along with the edits as plain text so that I cannot see my track changes. I need to be able to copy and paste in the same document and still be able to see the older text along with the changes to certain sections thus far. Is this possible? I need a step-by-step "talk to me like I'm five" instructional if what I would like can be done.
    Thanks for any help!
    Message was edited by: C.M.W.

    What version of Pages?
    What OS, iOS or OSX?
    Are you sure you have the Table selected and not a cell or just contents?
    Peter

  • Track changes in customer material info (VD52) and create custom IDocs

    Dear experts,
    we want to track changes, which are made in VD52 (Customer matertial info record) and create custom IDocs (Z-format) based on these changes. What is the best way to do this?
    Best regards,
    David

    Hi,
    There are a dedicated BTEs (Business Tranaction Event) for this purpose (transaction FIBF).
    - created customer material infos OUTBOUND_CALL_00504001_E
    - changed customer material infos OUTBOUND_CALL_00504002_E
    - deleted customer material infos OUTBOUND_CALL_00504003_E
    You can assign your own FM to the BTE and send custom IDoc whenever there is a new/updated/deletd customer-material info record.
    Regards,
    Marcin

  • Tracking of Changes in Material Determination type or Material Substitution

    Hi Gurus,
    Can anybody suggest how to keep track of the changes made in VB11/VB12/VB13 which is for Material Determination type Maintenance?
    Is there any TCODE or tables for tracking the above changes??
    Thanks in advance
    VIJAYB.

    material determination is based on custom condition tables, that are created like one creates tables for pricing or message determination.
    Because of this, SAP cannot know that it has to track changes.
    You have to activate change records yourself.
    Go SE11, enter the table name of your substitution, then click the button for technical settings. in the lower part of the screen you will see a box that need to be flagged if you want log changes.

  • Change Sales Order material characteristics

    Dear Pals,
    I have a question for changing Sales Order material characteristics by item.
    If i want to change the sales order's item  conditions, I can modify the internal table  "XKOMV" in user exit "USEREXIT_SAVE_DOCUMENT_PREPARE"
    Is there any internal table for  Sales Order's characteristics can i use   in user exit "USEREXIT_SAVE_DOCUMENT_PREPARE" ?
    Or any FM or BAPIs can get the internal table for characteristics and characteristics value for Sales Order item?
    Thank you!

    You can use BAPI_SALESORDER_CHANGE.
    1. Get the SO detail using BAPISDORDER_GETDETAILEDLIST.
    2. MODIFY the ORDER_CFGS_* internal tables and  update.
            CALL FUNCTION 'BAPISDORDER_GETDETAILEDLIST'
              TABLES
                order_cfgs_value   = gt_char
                order_cfgs_ref       = gt_char_ref
                order_cfgs_inst      = gt_char_ins.
            MODIFY gt_cfgs_*.
            CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
             TABLES
                order_cfgs_value   = gt_char
                order_cfgs_ref       = gt_char_ref
                order_cfgs_inst      = gt_char_ins.
    Refer SAP note 549563.

  • Change Material Characteristics

    Dear All,
    My requirement: Need to change material characteristics through a BDC or BAPI.
    thru BDC, it is not allowing to change from the tcode mm02/mm42, don't have an idea BAPI for changing material Characteristics.
    Thanks,
    Ravi

    Characteristics are part of Classification system, so you would not find a specific BAPI for material characteristic maintenance. Use the below function to update characteristics of any classification relevant object including materials.
    CLOBJECTKEY is Class type value that you see when you select Classification view in Materiam master MM03. Play around with it comparing its interface with MM03 classification.
    Also classification can be accessed Sap Menu -> Cross application components -> Classification system
    CALL FUNCTION 'BAPI_OBJCL_CHANGE_KEY'
      EXPORTING
        CLOBJECTKEY               =
        CLASSNUM                  =
    *   STATUS_NEW                = '1'
    *   STANDARDCLASS_NEW         =
    *   CHANGENUMBER              =
    *   KEYDATE                   = SY-DATUM
    *   NO_DEFAULT_VALUES         =
    * IMPORTING
    *   CLASSIF_STATUS            =
      TABLES
        ALLOCVALUESNUM_NEW        =
        ALLOCVALUESCHAR_NEW       =
        ALLOCVALUESCURR_NEW       =
        RETURN                    =

  • Report to track changes to infotypes prior to running the  payroll interfac

    wants a report to track changes to infotypes prior to running the  payroll interface.  The attached report looks like it should work but it returns nothing.  Is there config that turns on "Track Changes": for select infotypes?  If so, can they be activated for key infotypes so this report will run?
    Name, Address, position, etc.
    Not attendance and absence ITs.

    Hi,
    IMG – Personnel Management – Personnel Admin – Tools – Revision – Set up change document:
    This node has three items:
    Infotypes to be logged
    Field Group Definitions
    Field Group Characteristics
    Using these three options you define which infotypes you wish to log, then which fields, then you define which groups of fields are to be saved. Click each link, or see the sections below:
    Infotypes to be logged
    Here you define which PA infotype numbers you require logging. Select New Entries and enter a transaction class (A for Pers Admin, B for recruitment), then enter the infotype number and save.
    Field Group Definition
    When changes are made to a logged infotype, the field contents before and after are recorded. This is the very reason for logging the infotype, but there is an overhead in performance and disk space used so it needs to be given consideration. Typically you will want to record fields that are pay relevant.
    Using the field group definition, you specify which fields you wish to record changes in. When any of the fields in the group are changed, all the fields in the group are saved. You can use an asterisk to log all the fields of the infotype but this is not recommended for space and performance, also there are many fields on an infotype that you will not be using, that will be saved also. Ideally you will pick individual fields of the infotype and enter them like so:
    The field group number is a freely defined number you allocate to the group, it will be used in the next step. For normal use, simply pick any number not already used in that infotype. All fields with the same field group number are recorded in the log, even if they have not changed.
    Click New Entries and enter the infotype number, field group number and field names that you wish to record.
    Field Group Characteristics
    When you have set up the field group numbers, use the field group characteristics to activate the logging of those fields. You can also specify a supplementary field group; this means that the contents of another field group can also be saved at the same time, even though the contents have not changed. In practise it is not used much. Simply select new entries, enter the transaction class, infotype, and in the DocFieldGr enter the number you assigned to the field names that you want to store, then enter L for Long Term Documents (short are not supported)
    The Audit Report
    To access the report showing the logged infotype changes, use the HR report tree available from various menu paths, including:
    Main Menu – Human Resources – Pers Management – Administration – Info System – Reports - Documents – Infotype change – logged changes in infotype data. (RPUAUD00).
    When you run the report, select the infotypes you require, and select and execute.
    Cheers
    Prasanth

  • Reports to track changes on Deliveries and Sales order

    Hi All
    Do you perhaps know of a specific report that could possibly track changes made to a Sales order and delivery at line item level.
    The problem is change log only logs the deletion of the line item but not the actual material number.
    Do we have to enhance existing reports to achieve visibility for deletion of line items.
    Regards
    KC

    Hi Lakshi
    Thank you very much for that feedback the thing is that you can search that on an order per order basis and even when you get to the change log you will not be able to see what material number was deleted.
    That is the problem.
    Has anyone experienced this wher the requirement was to have a report to run so see what changes have been made to orders or deliveries that they could view wholistically.
    Kind Regards
    Kasavan Aboo

  • How to restrict changes of material quantity in Maintenance Order

    Hi Expert,
    How can i restrict the user to change the material and quantity in the Order's components tab.(IW32) Eg, not allow changes after RELEASE.
    Can the system keep track on all the changes for material number and quantity in the Orders?
    Please Advise
    Thank You
    Best Regards

    Hi,
        Better way is grey that tab after releasing the MO .. try BADI ;-IWO1_SCREEN_MODIFY Field Content and Display Modification
    You can also explore User exit ;-PPCO0023 : Check Changes to Order Components
    FM ;- STATUS_READ
    regards
    pushpa

  • Creation of material characteristics

    HI,
    I have created new material characteristics in CT04, i also created new charc description  under material class 001 but enable to creat values for that. it has become greyout. how to enter values.
    Arati

    Did you assigned the new char to your class,were you are changing the char.

  • Trace Changes in Material Document

    Dear All,
    Is there any way to trace which material document has been changed manually by the user? Our situation is as follows:
         User use MB02 to update header text field in the old material documents. We need to extract all the changes information and
         what is the best option to do this? Is this from CDHDR/CDPOS tables? I tried to use the "Change On" field in the table MKPF, but
         nothing can be extracted because it seems that this field is always blank.
    Sorry, please correct me if I'm wrong.
    Thank you in advance for helps.
    Best Regards,
    Edwin

    To track changes :
    Try to check the setting in OPUV for change docs for material
    (or)
    Try to use AUT10 t.code , in that enter the t.code which you want track the chnages and execute.
    (or)
    Check in Txn CN60. Here you can view list of change documents for materials, networks and WBSE
    Edited by: m_n_novice on Aug 27, 2009 10:06 AM

  • Printing material characteristics assigned to class 001

    Hi
    i am working on printing material characteristics.
    i am using vc_I_GET_CONFIGURATION FM to get all the characteristics associated to the material.
    now i want to print the changes in the bottom under the label Fields changed/Modified.
    if i change any characteristic value(s) and save the form and issue output i need to print the form and bottom i need to print the characteristic that is changed.
    may i know how can i capture these fields? my characteristics are assigned to 001 class and hence data is not stored in tables...
    let me know if there is any solution to work around...
    thanks

    hi
    i am not able to trace which characteristics are changed....
    may i know where the characteristics are stored for class 001

  • Idoc for material characteristics

    Hi Friends,
    I know the IDoc message type for material batch characteristics (SKU_COLOR , SKU_SIZE , SKU_WINDOW, etc.,) is CLFMAS. Does anybody know the message and basic type for Material characteristics (ART_WIDTH , ART_DEPTH , ART_HEIGHT, etc.,) ?
    Regards,
    Dikshitha G

    Hi,
    You need to do the ALE confguration for change pointers of materials to trigger the idoc. Please search in SCN , you will find information reagrding change pointers of Idoc.
    Regards,
    Nagaraj

Maybe you are looking for

  • Need help on sap query tool...

    hi, i created a user group using sq03. then using sq02, assigned the infoset miro_po (related to PO of MM module) to this user group. also assigned my user id to this group. then using sq01 i was able to create a query in which i cud select the desir

  • Mother-daughter ipod libraries on one computer

    Can we set up two separate itunes accounts on the same computer? My daughter doesn't want all the great classic rock from the 70's and 80's. I told she was nuts.

  • Voice/video calling over BBM is no longer available for OS 10.3.1.1565

    After updating to OS 10.3.1.1565 for my BB Passport voice/video calling over BBM is no longer available. I CANNOT MAKE VOICE OR VIDEO CALLS OVER BBM neither I CAN RECEIVE CALLS OVER BBM. I do use voice calling over bbm on a daily basis and I feel lik

  • Macbook Pro is detecting a second display that is not attached

    I have a first generation Core Duo Macbook Pro and have had a problem with it since it was new detecting 2 displays when only one is connected. At first it would detect 2 displays and change the notebook screen resolution to 800x600. A quick click on

  • Related Information link on Vendor & Voucher Component not appearing on 9.1

    Greetings All, I am not able to see the "Related Information link" on the Vendor & Voucher Components. I know this feture is something new and delivered as part of 9.1; Can someone help me out? How can i see this on my components. Thanks in advance.