Intercompany transactions with more than two company codes

Hi fellow members,
We have a requirement for intercompany transactions with more than 2 company codes. The sales order is booked in company code A and goods are despatched from plant that belongs to company code B. However, we need the inter-company invoice to be posted between company code B and an intermediary company code C. The second inter-company invoice is to be posted between company code C and company code A.
There could be more than one intermediary involved based on the company code in which the sales order is booked and the company code of the delivering plant. Would appreciate inputs from the forum of how this could be achieved in ECC.
Appreciate your help
Regards
Rohit Zalani

Hi Rohit,
Two scenario require as per your requirement.
Inter company Sale between A TO B .
Cross Company stock transfer between B  to C.
Sunil

Similar Messages

  • Print out of Purchase Orders from more than one Company codes

    Hi MM gurus,
    I want to print one Purchase Order copy of more than one Company codes. Is it possible in Standard SAP or i need to develop a program for the same.
    Please advice me.
    Thanks,
    Vasco

    Hi,
    You can talk with your abaper & maintain entries in the Y Z table & at the time of print you can pop up one screen & put your co code. System will check the cocode with the y z table.
    Then you will be able to print in different cocode.
    Thanx
    Reward if useful.

  • Can i assign one vendor to more than one company code how?

    can i assign one vendor to more than one company code how?

    Hi,
    If u create vendor in XK01 then there will be three segments which are general data, company code and purchasing organziation data. General Data will be available at client level so that u can use the vendor across company codes just what u need to do is that u have to give the company code data when ever u r creating for a new company code.
    regards
    srikanth.

  • Can i assign one customer to more than one company code how?

    can i assign one customer to more than one company code how?

    Hi
    First Create the Customer Centrally in XD01 and then extend the same Customer in FD01 for the required company codes.
    Regards
    Venkat

  • KNB1 - Customer is creating in more than 2 company codes.

    Dear Developers,
    I have a unique isuue related to CRM -> R/3.
    I'm creating a customer in CRM system which  is replicated to R/3.
    while replication, the customer is picking up company code data(KNB1) from the reference customer. Here for the reference customer in R/3 we are maintaining 2 company code (Ex.CCUS & CCCA)
    My objective is to create customer for one company code depending on the sales organisation (KNVV-VKORG)
    Best solution will get reward points...
    Thanks in advance...<b></b><b></b><b></b><b></b>

    Dear Uwe Schieferstein 
    you almost reached my point.
    My client says that he will maintain more than 1 company code for the reference customer. while replication it should pick the appropriate company code from the sales organization.
    for example I'm replicating customer for US (IGUS) it should pick company code (IGUS) from reference customer.
    if I create for India(IGIN) the company code should be (IGIN).
    in the function module SD_CUSTOMER_MAINTAIN_ALL the reference customer comapny code details are fetched from the data base KNB1 and populated to Internal table.
    if the company codes are more than one all the badi's are triggered only once for the 1st loop. i.e., for the first company code. so, this is causing problem to override custom values.
    hope you understood my exact problem...
    please guide me in this regard.
    I promise full points for the successful solution.
    Best Regards,
    Srinivas

  • Can a personnel area be assigned to more than one company code?

    Hi experts,
    Can a personnel area be assigned to more than one company code?
    Regards,
    Anita George

    Yes, as Siva said it is not possible.
    Between personnel area and company code -
    many to one mapping is allowed but one to many is not allowed. That is you can map more than one PA to 1 company code but 1 PA can not be map to more than one company code.

  • One Account Statement for customer present in more than one company code.

    Hi all,
    We have requirement of printing one account statement for customer present in more than one company code.
    Program RFKORD10 generates more than one statements for customer present in more than one company code.
    Please suggest if any customiztion or program changes need to be done for above issue.
    Thanks.

    If customer is present in more than one company code then you can config in different co codes.
    Now could you brief your requirement, i think you want to print only once and system should print in both company codes at one time. Is it like that?
    Regards
    Ashu

  • Can we assign cost center to more than one company code.

    Hi All,
    Can we  use same cost center for more than one company code to post the cost ? Or is it company code dependant?
    Thanks,
    Kumar

    Hi Kumar,
    Although the cost center is created under a controlling area, we cannot extend to more than once company code in that controlling area. The Co.code field in Cost Center Master data cannot allow you to feed more than one company code.
    But you can post some values from a company code other than the company code to which it is extended. In such case, inter company postings will trigger.
    Hope this will clarify your issue.
    Best Regards
    Surya

  • Finding Words with more than Two Vowels (Regex)

    Hello all, I've been working on this for quite some time now.  I need to use a regular expression to find words that contain more than two vowels.  I am getting stuck.
    Here is what I have so far.  I am using emacs to find them in a text file.
    I use C-M-s and the expression /<[^aeiou]*[aeiou][^aeiou]/>
    It finds words with one vowel, but I need to find if it has more than two, and I'm not sure how to go about doing that.
    Any help is appreciated!

    alphaniner wrote:
    This better not be a homework question...
    [aeiou].*[aeiou].*[aeiou]
    or, more succinctly (I think...)
    \([aeiou].*\)\{3\}
    I tested it with grep on a file with one word per line.  Seems to work in that context.  More than one word per line and it breaks.  I know nothing of emacs or your data, so I have no idea if it will suffice.
    I'd also suggest you go back over your expression and put into words exactly what you think it is doing.  I'm no regex expert, but it doesn't seem at all fit for what you're trying to do.
    Thanks that seemed to work!

  • Creating hash table with more than two columns

    Hello,
    I tried to search around and can't quite find what I'm trying to do. I know I can make a hash table like:
    $Hash = @{"Texas" = "Hot";"Alaska" = "Cold"}
    But I would like to add a third column, so for the sake of an example have the third one say travel by air and the other travel by car. What's the syntax so I can add more columns than two? Also, how can I change the column header names?

    I think you want something more like this:
    New-Object PSObject -property @{
    State="Texas"
    Temp="Hot"
    Travel="Air"
    If I set $hash to equal that:
    $hash = New-Object PSObject -property @{State="Texas";Temp="Hot";Travel="Air"}
    I get this:
    Travel                                  Temp                                    State
    Air                                     Hot                                    
    Texas
    If I have a master variable
    $hashes = @()
    I can set $hash to the new-object of relevant values each pass of a loop:
    $hash = New-Object PSObject -property @{State="Alaska";Temp="Cold";Travel="Car"}
    And add that to $hashes each time:
    $hashes += $hash
    and add to the collection:
    Travel                                  Temp                                    State
    Air                                     Hot                                    
    Texas
    Car                                     Cold                                    Alaska
    As mjolinor suggested, you really need to understand what you want to do.  I suspect you are just unfamiliar with the terms, because what you're describing is an array of values, which is better suited to a PSObject rather than to a hash table.  
    The method for populating a PSObject I describe above is just one variation of one particular method for doing so, there are others that may be more or less suitable for what you want to do.
    I hope this post has helped!
    Thank you, this is what I was looking for. I've never had to use powershell for this type of task before and did know of this process, and only could find hash tables when I poked around. This will make life much easier! 

  • Assigning ONE PERSONNEL AREA (PA) to more than one Company Code

    Can we assign one personnel to more one company code, and if yes, config. step please?
    For example:
    Can we assign personnel area - AUTO to Company code 1000, 2000 & 3000.

    Thanks for your quick answer.
    Let me present you a scenario, ok.
    We are implementing PA, OM, PY, Recruitment for a company having single client. There are 3 company codes created by FI guys.
    Now, we want to go-live with 3 company code at a time. While doing configuration for these sub-modules, we were thinking to have a company configuration that could be used across all company codes.
    So we would like to know for example, can we have a common Enterprise, Personnel & org. structures for all the 3 company codes. Can we configure PA and it could be used across 3 company codes, and same things apply to OM, PA & Rec.
    Because we want to go-live with company code in 3months?

  • Contact with more than two Addresses on Bold not all showing on device

    I have a blackberry bold and noticed that when i input more than 2 addresses in Outlook on the desktop, the 3rd one (called "other") shows up on the desktop but does not show on the handheld?  is this a bug or is there a trick to having all three addresses visible?  It seems odd to have the Other Option if it is i not able to be viewed remotely?  Many thanks for anyone's help here.

    You will need to "map" that other address field to your BlackBerry for syncing.
    1. Connect your BlackBerry® device to your computer.
    2. Open the BlackBerry Desktop Manager.
    3. Double-click Synchronize.
    4. On the Configuration tab, click Configure synch.
    5. Select the Address Book check box.
    6. Click Configure > Advanced Settings.
    7. Click Field Mapping.
    8. Map a field in the right column to a custom address book field in the left column.
    9. Click OK.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Left Outer Join with more than two tables in both CR 8.5 and XIR2

    I am trying to create a report and I have tried two versions of Crystal but I ultimately need the report in CR8.5 for compatibility with the client's system.  I think I am starting to figure out what might be wrong and it might be my understanding of SQL, but I can't see why someone hasn't needed this in the past. Ultimately I want to see all projects and any journal entry that might be posted for that project.
    Database is MySQL 5.0.38 and using MySQL ODBC driver 3.51.19.
    Project header table information will be populated. Each line item on a journal entry can be tagged with the project ID. But for me to pull the journal entry date I need also to link to a third table for the journal entry header info.
    I want to see all projects, whether a journal entry has been posted or not.
    So the links are like this
    ProjectHeader --->Left Outer Join ---> JELines ---> Inner Join ---> JEHeader
    I think in this scenerio Crystal is treating the LOJ as an IJ.
    I created two brand new reports today, one in CR8.5 and one in CR XIR2. Once I edited the automatic CR8.5 SQL statement (which I have been doing for years, usually without problem), they both ran properly. I linked customers to their invoices. Customers without invoices showed properly. But then I linked the invoices to the payments of the invoices and immediately lost customers without orders in both reports.
    So apparently only two tables are allowed in Outer Joins. Does this make sense?  I checked out the w3schools tutorial on SQL and it doesn't mention this limitation and I can't find anywhere else that it specifically indicates this but all samples of code I have seen only show two tables.  I just thought for presentation as a sample that was easiest to understand and we could expand as necessary.
    If this is correct, how does one go about accounting for this kind of thing?  One solution that goes through my mind is creating a view at the database level for the link between journal entry lines and journal entry headers.  Would this be a good solution under normal circumstances?
    A second option that I had to implement because of timelines, is to use a subreport linked to the main report through the project ID to pull the information for the journal entries and just pass the totals I need to the main report through a shared variable.
    These aren't normal circumstances because I don't have access to the database so I can't create the view.  I have come across this concept several times and I have been able to use subreports to solve it but I am trying to find a better solution for the future as sometimes subreports can be slow.  So are there any alternatives I have not considered here?
    TIA rasinc

    So after some more work and another post.  I was able to get this to work.
    Items disappear when linking to another table
    My issues were two fold.  I was selecting on the tables on the right-side of the original Inner Join.  However, I was checking for Nulls.  This apparently is correct but you must check for the Nulls first eg. (IsNull (JEHeader.Field1) OR JEHeader.Field1 <= 100).  I had my original statement reversed checking for <= 100 before checking for Nulls.
    I also did not set all links to be Left Outer Join.  I had the Inner Join.  I actually have about 6 tables in this report so all the links need to be set Outer Join.  So this now seems to be corrected.
    Thanks

  • Hashtable with more than two columns??

    Hi. i'm trying to make a cache in java.
    the cache neeeds to have three values per index location, Flag,Tag and Data. Is there anything in java that can have three values??
    I know hashtables can have two (one key, and one value), but i need one more, and also i need something that i can access with an index like you do with arrays.
    thanks

    rudeboymcc wrote:
    Hi. i'm trying to make a cache in java.
    the cache neeeds to have three values per index location, Flag,Tag and Data. Is there anything in java that can have three values??
    I know hashtables can have two (one key, and one value), but i need one more, and also i need something that i can access with an index like you do with arrays. An array or List storing objects of your own design that have three instance fields; flag, tag, data.

  • CS3, exporting to tape has problems with more than two video tracks

    Well, not quite, but that's the best I could do in the subject line.
    I record multiple performances and edit scenes from among them.  At times, this results in three or four video tracks on the timeline at once.  Each track is 100% opaque, so only the top Enabled track shows.  By Enabling or Disabling the various tracks, I can get the sequence I want.
    And the sequence plays back fine in the Monitor window.  But when I try to Export it to tape, as soon as I get to such a place, the image hiccups around the same small number of frames (think of the video equivalent of an audio sample).
    It's not the number of video tracks.  I can add Image Mattes on a third video track operating on the two below.  I can add any number of titles on different tracks.  They need to render, but then they export to tape perfectly.
    What's different about three or more .avi tracks, even when they are Disabled?

    Thanks, Jim, for your reply to this and other threads.  (Warning:  I had two other questions — been saving them up for awhile — that I'll post shortly.  It was too late already last night).
    > AVIs need to be "read" from the hard drive and can create a bottleneck depending on certain conditions.
    Agreed, but unless there is partial opacity in the top Enabled track, only one track at a time is exported.  And in the cases I cited, the unused clips were Disabled.  No need for Premiere to read them at all.  I assume the state of each clip is part of the Project.
    Ah well, I was only curious if I was missing something obvious, or perhaps it was a known bug that would be addressed.  Apparently the additional resources needed for tape export push Premiere over some edge.  Remember, I can watch (even Preview) the sequence in the Monitor window without seeing this artifact.
    > Render before exporting to tape is SOP.  Go with that.
    Naturally.  And I do.  And if I didn't, Premiere would do it for me automatically before opening the Export to Tape window.
    Thanks again.  On to the next thread.

Maybe you are looking for

  • I don't understand trash

    i have an imap mail account called, for the sake of this post, joe's mail. when i delete a message it goes into a folder in the trash called joe's mail – which makes perfect sense. but sometimes i delete a message from the trash and it moves to anoth

  • Calling another transaction in Dialog Programming

    Hello ppl, How can I call another transaction(ZPROGRAM2) from my transaction(ZPROGRAM1) using the delivery and the check box options selected in Screen Programming. Should I use BDC.? Also in case of any errors in ZPROGRAM2, the control should return

  • Best practice using clusters to create queue/notifier/bundles ?

    I have in a block diagram a queue, notifier and several instances of bundle cluster that all use the same data structure.   There is a cluster typedef for the data structure. Of course, each of these objects (define queue, define notifier, bundle) ne

  • Problem about execute commond on platform?

    i try to execute commond on window platform (the same problem as on solaris) via exec(String commond) method of Runtime, which return the type of Process; but fail as error message 1): how can i execute the commond (ex:dir,date,...) and let it return

  • My new MacBook Pro is very slow!

    Over the past month my laptop has been getting slower and slower. It is almost unusable at this point. It locks up first seconds this is if I'm running chrome the App Store pages I try to shut down different applications and it just locks up