Finding sales Org, Distribution Channel

Hi Forum,
  If i have plant and material how could i find its corresponding sales organization and Distribution channel.give field and table name.
Thanks
Lovleen
Edited by: lovleen sol on Jan 8, 2008 11:14 AM

Hi,
Check these table:
MARA: General Material Data
MARC: Plant Data for Material
MARD: Storage Location Data for Material
MARM: Units of Measure for Material
MVKE: Sales Data for Material
MBEW: Material Valuation
Base Unit u will get from table MARA and for others units check MARM.
Rewards points if helpful,
Regards,
Srinivas Ch

Similar Messages

  • Which table contain the sales org/distribution channel details for an PO

    Hi Experts,
    Do you know from which table could i get the sales org/distribution channel details for an Purchase order.
    The Purchase order is an UB document type. STO
    Then there will be delivery order created for this STO.
    I heard there are 2 kinds of Sales org/distribution channel in one Purchase order? One is Vendor, another is local...?Is this correct understanding?
    Please let me know which table field could i find those info from an Purchase order document?
    Or the questions could be:
    Assumed we have replenishment delivery#, then how to get corresponding Purchase order#(UB, STO), and further how to get the sales org info?
    Please kindly advise from table fields points of view...
    How to get the PFrom an replenishment delivery#
    Thanks.

    Dear Hoo Laa,
    You may find the Sales Organisation/Distribution Channel details in PO itself (Shipping Tab). Table where you can get Sales Organisation/Disribution Channel is EKPV.
    Regards
    Samier Danish

  • Relation between Sales org + distribution Channel + Division.

    Hello all,
    I have a requirement where I need to make an entry for  sales data for a BP . On the Selection  we have sales Org , Distribution channel and division. can any body tell me how check if the combination of entries made for the S.org , Channel and division are correct .
    I tried using the FM CRM_BUPA_SALES_AREA_GET_ALL. but this doesn't show all the entries .
    Thanks in advance
    srinivas

    Any Suggestions ?
    Thanks ,
    Shounak M.

  • Remove Sales Org & Distribution Channel assigned in Material Master

    Hi,
    Is it possible to remove Sales Org & Distribution Channel assigned in Material Master. This is a newly created material I looked at MM06 to see if this assignment can be removed without setting the material for deletion. Any suggestions welcome.
    Thanks.

    the only way to get rit of existing  data is to set a deletion indicator and subsequently run archiving.
    In your case go to MM06, enter material number, sales org and distribution channel and set then the deletion indicator at this level only.
    Then go to SARA object MM_MATNR and run archiving.
    Archiving is usually a process, not just a sequence of transactions. Archiving requires customizing, and certainly the most recent OSS notes for the archiving object (this can be extremly many if your hotpackage implementation was long ago).
    this is especially needed to archive only certain organisation levels, as this functionality came with OSS notes

  • Sales Org/Distribution Channel to Plant Assignment

    Hello All,
    I am assigning a sales org/distribution channel to a plant, but an error message says that "Organizational data for inter-company billing missing in plant CN30". Can anybody tell me what this means and how to correct it?
    Thanks and regards,
    Olyn

    Hi Olyn,
    I think there may be something missing in your customising - please    
    see the relevant parts of note 109254 attached - in particular points  
    7 + 8 relating to transaction OMGN.    
    Kind regards,
    Zsuzsanna

  • Urgent,   Restricting Sales org & Distribution Channel

    I'm having two users and one is from US and other MEXICO
    If user from US LOG'S into SAP ,He should only his Sales org(US01) & Distribution Channel(001) & Mexico User log ,then he should be able to see only his Sales org(ME01).
    My Question is there a way where we can restrict US / MEX Through Security , if not Can we restrict through abap if so Please send me some details , Which table /code .
    any inputs will be appreciated ,

    Hi
      One way is as below.
      DATA: BEGIN OF lt_tvko OCCURS 0,
              vkorg TYPE vkorg,
              bukrs TYPE bukrs,
            END OF lt_tvko.
      SELECT vkorg bukrs FROM tvko INTO TABLE lt_tvko
        WHERE vkorg IN lr_vkorg.
      IF sy-subrc NE 0.
        MESSAGE e085(wv).
      ENDIF.
    * Check all retrieved co.codes
      SORT lt_tvko BY bukrs.
      DELETE ADJACENT DUPLICATES FROM lt_tvko COMPARING bukrs.
      LOOP AT lt_tvko.
    *   Error Message: No authorization for sales organization &1
        PERFORM f_bukrs_auth_chk_p USING lt_tvko-bukrs 'ICC_FI_CN' 'E' '010'
                                         lt_tvko-vkorg '' '' ''.
      ENDLOOP.
    FORM f_bukrs_auth_chk_p USING value(lc_bukrs) TYPE bukrs
                                  value(lc_msgid) LIKE sy-msgid
                                  value(lc_msgty) LIKE sy-msgty
                                  value(ln_msgno) LIKE sy-msgno
                                  value(lc_msgv1)
                                  value(lc_msgv2)
                                  value(lc_msgv3)
                                  value(lc_msgv4).
      AUTHORITY-CHECK OBJECT 'F_BKPF_BUK'
        ID 'BUKRS' FIELD lc_bukrs
        ID 'ACTVT' FIELD '03'.
      IF sy-subrc NE 0.
        MESSAGE ID lc_msgid TYPE lc_msgty NUMBER ln_msgno
          WITH lc_msgv1 lc_msgv2 lc_msgv3 lc_msgv4.
      ENDIF.
    ENDFORM.                    "f_bukrs_auth_chk_p
    Select the sales organization mapping to Company code and then restrict.
    Hope this can help you.
    Kind Regards
    Eswar

  • BD64 Filtering Value (Sale org/ Distri Channel) need to get in EXIT_SAPLMV01_002

    IHi ,
    In BD64, Under MATMAS Data filtration is set on Sales Org and Distribution Channel. When I am sending material from BD10 , I need to get these values ( Sale Org / Distribu Channel ). B'cos on the basis of these values I need to fetch PLANT from MVKE table by passing SOrg and Dchl .
    I am reading Segment value in exit EXIT_SAPLMV01_002, but , these values are present at MVKE Segment but I need those values at MARC Segment and MVKE Segment trigger at last where MARC segment trigger initially , So I am not able capture values in Segment also.
    On the basis on MARC-MATERIAL & MVKE-PLANT , I need to fetch TRLT (Lead Time) from MARC.
    How to retrieve Sale Org/ Dch either from Filtration Set at BD64 or from MVKE Segment that is triggering later then MARC Segemnt??
    Regards
    Ankesh

    Hello Ankesh,
    Modify MARC segment after MVKE is filled.
    Please find the below sample code :-
    Loop at IDOC_DATA  into WA_ IDOC_DATA  .
    case wa_idoc_data-SEGNAM.
    when 'E1MVKEM'
    READ TABLE IDOC_DATA into WA_ido WITH KEY segname = E1MARCM     
    if sy-subrc = 0.
    *write your logic here and modify idoc_data
    endif.                               
    endcase.
    Endloop.
    Thanks

  • How to know a users company, sales org, dist. channel and division...

    Hello Experts,
    Is there a way to know which company, sales org, distribution channel and most importantly division a
    user is currently affiliated? Really need help on this one guys since I am gonna use it for authorizations.
    Thank you guys and take care!

    Hi,
    If your informations are not in SU03 or XD03, so  I think you can't have these informations.
    (Maybe with column "Terminal name" in SM04 ?? If this information has been normed in your company)
    Regards,
    Stéphane.

  • I want to create org data profile in service scenario, with price determination from sales org, distribution centre , can any one help me with these

    i want to create org data profile in service scenario, with price determination from sales org, distribution centre , can any one help me with these
    IF I CREATE SERVICE ORG WITH SERVICE SCENARIO ORG DATA PROFILE,
    MY PRICING IS NOT GETTING DETERMINED AS IT IS LINKED TO SALES ORG AND DISTRIBUTION CHANNEL THROUGH PRICING DETERMINATION SO HOW TO DO THE CUSTOMIZATION FOR THIS SITUATION
    WITH REGARDS,
    SATHISH

    Hi Satish,
    Please assign the org det. rules to org det. profile with Sales and Service scenarios and then assign the org. det. profile to transaction type. The below screenshot is just for your reference.
    Hope it would fix your issue.
    Regards,

  • Risk on wrong definition of sales organization, distribution channel and division

    Hi,
    our organization just started to implement SAP and SD module is one of the subject to complete.
    We are in the defining phase of the above subject but I still can not understand the risk of being miss-defining the sales organization, distribution channel and division. Is it true will only impacting the pricing and reporting only? Are there going to be future impact on this?
    Thank you before for your explanation.
    Andy

    Hi Andy,
    Good to see the suggestions!
    These are the rules I try to follow:
    Do not over do it. Simple is better and facilitates change.
    One sales organization for each company code unless significant differences exist between independent sales departments. Like one wants to use CRM and others won't. It's roughly equivalent to one by each top level sales director.
    One distribution channel for each sales channel group that defines different prices or different shipping conditions for the same material. Like retail and wholesale have different pricing. Special rules can apply like mail delivery require different correspondence settings.
    One division for each division of the company. If company has no clearly defined divisions (like Aeronautics and Footwear) there is no need (in sales) to split (it might in financials).
    Using sales office and sales group for reporting is a lot better than the top level structures because it's easy to change them in master data, unlike sales org or distribution channel. And when departments get reorganized the system effort is significantly reduced if no change occurs at those three top levels.
    So I normally use the sales office to the first or second level of reporting and sales group in some cases to represent individual sales persons or nothing at all in other cases.
    regards,
    Edgar

  • Action Condition by Sales Org / Dist Channel for Opportunity Management

    Hi,
    i need to set action condition by Sales Org / Dist Channel for Opportunity.
    i tried using object BUS2000111 but can't find any parameter referring to Sales Org/Dist Channel.
    any lead really appreciated.
    JD

    Hello Jushan Djuwardi,
    Can you please tell me how you solved this question.
    Thanks.

  • 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.

  • Material - Sales Org - Distribution Chanel

    Hi friends,
    I'm technical person.
    Can any one tell me how to assign Sales Org - Distribution Chanel  to a material.Exact problem is i want to create inforecord(VD51) there i have to assign material corresponding to customer but its not allowing me as material is not attached to the Sales Org and Distribution Chanel .
    Regards
    Sonal

    Hi Sonal,
    First you go to transaction MM01 for extending sales view in material master of the material which you want to use for creating info record.During extending material you select "sales org. data 1" view and put sales org. and distribution channel.I think that this will solve your problem....

  • Sort out the invoices based on Sales Org, Dist Channel, Div while printing

    Hi all,
    My User required to run the program - RV60SBAT
    for creating batch job : FR_INVOICING.
    When we check the steps in the job FR_INVOICING we could find 10 steps with different variants.
    On running this job, system will provide the printing of Invoices for different Sales Organizations, Distribution Channel, Division and Invoice Numbers. However this out put is not generating in a sorted manner currently.
    User requirement is to sort out the invoices based on Sales Organizations, Distribution Channel, Division and Invoice Numbers.
    Kindly look into this and help me  how to address/approach this problem.
    Thanking you in advance
    Best Regards
    TRS GUPTA

    Assign fields KOMKBV3-VKORG KOMKBV3-VTWEG KOMKBV3-SPART to output type config sort order fields sort field1, sort field2, sort field3 respectively.
    Use user exit include RSNASTZZ and add the following code
    under when '50'.
      insert NAST-SORT1 NAST-SORT2 NAST-SORT3 NAST-OBJKY  INTO HEADER.
    Change RSNAST00 job step variant to incluce 50 in the sort field.
    Regards
    Sridhar
    Message was edited by: Sridhar K

  • Combine sales org. dist channel & division

    Dear Gurus,
    What is the use of combine sales org, combine dist channel, combine division?
    We assign sales doc type to sales area not to individually sales org, dist channel & division?
    I cud nt understand sales org with ref 2 sales org, dist chnl with ref 2 dist chnl & with division also?
    Wt is the logic behind that? Kindly give logical answer?
    Regards
    Rakesh

    Dear Rakesh,
    As GSL rightly mentioned that the use of Combine sales org. dist channel & division in addition to that,
    I can say in one sentence what is the logic behind Combine sales org. dist channel & division.
    "To share the sales document types to all sales areas"
    It is like common divisions and distribution channel through this we can share the master data for all slaes areas which is maintained in one sales area.
    But in Combine sales org. dist channel & division we share document types to all sales areas which are assigned to single sales area.
    I hope this will help you,
    Regards,
    Murali.

