Not able to transfer changes in material master (periodic)

Hi Friends,
Got an issue here. I am not able to transfer the changes I made in material master. I want this as periodic, Made the specific setting in CFC9. And for your information 'Activate ALE Change Pointers Generally' and for massege type are activated.
But when I execute CFP1 I got massege: 'No appropriate master data changes: Transfer has not happen'.
I made changes in material master (global level),..like gross weight changed. Material is in active IM, no duplication.
Any help Please? We are on SCM 7.0.
Thanks,
Satyajit
Edited by: Satyajit Patra on Mar 20, 2010 9:12 PM
OK, Guys I think I need to raise an OOS... It was for SCM 7.0, but was basic config....thts why I edited the thread so many times expecting some responce.
Edited by: Satyajit Patra on Mar 22, 2010 7:41 AM

Hi Satyajit,
Please look at OSS  Note 1069560 - Data inconsistencies: Activating integration. models in parallel, if this helps you.
Since  Gross data of material is in the basic view, it is common across plants , whereas, IMs are normally designed to have material masters at plant level.
We may have same material in different IMs with different  plants. Therefore changes of the basic view fields are then contained in multiple IMs.  SAP advises to have a larger IM or sequential activation of IMs.
I hope this will  help you .
Regards
Datta

Similar Messages

  • I have a fifth gen Ipod and have changed computers. I was not able to transfer all the music over when I created an itunes account on the new computer. How can I save all the songs on my ipod and upload new ones? It wants to sync with my new account.

    I have a fifth gen ipod classic. I switched computers and was not able to transfer the songs and pictures over. When I connect my ipod to the computer it wants to sync with it which would delete all my songs and music. Is there a way around this?

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • PuP price not changed in Material master

    Hello All experts
    I have one question about the material ledger related transaciton, I have a Material with 2+V (price deter. and price control) setting in Material master data in Accounting 1 TAB. And material ledger is active for this material, the Periodic Unit price is 1 USD in current period and stock is 0.
    One PO posted for this Material for purchase with actual price 100 USD, and 101 movement type with special stock indicator E was used in Goods receipt posting. I think these stock will be treated as valuated sales order stock. But GR posting didn't trigger any PuP price change in Material master. Is that situation normal? Pls kindly help.

    With price control V in activity-based material price determination (indicator2 in the material master), the moving average price is calculated. With price control S, the material is valuated with the standard price and the moving average price is calculated for information purposes.
    In single-/multi-level material price determination(indicator 3 in the material master), the valuation price (standard price) remains unchanged and a periodic unit price is calculated for the closed period.
    This option is only for materials with price control indicator S,and is only recommended if in addition to multiple currencies and/or valuations, you use single-/multi-level material price determination.
    In single-/multi-level material price determination, a periodic unit price is updated for information, but it can only be used for material valuation in the closed period.

  • Changes in Material Master leading to issues in MRP

    Hi,
    For a particular material a user changed a lot of material master data (MRP1 and MRP2 view) within a couple of hours.
    As a result MRP is not working as we would expect:
    - some orders have no quantity in the "Available quantity" column in MD04 and as a result do not trigger any PO (Received/Required quantity = -1, but Av qty = blank)
    - whenever a shipment is foreseen it is consumed/reserved by/for the order which requested delivery date is closest after that shipment date
    These are the changes made to the master data in November 2009:
    Planning Strategy Group: from Make-To-Stock Production to No Planning to Strategy Group for Spares & Consumables to No Planning to Strategy Group for Spares & Consumables
    MRP Group: from Client Specific MRP Group for Period Mgmt to General to External Procurement to Client Specific MRP Group for Period Mgmt to General to Client Specific MRP Group for Period Mgmt
    Availabilty Check: from Indiv. Req. to Indiv. Req w/o PO. to Indiv. Req.
    Unplanned Consumption in period: from blank to 11.2009
    Fwd Consumption Period: from 0 to 999 to 0
    Consumption Mode: from blank to Forward Consumption Only to blank
    Unchanged MRP material master data:
    Bwd Consumption Period: 0
    MRP type: MRP
    Planning Time Fence: 1
    Lot size: WB (weekly lot size)
    Procurement type: External Procurement
    Backflush: always backflush
    What should we do to have MRP work correctly again for this material?
    Changes to material master MRP? Delete all schedule lines and start from scratch in SOs?
    All help is much appreciated!
    Best regards,
    Geert
    Edited by: Geert P on Dec 10, 2009 6:08 PM
    Edited by: Geert P on Dec 14, 2009 4:04 PM

    Solved internally by adjusting Strategy Group

  • Not able to get changed values in the SAVE EVENT in ServHPartnerDet view

    Hi Experts,
    I am new CRM WEB IC, i have requirement like need to access four IBASE fields from BupaIbaseDetail and need to display those fiedls in ServHPartnerDet view. I am able display the fields and its values in the target view. But when user press change button and changes those four fields and press save button not able get the changed values in to the SAVE EVENT.Anyone please help me in this.
    IBHEADER , IBASEADDRESS  are the CONTEXT NODE CREATED in target view. I have binded IBHEADER to CuCoIbase custom controller and getting four fields data from IBASEADDRESS. below is the code for CREATE_CONTEXT_NODES.
    METHOD create_ibaseaddress.
      DATA:
        model        TYPE REF TO if_bsp_model,
        coll_wrapper TYPE REF TO cl_bsp_wd_collection_wrapper,
        entity       TYPE REF TO cl_crm_bol_entity,              "#EC *
        entity_col   TYPE REF TO if_bol_entity_col.             "#EC *
      model = owner->create_model(
          class_name     = 'ZL_CRM_IC_SERVHPDET_CN00'
          model_id       = 'IBaseAddress' ).                    "#EC NOTEXT
      ibaseaddress ?= model.
      CLEAR model.
      coll_wrapper =
        ibheader->get_collection_wrapper( ).
    TRY.
          entity ?= coll_wrapper->get_current( ).
        CATCH cx_sy_move_cast_error.
      ENDTRY.
      IF entity IS BOUND.
        TRY.
            entity_col = entity->get_related_entities(
                            iv_relation_name = 'FirstLevelComponent' ).
          CATCH cx_crm_genil_model_error.
        ENDTRY.
        TRY.
            entity ?= entity_col->get_current( ).
          CATCH cx_sy_move_cast_error.
        ENDTRY.
        CLEAR entity_col.
        IF entity IS BOUND.
          TRY.
              entity_col = entity->get_related_entities(
                              iv_relation_name = 'ComponentAddress' ).
              ibaseaddress->set_collection( entity_col ).
            CATCH cx_crm_genil_model_error.
          ENDTRY.
        ENDIF.
      ENDIF.
    ENDMETHOD.

    Code i have written in the CREATE_CONTEXT_NODE method for my custom context nodes( IBHEADER,IBASEADDRESS).
    this  CREATE_IBHEADER some data related to IBASE header then from this reading the IBASEADDRESS contextnode fields for displaying in the ServHPartnerDet. It is working fine but After changing the four fields values in the ServHPartnerDet view and trying to save, then context is not reading the new values it gives the old values only.
      TRY.
          lr_coll_wr = ztyped_context->ibaseaddress->get_collection_wrapper( ).
          IF lr_coll_wr IS BOUND.
            lr_entity ?= lr_coll_wr->get_current( ).
          ENDIF.
        CATCH cx_crm_genil_model_error.
      ENDTRY.
      CALL METHOD lr_entity->if_bol_bo_property_access~get_property_as_value
        EXPORTING
          iv_attr_name = 'BUILDING'
        IMPORTING
          ev_result    = lw_building.
    the building has got result of old value no the new value.
    method CREATE_IBHEADER.
        DATA:
          model        TYPE REF TO if_bsp_model,
          coll_wrapper TYPE REF TO cl_bsp_wd_collection_wrapper,
          entity       TYPE REF TO cl_crm_bol_entity,    "#EC *
          entity_col   TYPE REF TO if_bol_entity_col.    "#EC *
        model = owner->create_model(
            class_name     = 'ZL_CRM_IC_SERVHPDET_CN01'
            model_id       = 'IBHEADER' ). "#EC NOTEXT
        IBHEADER ?= model.
        CLEAR model.
    bind to custom controller
      DATA:
          cuco TYPE REF TO cl_crm_ic_cucoibase_impl,
          cnode TYPE REF TO cl_bsp_wd_context_node.
      cuco ?= owner->get_custom_controller(
            'CuCoIbase' ).                                      "#EC NOTEXT
      cnode ?=
        cuco->typed_context->ibaseheader.
      coll_wrapper = cnode->get_collection_wrapper( ).
      ibheader->set_collection_wrapper( coll_wrapper ).
    endmethod.

  • My ipod 7th generation is not recognised by itunes and my computer. I am not able to transfer any songs. Please help me on this regard. I tried all the steps from apple website

    my ipod 7th generation is not recognised by itunes and my computer. I am not able to transfer any songs. Please help me on this regard. I tried all the steps from apple website

    This article should give you the options
    https://discussions.apple.com/docs/DOC-3991

  • Inter company PO is not pulling the valuation price from Material Master

    Hi Experts,
    We have a scenario, Inter-company PO with pricing procedure which pulls Material Price from Material Master (Std Price), similar to intra company PO
    Even after maintaining the std price in the supplying plant , system is not pulling the Valuation price from Material master only for a particular Material
    I checked the Plant level attributes ( for ex: Plant Mat status, client level status and everything looks fine )
    Could you guys please mention what would be the issue ?
    Thanks in advance
    Illayaraja

    Hi,
    Is there a routine which pulls the value? then you need debug with ABAP help for that routine where its failing to pull
    Thanks
    Diwakar

  • Not able to transfer Integration Process in ID. Also not seen in SXI_Cache

    Hi Experts,
    I am trying a BPM scenario. I have created all design objects along with Integration Process in IR and saved and activated the same. Issue is : I am not able to transfer the Integration Scenario from IR in ID. I am also not able to see the created integration process in SXI_Cache under Integration Processes node. Can you please suggest some thing related to this issue. Thank you.

    hi,
    >>>I have created all design objects along with Integration Process in IR and saved and activated the same. Issue is : I am not able to transfer the Integration Scenario from IR in ID.
    but in order to use Integration Scenario in ID you need
    to create it in IR first and Integration Process is not the same as
    integration scenario
    you can only transfer Integration Process to ID as an Integration Process
    (under services without party node)
    Regards,
    Michal Krawczyk
    http://www.mypigenie.com - XI/PI FAQ

  • I am not able to transfer anything from my Nokia to my iphone by bluetooth although it says connected when I transfer it comes up on the Nokia unable to connect. any suggestions?

    I am not able to transfer anything from my Nokia phone to my iphone via bluetooth although it say's connected on the iphone when I try to send it say's UNABLE TO CONNECT on the Nokia, I have restarted the phone but still no luck. any suggestions?

    Two different operating systems.
    It has nothing to do with the phones running different operating systems. Bluetooth is a platform independent standard. It's all due to the different Bluetooth profiles each device incorporates. iPhones do not have the file transfer profile.

  • I am not able to transfer emails from outlook 2007 in Windows 8 to outlook 2011 in Mac.  I export .pst file to my hard drive from win 8 and then import in outlook 11 in mac, the folders including subfolders are created but there are hardly one email

    i am not able to transfer emails from outlook 2007 in Windows 8 to outlook 2011 in Mac.  I export .pst file to my hard drive from win 8 and then import in outlook 11 in mac, the folders including subfolders are created but there are hardly one email.  Please help

    Post your question in the MS Mac forums since it's their software you're having issues with:
    http://answers.microsoft.com/en-us/mac

  • TS2776 I recently bought iPad 3 but iTunes on my Win XP laptop is not detecting the iPad and i am not able to transfer music to it.

    I recently bought iPad 3 but iTunes on my Win XP laptop is not detecting the iPad and i am not able to transfer music to it. I tried again after downloading iTunes 10.6.1.7 and it said it's not compatible with the XP version.

    I would recommend you try downloading iTunes for Windows 10.6.1 from this website for your XP based computer:
         http://www.techspot.com/downloads/70-apple-itunes-for-windows.html
    Hope this helps

  • Not able to add payer in customer master partner tab page

    Dear all,
    I am not able to add payer in customer master partner tab page of sold to party
    I am getting the below error
    Customer 10075  is not defined for function PY(table TPAKD)
    kindly advice
    with regards
    Mohammed

    Please check this posting on partner determination. Your problem looks like the same and try to check if all the settings are made for the partner function assignmnet:
    Re: Business partner
    Regards
    Sai

  • HT4489 I am not able to transfer my in spite of VCf format from my computer to my iPhone 5S...can you pls suggest some way to do it as fast as possible

    Can you pls solve my issue......I am not able to transfer my in spite of VCf format from my computer to my iPhone 5S...can you pls suggest some way to do it as fast as possible

    What happens when you follow this?
    http://support.apple.com/kb/PH3605

  • TS1363 I am not able to transfer songs/ purchases from my playlist to my ipod...it is saying unknown error occured (-50)??  Can anyone help?

    I am not able to transfer songs/ purchases from my playlist to my ipod...it is saying an unknown error occured (-50)?  Can anyone help??

    Given that you're on XP, we'd better try the following document:
    iTunes displays -50 error message when syncing iPod on Windows XP

  • HT4101 I  would like to store some pics on my sd card to bring them to Costco for printing, but I am not Able to transfer the pics to the card. Any help?

    I would like to transfer photos to my sd card to bring them to Costco for printing, but I am not Able to transfer the pics to the card. Any help?

    Easiest way is to transfer the photos to your computer. Then copy them to your ad card. You should be backing up all your photos on your computer anyway. Having them only on your iPad is asking for trouble should something happen to your iPad.

Maybe you are looking for

  • Can't get sound to work

    Hello, haven't posted here in a long time, but now I decided to install arch on the new laptop I bought and I managed to get myself in a bit of trouble seeing that I never used a laptop before, let alone installed arch on it. So my laptop model is Le

  • Can Wireless bridge be a transport bridge for another WLAN?

    Can I setup a bridge as a transport bridge between two bridges as following? LAN1---B1---B2---B3---LAN2 ______________\B4---LAN3 How should I setup for root and non-root in this case? Can I do aggregation if I have 2 bridges in location 1 and 2 for r

  • Tween Bug?

    Here's the scenario: I have a main flash movie that has some buttons and a container. When you click a button, a MovieclipLoader loads an external swf. Both files were originally created with Flash 7 and previously had very little actionscript. Mainl

  • Test movie problem

    Hi, I have a strange problem. When I test my movie, my photo gallery doesn't load. But, it I test it again while the swf is already open, it works. Is there a way to fix this? I'm trying to upload the page onto the web, but once I place the swf in an

  • Update table TVARV

    Hi, I am writing a small program to update tavle TVARV. I don't want to use UPDATE TVARV statement, is there any FM or Transaction I can use? Thanks.