Adding new distribution channel

Hi,
I added a new distribution channel and added the relevant divisions,. Also set upd the sales areas. It picks correctly when trying to create the sales order.
but when i try to create a material in this new sales area if t gives a error sayin invalid sales area in the material master creation.
could there be any setting i could have missed? appreciate ur help on this.
Thanks
Keshini

Dear Keshini,
Please do the settings for common divisions and distribution channels through VOR1 and VOR2 transactions.
Then try,
I hope this will help you,
Regards,
Murali.

Similar Messages

  • Creation of new distribution Channel

    Can anyone give me a step by step process of creatinf a new distribution channel & assignment of the same.
    Sumit Gulati

    1. SPRO --> IMG --> Enterprise Structure --> Definition --> Sales and Distribution --> Define, copy, delete, check distribution channel
    It is recommended to copy (copy as ) from existing Distribution Channel.
    2. SPRO --> IMG --> Enterprise Structure --> Assignment --> Sales and Distribution --> Assign distribution channel to sales organization
    3. SPRO --> IMG --> Enterprise Structure --> Assignment --> Sales and Distribution --> Set up sales area
    4. SPRO --> IMG --> Enterprise Structure --> Assignment --> Sales and Distribution --> Assign sales organization - distribution channel - plant
    The above are settings for Distribution Channel at Enterprise Structure Level
    Regards,
    Rajesh Banka

  • Using new Distribution Channel for dealers.

    Hi experts
    Currently Domestic sales is operating only on one channel  DD.
    Proposal is to set DR channels for all Dealers sales and DD will be used only for Retail Sales .
    DR Channel was previously configured but we were only using DD channel for both retailors & dealers sales.. all configuration is already done like sales area setup  and pricing etc. for DR channel
    so i would like to what are the pros and cons for using two Distribution channel and maintainence we require.
    thank  you

    You need to extend all customers and materials for new distribution channel.
    You also neeed to maintain prices for DD and DR channels separately.
    ITs advantage is this that your reporting will be separately executed. You can check how much sales you have done in retail and how much you have done in Whole sale.
    I dont know what kind of business your company is running. I suggest you to make a provision for 3rd distribution channel which is DC. B2B sales. corporate sales. May after some months or years your company feel need of it.
    For extending customers and materials 2 uploads will do this. Ask you ABAPER to create uploads.
    There must be separate distribution channels for corporate, retail, wholesale and Expots if your company is dealing with exports sale.
    Hope its clear to you now

  • New distribution channel

    can any one tell what are the customisation we need to do to create a new distribution channel
    i am asking baout the assignments to be done in SPRO
    THANKS

    Hi
    Define Distribution Channel
    In this step, you define the distribution channels in your company, adapting the functional scope of a distribution channel to your organization.
    Enterprise Structure -->Definition -->Sales and Distribution -->Define, copy, delete, check distribution channel
    On the Choose Activity dialog box, choose Define distribution channel.
       2.  On the Change View “Distribution Channels”: Overview screen, choose New Entries.
       3. Enter the following.
          Distr. Channel      Name
          01      Direct Sales
          02      Wholesale
          03      Intercompany
            11. Assign Distribution Channel to Sales Organization
    Use
    In this step, you allocate the distribution channels to a sales organization. In this case as many distribution channels as desired can belong to a sales organization. In addition, a distribution channel can be valid for several sales organizations.
    Procedure
       1. Access the activity using one of the following navigation options:
    Transaction code      OVXK
    IMG path      Enterprise Structure ® Assignment ® Sales and Distribution ® Assign distribution channel to sales organization
       2. On the Distribution Channels -> Sales Organization: Overview screen, select Sales Org.BP01 BP01 and assign it to the following Distribution channels:
          Distr. Channel      Name
          01      Direct Sales
          02      Wholesale
          03      Intercompany
       3. Choose Save.
    Refer below LINK For more details
    Organizational Structure-SD

  • Restricting transaction VL06O by distribution channel

    Hello,
    Can someone please help as I am new to this?
    I have added transaction VL06O to a role and I need to restrict this by distribution channel.  When I have checked in SU24, there is no authorisation object associated with the transaction that will check for distribution channel.  So in SU24, I have added the authorisation object V_VBAK_VKO and set this to Check/maintain, the authorisation object then appears in PFCG and I can add the value for the distribution channel to the organisational levels of that role.  However, when I test this, it still does not appear to be doing an authorisation check on the distribution channel and I can view data regardless of what value has been set for distribution channel.  Can anyone please offer me some advice on how I can force this authorisation object to be checked? 
    Thanks.  
    Leah

    Hi
    Which version of  your SAP R/3?
    The only one option is customizing the tcode by writing AUTHORITY-CHECK statements in the assoicated ABAP programmes and later same should be maintained in SU24.

  • Populating Sales organization & Distribution channel details

    Hi,
    we have a requirement to populate sales orgnization & distribution channel detials in Product search page(PRD01QR/ SearchHelp).
    scenario: Role : IC Agent, While placing a customer order (BT115H_SLSO/SOHOverView ), in a items assigment block(BT115IT_SLSO/Items) there is a product field, with f4 help, when we click f4, there are a page for product search. on this page I need to retrive sales organization, and distribution channel detials with respect to customer.
    I am new to WebUI, if it is not clear. Kindly reply with some questions.
    Thanks,
    Devender
    Edited by: devender on Jun 1, 2011 10:02 AM

    Redefine the outbound plug OP_SEARCH_ORDERED_PROD of the BT115IT_SLSO/Items and all the following code (most of the code are from the original, those I added are marked).
    This will pass the Sales Org and Distribution Channel to the search help window.
    METHOD op_search_ordered_prod.
      CONSTANTS lc_query_name  TYPE crmt_ext_obj_name VALUE 'ProdAdvSearchRgProducts'.
      DATA: lv_event_string TYPE string,
            lv_title        TYPE string,
            lv_value        TYPE string.
      DATA: lr_cw            TYPE REF TO cl_bsp_wd_collection_wrapper,
            lr_it            TYPE REF TO if_bol_bo_col_iterator,
            lr_col           TYPE REF TO if_bol_bo_col,
            lr_current       TYPE REF TO if_bol_bo_property_access,
            lr_qs            TYPE REF TO cl_crm_bol_dquery_service.
    DATA: lr_org_ent TYPE REF TO if_bol_bo_property_access.  "<--INSERT
    DATA: lv_sales_org TYPE STRING,  "<-- INSERT
                 lv_dis_channel TYPE STRING.  "<-- INSERT
      cl_chtmlb_config_utility=>outbound_plug_event_info( EXPORTING iv_event_string = lv_event_string
                                                          IMPORTING ev_index        = gv_index ).
    * call advanced product search popup
      IF prodsearch_popup IS NOT BOUND.
        lv_title = cl_wd_utilities=>get_otr_text_by_alias( 'CRM_UIU_BT/PRODUCT_SEARCH' ).
        prodsearch_popup = comp_controller->window_manager->create_popup(
        iv_interface_view_name = 'SearchHelpWindow'           
        iv_usage_name = 'CUProdSearchPopup'                  
        iv_title = lv_title ).
      ENDIF.
      prodsearch_popup->set_on_close_event( iv_view = me iv_event_name = 'SELECT_ORDERED_PROD' ).
      prodsearch_popup->set_display_mode( if_bsp_wd_popup=>c_display_mode_surrounded ).
    * make sure the existing entry for ordered_prod is passed to the valuehelp if it contains
    * an asterix.
      lr_cw      = get_collection_wrapper( gc_context_node_admini ).
      lr_it      = lr_cw->get_iterator( ).
      lr_current = lr_it->get_by_index( iv_index = gv_index ).
      CHECK lr_current IS BOUND.
      lv_value = lr_current->get_property_as_string( iv_attr_name = 'ORDERED_PROD' ).
      IF NOT lv_value CS '*'.
        CLEAR lv_value.
      ENDIF.
    *<-- INSERT
      lr_org_ent ?= lr_current->get_related_entity( 'BTItemOrgmanSet' ).  "Get ORGMAN BO
      lv_sales_org = lr_org_ent->get_property_as_string( iv_attr_name = 'SALES_ORG' ). "Get Sales Org
      lv_dis_channel =  lr_org_ent->get_property_as_string( iv_attr_name = 'DIS_CHANNEL' ). "Get Dist Channel
    *--> INSERT
      CALL METHOD cl_crm_bol_dquery_service=>get_instance
        EXPORTING
          iv_query_name = lc_query_name
        RECEIVING
          rv_result     = lr_qs.
    * fill selection conditons for product again
      CALL METHOD lr_qs->add_selection_param
        EXPORTING
          iv_attr_name = 'PRODUCT_ID'
          iv_sign      = 'I'
          iv_option    = 'EQ'
          iv_low       = lv_value.
    *<-- INSERT (Passing Sales Org and Distribution Channel to the search BO)
      CALL METHOD lr_qs->add_selection_param
        EXPORTING
          iv_attr_name = 'SALES_ORG'
          iv_sign      = 'I'
          iv_option    = 'EQ'
          iv_low       = lv_sales_org.
      CALL METHOD lr_qs->add_selection_param
        EXPORTING
          iv_attr_name = 'DISTR_CHAN'
          iv_sign      = 'I'
          iv_option    = 'EQ'
          iv_low       = lv_sales_org.
    *--> INSERT
      CREATE OBJECT lr_col
        TYPE
          cl_crm_bol_bo_col.
      lr_col->add( lr_qs ).
      IF can_have_iobject( ) = abap_true.
        prodsearch_popup->open( iv_inbound_plug = 'SEARCHPRODANDOBJECTS'
                                iv_collection = lr_col             ).
      ELSE.
        prodsearch_popup->open( iv_inbound_plug = 'SEARCHPRODUCTS'
                                iv_collection = lr_col             ).
      ENDIF.
    ENDMETHOD.

  • VA01 adding new fields in the popup bot aht display a customers contract

    Hi,
    I need to add 3 extra fields in the popup box that appears showing a customers open contracts, to see the popup do VA01 -> enter the data below on the first screen.       
    Order Type: OR                                                                   
    Sales Organization   0002  
    Distribution Channel 01      
    Division 01
    On the 2nd screen enter  sold to party only and press enter you will then see the popup Im talking abpou. This popup is generated by a function  sd_list_reference_document.   
    Is the only way to do this to copy sd_list_reference_document to a z function and then also copy VA01 to a Z transaction to cjh the call to the new function.
    Any help would be apprecdated.

    HI
    GOOD
    TRY TO USE THE USER EXITS AMONG THESE
    SDTRM001            Reschedule schedule lines without a new ATP check
    V45A0002            Predefine sold-to party in sales document
    V45A0003            Collector for customer function modulpool MV45A
    V45A0004            Copy packing proposal
    V45E0001            Update the purchase order from the sales order
    V45E0002            Data transfer in procurement elements (PRreq., assembly)
    V45L0001            SD component supplier processing (customer enhancements)
    V45P0001            SD customer function for cross-company code sales
    V45S0001            Update sales document from configuration
    V45S0003            MRP-relevance for incomplete configuration
    V45S0004            Effectivity type in sales order
    V45W0001            SD Service Management: Forward Contract Data to Item
    V46H0001            SD Customer functions for resource-related billing
    V60F0001            SD Billing plan (customer enhancement) diff. to billing p
    SDAPO001            Activating Sourcing Subitem Quantity Propagation
    V45A0001            Determine alternative materials for product selection
    THANKS
    MRUTYUN^

  • Distribution channel-wise customer sales and outstanding report.

    Hi
    In our scenario, one customer is direct factory sales as well consignment sales customer also. We created two distribution channel. But customer master record is one.
    Now my client requires customer report:
    Total sales value and quantity - distribution channel wise
    Outstanding customer balance - distribution channel wise
    Please let me know if this report is possible.
    I tried with some reports: S_ALR_87012171 and S_ALR_87012186. But its showing total sales.
    I tried with VF05N. It shows billed amount and does not quantity.
    Please help.

    Distribution Channel-Wise Sales can be made avaialble thru Standard Reports or LIS / SIS.
    But, I believe you cannot get the Distribution Channel-wise Outstanding Report from SAP Standard. You will have to go for Z-Report Development.
    Speak to your ABAPer & get a new Report developed.
    Hope this helps,
    Thanks,
    Jignesh.

  • Change of Distribution Channel and Division

    Good day, everyone!
    Is there a transaction code that will allow me to change the distribution channel and division of the material?
    Thank you.

    Division can be changed with MM02.
    But distribution channel is a key for the sales data. You can only flag the existing sales data for deletion in MM06 and create new sales data with MM01.

  • Can't add distribution channel in org. model.

    Dear all.
    I had define distribution channel in SPRO->cust->CRM->Master Data -> Organizational managment-> Organizational Data for sales scenario->Define distribution channels
    After that i'm trying to add it in field Dist. channel in attribute tab of my sales org. But there are no any new distr channel in area of selection. How can i fix it?
    Regards,
    EL

    Hii EL
    Goto sm30 -> T77OMATTR
    Click on maintain .
    Select Sales -> goto Attributes/Scenarios tab on left hand side -> Check the status of Attribute D_CHANNEL. If it is checked as invisible then deselect it and then check the attributres in your org unit.
    Regards
    Shafali

  • Changing Distribution Channel in the existing Sales Doc.

    Hi,
      We have a scenario that we need to change the distribution channel in the existing sales document.
    Can any one tell me, whether is this possible in R/3, If yes, How?
    But,It is possible in CRM.
    Regards,
    Babu

    after saving the sales order system will not allow you to change the distribution channel but you can close the order at header level by giving the Reason i.e. monthly closure. After closing the sales order create the new sales order as per the requirement.
    Regards,
    Sangeeta

  • Recipient Policies failure when adding new users

    Hi,
    I have some trouble adding new users to my Exchange 2007 setup. I get the message "The Exchange server address list service fail to respond. This could be because of an address list or email address policy configuration error" 
    Of course I Googled around to find solutions, but after trying everything, it still doesn't work. System Attendant just seems to run nice. 
    This is the 8231 message I get in the logs:
    Permanent failure reported by policy group provider for 'CN=Recipient Policies,CN=First Organization,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=[org],DC=local':'MAD.EXE', error=8000ffff.  Taking provider offline.   
    After Googling the error I came across al kind of solutions, however, most of them relate to Exchange 2003. 
    Pretty much the issue here; http://social.technet.microsoft.com/Forums/exchange/en-US/f1c07fe1-451f-4cf4-8b8d-3e0d15376307/the-exchange-server-address-list-service-failed-to-respond-this-could-be-because-of-an-address?forum=exchangesvrgenerallegacy
    Is there any way of recreating the Default Policy? It doesn't work through Management Console. Maybe via ADSI?
    Could anyone help? Thanks a lot. 

    Hi Combo,
    Just check if msexchangeSystemAttendant service is running fine. If not please start System Attendant Service.
    Also try restarting the system attendant service and file distribution service and check if they are already started
    Run ExBPA and see if it throws any errors related to Email address policies which might help
    Increase Diagnostic Logging for MSExchangeAL for below parameters to expert and see if it generates any relevant logs in event viewer
    a)Address List Syncronizataion
    b)Ldap Operations
    If nothing works its better remove and recreate email address policies
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you.
    Regards,
    Sathish

  • Full server pool crashes when adding new iSCSI server

    Hi,
    we have a Pool Group with 2 machines (1 Server Pool Master + Server Virtual Machine + Utility Server and another 1 Server Virtual Machine). Both have a iSCSI Shared Disk which builds /OVS partition.
    This is working, we can use High Availability, Migrate guests etc.
    But when adding new Server Virtual Machines to the pool (with guests running), current machines in the Pools get restarted.
    My question is, can server virtual machines be "hot added" to the pool group while guests are running?
    Thanks and regards,
    Marc

    Hi,
    hosts file seems to be correct.
    Messages logs during the crash time are the following:
    Node vmserver15 = Server Pool Master, Utility Master and Server Virtual Machine
    Dec 10 12:40:02 vmserver15 kernel: vlan500: port 3(vif6.0) entering disabled state
    Dec 10 12:40:02 vmserver15 kernel: device vif6.0 left promiscuous mode
    Dec 10 12:40:02 vmserver15 kernel: type=1700 audit(1260445202.434:16): dev=vif6.0 prom=0 old_prom=256 auid=4294967295 ses=4294967295
    Dec 10 12:40:02 vmserver15 kernel: vlan500: port 3(vif6.0) entering disabled state
    Dec 10 12:40:02 vmserver15 kernel: loop10: dropped 10114 extents
    Dec 10 12:40:03 vmserver15 udhcpc: udhcp client (v0.9.8) started
    Dec 10 12:40:03 vmserver15 udhcpc: Lease of 193.109.175.25 obtained, lease time 172800
    Dec 10 12:40:04 vmserver15 kernel: device vif7.0 entered promiscuous mode
    Dec 10 12:40:04 vmserver15 kernel: type=1700 audit(1260445204.774:17): dev=vif7.0 prom=256 old_prom=0 auid=4294967295 ses=4294967295
    Dec 10 12:40:04 vmserver15 kernel: vlan500: topology change detected, propagating
    Dec 10 12:40:04 vmserver15 kernel: vlan500: port 3(vif7.0) entering forwarding state
    Dec 10 12:40:05 vmserver15 kernel: loop10: fast redirect
    Dec 10 12:40:06 vmserver15 kernel: blkback: ring-ref 770, event-channel 9, protocol 1 (x86_32-abi)
    Dec 10 12:53:35 vmserver15 kernel: o2net: no longer connected to node vmserver10.pic.es (num 1) at 193.109.174.110:7777
    Dec 10 12:53:36 vmserver15 kernel: (4989,0):o2hb_do_disk_heartbeat:776 ERROR: Device "sdb1": another node is heartbeating in our slot!
    Dec 10 12:53:37 vmserver15 kernel: o2net: accepted connection from node vmserver10.pic.es (num 1) at 193.109.174.110:7777
    Dec 10 12:53:38 vmserver15 kernel: (4989,0):o2hb_do_disk_heartbeat:776 ERROR: Device "sdb1": another node is heartbeating in our slot!
    Dec 10 12:53:50 vmserver15 last message repeated 6 times
    Dec 10 12:53:51 vmserver15 kernel: o2net: no longer connected to node vmserver10.pic.es (num 1) at 193.109.174.110:7777
    Dec 10 12:53:52 vmserver15 kernel: (4989,0):o2hb_do_disk_heartbeat:776 ERROR: Device "sdb1": another node is heartbeating in our slot!
    Dec 10 12:53:53 vmserver15 kernel: o2net: accepted connection from node vmserver10.pic.es (num 1) at 193.109.174.110:7777
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):dlm_send_remote_convert_request:393 ERROR: dlm status = DLM_IVLOCKID+
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):dlmconvert_remote:327 ERROR: dlm status = DLM_IVLOCKID+
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):ocfs2_cluster_lock:1206 ERROR: DLM error DLM_IVLOCKID while calling dlmlock on resource M000000000000000001050c00000000: bad lockid+
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):ocfs2_inode_lock_full:2064 ERROR: status = -22+
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):ocfs2_inode_lock_atime:2193 ERROR: status = -22+
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):__ocfs2_file_aio_read:2434 ERROR: status = -22+
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):dlm_send_remote_convert_request:393 ERROR: dlm status = DLM_IVLOCKID+
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):dlmconvert_remote:327 ERROR: dlm status = DLM_IVLOCKID+
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):ocfs2_cluster_lock:1206 ERROR: DLM error DLM_IVLOCKID while calling dlmlock on resource M000000000000000001050c00000000: bad lockid+
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):ocfs2_inode_lock_full:2064 ERROR: status = -22+
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):ocfs2_write_begin:1845 ERROR: status = -22+
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):ocfs2_file_buffered_write:2016 ERROR: status = -22+
    Dec 10 12:53:53 vmserver15 kernel: (5638,0):__ocfs2_file_aio_write:2173 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):dlm_send_remote_convert_request:393 ERROR: dlm status = DLM_IVLOCKID+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):dlmconvert_remote:327 ERROR: dlm status = DLM_IVLOCKID+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):ocfs2_cluster_lock:1206 ERROR: DLM error DLM_IVLOCKID while calling dlmlock on resource M000000000000000000020744c1370e: bad lockid+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):ocfs2_inode_lock_full:2064 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):ocfs2_reserve_suballoc_bits:449 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):ocfs2_reserve_cluster_bitmap_bits:682 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):ocfs2_local_alloc_reserve_for_window:930 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):ocfs2_local_alloc_slide_window:1063 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):ocfs2_reserve_local_alloc_bits:537 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):__ocfs2_reserve_clusters:725 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):ocfs2_lock_allocators:677 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):ocfs2_write_begin_nolock:1751 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):ocfs2_write_begin:1861 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):ocfs2_file_buffered_write:2016 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: (7923,0):__ocfs2_file_aio_write:2173 ERROR: status = -22+
    Dec 10 12:53:58 vmserver15 kernel: loop: Write error at byte offset 37644512256, length 4096.+
    . <the above bold and cursive text is repetead few times>
    Dec 10 12:58:29 vmserver15 kernel: (5638,3):dlmconvert_remote:327 ERROR: dlm status = DLM_IVLOCKID
    Dec 10 12:58:29 vmserver15 kernel: (5638,3):ocfs2_cluster_lock:1206 ERROR: DLM error DLM_IVLOCKID while calling dlmlock on resource M000000000000000001050c00000000: bad lockid
    Dec 10 12:58:29 vmserver15 kernel: (5638,3):ocfs2_inode_lock_full:2064 ERROR: status = -22
    Dec 10 12:58:29 vmserver15 kernel: (5638,3):ocfs2_write_begin:1845 ERROR: status = -22
    Dec 10 12:58:29 vmserver15 kernel: (5638,3):ocfs2_file_buffered_write:2016 ERROR: status = -22
    Dec 10 12:58:29 vmserver15 kernel: (5638,3):__ocfs2_file_aio_write:2173 ERROR: status = -22
    Dec 10 13:01:16 vmserver15 syslogd 1.4.1: restart.
    Node vmserver10: Virtual Server Machine
    Dec 10 12:53:35 vmserver10 kernel: o2net: no longer connected to node vmserver15.pic.es (num 0) at 193.109.174.115:7777
    Dec 10 12:53:35 vmserver10 kernel: (5029,0):ocfs2_dlm_eviction_cb:98 device (8,17): dlm has evicted node 0
    Dec 10 12:53:35 vmserver10 kernel: (20996,0):dlm_get_lock_resource:844 E3FE9E5767CA457FA697980EB637E93B:M000000000000000000022044c1370e: at least one node (0) to recover before lock mastery can begin
    Dec 10 12:53:36 vmserver10 kernel: (5344,4):dlm_get_lock_resource:844 E3FE9E5767CA457FA697980EB637E93B:$RECOVERY: at least one node (0) to recover before lock mastery can begin
    Dec 10 12:53:36 vmserver10 kernel: (5344,4):dlm_get_lock_resource:878 E3FE9E5767CA457FA697980EB637E93B: recovery map is not empty, but must master $RECOVERY lock now
    Dec 10 12:53:36 vmserver10 kernel: (5344,4):dlm_do_recovery:524 (5344) Node 1 is the Recovery Master for the Dead Node 0 for Domain E3FE9E5767CA457FA697980EB637E93B
    Dec 10 12:53:36 vmserver10 kernel: (20996,0):ocfs2_replay_journal:1183 Recovering node 0 from slot 0 on device (8,17)
    Dec 10 12:53:37 vmserver10 kernel: o2net: connected to node vmserver15.pic.es (num 0) at 193.109.174.115:7777
    Dec 10 12:53:38 vmserver10 kernel: (8672,1):dlm_get_lock_resource:844 ovm:$RECOVERY: at least one node (0) to recover before lock mastery can begin
    Dec 10 12:53:38 vmserver10 kernel: (8672,1):dlm_get_lock_resource:878 ovm: recovery map is not empty, but must master $RECOVERY lock now
    Dec 10 12:53:38 vmserver10 kernel: (8672,1):dlm_do_recovery:524 (8672) Node 1 is the Recovery Master for the Dead Node 0 for Domain ovm
    Dec 10 12:53:40 vmserver10 kernel: kjournald starting. Commit interval 5 seconds
    Dec 10 12:53:51 vmserver10 kernel: o2net: no longer connected to node vmserver15.pic.es (num 0) at 193.109.174.115:7777
    Dec 10 12:53:53 vmserver10 kernel: o2net: connected to node vmserver15.pic.es (num 0) at 193.109.174.115:7777
    Dec 10 12:53:53 vmserver10 kernel: (3761,0):dlm_convert_lock_handler:489 ERROR: did not find lock to convert on grant queue! cookie=0:92+
    Dec 10 12:53:53 vmserver10 kernel: lockres: M000000000000000001050c0000000, owner=1, state=0+
    Dec 10 12:53:53 vmserver10 kernel:   last used: 0, refcnt: 3, on purge list: no+
    Dec 10 12:53:53 vmserver10 kernel:   on dirty list: no, on reco list: no, migrating pending: no+
    Dec 10 12:53:53 vmserver10 kernel:   inflight locks: 0, asts reserved: 0+
    *Dec 10 12:53:53 vmserver10 kernel:   refmap nodes: [ ], inflight=0*+
    Dec 10 12:53:53 vmserver10 kernel:   granted queue:+
    Dec 10 12:53:53 vmserver10 kernel:     type=5, conv=-1, node=1, cookie=1:243, ref=2, ast=(empty=y,pend=n), bast=(empty=y,pend=n), pending=(conv=n,lock=n,cancel=n,unlock=n)+
    Dec 10 12:53:53 vmserver10 kernel:   converting queue:+
    Dec 10 12:53:53 vmserver10 kernel:   blocked queue:+
    . <the above bold and cursive text is repetead few times>
    Dec 10 12:57:18 vmserver10 modprobe: FATAL: Module ocfs2_stackglue not found.
    Dec 10 12:57:18 vmserver10 kernel: (3761,0):dlm_convert_lock_handler:489 ERROR: did not find lock to convert on grant queue! cookie=0:92+
    Dec 10 12:57:18 vmserver10 kernel: lockres: M000000000000000001050c0000000, owner=1, state=0+
    Dec 10 12:57:18 vmserver10 kernel:   last used: 0, refcnt: 3, on purge list: no+
    Dec 10 12:57:18 vmserver10 kernel:   on dirty list: no, on reco list: no, migrating pending: no+
    Dec 10 12:57:18 vmserver10 kernel:   inflight locks: 0, asts reserved: 0+
    *Dec 10 12:57:18 vmserver10 kernel:   refmap nodes: [ ], inflight=0*+
    Dec 10 12:57:18 vmserver10 kernel:   granted queue:+
    Dec 10 12:57:18 vmserver10 kernel:     type=5, conv=-1, node=1, cookie=1:243, ref=2, ast=(empty=y,pend=n), bast=(empty=y,pend=n), pending=(conv=n,lock=n,cancel=n,unlock=n)+
    Dec 10 12:57:18 vmserver10 kernel:   converting queue:+
    Dec 10 12:57:18 vmserver10 kernel:   blocked queue:+
    . <the above bold and cursive text is repetead few times>
    Dec 10 12:58:32 vmserver10 kernel: (3761,0):dlm_unlock_lock_handler:511 ERROR: failed to find lock to unlock! cookie=0:1849
    Dec 10 12:58:33 vmserver10 modprobe: FATAL: Module ocfs2_stackglue not found.
    Dec 10 12:59:02 vmserver10 kernel: o2net: connection to node vmserver15.pic.es (num 0) at 193.109.174.115:7777 has been idle for 30.0 seconds, shutting it down.
    Dec 10 12:59:02 vmserver10 kernel: (0,0):o2net_idle_timer:1503 here are some times that might help debug the situation: (tmr 1260446312.830107 now 1260446342.828243 dr 1260446312.830066 adv 1260446312.830319:1260446312.830320 func (b9f5fd13:506) 1260446312.830109:1260446312.830303)
    Dec 10 12:59:02 vmserver10 kernel: o2net: no longer connected to node vmserver15.pic.es (num 0) at 193.109.174.115:7777
    Dec 10 12:59:32 vmserver10 kernel: (3761,0):o2net_connect_expired:1664 ERROR: no connection established with node 0 after 30.0 seconds, giving up and returning errors.
    Dec 10 13:01:42 vmserver10 kernel: o2net: connected to node vmserver15.pic.es (num 0) at 193.109.174.115:7777
    Dec 10 13:01:45 vmserver10 kernel: ocfs2_dlm: Node 0 joins domain E3FE9E5767CA457FA697980EB637E93B
    Dec 10 13:01:45 vmserver10 kernel: ocfs2_dlm: Nodes in domain ("E3FE9E5767CA457FA697980EB637E93B"): 0 1
    Dec 10 13:01:51 vmserver10 kernel: o2net: accepted connection from node vmserver16.pic.es (num 2) at 193.109.174.116:7777
    Dec 10 13:01:56 vmserver10 kernel: ocfs2_dlm: Node 2 joins domain E3FE9E5767CA457FA697980EB637E93B
    Dec 10 13:01:56 vmserver10 kernel: ocfs2_dlm: Nodes in domain ("E3FE9E5767CA457FA697980EB637E93B"): 0 1 2
    Dec 10 13:09:05 vmserver10 modprobe: FATAL: Module ocfs2_stackglue not found.
    Dec 10 13:16:45 vmserver10 kernel: o2net: connection to node vmserver16.pic.es (num 2) at 193.109.174.116:7777 has been idle for 30.0 seconds, shutting it down.
    Dec 10 13:16:45 vmserver10 kernel: (0,0):o2net_idle_timer:1503 here are some times that might help debug the situation: (tmr 1260447375.655426 now 1260447405.655712 dr 1260447375.655413 adv 1260447375.655427:1260447375.655427 func (b9f5fd13:503) 1260446516.75600:1260446516.75608)
    Dec 10 13:16:45 vmserver10 kernel: o2net: no longer connected to node vmserver16.pic.es (num 2) at 193.109.174.116:7777
    Dec 10 13:17:15 vmserver10 kernel: (3761,0):o2net_connect_expired:1664 ERROR: no connection established with node 2 after 30.0 seconds, giving up and returning errors.
    Dec 10 13:17:19 vmserver10 kernel: (5029,0):ocfs2_dlm_eviction_cb:98 device (8,17): dlm has evicted node 2
    Dec 10 13:17:20 vmserver10 kernel: (3761,0):ocfs2_dlm_eviction_cb:98 device (8,17): dlm has evicted node 2
    Dec 10 13:29:05 vmserver10 kernel: o2net: no longer connected to node vmserver15.pic.es (num 0) at 193.109.174.115:7777
    Dec 10 13:29:05 vmserver10 kernel: (5029,0):ocfs2_dlm_eviction_cb:98 device (8,17): dlm has evicted node 0
    Dec 10 13:29:06 vmserver10 kernel: (5344,4):dlm_get_lock_resource:844 E3FE9E5767CA457FA697980EB637E93B:$RECOVERY: at least one node (0) to recover before lock mastery can begin
    Dec 10 13:29:06 vmserver10 kernel: (5344,4):dlm_get_lock_resource:878 E3FE9E5767CA457FA697980EB637E93B: recovery map is not empty, but must master $RECOVERY lock now
    Dec 10 13:29:06 vmserver10 kernel: (5344,4):dlm_do_recovery:524 (5344) Node 1 is the Recovery Master for the Dead Node 0 for Domain E3FE9E5767CA457FA697980EB637E93B
    Dec 10 13:29:06 vmserver10 kernel: (28412,0):ocfs2_replay_journal:1183 Recovering node 0 from slot 0 on device (8,17)
    Dec 10 13:29:09 vmserver10 kernel: kjournald starting. Commit interval 5 seconds
    Dec 10 13:29:16 vmserver10 kernel: o2net: accepted connection from node vmserver16.pic.es (num 2) at 193.109.174.116:7777
    Dec 10 13:29:20 vmserver10 kernel: ocfs2_dlm: Node 2 joins domain E3FE9E5767CA457FA697980EB637E93B
    Dec 10 13:29:20 vmserver10 kernel: ocfs2_dlm: Nodes in domain ("E3FE9E5767CA457FA697980EB637E93B"): 1 2
    Dec 10 13:32:08 vmserver10 kernel: o2net: connected to node vmserver15.pic.es (num 0) at 193.109.174.115:7777
    Dec 10 13:32:11 vmserver10 kernel: ocfs2_dlm: Node 0 joins domain E3FE9E5767CA457FA697980EB637E93B
    Dec 10 13:32:11 vmserver10 kernel: ocfs2_dlm: Nodes in domain ("E3FE9E5767CA457FA697980EB637E93B"): 0 1 2
    Dec 10 13:36:10 vmserver10 shutdown[28681]: shutting down for system reboot+
    I will investigate what seems to be going on and post it here.
    Thanks for your help.
    Edited by: Marc Caubet on 11-Dec-2009 02:05
    Edited by: Marc Caubet on 11-Dec-2009 02:07

  • Create several distribution channel for an existing customer

    Hi,
    to create a new customer, we use the BAPI "BAPI_CUSTOMER_CREATEFROMDATA1" with the specified distribution channel.
    After creation of the customer I want to create another distribution channel to this customer without create a new customer number.
    Is there any BAPI, which solve this issue?
    Best regards,
    Dirk

    hii,
    From ECC it is manadatory that you maintain Common Distribution Channel (Reference distribution channel for conditions, Reference distrib.channel for cust.and material masters) and Common Division (Reference division for conditions, Reference division for customers). so you will have to create the customer similarly. Thumb rule it is standardized.
    Customer created for one sales area i.e., 1000,10,01 cannot be used in another sales area 1000,11,01 unless the customer is extended. (which means you cannot use the customer for other sales area)
    rgrds,
    Shweta

  • Configure Ext. mail sending based on distribution channel automatically !

    Hi,
    Is it possible to configure external mail sending based on distribution channel automatically whenever a sales order is created without adding output type in Extras-output u2013 header-Edit.
    I have created output type to send mail whenever a sales order is created and is working fine but for this the concerned team has to add output type, sometimes they are ignoring this process, I want this process to be automated and also based on distribution channel, for ex- mail should be send only when distribution channel is 10 and not for all.
    Regards,
    Nishant Bhargava

    HI
    Try to Create a Access Sequence with Distributional Channel and maintain the Condition record (or)
    Give the logic to the ABAP like at the time of creating the sale order if distribution Channel is 10 then system will automatically send E- mail to customer
    Regards,
    Prasanna

Maybe you are looking for

  • How do I reset my errors when trying to sync in the new version of iTunes?

    Hey everyone, I experienced an error a while ago when syncing my ipod to my laptop - it would say "100 items cannot be synced, refer to itunes for further info" - I figured out I could reset my warning messages by clicking on the phone symbol ... but

  • WebCenter Content Architecture

    Hello everyone, I just need an advice on how to solve a particular client's document management requirement. Need help on a good (if not best) architecture for their case. In a nutshell, they have satellite/offsite branches that can receive documents

  • Exposing MDM LOGS as webservices

    Hi Experts, Does anybody knows if it's possible to expose the MDM logs as a webservice or even connect trough any Portal iview on it? Thanks in advance, Armando Martines Neto

  • What is "feature" in HR?

    Hi Experts, What is feature in HR? this term is quite new to me. I saw it in the IMG but still not sure what it is. Thanks! - Anthony -

  • 7.4.1 is garbage

    Just reverted back down to 7.3.1 due to 7.4.1 garbage update. Extreme + Express set up with two Macbook Pros and kept losing connection to stable Cable Internet. Some of us work remotely and rely on a stable system.