Mass Printout of Documents viewed through FB03

I want to print a number of documents from SAP. I am viewing these documents through FB03. In FB03 when I select a range of documents it gives the result as a list. Is it possible to print each of the documents through a single T-Code?
At present I am having to double click each line item in the list and print the documents individually.
Any help in this regard would be appreciated.
Thank You.

Please use transaction code F.62 to print the documents in mass. Please follow instruction in transaction help for any issues you face during printing.
Regards
K.R

Similar Messages

  • How to do collective/mass posting of documents parked through T-code: MIR7

    Hello,
    I just want to know if we can do collective posting of documents parked through T-code: MIR7 (Invoice Verification)? If yes, please give me the T-code and teach me how to do it. Right now, we can do mass posting for the direct FI documents only (T-code: FBV0). I tried it several times for documents parked through T-code: MIR7, but the system always prompts an error message saying that "Document cannot be posted since
    document balance is not zero". But when I display and post the document one by one the system allows me to do so. Then I thought that maybe because it was created in logistics, mass/collective posting should be done under logistics also.
    Thanks & Best Regards,
    Odette

    I could not see any such mechanism in MIR7. It is not possible to post them in mass. (logistic invoices)
    Whereas FI as you said can be done in FBV0. You can even create batch and post through SM35.
    Regards,
    Ravi

  • Close Document Viewer window through ABAP program

    Hi Experts,
    I have requirement is
    to close opened Document Viewer window (Txn : SDV) through ABAP report
    If anybody worked on this please help me  regarding this.
    Thanks and Regards,
    Shivanand Kalagii

    easy one
    call method CL_DV_SDV=>GET_SINGLETON in order to get the current instance of Document Viewer
    then call method CLOSE_WINDOW of this instance

  • Mass Update Contract Documents through workbook?

    HI Experts,
    Is it possible to mass update Contract documents through Workbook? if yes please proivde the workbook.
    Thanks
    Kushagra A

    HI Kushagra
    Please use the below mention fields to update the current Contract Document. you can use an CSV file to upload this.
    see the attachment.
    # Field name:
    # Unique Agreement Name : This is the agreement's unique name to identify the agreement.
    # Agreement Class ID :  This is the agreement's class ID. It is '1004' for Master Agreement and '1003' for Sub-Agreement.
    # Agreement Display Name :  This is the agreement's display name.
    # Attachment Name : This is the attachment's display name.
    # Attachment Order Code :  This is the attachment's order code to locate the attachment collected by the agreement.
    # Attachment Size (KB) :  This is the attachment's size in KB.
    # Attachment Visibility :  This is the attachment's visibility. Either Buyside only or Buyside and Sellside.
    # Added by :  This field indicates who added this attachment.
    # Contract Document (Y/N?) :  Please enter this field with either 'Y' or 'N' to indicate if you want to convert this attachment to a contract document.
    # Contract Document Type:  Please enter this field with the display name of the contract document type. Check the Setup->Contract Document Type for available choices.
    # Contract Document Phase External ID: enter this field with the External ID of the contract document phase. The phase should be defined in the phase configuration of your contract document type.
    Let me know if this helps
    Thanks
    Kanchan

  • Since iOS 4.2.1 Update - Document viewer Apps do not work right!

    Before I updated to iOS 4.2.1 Air Sharing (Document Viewer) was working (so were all my Document Viewers), but currently, they do not work correctly. I have checked about three others...all have the following problems:
    Since I updated (to iOS 4.2.1), all the documents open up to FULL SCREEN mode (which it had never done before, since the very beginning of the AppStore). Full Screen mode means that it looks like a Word Document on the computer, with the margins showing. This is rediculous for the screen of an iPhone or iPod Touch. There is no need to see the margins. Also, the font size is so small that it makes it almost impossible for most people without a magnifying glass. The document used to open up to a "zoomed in" view of the text. This allows the person using the application to actually read the text. This also allowed scrolling up and down easily. Now, with the new Full Screen view, to get the text large enough to see, you have to double tap (or spread your fingers on the screen to scale it big enough) on the text to read it. Then, when you scroll up and down, it sometimes scrolls side to side or diagonally (into the white margins), making reading cumbersome.
    The other problem with the new view is that the font sizes are all messed up. The normal font (whether 9 pt. to 16 pt.) looks the same. The italic font looks bigger than the normal font, though it is the same point size. It skews the page and alters what the original documents looks like.
    I have contacted the developer of Air Sharing to complain, but he said the following:
    Hello,
    Thank you for the test file. I do see what you're referring to. We use Apple's built-in Office viewer for Air Sharing. This means to display files like .docx ones, we use Apple's viewer. It's possible they changed their viewer in the most recent iOS update to cause this change. Because it's not our viewer we have no control over how it displays such files. Other apps using Apple's viewer will encounter the same issue. I wish there was more we could do on our end to help resolve this problem.
    Cheers,
    Elliot Chase
    Avatron Software, Inc.
    Please tell someone to fix this situation. I can provide you with information (and screen shots of before and after) to back up all my complaints. Thank you for listening.

    Ah, so that could be a good search term.
    Things get a bit more weird though. I was looking through the commands in the drop down menu and saw under "Archive" this: "Put/Send the Apps you bought to this computer" (rough translateion in English) So I tried that out.
    I could only do that by going to "Store" and (**** how to say that in English) "Allow" this computer to do that. This is weird as this is the same computer that I have always used for anything to do with the iPhone! I have now 2 computers that are allowed to sync, and it is one machine. Beats me!
    At a certain point the transfer proces stopped again and again I was requested to "empower" this computer again, as out of the 65 apps now 21 were not allowed to be transfered! That did not work. It now keeps telling me that I have 2 computers allowed for transferring apps and these last 21 can not be put in the library.
    I am a bit at my wits end!
    But really thanks for trying to help out! It seems that 4.2.1 has some real problems when reading through the discussions!
    Cheers!

  • Rename a File in a SharePoint document library through Client object model

    Hi,
    How  to Rename a File in a SharePoint document library through Client object model?
    Thanks
    Poomani Sankaran

    Hi,
    According to your description, you want to rename file in the document library using SharePoint Client Object Model.
    Here is a code snippet works well in my environment for your reference:
    static void Main(string[] args)
    string url = "http://sp2013sps/sites/test/";
    ClientContext clientContext = new ClientContext(url);
    Microsoft.SharePoint.Client.List spList = clientContext.Web.Lists.GetByTitle("Documents");
    clientContext.Load(spList);
    clientContext.ExecuteQuery();
    if (spList != null && spList.ItemCount > 0)
    Microsoft.SharePoint.Client.CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml =@"<View> <Query> <Where><Eq><FieldRef Name='LinkFilenameNoMenu' /><Value Type='Computed'>New Microsoft Word Document.docx </Value></Eq></Where> </Query> <ViewFields><FieldRef Name='Title' /></ViewFields> </View>";
    ListItemCollection listItems = spList.GetItems(camlQuery);
    clientContext.Load(listItems);
    clientContext.ExecuteQuery();
    listItems[0]["Title"] = "word.docx";
    listItems[0]["FileLeafRef"] = "word.docx";
    listItems[0].Update();
    clientContext.ExecuteQuery();
    More information about SharePoint Client Object Model:
    http://msdn.microsoft.com/en-us/library/office/ee537247(v=office.14).aspx
    http://www.codeproject.com/Articles/399156/SharePoint-Client-Object-Model-Introduction
    http://www.learningsharepoint.com/2010/07/12/programmatically-upload-document-using-client-object-model-sharepoint-2010/
    Best regards

  • Bar Code entry while trying to create one through FB03

    Hi Guru
    We recently had techical upgrade to ECC6.0. While trying to create a barcode entry for a document through FB03 I am getting the following error message
    oa280 - Bar code not active -system administration .
    All the configuration are in place in OAC5,OBD2 . I couldnt able to find any relevant notes regarding to this issue . Can some one help me out in fixing this issue
    Thanks
    Auroar

    Hi
    I raised the question to SAP and they provided me the notes 173521 as suggested by  you . But  following this note will open bar code entry access for all user and for all accounting document which will be an issue .  After few trial and error I was able to get an solution for this issue .  I created an entry in oac5  with barcode active  for object type and user specified and an another entry with barcode inactive for object type ,document type FIIInvoice and user .  This enabled only the authorized user for bar code entry to make changes . One drawback is that it does allow permitted user for all document type
    Thanks all for your suggestion
    Regards
    auroar

  • Profit center wise all document view

    Hi SAP,
    We can view the documents in FB03 at company code level, and we can view all the company code documents.
    But if i want to see only plant or profit center level all the documents what Tcode i must see?? from which Tcode  SAP will provide all the documents view at profit center level??
    Good Day!
    Best Regards,
    Moderator: Please, avoid asking basic questions. Search, before posting

    Hi
    If you have new GL and PCA active, it would be very difficult to have Document Types assigned at profit center level. The document types are assigned at company code level and not profit center. There would be many transactions which would have multiple profit centers. How would you seggregate them, even if you use different document types as suggested for various profit centers?? Morever, most of the posting in FI come from other modules and are posted by the system because of the transactions in other modules. So it is practically not feasible to have profit center wise document numbers.
    However, for Indian Scenario, you can have SD Tax Invoices for every plant, where billing is done. Secondly, SAP has delivered excise documents to be numbered differently for every excise registration.This is to meet the Indian Reporting requirements.
    Regards
    Sanil Bhandari

  • Archive docuemnt is not viewing through  VF07 tcode

    Hi Experts,
    There was one issue regarding archive documents, if any body have the idea  plz let me pass your views.
    My user is running the transaction  VF07  to view the Archived documents , but getting the error with " no billing document doesn't exist".
    Since the billing documrnt is archived docuemnt, and it should be show there.
    Can u give me ur ideas on this why the billing document is not viewing through VF07 TCODE.
    Regards
    venkat

    Hi Venkat,
    Transaction VF07 is replaced by the functionalities
    of SAP AS (transaction SARI). Transaction VF07 is therefore no longer
    supported.
    In order to view an archived Invoice using VF07 or via menu path
    Billing Document    > Display From Archive, you must enable the
    index V_ARC_OBJ-USE_INDEX as follows...
    Transaction AOBJ, Object SD_VBRK, Click 'Make Index'  flag to ON.
    Ensure 'Create indx prg' field is blank(no program listed).
    Please refer to note 440033 for detailed information.
    However, the logic behind VF07 was only an 'experiment' to realize
    single document access. Due to the development of the Archive
    Information system (SAP AS), VF07 is not further developed. This is
    because the SAP AS should be the tool to be used to look at
    archived documents. Therefore, not all functionality is given in
    VF07.  Please use the SAP AS (transaction SARI) instead of VF07.
    You can import the SAP AS documentation with note 99388.  Please
    also see note 140652 which includes templates for business views
    for SAP AS.
    I hope this is helpful.
    Regards,
    Alex

  • Document Viewer Agent

    I have not done much with GroupWise 2012 so I apologize for this question, my customer is having an issue with the document viewer agent (gwdva) and I really do not know the answer, but I thought I would post here, please see the following,
    most locations have a single post office, about 3 or 4 locations contain multiple post offices. I have read through the documentation, but I have not found a definitive answer on how to configure multiple copies of the gwdva to run in a cluster environment where it is possible that more than one gwdva may need to run on the same cluster node.
    Can the agent run twice on the same cluster node (or is this like the POA or MTA that can only have one because of a port conflict?)
    Any assistance would be helpful,
    -D

    Hi D
    You can have multiple MTAs and POAs running on the same cluster node as long as you are setting the "Bind Exclussive" setting on each agent to only bind to the IP address of the cluster resource. I have successfully run 2 x POAs on the same cluster node without a problem.
    As far as the DVA is concerned, I set up only one DVA in my clustered environment and configured all POAs to just reference that single instance. My environment is small enough to do it. The documentation is a bit lacking on the DVA setup, unfortunately. I can't remember my exact DVA setup. When I'm back at the office let me see what I can dig up for you.
    Cheers,

  • Profitiabilty Segment view in FB03

    Hi all,
    the profitability segment view in FB03 (little button with yellow arrow) shows us only 4 value fields, but we have defined many more. I was wondering how can I change the view to show all value fields I want to see there?
    Thanks
    Anne

    HI,
    I think you are referring to Characteristics and not 'Value fields' in FI document. It could be that a Characteristic group is assigned to FI postings (RFBU) in transaction KE4G which restricts the Characteristics which you see in you Accounting document Profitability segment. Characteristics group is defined in transaction KEPA.
    As regards, editing PS in FB02...not possible, once the document is posted. You can however, consider reversing the document and posting a new document and at which point you can edit the Characteristics values. You may also consider using Characteristic derivations (KEDR) for future use, instead of manually entering values in a Profitability segment.
    Hope this is what you are looking for.

  • Export ArchiveLink document from Transaktion 'FB03'

    Hello,
    i want to download an ArchiveLink Document from TA 'FB03' on my local drive. If I press the Button 'Export' in the attachment list, I get the error message 'The function in not supported for document '.
    What´s the problem? Is there another way to save an ArchiveLink Document (TIF- Document displayed with ECL- Viewer) on my local drive or still better send as an e-mail.
    Thanks in advance.
    Regards,
    René

    Hi Yasar,
    as far as i know, this is not possible. The background may be that you give your Business Document types names. And related to this types you connect the physical storage and authoratzations. If it would show you the file name of the uploaded document it would be hard to find out what type of document this is. And remember if your users would have the possibility to change the name the outcome could be that there are a various types of names for the same document type, could be confusing.
    You may have a chance not using business documents. May you can give names as you like by attaching so called 'pc attachments' (?). But thats not that comfortable like business document where you have better control with authorizations and repositories.
    Hope that helps you, if not, let me know.
    Kind regards
    Edited by: matthew c. on Nov 3, 2010 3:17 PM
    Edited by: matthew c. on Nov 3, 2010 3:18 PM

  • How to add line items to Accounting Document posted through MIRO ?

    I need to perform Additional posting when Posting through MIRO transaction..i tried with INVOICE_UPDATE BADI but this was not useful...Please let me know if there is any way to add additional posting to Accounting Document created through MIRO.
    If any user exit , BADI ot BTE present?

    Hi,
    Check the BTE's:
    00001020     POST DOCUMENT:       Prior to final checks             SAMPLE_INTERFACE_00001020
    00001025     POST DOCUMENT:       Final checks completed       SAMPLE_INTERFACE_00001025
    00001030     POST DOCUMENT:       Posting of standard data     SAMPLE_INTERFACE_00001030
    00001050     POST DOCUMENT:       Accounting interface           SAMPLE_INTERFACE_00001050
    Thanks & Regards,
    Harish

  • Error while opening an attached FI Document in transaction FB03.

    Hi Gurus,
    I have to open the attached documents in trasaction FB03 but I am recieving the following Error.
    ERROR: Error calling application via OLE ALVIEWER.APP.
    Thanks and Regards,
    Amit.

    Hi Amit,
    Thanks for the help.
    I had one more problem now.
    A link is being created in the tcode FB03 when I execute FM ARCHIV_CREATE_TABLE, but when open that link there is no data present inside the document.
    If you have an example for the same, It will surely be a great help to me.
    Please help.
    Regards,
    Amit.

  • A View Through Windows 8.1.1

    A View Through Windows 8.1.1
    There above opens fine for me; sorry, didn't expect anyone would have difficulty w/ it.
    Windows 8.1.1 or Windows 8.1 Update or KB2919355
    Call it what you like, a rose by any other name is, still, a rose. 
    And this has brought some pretty rosy stuff to Win 8.1.  8.1 delivered a plethora of cool things to the initial Windows 8.0 platform but, I am not here, right now, to discuss that gold mine but, rather its Update, Win8.1.1. This small yet,
    packed Update comes or will as an Auto Update via WU.  It installs quickly and easily. 
    Basically, its only requirement is having Windows 8.1 in place… an 8.0 device must be Upgraded to Windows 8.1 and then on to this Update.
    Now, even though 8.1 responded to User feedback and requests, 8.1.1 has tried to take that endeavor, even, further. 
    Much of that is in regard to making the OS more intuitive, more familiar and more mouse friendly, catering to non-Touch environments and to have some things more overt. 
    A good portion of the Update impact on both Consumers and Businesses whilst some are value items specifically for enterprise. 
    Firstly, let’s address the ‘common ground’ and then look at the assets to or for businesses. 
    I will not delve into extreme details for this discussion but, will provide links which, will give you the full story. 
    However, the links go to the usual, sterile, propaganda and although, certainly, informative & enlightening, not the personal perspective that I would like to share, at this time.
    I write in several tech forums, ergo, I have seen what people like, dislike or want. 
    8.1 does, indeed, indulge what people have been expressing. 
    It, also, I feel, helps make people enjoy using Store APPs more and helps draw then into the world of APPs. 
    A major part of the Update is in regard to APP handling and usage. 
    To me it’s mostly about APPs but, there are some other items so let’s tackle them, first. 
    May seem like little things but, sometimes doesn’t take much to make people happy. 
    And this does destroy the suggestion that MS doesn’t listen to End Users or care what they think or say. 
    On Start there, now, are Power & Search icons.  There are Rt Clk menus attached to the Start Tiles. 
    There’s a Search box on the ALL Applications screen.  Back to the Store APPS enhancements because I suggest, this is the, really, cool bit.
     Some people have struggled over using the Switcher Bar, opening APPs, closing APPs and positioning and maneuvering or manipulating them. 
    Well, this is where things get exciting… NOW, the Store APPs can sit on the Task Bar
    and they can be pinned.  NOW, they can be closed or minimised with a bar at the top of them. 
    NOW, as many as four can be enjoy with greater flexibility than ever before. 
    All of this making the OS easier and more similar to what people are accustom to having and doing. 
    And having APP icons permanently available on the task Bar is great since, any that are used consistently to get shut down by the OS on the Switcher Bar after a period of time. Nor does one have to pop out the Switcher Bar to access an APP. 
    Lastly, to carry the familiar Desktop experience across ALL screens, the Task Bar shows on every screen, even if it is a Store APP, Start or ALL Applications.
    There are, also, a number of things that are not quite so obvious or superficial, some under-the-covers stuff, plus things relative to business/enterprise issues. 
    One thing having positive impact right across the board is support for low cost hardware.
    With Windows 8.1 Update there is a continuance to fine-tune Windows performance to deliver a great user experience on the broad range of Windows devices. Specifically, with memory and disk space optimization in Windows 8.1 Update we now
    enable Windows to run on even lower cost hardware with as low as 1GB of RAM and a 16GB hard drive.
    So you ca see it is possible to convey the message that using the OS can, now, thanks to this Update be, even more enjoyable and appealing than it, already, was. 
    Things easier to find or see and done in established, already known ways, methods and comfort zones. 
    End Users will like what Win8.1.1 brings and offers them… so spread the word.
    Now, for some important ‘bullets’ provided by the Update that IT Pros should know about and be able to enthusiastically impart, particularly, to thrilled Enterprise Users on top of the aspects, already, mentioned that are for everyone.
    >> Improvements to take advantage of new hardware innovation and support the latest devices, such as devices based on 64 bit Baytrail™ processors.
    >> Extended Mobile Device Management (MDM)
    >> Easier app deployment and management is app side loading
    And, also, exciting
    licensing changes come with Windows 8.1 Update.
    The big caveat here, the meaningful take-away for y’all, in my view, is there are many desirable facets contained in the Windows 8.1.1 Update. 
    It is a strength to know this content so it can be transmitted to End Users both, Consumer and Enterprise customers and clients. 
    There are things for which business folks will be grateful. 
    There are things that make the User Experience nicer for anyone and everyone.
    KB2919355 may be small but, in my view, it packs a big punch.
    Here are the links I promised for your further reading and information.
    What’s New in the Update?
    Installing the Update
    Bonuses for Enterprise
    Drew
    Pres. Computer Issues
    MS Partner
    MS Beta-Tester
    MS Partner Company
    IT Forums Contributor
    Drew MS Partner / MS Beta Tester / Pres. Computer Issues Pres. Computer Issues www.drewsci.com

    The view from here, Drew:
    Reading around the edges of the error message, are you seriously trying to find things of merit in the spring update?  They seem pretty few and far between to me.  800 MB (er, 200, er, who knows) for what?  a few dozen bugfixes? 
    If you know of something of substance in the update, please share, because I'm not finding much.
    Why has there been so much hype about this version?  It was "leaked", then it has been getting press like what you're trying to show here.  Isn't the hype actually supposed to come with some substance as well?  Where is
    that substance?
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options
    What’s new in Windows 8.1 Update
    http://windows.microsoft.com/en-us/windows-8/whats-new

Maybe you are looking for

  • Invalid Drive E:\

    I had itunes 7 installed but all of a sudden it would not open and came up with an error message Invalid Drive E:\ i deleted itunes and tried to re-install it and it came up with the same message several times. Any ideas?

  • How can I convert mp3 into an aiff for Final Cut?

    I need to to convert a mp3 into a aiff to use in final cut pro. Could do it easy in past itunes version. Don't see the preference option in itunes 9.0.1. Am I missing something? Any advice?

  • Skype question- want to know what set up to use

    Bottom Line is My Company wants to know how  I can make calls to different area codes but let the receiver see them as a local number where they live.  I will mostly being calling out.  Trying to find out what package or best way to go to accomplish

  • Removing unwanted sound in CS 5.5

    Hi there. I'm using CS 5.5 and need to remove an unwanted 'clicking' noise that has come through in a project - it coincides with an interviewee speaking. The noise occurs frequently, but not consistently, throughout the footage. Is there a tool I ca

  • Zen Sleek Photo Installation Wo

    Hey guys, I just bought a Creative Zen Sleek Photo MP3 player and i'm having trouble installing the driver. After plugging it in, windows detects the new hardware and goes thru the installation process the driver. At the end it tells me: "Cannot inst