How to link Finance sales organization and logistic sales organization ?

Hi all,
In VA02, I defined BP05 for sales organization, and two items : the first one in the BP01 plant and the second one in the BP02 plant.
The sale order works and  I am trying to delivery two products from two differents plant in the same document.
Here the message No VL415 : "Plant BP01  has deviating sales area data"
"In a delivery with internal offsetting, the system determined during the
plant check that the plant has different sales area data from the header
sales area data determined for internal offsetting."
How can I link finance and logical sales organization ?
Thanks
Regards
Pierre

There is no link between Finance sales organization and logistic sales organization
Look at the following points in spro for the intercompany billing:
Sales and Distribution > Billing > Intercompany Billing > Assign Organizational Units By Plant
Sales and Distribution > Billing > Intercompany Billing > Define Internal Customer Number By Sales Organization

Similar Messages

  • Help, please! Any advice on how I link my new iMac and my new itunes software with existing external harddrive containing my entire itunes library?

    Help, please! Any advice on how I link my new iMac and my new itunes software with existing external harddrive containing my entire itunes library?

    Hello!
    It should be a matter of
    Quiting iTunes first if it's running
    Connecting your external harddrive to your Mac, use the Finder to browse to it
    Find your iTunes folder on the ext HDD and double-click on iTunes Library.itl
    If you have any trouble with this, please let us know.

  • How to link the Sales Order to Planned Order in Make-to-Stock scenario

    Dear All,
    My scenario is Make-to-Stock. Now client wants to know exactly what are the process orders created for Sales order. Please let me know where I will get the link between Sales orders and Process orders in Make-to-Stock scenario.
    Regards
    Naveen

    You will require to work on the requirement type settings for MTS Scenario. The transaction code is OVZH. The requirement type for MTS is KSL.There are various rules for determining the requirement category.
    The requirement type can be determined based on the strategy group in the material master / You can also use the item category and MRP type to determine the requirement.
    Regards,
    Ashok Chauhan

  • How to:  Linking Material with Assortment and Plant

    What are the ways to link 0MATERIAL with assortments and 0PLANT?
    Right now I have:  0RT_WRSZ, which links the Plant with the assortment
    How do I link that with 0MATERIAL using the WLK1 table?
    Thanks,
    Chris

    Try 0RT_WLK1

  • How to link Azure database tables and fields to VS2012 C++ entry form

    We are using Visual Studio 2012 C++ and have successfully connected to the database on Azure, but do no know how to associate the database tables and fields with the C++ application data entry forms.  Can anyone help?  Thanks

    Hello Roxanne,
    You could use Entity framework to map classes to Azure tables. Please refer http://www.codeproject.com/Articles/363040/An-Introduction-to-Entity-Framework-for-Absolute-B to
    learn more. Hope this helps.
    Regards,
    Kumar Bijayanta

  • How to link swf in html and make it full screen?

    Hi,
    I gotten with me a game in .swf format.
    I seen some site with full screen flash game, meaning people play the game full screen. How do they do that?
    how do i link my .swf file to index.html and make it full screen?
    Thank you.

    Hi, thank you.
    i have seen the video. I no longer have the source file but only have the final output, .swf.
    how do i link my .swf file to index.html and make it full screen?
    using html and css.

  • How to link  web dynpro screen and R/3 ,so that I can build a workflow.

    Hi all,
             I  have to build a workflow for Personnel Administration(PA) in HR module. The document is not standard, so I have to build my own Bussiness object. But the senerio, screeens for particular document are designed in web-dynpro which will be there in separate portal and we suppose to link this in R/3 system. Whenever user fills that particular document (a form or a document in a portal) and clicks on submit button which is provided in the document workflow should get trigger. Also this screen should be used as workitem to a persons SAP inbox as well as in the portal inbox.
      <b>Please help me</b> for what should be my starting point in designing workflows.
    It would be helpful if anyone provides me with detailed describe step for each and everything along with few links and examples. As i m new to sap
    Thanks in advance.............Do reply......]

    /people/ginger.gatling/blog/2005/12/14/create-new-uis-for-existing-workflow-tasks-with-abap-web-dynpro-and-universal-worklist
    I think this maybe helpful to you.

  • How to link a java program and a music file played

    i wanna know how do i read values of music (mp3 or any other format) that are played ? for example if if there is a sound like "pimm" ,there should be a value(hex,dec etc) for it that is used by the player to play it.

    There are commercial products that allow you to do this (e.g. InstallAnywhere from http://www.zerog.com).
    One issue is that you have to decide whether you want to bundle a JRE with your program or not. If you do (and you should, in these days of XP shipping without any VM of its own), your program will be a minimum of about 9MB + whatever you actually add as part of your program :-).
    In any case, this is not a trivial undertaking.

  • How  to link between these tables and get the bom explosion

    tables : mast,stpo,makt
      SELECT AMATNR BMAKTX CIDNRK CMENGE C~MEINS  INTO CORRESPONDING FIELDS OF TABLE IT_COMP_IDEL FROM
                       MAST AS A INNER JOIN MAKT AS B ON AMATNR = BMATNR
                                 INNER JOIN STPO AS C ON ASTLNR = CSTLNR
                       WHERE AMATNR IN S_MATNR AND AWERKS IN S_WERKS.
    using cs13 to get the bom summary
    using these table to but i got only few materials only,
    but cs13 got more materials
    how can i solve that one
    Regards
    ds

    Hi,
    Just go through this program i think it will help u out.
    TABLES: MARA, MARC.
    TYPE-POOLS : fibs,stree.
    TYPES: BEGIN OF STRUCT_BOM,
            MATNR TYPE MATNR,          " Material Number
            WERKS TYPE WERKS_D,        " Plant
            IDNRK TYPE IDNRK,          " BOM Item
            STLAL TYPE STLAL,          " Alternative BOM
            STUFE TYPE HISTU,          " BOM Level
            OJTXB TYPE OJTXB,          " Object description (assembly)
           END OF STRUCT_BOM.
    *- table types
    types: t_bom type table of struct_bom.
    *Internal Tables to hold the BOM data.
    DATA: ITAB_BOM type table of STRUCT_BOM.
    DATA: WA_BOM TYPE STRUCT_BOM,
          wa_stb type stpox,
          wa_matcat type stpox.
    DATA: IT_STB       type standard table of STPOX,
          IT_STBC      type standard table of STPOX,
          IT_MATCAT    type standard table of CSCMAT.
    *-- to enter BOM DATA
    *Selection Options
    select-options: s_matnr for V_matnr,       "BOM Material
                    s_plant for V_werks.       "BOM Plant
    *Input Parameters
    parameters:     p_alter type stko-stlal,      "Alternate BOM
                    p_usage type stzu-stlan,      "BOM usage
                    p_appli type tc04-capid,      "BOM Application
                    P_CATE  TYPE STKO-STLTY DEFAULT 'M'.      "BOM Category
    INITIALIZATION.
    REFRESH ITAB_BOM.
    CLEAR WA_BOM.
    REFRESH IT_STB.
    REFRESH IT_MATCAT.
    START-OF-SELECTION.
    SELECT matnr
           werks
           stlal
           INTO CORRESPONDING FIELDS OF TABLE itab_bom
           FROM mast
           WHERE matnr IN s_matnr
           AND werks IN s_plant
           AND stlan = p_usage
           AND stlal = p_alter.
    CLEAR V_MATNR.
    CLEAR V_WERKS.
    DATA: WA_STB TYPE STPOX,
          WA_MATCAT TYPE CSCMAT.
        v_matnr = wa_bom-matnr.
        v_werks = wa_bom-werks.
        CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
          EXPORTING
            capid                 = p_appli
            datuv                 = sy-datum
            mktls                 = 'X'
            mehrs                 = 'X'
            mtnrv                 = v_matnr
            stlal                 = p_alter
            stlan                 = p_usage
            werks                 = v_werks
          TABLES
            stb                   = it_stb
            matcat                = it_matcat
          EXCEPTIONS
            alt_not_found         = 1
            call_invalid          = 2
            material_not_found    = 3
            missing_authorization = 4
            no_bom_found          = 5
            no_plant_data         = 6
            no_suitable_bom_found = 7
            conversion_error      = 8
            OTHERS                = 9.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    Then just print whatever data u want it_stb, it_matcat tables.
    reward points if u find my answer helpfull.

  • How to link Apache Web Server and SJSAS 9.0

    I am running Apache 2.2.3 http server on port 80. I want to use Sun Java System Application Server 9.0 to serve my J2EE apps. I want to process JSP and servlets through the web server and have them redirected to the app server. In setting up Tomcat to do similar you have to use mod_jk and I would like to know how to do it on SJSAS ? Any help much appreciated, thanks.

    http://weblogs.java.net/blog/amyroh/archive/2006/08/index.html

  • Computer stolen--how to link to new one and restore music?

    My computer was recently stolen. Thankfully, most of my music, at least what had been purchased, was backed up on CDs, thumb drives, or my ipod. I know due to hysteria over illegal file sharing it's nearly impossible to move music from the ipod to the computer hard drive. However, I could have SWORN that one time I saw some software in Office Depot that allowed one to save music from an ipod onto the hard drive.
    Has anyone else heard of this?
    Dell E310   Windows XP Pro  

    Here's a link you can check out:
    http://www.drewfindley.com/findleydesigns/ipodaccess/indexWin.html

  • Linking Between Sales Order And Purchase ORder

    Dear Gurus,
      How to link the Sales Order Number and Purchase Order Number. I know the Sales Order Number and I need the tables from which I can know the Purchase Order Numbers for that Sales Order Number.
    Points will be awarded.
    Thanks,
    Ravi

    Hi,
    Goto Table Mseg-kdauf is sales order no.
    get mseg-ebeln is purchase order.
    Or u can do the following code.
    from sales order no VBELN get VBFA-VBELV.
    SELECT SINGLE vbeln  FROM  likp
             INTO l_delno
             WHERE  vbeln   = vbfa-vbelv.
    SELECT SINGLE ebeln
               INTO l_sono
               FROM ekbe
               WHERE  belnr = l_delno    
               AND   bewtp = 'L' .  
    L_DELNO IS PURCHASE ORDER.
    If it is helpfull pls reward it.
    Regards
    Srimanta

  • Urgent: Link between Sales Order and Shipment Number In Extractor

    Hello Gurus,
    In my project we are using Extractors
    2lis_08 , 2lis_11, 2lis_12, 2lis_13....
    now the main problem was in the reporting client want
    as below
    Shipment no      SalesOrder No    Price
    Can any one help me how to link the SalesOrder Number and Shipment Number by using the above extractors..
    Either the development must be do on backend are at front end any thing which helps...
    please through some light...
    Thanks In advance
    Sandy

    Hello all,
    VBAK-VBELN=LIPS-VGBEL
    LIPS-VBELN=LIKP-VBELN=VTTP-VBELN
    VTTP-TKNUM(Shipment number)
    Finally
    LIPS-VGBEL(SD Number)
    LIPS-VBELN=VTTP-VBELN
               VTTP-TKNUM
    Hope it help others!!!

  • Linking of sales order and production order.

    HI all,
    Currently in the system, production orders are being created without reference to sales order.
    Can someone tell me how to link a sales order to a production order? I want to know which production order is linked to which sales order. Also do let me know of the transaction to view this.

    Hi
    Use MTO strategy 20 for the header saleable part,
    then executre MRP for the Sales order using MD50.
    Now you can check the planned order assignment tab for the reference to the sales order.
    So while conversion automatically SO will be assinged to the PO
    BR
    SK

  • How to create link to Bug DB and Oracle Support SR

    I have been trying to connect Bug DB to apex, but got a insufficient previledge error.
    I need to connect to Bug DB and Oracle Support through my APEX application to get bug status and SR status automatically.
    I think I should create db links to Bug DB and Oracle Support SR DB first,
    but I got below error while trying to do it.
    Create Database Link Failed.
    ORA-01031: insufficient privileges
    Who can grant me the privileges, or let me know how to link to Bug DB and SR DB.
    My Workspace / Schema of APEX(apex.oraclecorp.com) are listed below.
    OARDC_JSRC / JSRC_CLJ --- For Development and Test
    NOKK_JSRC / NOKK_JSRC --- For release.
    Thanks & Regards,
    lgui

    Hi Igui,
    please don't discuss Oracle internals on the public OTN forum. We have an internal mailing list for such questions. Please see "Internal Application Express Discussion Forum" and "Contact Support" link in the "Side Specific Tasks" region on the login page. This link will also explain what to do to get database link privileges.
    About BugDB integration, please have a look at the following posting http://joelkallman.blogspot.co.uk/2010/12/bugdb-reporting-version-2.html
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

