How to create multiple accouting documents for one invoice for diff curr

Hi experts/gurus,
I have a requirement where we need to create two two different accounting documents for one invoice. The scenario is this:
1) We are exporting goods to oversea customer, as such the currency is bill in USD
2) We also have transportation charges using another condition type, we need to capture this charges/accrual in local currency which is MYR.
Currently, the system will automatically convert the transporation charges to USD when we create the invoice and the accounting document will be generated in USD for both sales and transport charges.
is there a way to fullfil the above requirement, any setting in condition type or any user exists we can used to create hte accounting documents.
Any ideas/input is highly appreciated, points will be awarded

Hi Wan,
   The following user exits are available in report SAPLV60B for transfer to accounting (function group V60B): So please go through these.
·EXIT_SAPLV60B_001: Change the header data in the structure acchd
You can use this exit to influence the header information of the accounting document. For example, you can change the business transaction, "created on" date and time, the name of the person who created it or the transaction with which the document was created.
·EXIT_SAPLV60B_002: Change the customer line ACCIT
You can use this exit to change the customer line in the accounting document. This exit is processed once the ACCIT structure is filled in with data from document header VBRK.
·EXIT_SAPLV60B_003: Change the customer line in costing
The customer line is filled in differently for costing. You can use exit 003 to influence the ACCIT structure.
·EXIT_SAPLV60B_004: Change a GL account item ACCIT You can add information to a GL account item (such as quantity specifications) with this exit.
·EXIT_SAPLV60B_005: User exit for accruals
Once all relevant data for accruals was entered in the GL account item, you can add to this data with this exit.
·EXIT_SAPLV60B_006: Change the control line ACCIT
You can use exit 006 to add information to the control line.
·EXIT_SAPLV60B_007: Change the installment plan
You can use exit 007 to add information to the installment plan
parameters in the GL account item.
·EXIT_SAPLV60B_008: Change the transfer structure ACCCR, ACCIT and ACCHD
After the accounting document is filled in with data, you can use exit 008 to change the document once again.
·EXIT_SAPLV60B_010: Item table for customer lines
You can use exit 10 to influence the contents of customer lines before they are created.
·EXIT_SAPLV60B_0011: Change the parameter for cash account determination or reconciliation account determination
You can use this exit to change inbound parameters in order to influence account determination.
I hope any one of these will solve your problem
Thanks,
Murali.

