Smartforms: print accompanying documents

Hi,
I have to reproduce in Smartforms the same output as the existing legacy system.
Legacy system automatically outputs
1)A Quotation
2)A Condition of Sale document (always printed out)
  (PDF file, 2 pages, contents are numbered and appear in
   2 columns on each page).
3)A technical document (only printed if a criteria is
  satisfied in the logic within the Quotation)
  (PDF file, 1 page, contents appear in 2 columns on the
   page [which includes some technical drawings])
Smartforms
I have no problem reproducing the Quotation in Smartforms but not so sure how to output the 2 accompanying documents automatically with the Quotation.
Currently, the Smartforms has the following design:
1) First page
2) Next  page
Question
a)Does anyone know how to get the 2 PDF files printed automatically with the Quotation without having to bring the contents into Smartforms?
b)If the PDF contents of the 2 files has to be integrated into the Smartform, what would be the best approach?
Bear in mind that one of the documents contain technical drawings.
Am thinking it would be good to create at least another page (ie LAST page) and maybe incorporating the contents of the 2 files in there somehow (maybe the technical file as a scanned object and the other file contents contained in multiple windows of the LAST page).  No MAIN window in the LAST page. 
Would my proposed approach work?  Any ideas, anyone?
c)Have been playing with the order sequence of the different pages. Have not got it quite right yet?
Page          Next
First         Next
Next          Next  ?
Last          ?
How to get the system to process the last page only once?
Or is there another way???

any suggestion?