Maybe you are looking for

  • Help on KO22 - BDC Update - Very Urgent

    Dear Gurues, Im writing a program for mass update the Budget Price in Transaction Code KO22 using a BDC. I have complete my codings but,when i execute in foreground i found that the amount is not updated in the field.I belived is something wrong with

  • Dial-up connection won't work

    Am now living in Yemen and only have dial-up where I live. I have the new MacBook laptop and after buying the external modem from Apple, shipping it over here, etc. I find that my Apple doesn't work with the dial up. It will connect but immediately d

  • Apple TV Activation Failed???

    I recently purchased an Apple TV (2 months ago) and it was working fine but now all of a sudden under General Settings, About, it says activation failed and it will not allow me to view Hulu Tv etc. Also, an error message comes up saying I need to ve

  • HT2305 how do i get administrator priveleges for the folder i need to install itunes..

    I have tried for 2 entire days of my weekend now - to simply REINSTALL i tunes....I am the admin on the user acct....admin on the browser im using...disables Norton totally....WHAT AM I DOING WRONG?? i AM NOT AN IDIOT WHEN I COMES TO COMPUTER ISSUES.

  • CFFTP Usage

    I am trying to utlitize cfftp in the following scenario: 1. user logs into our website. 2. user clicks link to .cfm template which uses cfftp to display contents of their personal directory (located on our ftp server, which is a different physical ma