Maybe you are looking for

  • Issue in Excel to XML Conversion

    Hi Gurus, I am creating a custom java module in sap nwds 7.3 for Excel to XML Conversion. But I am getting following error Classpath dependency validator message. Classpath entry  will not be exported or published. Runtime ClassNotFoundExceptions may

  • Can I install windows 8/8.1 with bootcamp 4?

    Hi, I have a iMac from late 2009 with an intel core 2 duo cpu,According to the apple website I can only install upto win7 on bootcamp 4 & bootcamp 5 in incompaticable. Is there any way I can run win8.1 on my imac without using such softwares as paral

  • [SOLVED] Graphics problem in laptop with dual NVIDIA cards

    I'm trying to install Arch on an Lenovo IdeaPad Y510. The laptop have 2 NVIDIA GT755M. The second graphics card is removable. If I remove that card I can see with lspci that there also is a intel graphics chip. If the second card is mounted lspci onl

  • Whats the best practice to simply manage data using php sql?

    Hi I'm trying to follow some tutorials but there is too much old material and I'm getting confused. This is basic. I have a db and I want to movement data from flex. So, this is how I'm trying to do so. As a newbie, I will try to be clear. I have cre

  • Adding images from my library to empty mc in loop

    Hi I am 1 step away from finishing my for loop. I have a item mc I have duplicated 8 items (indexarray.length) and what my loop currently does is display these 8 blank movieclips on the screen positioned 4 in each row. Inside this blank item mc I hav