Similar Messages

  • Smartform error while printing multiple documents

    Hi Friends,
    When I am  trying to print individual documents the Smartform output is correct but when I select multiple documents its showing an error that says ' Table GRAPH does not fit into the window'. When I change the GRAPH node it says some other node does not fit. And it goes on.
    Is there any easy way to correct this error ?
    Please help.
    Regards,
    Dikshitha G

    Hi Dikshitha,
    First you need to check whether you have used TABLE under a secondary window or Main window? When you use table GRAPH under MAIN window then automatically next page will be printed and Window width adjusts automatically. Only make sure Hight and Width of Window should not be less than the Table. Click on Output tab of Main window and not down hight and width similarly check for TABLES.
    Regards,
    Gaurav.

  • Print BDS document(in PDF format) from SAP R/3

    Hello ,
    I have a requirement to print BDS document(in PDF format) from SAP R/3 without user interaction.
    In simple way, if I execute the program - PDF document will get printed on local default printer.
    Please help me if anybody worked on similar requirement.
    Thank you very much,
    Liliya

    Hi Liliya,
    First you should create a smartform for BDS  Layout and give output parameter like this..
      wa_param-langu     = sy-langu.
      wa_param-no_dialog = 'X'.
      wa_param-getotf = 'X'.
      wa_param-DEVICE = '     '.                               " (here you can give the path of your printer)
      lv_output_options-tdnewid = 'X'.                      "Print parameters,
      lv_output_options-tddelete = space.                "Print parameters,
      lv_output_options-tdnoprev    = 'X' .
       lv_output_options-TDIMMED    = 'X' .               " it will give the immediate output of form in given output device
    I hope it will help you.....
    Enjoy...

  • Function modules supported by seal system used to print drawing documents

    Hi,
    As per my current requirement, while create purchase order (ME21N), the drawing document (which are linked with materials of the PO) should print along with the PO form (smartform). The drawing are stored in the Auto CAD system. Seal software has already installed to print drawing documents.
    But I would like to know the function modules supported by seal system used to print drawing documents.
    Thank you.
    Tulasi

    Tulasi,
    May be you can approach it this way
    create a ztable with fields matnr and graphic object(check STXBITMAPS table for the attributes of this field) and upload the drawings against every material.Now you will have a table containing the matnr and the corresponding drawing in the table which can be used for further  processing.
    Hope  any of the SDN experts here will suggest a better solution.
    Kiran.

  • Smartform - Printing differently on different printers

    Hi Guru's,
    I've a problem in printing the smartform to 2 different printers.
    1. LOCL - we don't have any problems in printing to the Local Printer.
    2.HP Printer (HIITPRT21) - when we print the document using this printer , Header is printing in one page and the Remaining contents (Main Window) is printing in different pages.
    I don't think there is a problem with the smartform, because it should print the same way on LOCL as HP Printer Does.
    Could you please let me know where the problem is and how to resolve it???
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=190743231
    The above blog is talking about the problems, it is mentioning about the problems with the print controls..how to know which one is causing the problems??
    Thanks,
    Adi.

    Moderator message -
    When closing old threads, there is no need to add a comment. Adding a pasted answer like "Resolved myself " only brings old threads to the top of the forum list and pushes current ones down. If you do add a comment, please indicate just how the problem was resolved.
    Note to potential responders to this post - I just rejected about 40 of your posts today. I didn't see that you had assigned a single point to any of the helpful answers or even a "thank you".
    Rob

  • Smartform for billing documents

    Hi,
    I want to know the smartform and the printing program to print billing documents in sales and distribution module.
    In the customizing there's a sapscript form but not a smartform. Is not recommended to use smartforms?.
    Thanks in advance.
      Best Regards.
        Mercedes

    hi,
    standard print program for invoice is RLB_INVOICE. and the smartform name is LB_BIL_INVOICE
    if u want more details then goto NACE-->select V3 (billing). look for more forms
    Please Close this thread.. when u r problem is solved
    Reward if Helpful
    Regards
    Naresh Reddy K

  • Print Attached Documents from Order Release

    Hello Gurus!
    We have an issue with a client that needs to print various documents in Word format along with the production order. I have mantained all of the setting in DMS and have attached the documents to the product as well as the production order. What I need the system to do is to automatically print these attached documents. I have used the LV03 setting to print the document list. My questions are:
        1.  Is there a standard function that I am not aware of to print the documents automatically?
        2.  Is there a form in SAP to print documents or will I be able ot create a form using either SAPscript or SmartForms to obtain this function?
    Any additional information will be appreciated and points will be awared!
    Thank you!

    Hi Steven,
    1. Get BOM details for order (dokar, doknr, dokvr and doktl).
    2. Get the files (document ) path using following FM
        CALL FUNCTION 'CVAPI_DOC_GETDETAIL'
             EXPORTING
                  pf_dokar     = dokar
                  pf_doknr     =doknr
                  pf_dokvr     = dokvr
                  pf_doktl     = doktl
                  pf_read_kpro = c_x
             TABLES
                  pt_files     = t_files
             EXCEPTIONS
                  not_found    = 1
                  no_auth      = 2
                  error        = 3
                  OTHERS       = 4.
    3. Print the documents using following FM.
      LOOP AT t_files INTO wa_files.
        CONCATENATE wa_files-pathname wa_files-filename INTO
                    wa_files-filename.
        CONDENSE wa_files-filename.
        CALL FUNCTION 'CV120_START_APPLICATION'
             EXPORTING
                  pf_dappl = wa_files-dappl
                  pf_apptp = c_3
                  pf_file  = wa_files-filename
             EXCEPTIONS
                  OTHERS   = 0.
      ENDLOOP.
    Hope this will help you.

  • IW32 - Print Attachment Document at the time of form printing

    Hi,
    Anyone help me how to print attachement document in Maintenance Order Document ( IW32 ), by the time of Form printing ?
    Regards,
    Hary

    Hi,
    we are looking for a similar solution. We want to include TIFF,PDF at the end of SAP-Script or SmartForms.
    For example: We want to send a purchase-order Formular (out of ME21N) with attached TIFF's or PDF's, so that the vendor received a purchase-order with a design of the material.
    Did you find a solution ??
    Thank for answer.
    Thorsten

  • Printing Cisco documents

    Please accept my apology for posting this question here but I cannot locate the information needed anywhere else.
    We  downloaded the Cisco support and CLI configuration documents for  routers, switches and firewalls (.pdf files) and now want to print these  manuals in hard copy. Our printing department informed us that due to  the copyright in the documents they are unable to print the documents. We only want a single copy and we do not plan on selling or modfying these documents, we need the documents for our own internal use - you know, to do our job.
    Can ANYONE (especially a Cisco representive) help us (our printing department).
    Thank you
    Frank

    Hey Frank,
    I'm going with Paolo on this one (+5"P")
    But this may help them release these docs from the Print Queue
    Product Documentation
    End-user purchasers of Cisco products may, without the need for a written license from Cisco, reproduce and modify any Cisco product documentation accompanying such products, for distribution within their organization in order to use the products.
    Copyright Program
    http://www.cisco.com/web/about/ac50/ac47/cisco_copyright_program.html
    Cheers!
    Rob

  • Successfully downloaded and installed Adobe Reader on my PC ... ( Windows 7 home premium (64 bit) OS).  Cannot print adobe documents... Error message indicates need to install plug-in for adobe reader for windows 7 home premium (64 bit) OS               

    Cannot print adobe documents ... Error message indicates a need to install plug-in for adobe reader.
    Please advise how/where to locate the required adobe reader plug-in...
    Thank you,
    Joe Curcio

    What is the full and exact message you are getting?
    If the PDF contains Rich Media, the Flash Player plugin may be required: http://fpdownload.macromedia.com/pub/flashplayer/latest/help/install_flash_player.exe

  • PDF: Unable to print a document as PDF from APEX when using the BI Publishe

    Hi,
    From an APEX application, I am unable to print a document in a PDF format when using the Oracle BI Publisher.\
    Here is the configuration:
    1) Server A is W2K3 and hosts the Oracle BI Publisher server, with IP address ip01.
    2) Server B is a OEL5.2 and hosts the database server of the APEX application, with IP address ip02.
    3) Machine C is a W7 desktop from which through an URL both the APEX applicationn and the BI server are accessed, with IP address ip03.
    4) The APEX application is configured with the following to use the Oracle BI Publisher:
    - Printer server: Advanced (requires Oracle BI Publisher)
    - Printer server protocol: HTTP
    - Printer server host address: ip01
    - Printer server port: 9704
    - Printer server script: /xmlpserver/convert
    - Network services are enabled (at least I did get any warning/error message)
    From C, I access the the APEX application through its URL, if I try to download a page by selecting PDF in the download section of the interative report section for that page, I am unable to open if and get the error:
    <file>. pdf file can not be opened because the file type is not supported or because it is damaged (because, for example as an e-mail attachment is not sent and correctly decoded)
    Yet, still from C, I am able to open any other PDF document.
    The same way, still from C, acessing the APEX application through its URL, I have a query report defined with a PDF output format. Then, when I test the report (Test Report in the Report query) for that query, I get the error:
    ORA-20001: The printing engine could not be reached because either the URL specified is incorrect or a proxy URL needs to be specified.
    At first sight this could be a wong entry in the priinter configuration for APEX. But with this address, through the URL I can log in to the Oracle BI Publisher server.
    Does someone has an idea what the problem could be?
    Thanks for any tips.

    How are you trying to print to pdf?
    Don't go via PostScript or Acrobat Distiller, which are old deprecated technology.
    You use:
    Menu > File > Print > PDF (button bottom left) > Save as PDF…
    Peter

  • How can I print a document from "workspace?"

    How can I print a document from "workspace?"

    1. Buy a AirPrint enabled printer; see list below
    http://support.apple.com/kb/ht4356
    2. Run the CD provided and setup as network printer; this will setup your printer to the same network as your iPad
    http://i1224.photobucket.com/albums/ee374/Diavonex/1a30ee42.jpg
    3. Start printing from your iPad without wire
    http://i1224.photobucket.com/albums/ee374/Diavonex/93ec77e5.jpg

  • Firefox is crahsing whenever I try to print a document from web or email. I run Window XP and firefox version is 3.6.12

    this has happened and reported 22 times since jan 2010. It may have probably started since I updated firefox in Jan 2010. The printer is a Canon LBP180 which prints all documents from any other software.

    http://crash-stats.mozilla.com/report/index/7fd505df-96eb-4d92-9477-9ce432101118
    Looks like a problem with CAPRENN.DLL. <br />
    http://www.processlist.com/info/caprenn.html
    See if you have the latest Cannon print drivers installed.

  • Can't print text documents

    For a little over a week I have been unable to print text documents from either of my printers (Lexmark Z-23 and HP PSC 1410). I had noticed that the sharpness of text had been declining-but I was in denial, sort of. Now, when printing text documents from the computer, the printout is garbled, streaked, and unreadable. Sometimes the first half of printed document will be okay but the second half will be all garbled and streaked.
    I have tried to print from Pages, Appleworks, and TextEdit. No success in any of them. I have converted a page of my word processing document to pdf format, but it does not print out properly in pdf, either.
    Here's the weird part: the HP will produce good copies (copy function) I am able to print out beautiful iCal (calendar) pages; some web-based information (like maps with directions) comes out great; and even "screen-shots" (or pictures) of text documents are fine; I just can't print text-based documents.
    So far, I have cleaned and calibrated the printers; they have enough ink. I have uninstalled then reinstalled the software and drivers.
    Help?
    ~~PM
    iMac G5 2GHz PPC   Mac OS X (10.4.8)   still miss my Indigo G3

    my guess is, it's not your printers that are the
    problem but maybe a font problem.
    Have you done anything with fonts lately?
    Why, yes.
    Just today, in FontBook I validated fonts and
    resolved duplicates, whatever that means. I also
    "turned off" a bunch of fonts that I never use. Then
    I restarted, reset PRAM, and repaired permissions in
    Disk Utility.
    I still have the problem.
    What other kinds of things can you do with fonts?
    ~PM, wife of GM
    Glenn-- Here is a great article written by a fellow apple forum frequenter:
    http://www.jklstudios.com/misc/osxfonts.html
    Maybe you can read it or weed thru it and make sure you haven't turned off any necessary fonts that you don't use but the system finds necessary. Especially "TextEdit" uses I think exclusively system fonts and if you've turned them off... It's just good to know which fonts are for what before you disable certain ones.
    I believe fonts can definitely cause these sorts of problems, especially if you've disabled system fonts.

  • Mail merge and print one document at a time?

    Hi all. I'm an Apple revert. I'm currently using the i7 iMac. Previous Apple computer was a //e.
    I print an 8 or 12 page newsletter for my work. I want my printer/copier to fold and staple each document individually. Pages seems to send all documents to the printer in one huge file. How do I mail merge and print one document at a time?
    [In Windows Publisher, there's a registry hack to make Pub print one at a time. Anything similar on a Mac?]
    Mike

    Hello
    As you saw wrongly my first name I'm not too surprised that you missed the beast
    In fact it's not surprising that you missed it.
    I prepared the archive but forgot to upload it
    Download :
    For_iWork:iWork '09:découpe_PDFs.zip
    Yvan KOENIG (VALLAURIS, France) samedi 27 août 2011 11:29:37
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

Maybe you are looking for

  • Embedded videos in many websites won't open.

    I have found that the embedded videos on many but not all websites won't open now when I'm browsing in Firefox. I am running 27.0.1. I have Adobe Flash Player installed so that's not an issue. As some examples of non-openers: Embedded videos in some

  • HTTP Error 403 - Forbidden

    Hello We're getting this error message randomly when surfing the Internet. We have websense running on our network to perform web content filtering and are using the ASA for the http/https redirects. We've contacted websense and they said this error

  • PDA: Calling library functions - seems to link the stubbed .cpp file instead of the DLL

    I'm having trouble developing a Lab View PDA module that calls a DLL built using Visual C++. The DLL functions correctly when called in a non-PDA VI. My issues seem to be with porting to the PDA. My configuration: - Lab View 8.5 with the PDA 8.5 modu

  • TS3694 I get an error 4002 everytime I turn on Itunes

    Every time I open Itunes this message appears Error 4002

  • MetaDB issue - Solaris 10u8 x86

    Hi all, I am running Solaris 10u8 x86 on VMware. I am trying to configure SVM in my virtual machine and meet the following issue about metadb. I have 01 HDD which contains Solaris OS, swap... and 03 more HDDs for holding data. I did not do anything o