Re: Create new sales organization

Hi Good evening to you all,
I have created a new sales organization and did the following SD related assignments and settings manually. Can some one tell me if any other assignments and settings should be done ? please advice
1. Assign sales organization to company code :
2. Assign distribution channels to sales organization
3. Assign Divisions to sales organization :
4. Setup sales areas for sales organization :
5.  assignment of sales offices to sales areas
6. assignment of sales groups to sales office :
7.  assignment of sales organization & distribution channel to plant:
8.u2018combine sales organizationsu2019
9. u2018Combine distribution Channels:
10. combine divisions:
11. assign sales areas to sales document types:
12. pricing procedure determination for sales organization :
13. GL account assignments for sales organization :
Regards,
Chandu

Hi Chandu
Going by the initial post you have done everything for smooth SD flow of your new sales org
But the most important thing missing is
1. VOR1 Define common distribution channel
2. VOR2 Define common divisions
Img-sd-master data---define common distribution channel  T codeVOR1
Img-sd-master data---define common divisions T codeVOR2
See without doing this you will not be able to create a CMR for the new sales area or neew sales org
This is very important SD settings
This was pointed out by Mr.Amit but the t code was wrong
V/N6 also is reqd if you are going to have free goods determination in your new sales org
Regards
Raja

Similar Messages

  • For new Plant should we have to create a new sales organization?

    Hi Experts,
    I am going for one roll out project. In that we have to create new plant, so should i have to create new sales organization or else we can use the same. And also tell me what are the benefits & disadvantages of that.
    Thanks & Regards
    Chavi Patle
    Edited by: chavipatlesd on Jan 30, 2011 8:33 AM

    hi
    i will say only one logic here.
    if you define the plant or new plant you need to extend all the other organisational units for it right.
    then i there is no need for creation of new SALES ORGANISATION on the same.
    please take the advice of your PM in this regard he might be having different views from reporting perspective and might be your roll out project needs a new sales orgn or not.
    if you ask us thre is no need for creating a new sales organisation on the same.
    advantages:
    if there is a really need for creating a new sales orgn as wellas plant this mihgt be for reporting perspective only & analysis will be very clear.
    disadvantages:
    this is not a disadvantage but from Enterprise Structure point of view master data will increase ofcourse this master data is needed for smooth processing of SYSTEM
    hope this clears your issue.
    balajia

  • Add a new sales organization to a customer

    Hello,
    I have to add a new sales organization to some customers. I've been searching a bapi to do it, but i haven't found anyone. I only found a bapi to create a new customer (BAPI_CUSTOMER_CREATEFROMDATA1) or to change an existing customer (BAPI_CUSTOMER_CHANGEFROMDATA1), but not for add a new sales organization. Anybody knows how to do it?
    Thaks in advanced,
    José Luis.

    Hello,
    try the Bapi BAPI_CUSTOMER_EDIT for this issue, it should be able to extend the vendor via this bapi.
    I hope that this information helps.
    Regards,
    Isabelle

  • Creating new sales-order item with text using BAPI_SALESORDER_CHANGE

    Hi all.
    I want to create new sales-order item in an existing sales-order by using BAPI_SALESORDER_CHANGE. This works fine.
    I also want to enter item-texts for the new item in the same call, but this doesn't work.
    When I call the BAPI I do not assign an item-number for the new item, thus I have no item-number to assign to ITM_NUMBER in table ORDER_TEXT.  IF ITM_NUMBER is empty, it's treated as a header text....
    Any clues?
    Regards
    /Elisabet

    increment the last itemnumber and pass it to that.
    if they are following a sequence 10,20,30.
    find the next sequence and send it to the ITEMNUMBER field.
    or else you add the text after the Function call.

  • Creating New Sales ORG

    Hi
    We created a new Sales ORG in R/3.
    TO replicte the changes in CRM I replicated the new Sales org in PPOMA_CRM and linked it to the R/3 Sales ORG.
    But even then when we are creatign an Oppurtunity we are not able to see the newly created Sales ORG.
    DO I need to do other steps so that we can seethe Sales org in the Activities transaction.

    Hello Zack,
    The problem may be due to following causes:
    1. The structure of the organization is missing in the CRM system.
    2. The CRM organizational unit is not assigned to the R/3 organizational unit.
    3. The division is not active in the CRM system, however, the R/3 substitute division is not maintained.
    4. The program buffer in the CRM system is outdated.
    So what you could do was the following -
    1. You can use Transaction PPOMA_CRM to check the structure of your organization.To create the structure, read the documentation in the IMG ('Customer Relationship Management -> Master Data -> Organizational Management -> Organizational plan'). As of CRM Release 2.0C, you can generate the data from the R/3 system automatically. For this, use Transaction CRMC_R3_ORG_GENERATE.
    2.In Transaction PPOM_CRM, each R/3 organizational unit has to be assigned to a CRM organizational unit.This assignment occurs in Transaction PPOMA_CRM.You find the corresponding fields in the 'Type' tab. You can maintain distribution channel and division on the 'Attributes' tab.
    3. If you do not want to use a division in the CRM system, you have to make the corresponding Customizing in the IMG ('Customer Relationship Management -> Master Data -> Organizational Management').
    4. The organizational structure is buffered to increase the performance.Up to CRM Release 2.0B, this buffer is only updated once every day.
    If you change the organizational structure and transfer the master data based on the changes from the R/3 system on the same day, error messages may occur. Run the attached report ZCRM_ORGMAN_VTAREA_GET to resetup the buffer.
    Hope this helps.
    Thanks
    Sumit

  • After creating new sales order through BAPI, it is not showing in VA03

    Hi Experts
    I am developing one program to create sales order using FM BAPI_SALESORDER_CREATEFROMDAT2. In output screen it is showing that the new sales order number created with new sales order number. But whenever I want to display the newly created sales order via VA03 it shows an error message SD document 10007547 is not in the database or has been archived but in program output it shows that 10007547 is created. This is in DEV server. Document numbers are generated by the system sequencially, but it is not reflected in database.
    I am also attaching my code below.
    REPORT  z_bapi_salesorder.
    DATA : gt_header LIKE bapisdhd1,
           gt_item TYPE TABLE OF bapisditm,
           gt_itemx TYPE TABLE OF bapisditmx,
           gt_partner TYPE TABLE OF bapiparnr,
           gt_return TYPE TABLE OF bapiret2.
    DATA : gs_item LIKE LINE OF gt_item,
           gs_itemx LIKE LINE OF gt_itemx,
           gs_partner LIKE LINE OF gt_partner,
           gs_return LIKE LINE OF gt_return.
    DATA : v_vbeln TYPE vbeln_va.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 2(30) ord_type FOR FIELD p_auart.
    PARAMETERS : p_auart TYPE auart OBLIGATORY.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN SKIP 1.
    SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS       : p_vkorg TYPE vkorg OBLIGATORY,
                       p_vtweg TYPE vtweg OBLIGATORY,
                       p_spart TYPE vbak-spart OBLIGATORY,
                       p_sold TYPE kunnr OBLIGATORY,
                       p_ship TYPE kunnr OBLIGATORY,
                       p_matnr TYPE matnr OBLIGATORY,
                       p_menge TYPE kwmeng OBLIGATORY,
                       p_plant TYPE werks_d OBLIGATORY.
    SELECTION-SCREEN : END OF BLOCK b1.
    INITIALIZATION.
      ord_type = 'Order Type'.
    START-OF-SELECTION.
    *Header information data.
      gt_header-doc_type = p_auart.
      gt_header-sales_org = p_vkorg.
      gt_header-distr_chan = p_vtweg.
      gt_header-division = p_spart.
    *Partner information data.
      gs_partner-partn_role = 'AG'.
      gs_partner-partn_numb = p_sold.
      APPEND gs_partner TO gt_partner.
      CLEAR gs_partner.
      gs_partner-partn_role = 'WE'.
      gs_partner-partn_numb = p_ship.
      APPEND gs_partner TO gt_partner.
      CLEAR gs_partner.
    *Item data
      gs_item-itm_number = '000010'.
      gs_itemx-itm_number = 'X'.
      gs_item-material = p_matnr.
      gs_itemx-material = 'X'.
      gs_item-plant = p_plant.
      gs_itemx-plant = 'X'.
      gs_item-target_qty = p_menge.
      gs_itemx-target_qty = 0.
      APPEND gs_item TO gt_item.
      APPEND gs_itemx TO gt_itemx.
      CLEAR : gs_item, gs_itemx.
      CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'
        EXPORTING
      SALESDOCUMENTIN               =
          order_header_in               = gt_header
      ORDER_HEADER_INX              =
      SENDER                        =
      BINARY_RELATIONSHIPTYPE       =
      INT_NUMBER_ASSIGNMENT         =
      BEHAVE_WHEN_ERROR             =
      LOGIC_SWITCH                  =
      TESTRUN                       =
      CONVERT                       = ' '
       IMPORTING
         salesdocument                = v_vbeln
        TABLES
         return                       = gt_return
         order_items_in               = gt_item
         order_items_inx              = gt_itemx
         order_partners               = gt_partner
      ORDER_SCHEDULES_IN            =
      ORDER_SCHEDULES_INX           =
      ORDER_CONDITIONS_IN           =
      ORDER_CONDITIONS_INX          =
      ORDER_CFGS_REF                =
      ORDER_CFGS_INST               =
      ORDER_CFGS_PART_OF            =
      ORDER_CFGS_VALUE              =
      ORDER_CFGS_BLOB               =
      ORDER_CFGS_VK                 =
      ORDER_CFGS_REFINST            =
      ORDER_CCARD                   =
      ORDER_TEXT                    =
      ORDER_KEYS                    =
      EXTENSIONIN                   =
      PARTNERADDRESSES              =
      IF v_vbeln <> space.
        COMMIT WORK.
        WRITE :/ 'Document', v_vbeln ,'created'.
        CLEAR : v_vbeln, gt_header.
        REFRESH : gt_partner, gt_item, gt_itemx.
      ELSE.
        WRITE :/ 'Error in creating document'.
      ENDIF.
    Please give the possible solutions for this. What is reason for that update termination.

    CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT1'
        EXPORTING
          ORDER_HEADER_IN           = ORDER_HEADER_IN
      WITHOUT_COMMIT            = ' '
      CONVERT_PARVW_AUART       = ' '
       IMPORTING
         SALESDOCUMENT             = SALESDOCUMENT
      SOLD_TO_PARTY             =
      SHIP_TO_PARTY             =
      BILLING_PARTY             =
         RETURN                    = RETURN
        TABLES
          ORDER_ITEMS_IN            = ORDER_ITEMS_IN
          ORDER_PARTNERS            = ORDER_PARTNERS
      ORDER_ITEMS_OUT           =
      ORDER_CFGS_REF            =
      ORDER_CFGS_INST           =
      ORDER_CFGS_PART_OF        =
      ORDER_CFGS_VALUE          =
      ORDER_CCARD               =
      ORDER_CFGS_BLOB           =
         ORDER_SCHEDULE_EX         = ORDER_SCHEDULE_EX
    use bapi_transaction_commit.
    Regards,
    Venkat

  • How to avoid duplicated customer ref. no when create new sales order?

    Hi,
    In my company, we need input customer ref. no when create a new sales order, but I found there was no any validation to avoid input a existed number.
    Can somebody show me how to add some check function on this filed?
    thanks.

    Hi,
    This can be handled in standard system.
    Go to Administration> System Initialization> Document Settings>Per Document (Tab)> Select Sales Order-->Tick Block release (When duplicated  customer reference no. occurs).
    Thanks,
    Joseph

  • Billing data about new sales organization

    Hi,experts,
       I create a new sale organizaiton,and config the corresponding configuration,after billing,I can not find the related data using tcode mcsi sales info s903,and I find the table s903 ,there is no data in the table.
    I don't know where is the problem,and the accounting document is created too.pls give me help
    thanks!

    forget to config the lis :tcode:OVRP,OVRO

  • Create new sales doc. type

    Hi all,
    may I know, do a customization request is generated when a new sales document type is created in VOV8. If so, when it is generated.

    HI.,
                When you craete a new doccument type Customization request is generated,You should save the customization is one request & Transport using T.Code SE09,Give your mail id i will send you steps with screen shots on how to transport the requsts from one server to other server
    REWARD if helpfull
    Thanks & Regards
    Narayana

  • Can we create new sales order for RMA?

    Hi
    We have processed one sales order eg.ABC in INR instead of USD and we have closed it. Later we found that the order entry was wrong (that is the currency was wrongly entered in INR instead of USD) and created a new sales order eg. XYZ for RMA of that material and entered the sales order number ABC and invoice number as reference under returns tab. Now if I go to take the receipt of the new sales order created for RMA that for XYZ , I was not able to see that order number XYZ from the list of values in Receiving Transactions under Customer tab.
    Can anyone please give me an idea on how to open an closed order and to cancel the existing order so that i can take back the material in the same closed order i.e, ABC after reopening it and cancel the new sales order i.e, XYZ created for RMA.
    Thanks in advance
    Prem.

    You have mentioned that the sales order is closed. Does it mean that the lines are interfaced to AR ? Is the invoice generated? Is the shipment done?

  • Created new Sales Doc Type - Cost Center field on header isn't showing

    Hi,
    I need to have the cost center input enabled on the header account assignment tab but it isn't showing at the moment.
    On my new Sales document type the order category is "H Returns" is this blocking it or is there something else I need to do.
    I don't want to auto assign the cost center just have it input enabled and showing.
    Thanks

    I found that sales doc category H for returns disabled the cost center.
    Mine was a free good so I was able to change to an I which worked.

  • Should we create new sales order type for Brazil

    Hi,
    We are having SAP Global templete environment & going for Brazil rollout. My question is whether we can have exitsing sales order type or should we create a new one so as to capture complicated Nota fiscal requirements.
    What SAP recemmends
    Thanks
    Amb

    Most of the sales document types for Brazil are identified by BR in the description, for instance, sales document type ORB for Standard Order BR. This means a separate order type.
    [Country version Brazil exclusively deals with Nota Fiscais.|http://help.sap.com/erp2005_ehp_04/helpdata/EN/10/e0f0371bc15d73e10000009b38f8cf/content.htm]

  • Creating New Sales Order with Total=$0.00

    B1 is not allowing me to save a Sales Order with a DocTotal of zero.  Is there a setting to allow this?  Something I missed in admin, maybe?

    In Sales Order, I enter a Customer.  I then select a Delivery Date.  I click 'Add' and receive a message box: "Document total is zero. Continue?"
    I click 'Yes'.
    I receive a status bar error:
    "Invalid total [[Sales Order - Document Total]] [[Message 131-44]]"
    The Sales Order does not add.

  • Creating new sale order with reference of old sale order.

    Dear gurus
    i have requirement
    i want to make a sale order with reference of old sale order.
    how to achieve it?
    Regards
    Saad Nisar

    Hi,
    In vtaa
    give source and document number and assign all the relevant routines.
    Now on the left hand side, click the Item button and then give the source I.C as TAC and target also as TAC adn then fill the routines.
    Do the same for Schedule line (which is related to TAC)
    If this is done, then ur scenario will work

  • How to create a new sales order to internal requisition?

    Hi, All
    Need help!!!
    How to create a new sales order to internal requisition?
    The internal requisition has generated order sales but this has already been canceled, so I need to create a new sales order to the same internal requisition.
    How to release the internal requisition to re-create new sales order and after import in OM?
    please help me
    Thanks and regards
    Manuel,

    You cannot.
    Once a ISO is generated for an IR, the transferred_to_oe flag is set on that req.
    If the ISO was canceled, you should cancel the IR and create a new one.
    Hope this helps,
    Sandeep Gandhi

Maybe you are looking for