Problem :Multicurrency in a single document.

Dear Techies,
I had done Upload prg for Tcode FB01, its workin fine.but problem is dat when a single transaction in flat file items havin multiple currecies in line items. my requirement is sap should generate a single document with multipl currencies. Is dis possble thru upload program..
Pls revert..
Reward for evey helpful ans..
Rgds
Santo

Hi Eric,
Thanks for kind reply . can sap will generate a dummy account and traet evey line item with saperate doc no. But  hw to create dummy acct and nullify dis effect any clues frm ur side??
Rgds
Santo

Similar Messages

  • Display document in the Single Document web item -authorization problem.

    Hi Gurus,
    I have a problem.
    I have two types of users, users for display document in the Single
    Document web item and users who can maintain and create new comment in
    the Single Document web item.
    My problem is I can't create users that can only display documents (all
    users who can display the query can add new comment).
    We use the new 7.0 Authorization.
    The authorization object S_RS_ADMWB doesnu2019t influence about the
    activity in the Single Document web item.
    In the new authorization method, in PFCG or in RSECADMIN there is no
    functionality that we can separate between the two types of users I
    mention before.we used S_RS_COMP & S_RS_COMP1.
    Please advice
    Sharon.

    Hi Sankar,
    this may be helpful
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/e3/ae133bdca84047e10000000a11402f/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/e3/ae133bdca84047e10000000a11402f/content.htm</a>
    Pavel

  • Saving multiple scanned pages as single document with 8620

    I need to scan multiple pages and save as a single document. I am scanning using the AiO remote app and my iPad Air. I see the "Add Pages" icon and use it, but when I save, it saves as individual documents. I need multiple pages to be a single document. Solutions?

    Hi,
    As mentioned above, I can't re-create the problem. You mentioned Add Page and this is it:
    You simply touch Yes then touch Scan for next page .... and at the end Touch "No I'm done" then Save a PDF file or image file.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Scanning Multiple pages to single document Envy 5530

    Just bought this unit and would like to scan many pages into a single document, ideally sending it to an email, and/or to the desktop. I'm using Mac OS-X 10.8.5 with the Envy 5530.
    Thank you.

    Hi,
    From the Applications folder go to the Hewlett-Packard folder and open the HP Scan Software.
    Launch a new scan and follow the steps or the Add Pages button to scan additional pages, once you are done click the Save button to complete your scan job.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • SCANNING MULTIPLE PAGES TO SINGLE DOCUMENT ON 8620 FLAT GLASS

    Does the HP Officejet Pro 8620 have the capability to scan multiple pages into a single document using the flat glass and not the auto feeder?
    Use this when I want to scan a package or any item that won't fit through the auto feeder.
    My Officejet Pro 8600 at work does by using a promptor after each page scannned that asks if there are more pages remaining to scan to same document.
    If the answer is no, do I have to return my 8620 and purchase an 8600?
    Jackimo

    Hi Jackimo,
    A such can be done by launching the scan from the HP software on your PC.
    Open the HP Officejet 8620 software and clcik on Scan a Document or Photo.
    Select the PDF option, ensure the scan resolution is  set as 300 or below and the Scan Source is set as Flatbed Glass.
    As well ensure the Show Scan Preview option is checked and click on Scan.
    Use the Plus button below the scan preview to scan additional pages from the glass, click on Save once you are done.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Scanning multiple pages into single document

    Is there a way to scan multiple pages into single document?  I am using the following: HP pavilion laptop with windows 8,  HP photosmart C6380 all in one printer scanner copier.

    Hi,
    Please try
    Double click printer icon on desktop,
    Select Scan a Document or Photo,
    Put the first page on the glass (face down),
    Check options (size, dpi ...), and select Scan document to file,
    Click Scan - machine will scan the first page
    Remove the first page on the glass, put the second page,
    Click + (plus sign) It sits on the left hand side of a red x
    Machine will scan the second page, put 3rd page on the glass and click + again ..... to the end then click Save
    Click Done after Save
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Insert pages from a single document multiple times

    I'm trying to create a simple program that I can use to display PDF files that I can use to play at the piano. I perform often, and need to create "play lists" from which I can pull all, or part of, a PDF file containing music and display it.
    I have it all working, except for one problem. I may need to "repeat" a section of a piece. I'm building up the play list by calling AcroPDDoc.InsertPages for each item in the play list. If a PDF file appears multiple times in the play list, when I call InsertPages, the call fails.
    In this code snippet, pdDoc is the main doc to which I'm adding pages. playList is a generic List of my own PlayList objects, and I need to iterate through all the items in the playList except the first one, which is already loaded.
    This code works great unless the fileName I specify has already been opened. The call to AcroPDDoc.Open succeeds just fine, but the call to pdDoc.InsertPages fails if the file has already had pages from it inserted. All other documents work fine. The documentation, of course, doesn't mention this.
            int insertPage = pdDoc.GetNumPages() - 1;
            for (int i = 1; i < playList.Count; i++)
              var newDoc = new AcroPDDoc();
              var item = playList(i);
              int startPage = 0;
              int endPage = 0;
              if (newDoc.Open(item.fileName))
                startPage = Math.Max(0, item.startPage);
                endPage = Math.Max(0, item.endPage);
                var totalPages = newDoc.GetNumPages;
                if (item.endPage < 0 || item.endPage > totalPages)
                  endPage = totalPages - 1;
                int numPages = (endPage - startPage) + 1;
                if (pdDoc.InsertPages(insertPage, newDoc, startPage, numPages, 0))
                  insertPage += numPages;
    So, the questions:
    1.) Is it possible to load pages from a single document multiple times?
    2.) Is there a better way to do this? (That is, loop through a list of file names, starting and ending page numbers, and add the documents to an existing document.)
    Any help appreciated! Thanks -- Ken

    Hi Ken,
    >The documentation, of course, doesn't mention this.
    The documentation does not state explicitly that you can't insert pages again from a PDDoc you open again and never close.
    But it mentions that you get references only from an already opened PDDoc.
    "...Opens the specified document. If the document is already open, it returns a reference to the already opened PDDoc. You must call PDDocClose() once for every successful open..."
    It doesn't state that you can't insert pages from a referenced PDDoc but it seems so.
    I would close the PDDoc within your for-loop after inserting pages and release newDoc.
    Regards
    Norbert

  • HP ENVY 4500 e-All-in-One Printer/Mac OS 10.6/can't scan multiple pages as single document/file

    Mac OS X 10.6.8
    HP Scan app 4.4.1
            In the HP ENVY 4500 e-All-in-One Printer support page for scanning with a full feature driver installed. Under "How to scan a multi-page original into a single file for HP Scan software version 4.0. Everything is OK until after I've scanned the documents and clicked "Done". (Step # 6) & Click Send , click Folder , name your file, and then save the file to the computer.(Step # 7)
    This is where I go wrong. I can't find the Format drop-down menu to complete Steps 8 & 9.
    Click the Format drop-down menu, select Contents , and then check the box to Save all items to a single file . 
    Click Save .
    This question was solved.
    View Solution.

    Hi MaWoo, 
    Thanks for your post and welcome to HP Forum. 
    Please make sure you select PDF or Searchable PDF as the Format. You should then find a box to check for "Combine into single document". 
    Best regards,
    Mandy
    Say "Thanks" by clicking the Thumb up in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"
    Although I work for HP my posts and replies are my own

  • Scanjet 9000 won't detect a single document but will detect a set of 10 documents in the feeder.

    scanjet 9000 won't detect a single document but will detect a set of 10 documents in the feeder.  

    Hi,
    I have had a similar problem. I have a 1Tb portable Seagate drive which I have been using successfully for backups with time machine on a Macbook running Lion for 18 months.
    I decided to upgrade to Mavericks and experienced the same symptoms as above. The machine would not recognise the disk in finder. Disk utilities could see the disk but the partition was greyed out and several attempts to repair disk were to no avail. I am afraid that I made matters worse by unsuccessfully trying to reformat the disk.
    I made a backup of my macbook to another older mac and tried the hard disk with an old Windows laptop running Vista. It recognised the disk but said it need to be formatted. This I did.
    In the mean time I had upgraded my Macbook from 10.9.3.to 10.9.4. I am not sure if this made a difference.
    I then plugged the hard disk back in to the Macbook. It recognised it immediately and said that it needed initialising. This I did successfully and (MAC os extended Journal). The disk now works perfectly with 10.9.4 on the Macbook and I have been able to use Time Machine with it to make a backup.
    I know this does not help with rescuing data from the hard disc but at least I now have a usable hard disk!

  • How do I scan more than one page into a single document?  The option seems to have disapperared.

    I have a Mac OS X Version 10.6.8 and am trying to scan several pages into one file, but the option to combine pages seems to have disappeared?

    I meant what scanning application are you using. Sorry for not being clearer. Are you using Image Capture, for example, or an HP application? For example, if you use Image Capture then click on the Show Details button in the bottom status area:
    A window will drop down:
    Note the checkbox labeled Combine into single document. I think that's what you are looking for.

  • With Pages 5.2 how can i use multiple language types in a single document

    My Macbook Air Has the version 10.9.3
    I'm used to work with the old version of Page.
    But now I am using the new version of Pages 5.2 (1860).
    I want to know with the new version how do I use an multiple language types in a single document option.
    In the old  version of Pages I was using  Inspector -> Text -> "More" tab -> Language: British Inglese.
    In the new Pages 5.2 I do not know how to do it
    Could you help me?
    melo

    It's not possible to tag text with multiple languages in Pages 5.  Go back to Pages 4, which should still be in you iWork folder.
    For the whole doc in Pages 5, use Edit > Spellling and Grammar > Show Spelling and Grammar.

  • How do I bind multiple PDF Documents into one single document?

    I am trying to bind multiple PDF documents into one single document can anyone please help me?

    You would need Adobe Acrobat to do that. Reader doesn't have the ability.

  • Problem in Save the Billing Document

    Hi,
    We have a problem while saving the Billing Document i.e.
    Document 83034087 saved (error in account determination)
    Message no. VF051
    when we saw it;s Revenue accounts, found there -
    Condition type............Message.................Description
    ZM05............................121.......................No G/L account found in Account determination type KOFI
    Access     Message     Description
    08     121     No G/L account found in Account determination type KOFI
    10     121     No G/L account found in Account determination type KOFI
    20     121     No G/L account found in Account determination type KOFI
    30     121     No G/L account found in Account determination type KOFI
    40     121     No G/L account found in Account determination type KOFI
    50     121     No G/L account found in Account determination type KOFI
    Plz guide...

    Hello Anil.Sap321,
    Your problem has to do with ACCOUNT DETERMINATION.
    Step 1: Check which account determination procedure is assigned to your billing type i.e. SPRO>SD>Basic Functions> Account Assignment/Costing>Revenue Account Determination>Define and Assign Account Determination
    HINT: normally, this is KOFI00 in standard sap
    Step 2: Check the Condition Types in your account determination in the control data in the same path as in step 1 for the Definition (e.g. KOFI, KOFK)
    Step 3: Check your accesses e.g. for KOFI (this should correspond to your VKOA tables).  Here, you can see the sequence in which your accounts are determined. Plus, at field level you can see where the data are taken from and then you can check your master data etc. during troubleshooting.
    Step 4: Identify in which combination your G/L should be in and you or your FI counterpart should configure the G/L in the designated VKOA table (transaction VKOA).
    TIP: To know which G/L account you need to input, you need the help of Financial guys as different companies have their different set of G/Ls or Chart of Accounts.
    Step 5: When this is configured in your VKOA, you can re-test.  Look at your Revenue Account determination analysis to see if your "access" in which you made your VKOA entry is successfully read during account determination.  
    NOTE: The G/L you or your FI contact have configured must exist in the Company Code involved in your accounting process.
    Good luck and let me know if this helps you,
    Eva

  • Problem during creation of shipment document and shipment cost document

    Hi
    My client  facing problem during creation of shipment document and shipment cost document at the time of Batch Job
    Delivery no 897654: goods issue on 30.11 at 13:22. Shipment on 30.11 (VT01N).
    Shipment costs on 1.12 (VI01).
    the problem is the shipment document get created on 30.11.2010 but the shipment cost document get created on 1.12.2010
    pleas advice.

    Hi,
    Please check the batch job processing log.
    As per my understanding, business requires to generate the Shipment & Shipment cost documents immediatley.
    However there is some time between the documents creation time. I dont see any issue in the data or problem in the delivery docs Because system will not generate the shipment docs after 1 or 2 days if there is an issue with the data . There must be problem in the Batch Job.
    Analyse the batch jobs and timing of the job process.
    Let us know your feedback...
    Best Regards,
    MKumar

  • Adobe Acrobate XI and SecCommerce SecSigner have a problem during signing of a document, creating/verification of the signature is not possible - solutions?

    Adobe Acrobate XI and SecCommerce SecSigner have a problem during signing of a document, creating/verification of the signature is not possible - solutions? SecSigner is not responding.

    Well, I contacted SecCommerce about the issue, the response was, that I should sign the file later (afterwards). This is a solution, but not the best in my opinion.
    When I sign the document the SecSigner window/Java window appears and freezes. Adobe is not responding. I have to terminate Adobe because the program is not responding.
    I only found this support website, so I have realized that this is a User 2 User site, but it was a try to get some help.

Maybe you are looking for