Similar Messages

  • How to Create a Billing Document For SalesOrder

    Hi Guys,
    Any one please Explain me how to create a Billing Document for salesOrder. give me step by step procedure so i can easily understand the terms.Thanks in advance.
    Thanks
    Kiran.B

    Hi Kiran,
    Normally a billing doc is created after a sales order-->delivery.
    U can create a sales order w.r.t a Contract or another sales order.
    In your case, its possible only for sales Returns.
    pass billing doc number to ORDER_HEADER_IN-REF_DOC in BAPI_SALESORDER_CREATEFROMDAT2.
    Reward points if helpful
    Regards,
    Hemant

  • How to print multiple Delivery document at one time?

    Hi experts,
    Could you tell me how to print / re-print mulitple Delivery documents at one time?
    VL02N could be only used to print 1 delivery documeny by document which is time consuming.
    I could only remember the Transaction starts with VL ...but do not know it exactly.
    Thanks,
    Pri

    Hi
    If you have already taken the printout for the deliveries ,kindly use the below selection criteria to reprint the same
    t- code --VL71
    Output Type - ABC
    Transmission Medium - 1
    Sort order - 01
    Processing Mode - 02
                         1     First Processing
                         2     Repeat Processing
                         3     Error Processing (All)
                         4     Error Processing (Only New Messages)
    Shipping Point - 1000
    Delivery - Few Delivery docs
    Output Device - My printer number
    Regards
    Damu

  • How to create Multiple Region In to One Region

    hi
    How to create Morw then one into one Region.
    Thanks
    Manoj
    Edited by: Manoj Kaushik on Jan 4, 2010 6:08 AM

    Hi,
    this can be done in Apex 4.0 but in previous Releases i think it is not possible so far i know.
    MDK.

  • How to create multiple schedule lines for configurable products

    Hi -
    We have enabled variant configuration and would like to have multiple scheudule lines created , but it seems that only one line is avaialble, is there any way to configure the use of multiple schedule lines? 
    Note - we are not using KMAT material types, rather triggering a unique kit compoments within Sales BOM.
    We have been able to make the necessary adjustments to allow the creation of the Scheduling agreement and have the BOM explode correctly, but just am not able to trigger multiple sched lines.
    thanks
    Bill

    Your context node shall contain all these fields like country,city,etc as different attributes.so in your view configuration,add all these fields whatever you require from the AVAILABLE FIELDS section to the DISPLAYED FIELDS section.NOw all these attributes would be added in diff rows.What you need to do is,select the first attribute,lets say COUNTRY,click on this attribute and then on the buttn SHOW FIELD PROPERTIES.Thsi will show you the label name etc.Here you change the label name to NATIONALITY.Also ,it will show you the row no,cloumn span of the field and column span of the label.You need to reduce the column span of the field value.Ie if the column span is from D TO H,reduce it from D TO F.Now goto the next attribute eg CITY and in the same way,goto the attribute properties.Here ,There is a check box SHOW LABEL,uncheck this,and now goto the row no and the cloumn span.Make the row no same as that of the COUNTRY FIELD.The column span should howevrbe statring from where the column span of country field ended.Ie Teh column apsn of counrty field ended at F .So for CITY,the column span should start from G to amybe H.Now this is how you need to accomodate the other fields also in the same row,by changing the row no and column span in the field properties.
    Suvidha

  • How to Create Multiple Sources/Classes with one Script

    I am trying to get all of my java sources, or classes, into one script so that I can move them all to another server without having to compile each file individually. When I concatenate two files and try to compile I get an ORA-29536: badly formed source error.
    How can I get multiple definitions into one file and compile all of the classes?
    Thanks,
    Gregory

    Gregory:
    If you want to upload several Java classes in one script the solution is .sql file, for example:
    set define ?
    create or replace and compile java source named "my.Sleep" as
    package my;
    import java.lang.Thread;
    public class Sleep {
    public static void main(String []args) throws java.lang.InterruptedException {
    if (args != null && args.length>0) {
    int s = Integer.parseInt(args[0]);
    Thread.sleep(s*1000);
    } else
    Thread.sleep(1000);
    create or replace and compile java source named "my.App" as
    package my;
    public class App {
    public static void main(String []args) throws java.lang.InterruptedException {
    System.out.println(args[0]);
    exit
    Then the .sql file can be parsed using the SQLPlus, JDeveloper or SQLDeveloper tools.
    HTH, Marcelo.

  • How to create Multiple UOM's for a Service

    How do i create more than ONE,  "Unit of Measures - for a perticular Service" in a Product Category/Group ?
    AC01/AC02/AC03 would allow me to add "BASE UOM", but cant add more than one UOM for that service.
    Can we have one-to-many relation between Services & UOM ? if not, how is it done in SRM-MM  ??
    -Rupesh

    Dear Poster
    Your thread has had no response since it's creation over
    1 year ago, therefore, I am closing the thread.
    Should the issue still be outstanding please create a new thread in the relevent forum.
    Thank you for your compliance in this regard.
    Jason Boggans
    SAP SRM SDN Moderator

  • SqlLoader: how to create multiple records out of one CSV input line?

    A question concerning the SQL-Loader.
    I need to load data from a CSV file where one of the CSV values determines how many records should be inserted.
    Example of the input data:
    KEYWORD;2;REC1_COL1_X,REC1_COL2_X;REC2_COL1_X;REC2_COL2_X
    KEYWORD;3;REC1_COL1_Y;REC1_COL2_Y,REC2_COL1_Y;REC2_COL2_Y;REC3_COL1_Y;REC3_COL2_Y
    KEYWORD;4;REC1_COL1_Z;REC1_COL2_Z,REC2_COL1_Z;REC2_COL2_Z;REC3_COL1_Z;REC3_COL2_Z,REC4_COL1_Z;REC4_COL2_Z
    If the KEYWORD is found, then the next value determines how many value pairs will follow, and therefore how many rows should be created in the affected DB table.
    As a result I hope to achieve this:
    SELECT Column1, Column2 FROM testTable
    REC1_COL1_X,REC1_COL2_X
    REC2_COL1_X;REC2_COL2_X
    REC1_COL1_Y;REC1_COL2_Y
    REC2_COL1_Y;REC2_COL2_Y
    REC3_COL1_Y;REC3_COL2_Y
    REC1_COL1_Z;REC1_COL2_Z
    REC2_COL1_Z;REC2_COL2_Z
    REC3_COL1_Z;REC3_COL2_Z
    REC4_COL1_Z;REC4_COL2_Z
    I learned how to import data using Oracle SQL loader for cases where one input line more or less matches a (new) row in a DB table. But how to handle this?

    Hello 784948.
    Assuming that the delimiter is a comma, and also assuming that the number of pairs is limited to four, you could use the following tested control fileLOAD DATA
    APPEND
    INTO TABLE testTable
    WHEN (1:7) = 'KEYWORD' AND (9) = '1'
    FIELDS TERMINATED BY ","
    TRAILING NULLCOLS
    ( KeywordColumn    FILLER
    , PairCountColumn  FILLER
    , InputColumn1
    , InputColumn2
    , FillerColumn1    FILLER
    , FillerColumn2    FILLER
    , FillerColumn3    FILLER
    , FillerColumn4    FILLER
    , FillerColumn5    FILLER
    , FillerColumn6    FILLER
    INTO TABLE testTable
    WHEN (1:7) = 'KEYWORD' AND (9) = '2'
    FIELDS TERMINATED BY ","
    TRAILING NULLCOLS
    ( KeywordColumn    FILLER  POSITION(1)
    , PairCountColumn  FILLER
    , InputColumn1
    , InputColumn2
    , FillerColumn1    FILLER
    , FillerColumn2    FILLER
    , FillerColumn3    FILLER
    , FillerColumn4    FILLER
    , FillerColumn5    FILLER
    , FillerColumn6    FILLER
    INTO TABLE testTable
    WHEN (1:7) = 'KEYWORD' AND (9) = '3'
    FIELDS TERMINATED BY ","
    TRAILING NULLCOLS
    ( KeywordColumn    FILLER  POSITION(1)
    , PairCountColumn  FILLER
    , InputColumn1
    , InputColumn2
    , FillerColumn1    FILLER
    , FillerColumn2    FILLER
    , FillerColumn3    FILLER
    , FillerColumn4    FILLER
    , FillerColumn5    FILLER
    , FillerColumn6    FILLER
    INTO TABLE testTable
    WHEN (1:7) = 'KEYWORD' AND (9) = '2'
    FIELDS TERMINATED BY ","
    TRAILING NULLCOLS
    ( KeywordColumn    FILLER  POSITION(1)
    , PairCountColumn  FILLER
    , FillerColumn1    FILLER
    , FillerColumn2    FILLER
    , InputColumn1
    , InputColumn2
    , FillerColumn3    FILLER
    , FillerColumn4    FILLER
    , FillerColumn5    FILLER
    , FillerColumn6    FILLER
    INTO TABLE testTable
    WHEN (1:7) = 'KEYWORD' AND (9) = '3'
    FIELDS TERMINATED BY ","
    TRAILING NULLCOLS
    ( KeywordColumn    FILLER  POSITION(1)
    , PairCountColumn  FILLER
    , FillerColumn1    FILLER
    , FillerColumn2    FILLER
    , InputColumn1
    , InputColumn2
    , FillerColumn3    FILLER
    , FillerColumn4    FILLER
    , FillerColumn5    FILLER
    , FillerColumn6    FILLER
    INTO TABLE testTable
    WHEN (1:7) = 'KEYWORD' AND (9) = '4'
    FIELDS TERMINATED BY ","
    TRAILING NULLCOLS
    ( KeywordColumn    FILLER  POSITION(1)
    , PairCountColumn  FILLER
    , FillerColumn1    FILLER
    , FillerColumn2    FILLER
    , InputColumn1
    , InputColumn2
    , FillerColumn3    FILLER
    , FillerColumn4    FILLER
    , FillerColumn5    FILLER
    , FillerColumn6    FILLER
    INTO TABLE testTable
    WHEN (1:7) = 'KEYWORD' AND (9) = '3'
    FIELDS TERMINATED BY ","
    TRAILING NULLCOLS
    ( KeywordColumn    FILLER  POSITION(1)
    , PairCountColumn  FILLER
    , FillerColumn1    FILLER
    , FillerColumn2    FILLER
    , FillerColumn3    FILLER
    , FillerColumn4    FILLER
    , InputColumn1
    , InputColumn2
    , FillerColumn5    FILLER
    , FillerColumn6    FILLER
    INTO TABLE testTable
    WHEN (1:7) = 'KEYWORD' AND (9) = '4'
    FIELDS TERMINATED BY ","
    TRAILING NULLCOLS
    ( KeywordColumn    FILLER  POSITION(1)
    , PairCountColumn  FILLER
    , FillerColumn1    FILLER
    , FillerColumn2    FILLER
    , FillerColumn3    FILLER
    , FillerColumn4    FILLER
    , InputColumn1
    , InputColumn2
    , FillerColumn5    FILLER
    , FillerColumn6    FILLER
    INTO TABLE testTable
    WHEN (1:7) = 'KEYWORD' AND (9) = '4'
    FIELDS TERMINATED BY ","
    TRAILING NULLCOLS
    ( KeywordColumn    FILLER  POSITION(1)
    , PairCountColumn  FILLER
    , FillerColumn1    FILLER
    , FillerColumn2    FILLER
    , FillerColumn3    FILLER
    , FillerColumn4    FILLER
    , FillerColumn5    FILLER
    , FillerColumn6    FILLER
    , InputColumn1
    , InputColumn2
    )Luke
    Please mark the answer as helpful or answered if it is so. If not, provide additional details.
    Always try to provide create table and insert table statements to help the forum members help you better.
    Edited by: Luke Mackey on Aug 5, 2010 1:23 PM (always better to test before posting)

  • I want to know how to create accessible pages documents for visually impaired. Is there a manual or guide available?

    I work for an NGO that has a lot of visually impaired staff. When I create pages documents and then export to PDF I often get feedback that the document is not very accessible. I have been searching for a manual or guide on how to ensure my documents are accessible, but cannot seem to find
    I have pages 5.0.1

    You need to add accessibility, after Exporting the pdf, with Acrobat Pro.
    I don't know of any software except maybe Indesign or Quark XPress* that actually builds it into the pre-pdf document.
    These references should help:
    http://webguide.gov.au/accessibility-usability/accessibility/pdf-accessibility/
    http://www.adobe.com/au/products/acrobat/pdf-accessibility-wcag-508-compliance-s tandards.html
    http://www.adobe.com/accessibility/products/acrobat/training.html
    Peter
    * Quark Xpress definitely did not have it up to QXP 7.5 but I can find no later references, so probably it is only Indesign.

  • How to create multiple backup profiles for 2  disks?

    Before I screw this up, I wanted to check with others here to see if I'm correct with my plan to use 2 disks to create 2 different types of backups.
    I have 1 external HDD that's always hooked up to my iMac. This HDD is for full machine backups. However, I have a WD Passport drive that I want to use to back up multimedia (i.e. iTunes and iPhoto libraries). The last time I plugged in this drive, it screwed everything up... probably because Time Machine kicked in before I could exclude the Passport drive from the backup and the other HDD was near full.
    What I was thinking I need to do is:
    1.) Turn Time Machine off
    2.) Mount the Passport drive
    3.) Go into Time Machine perferences and select Change Disk
    4.) Go into Options and deselect everything except our iPhoto and iTunes libraries (yuck... there should be a way to just select what you want)
    5.) Turn Time Machine back on
    6.) Run the backup
    7.) Go back and change the disk back to my regular backup disk
    This is ugly and seems error prone. Is there a better way to do this? Perhaps just deselect my Passport drive and write an Automator task for this? I'd like to do incremental backups, so that doesn't seem like a good solution either.
    Thanks

    Curt,
    Time Machine settings are machine-specific, not "backup-specific." In other words, any exclusions you make will persist across any backups you make.
    If you wish to make backups of your iTunes and iPhoto libraries, it would be better to do so manually. When you connect a drive that you might use for this purpose, simply open the Time Machine preferences and place that drive in the excluded list; there's no need to turn Time Machine off beforehand (if you exclude the drive while a backup is in progress, Time Machine will recover nicely and restart the backup).
    In making your "additional" backup, I recommend using optical media. Burn your music to audio CDs, which could be re-imported into iTunes. Do the same with your images, which you would naturally burn to CDs/DVDs according to event or subject, then file those disks in an organized fashion. This will help you to keep your images organized, and you will feel safe in deleting some content from iPhoto as your need for it approaches nil. This in turn will help in taking the load off both your startup disk space requirements and Time Machine requirements.
    A second external drive could be used to store those libraries, too, but I would do this in addition to the method described above. Optical disks, while bringing their own vulnerabilities, are less prone to failure than hard drives. One might lose the data on a single CD/DVD due to damage, but the rest would be OK. Store everything on one hard drive, and every file is dependent on the vitality of that one device. Overall, optical media wins out on this score. Then, there is the important issue of organization. A single drive allow one to be sloppy; use of optical media encourages (perhaps even enforces) the use of some type of file organization.
    Scott

  • How to create multiple spry menu in one site?

    Hello,
    I know it's been answered before but I couldn't get a step by step answer. I have a template already live.  It has a menu with 5 items. I need to add another menu with 7 items in one of the pages in the same site. How could I do this?
    Zandy Leonard
    [Personal contact info removed by moderator]

    Wouldn't it be simpler to add seven items to the menu you have now?
    If that can't fly, please read about Optional Regions.
    http://help.adobe.com/en_US/dreamweaver/cs/using/WScbb6b82af5544594822510a94ae8d65-7acca.h tml#WScbb6b82af5544594822510a94ae8d65-7acaa
    Nancy O.

  • How to create multiple segments on the target structure of an IDOC

    Hi All
       I am working on the Shipment Confirmation Interface( Message Type SHPCON ) which is FILE to IDOC Scenario. I have a segment called E1EDL18 which occurs only once on the target side of the idoc. Now I have to created multiple E1EDl18 segments for the Qualifiers ORI, PGI and PCK. I treid to send a constant ORI,PGI,PCK and then used an user defined function which splits the constant at COMMA and then I am assigning to the target field QUALF. In the display queue for QUALF I see three values with context but still only one E1EDL!* segment is created. Please let me know how to create multiple E1EDl18 segments for three qualifiers.
    Thanks
    Naga

    In message Mapping, just right click on the segment and click on duplicate subtree. now it will create you another segment with same name and fields in it..
    you can hard code the Qual, or you can map the required source field into it.

  • Creating multiple input terminals for a boolean function?

    Hi,
    I was wondering how to create multiple input terminals for a boolean function? I'm pretty sure i've done so before, but I can't seem to remember  how, I need to for a school assignment, and i've searched in the help in the program for about 3 hours before switching to google, which also didn't give me an answer.
    I'm beginning to feel quite stupid especially since it is something quite simple I'm sure, but I just don't know how 
    my teacher is currently on vacation and since it was an assignment I actually should've done in september I doubt any of the other students still recalls.
    What I want to do is create an or-function, with 3 boolean inputs, does anyone know how to do that?
    Thanks

    Look again at the picture posted above, it shows exactly what you need, the "compound arithmetic" node, found on the numeric and the boolean palette.
    Resize it to the desired numbers of inputs.
    right-click for the desired operation (AND, OR, XOR, etc.)
    right-click on each terminal to invert the particular input or output (shows as small circle).
    (I am not sure who gave the one star rating above, but that was certainly undeserved )
    Message Edited by altenbach on 08-11-2007 08:46 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    compoundAND.png ‏1 KB

  • How to create multi garnishment order for the same garnishment document

    Hi,
    Can anyone tell me how to create multi garnishment order for the same garnishment document. I tried to copy the entry in IT0195 but the sequence field is grayed out so it will just delete the old record. What configuration should I do to make this possible?
    Thanks a lot in advance.

    hi,
    As far as I got it.
    You cannot have multiple Garnishment order but if a need arises you have to maintain it in IT216.
    For that follow this path goto PA30->pernr->194->change->Garnishment->adjustment.
    Since like order you cannot maintain adjustment also directly.
    Regards,
    Amit
    Reward all helpful replies.

  • How to create the change document functionality for a dependent objects?

    May I please know how to create the change document functionality for a dependent objects?
    I have done it follow the same process as for business process objects. But when i try to test it in BOBT, there is no records under "FIELD_CHANGE_WITH_FILTER". It seems the change hasn't been recorded.
    If the way I did to create change document for dependent object is correct, please also kindly advise the possibilities for why there is no record during testing.
    thanks in advance.

    I also have some doubts about the business object.In this case,one abstract BO hase a subnode wihich is root extended.I added the change document for this node under the category "root_extended" and then tested the function in BOBT.I got some error message "can't find the root key".Shall i redefine the method /BOFU/IF_CDO_CREATION~IS_CDO_CREATION_ACTIVE so as to solve the problem?
    Thx.

Maybe you are looking for

  • Can I return my rMBP?

    Hey guys, so I purchased a retina MBP right before Christmas, and I would like to return it for a new one with more RAM. Can I return this to the Apple Store I purchased it at and pay for a new one with more RAM?

  • Make to Order flow

    Hi, Please give me transaction codes for the MTO. I created one sales order and converted into production order and settled also. After that what i have to do, shall i issue the goods to customer right way. Please guide me with step by step srinivas

  • Pre Plus EAS Out of Office

    Is there a way to set an Out of Office condition and message on an EAS Outlook account on the Pre Plus?  I had this feature on my old Treo and it was useful. Please advise if there is a way to set Out of Office through the Pre Plus.  If not, it would

  • Scratch disk errors

    Hi Again, I was in the middle of digitizing some footage and it suddenly stopped and brought up an error message reading "An error occurred finding one or more of the specified capture scratch volume(s). Verify that both audio and video scratch disks

  • Problems importing .mov video from a zoom q3HD shot at 1280x720, H.264

    FCP wont allow me to import my file. I use the zoom q3HD and shot @ 1280 x 720. The codecs are h.264, Linear PCM. Can anyone help me. I was told first I have to convert to PRO RES to edit as h.264 is bad for this... any help would be huge! Its a wedd