Smartforms + continuously printing on sheet

Hi Guys.
I have a Smarform of Transfer Order Label. I use my own page format with size 210mm*99mm (It's exact 1/3 of standard A4 Sheet).
When the user print some TO at once ( Print Smartform within a loop statement ), each one is printed on a separate A4-sheet.
Is there any way to make them to be printed continuously on the sheet, I mean 3 Labels on each A4 Sheet?
Thank in advance.

Now I'm remembering:  Once I hade to print bank checks on preprinted forms, with smartforms.  The preprinted forms where punched with 4 checks on each page.
What I did was:
- I created a page with the size of a form (4 checks).
- I created a main window with the size of 4 checks.
- I made a loop inside the smartform
- Inside them I created a Template.  I draw the check with the template.  So, for me every check is a big and complex line drawed with the template.
It was printed with a laser printer.  Since you can for example print only 1 check you can left with a 3 blank check page, or 2, or 1.  But after this page the next ones are has always with 4 checks space.  Then I put a parameter asking the user for the number of available check spaces on the first sheet.  After that I completed the internal table with blank checks, to force a page break.
Finally we changed the printer feed to manual and we had to change the page size setting of the printer to automatic, or undefined, or something like it.  Before we did it the first page was taken as an invalid page because the printer notes that the page was shorter than it expected.
With all this work we left the circuit working.  I don't know if it's the same for you, but may be some of this can work for you or at least give you an idea.
Hope it helps!

Similar Messages

  • Continuously print contact sheet when full (tethered capture)

    Hi!
    I am going to use lightroom and tethered capture as a photo booth at an event. But I wondered if it is possible to set up a mode that would continuesly print out new contact sheets when it was filled up with photos from the filmstrip?

    {quote:title=LarryHN wrote:}
    In the customize window when you click the settings icon ther is a pull down menu in teh resulting screen that lets you select multiple photos pre page and multiples of a photo{quote}
    Oh, how I do so wish that were the case, but when I click "Customize" and then get to the subsequent screen containing the "Settings" button, and then click said "Settings" button, I get, as previously stated, nothing but a dropdown that allows me to changes settings only for the text that one can select to accompany one's image, as shown in the screen capture found here:
    http://dl.getdropbox.com/u/1009048/iphoto-customize-settings.jpg

  • Prinitng smartform tables in full sheet

    Dear All Gurus,
    This is my request. I need to print a customized smartform (ex :GRN) according to below.
    Format of Smartform(1 page Smartform) :
    Header Windows (Adress / LOGO)
    Table Data
    Footer window (signatuees / agreement texts)
    (If the smartform prints 3 sheets (due to a lot of rows in the table) -
    1st sheet should show the header windows & table
    2nd sheet will carry out printing rest of the table data without priniting Header window (The total page space should be taken by table)
    3rd sheet will print the last rows of table & footer windows )
    I have designed the smartform & prints pages as above. But I cant figure out the way to expand the size of the table in the 2nd page to print it in full page.
    Plz Help
    Thanks'

    HI,
    Thank you for the reply..
    Kindly note that this smartform is 01 page smartform. (I have designed everything in single page.)
    Header Windows (Adress / LOGO)
    Main window (Table Data )
    Bottom window (signatuees / agreement )
    What happens here is if the table has 5 rows of Data, it is printed perfectly in a single A4 sheet according to my requirement because space is enough to print everything.
    But if there are 500 rows of Data in the table, what needs to be done is from 2nd  A4 sheet onwards  the table should acquire the total space of the sheet (including space given to LOGO, Address windows & bottom windows) until the loop ends.
    How do I get the total space because the table doesnt expand the size in main window of the smartform.
    Can we get that by expanding main window in 2nd page as you said?
    Thanks

  • How can i print multiple sheets at the same time

    im trying to print multiple sheets out of a particular folder in numbers.  Cant i just select all and print?  When I try to the message that appears is that there is an error printing

    If I guess correctly, you are trying to print thru a printer icon installed on the Desktop.
    At last on my machine, iWork applications aren't compatible with this scheme.
    Here is a script which may be useful.
    --{code}
    --[SCRIPT print_iWork]
    Enregistrer le script en tant qu'application : print_iWork.app
    sur le bureau
    Glisser déposer des icônes de documents iWork sur celle du script pour imprimer ceux-ci.
    --=====
    Save the script as an Application : print_iWork.app
    Drag & Drop icons of iWork documents on the script's icon to print them.
    Yvan KOENIG (VALLAURIS, France)
    2011/05/08
    --=====
    on open (sel)
      local les_documents, un_doc, doc_ID, theApp, nom_du_doc
      my activateGUIscripting()
      set les_documents to sel
      repeat with un_doc in les_documents
      tell application "System Events"
      set doc_ID to type identifier of disk item (un_doc as text)
      end tell
      if doc_ID is in {"com.apple.iwork.pages.pages", "com.apple.iwork.pages.sffpages"} then
      set theApp to "Pages"
      else if doc_ID is in {"com.apple.iwork.numbers.numbers", "com.apple.iwork.numbers.sffnumbers"} then
      set theApp to "Numbers"
      else if doc_ID is in {"com.apple.iwork.keynote.key", "com.apple.iwork.keynote.sffkey"} then
      set theApp to "Keynote"
      else
      set theApp to ""
      end if
      if theApp is not "" then
      tell application theApp
      open un_doc
      set nom_du_doc to name of document 1
      end tell
      my raccourci(theApp, "p", "c")
      my raccourci(theApp, return, "")
      delay 1
      tell application theApp
      close document nom_du_doc without saving
      end tell
      end if
      end repeat
    end open
    --=====
    on activateGUIscripting()
      (* to be sure than GUI scripting will be active *)
      tell application "System Events"
      if not (UI elements enabled) then set (UI elements enabled) to true
      end tell
    end activateGUIscripting
    --=====
    ==== Uses GUIscripting ====
    This handler may be used to 'type' text, invisible characters if the third parameter is an empty string.
    It may be used to 'type' keyboard raccourcis if the third parameter describe the required modifier keys.
    I changed its name « shortcut » to « raccourci » to get rid of a name conflict in Smile.
    on raccourci(a, t, d)
      local k
      tell application a to activate
      tell application "System Events" to tell application process a
      set frontmost to true
      try
                                  t * 1
      if d is "" then
      key code t
      else if d is "c" then
      key code t using {command down}
      else if d is "a" then
      key code t using {option down}
      else if d is "k" then
      key code t using {control down}
      else if d is "s" then
      key code t using {shift down}
      else if d is in {"ac", "ca"} then
      key code t using {command down, option down}
      else if d is in {"as", "sa"} then
      key code t using {shift down, option down}
      else if d is in {"sc", "cs"} then
      key code t using {command down, shift down}
      else if d is in {"kc", "ck"} then
      key code t using {command down, control down}
      else if d is in {"ks", "sk"} then
      key code t using {shift down, control down}
      else if (d contains "c") and (d contains "s") and d contains "k" then
      key code t using {command down, shift down, control down}
      else if (d contains "c") and (d contains "s") and d contains "a" then
      key code t using {command down, shift down, option down}
      end if
      on error
      repeat with k in t
      if d is "" then
      keystroke (k as text)
      else if d is "c" then
      keystroke (k as text) using {command down}
      else if d is "a" then
      keystroke k using {option down}
      else if d is "k" then
      keystroke (k as text) using {control down}
      else if d is "s" then
      keystroke k using {shift down}
      else if d is in {"ac", "ca"} then
      keystroke (k as text) using {command down, option down}
      else if d is in {"as", "sa"} then
      keystroke (k as text) using {shift down, option down}
      else if d is in {"sc", "cs"} then
      keystroke (k as text) using {command down, shift down}
      else if d is in {"kc", "ck"} then
      keystroke (k as text) using {command down, control down}
      else if d is in {"ks", "sk"} then
      keystroke (k as text) using {shift down, control down}
      else if (d contains "c") and (d contains "s") and d contains "k" then
      keystroke (k as text) using {command down, shift down, control down}

  • Power View can only print one sheet at a time with Power BI Mobile Apps

    I have PowerView for Excel 2013 on Power BI Preview. I have 2 reports sheet and 2 hidden data sheets on Excel.
    I'm getting error on Mobile Application in Windows 8 RT tablet.
    I should see 4 reports in preview page, but I see 2 correct reports and 2 errors.
    Power View can only print one sheet at a time. Please switch to the desired sheet and try again.
    Why this occurs? What should done in Excel?
    Kenny_I

    Thank you for reporting this issue. This is a known issue that we had fixed last week. In a few days, the updated version of the app will be available in the Windows store. At that time, your app should automatically get updated to the newest version, if
    you have not changed your default settings.
    If you still experience issues next week this time, please post back and perhaps share your workbook, so we can do a thorough investigation.
    Thank you.

  • Printing Contact Sheets

    Hello
    I am trying to print a 4.5 x 5.75 contact sheet of 8 images, which I have saved as a preset. I have printed this many times in the past but this time I am getting a error message (which appears in the print dialog box too quickly for me to read.)
    Anyways it seems to be isolated to printing contact sheets. If I try to print a single image from Aperture there is no problem. I have tried rebuilding my Aperture library, tried rebooting, but don't know what else to try?
    Any suggestions?
    Thanks for the help.
    Shane

    Miklos:
    One poster pointed out that you could create a book using the Year Book theme. There you can select to have anywhere from 1 to 32 images per page and include the file names underneath the photos if desired. Then print the book to PDF and then print each page to hardcopy. Don't know if that will reduce your overall assembly time but you will be able to have the file names or titles printed also.
    Another way is to create an html gallery, display in Safari and then print. Here's how:
    Creating Contact Sheet with Titles
    1 - Put the files you want to print in an album and arrange in the order you'd like.
    2 - Go to the File->Export->Web Page menu option.
    3 - While in the Web page window, select the number of thumbnails you'd like across each page (iPhoto will keep you informed on how many pages it will take).
    4 - Click on Show Title under thumbnails and click on Export. Then select the location where you'd like the resulting files to be saved (create a temporary folder to contain them).
    5 - Once saved, go the folder and open the index.html file with your browser. You will get a page with your thumbnails and titles beneath them.
    6 - Print that browser page and you've got your contact sheet with file names (or comments if desired).
    If you want more control over the thumbnail gallery, try using BetterHTMLExport or Galerie
    Good luck.

  • Error in smartform when printing multiple pages

    Hi,
    I m using a smartform which have two pages in it,
    i m able to save and activate it without any error message and when i run the function module generated to chk my smartform
    it runs fine and diplays two pages i m using.
    but as i m attaching this form with my driver program it is giving an error message while running . the error message is " No other output defined in main window."
    Please help me out to resolve the issue.

    Re: error in smartform when printing multiple pages
    dharani tadikonda
    Thanks for this answer. It is absolutely correct.

  • Get error message when trying to print from Sheet Music Plus

    I have Windows 8, Have installed Adobe Air and flashplayer, but when I try to do digital print from Sheet Music Plus I get error message: The application could not be installed because the installer file is damaged. Try obtaining a new installer file from the application author.

    Wow, that's the first time I think I've ever seen that solution!  Very happy you were able to get this solved.  I'm not sure what would cause this to fail, maybe some sort of permission issue with the desktop folder?  If you have a chance, would you mind emailing me ([email protected]) the following log file?  I'd love to take a look and see if we caught anything with our error reporting.
    Troubleshoot AIR installation | Windows
    Thanks,
    Chris

  • My HP laserjet 1018 printer continue printing old document

    My HP laserjet 1018 printer continue printing the a document i sent sometime back every time i restart my computer. And when i try to print a new document , a window messege appears "invalid printer setting"

    Hi @Beaglemom49779, 
    I see by your post that you replaced the toner and are now getting all black pages. I can help you with this.
    Did you have the same issue with the printer before replacing the toner?
    It could be a hardware or fuser issue with the printer.
    If the issue just started after replacing the toner then most likely it is the toner.
    Make sure the printer is connected directly to a wall outlet. (don't use a power hub or a surge protector)
    Number one cause of toner issues.
    Inspect the toner cartridge for damage:
    1. Remove the toner cartridge from the product and verify that the sealing tape has been removed.
    2. Check the memory chip for damage.
    3. Examine the surface of the imaging drum on the bottom of the toner cartridge.
    CAUTION: Do not touch the roller (imaging drum) on the bottom of the cartridge.
    Fingerprints on the imaging drum can cause print-quality problems.
    4. If you see any scratches, fingerprints, black on the drum, or other damage on the imaging drum, replace the toner.
    5. If the imaging drum does not appear to be damaged, rock the toner cartridge gently several times and reinstall it. Print a few pages to see if the problem has resolved.
    Please call our technical support if the there is a issue with the toner and inquire about a replacement, at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. Contact HP.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • My HP Officejet Pro 8600 is randomly printing coloring sheets most often during the night!

    For about a month, my HP Officejet Pro 8600 is randomly printing coloring sheets, valentines, etc.  Usually this is happening at night!  The pages use a lot of ink!  How can I get this to stop?  Is this part of HP's eprint?? Help!

    Hi there, check out this thread for information on how to cancel scheduled print apps.
    Best. 
    If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
    If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
    I am an HP employee.

  • OfficeJet Pro 8600 Premium - Cannot Print Info Sheet in Order to Obtain Printer ID

    I have been trying for a few hours now to get my hpeprintcenter account set up. It is asking for a Printer Code and says that you should be able to obtain it by printing the Info Sheet from the ePrint menu on the Printer. 
    The problem that I am having is that when I click on the Print Info Sheet Button, the printer freezes at Now Printing...and never does anything else. 
    I have tried on different internet connections, I have power cycled the printer, I have disabled Web apps and re-enabled, I have set the 8.8.8.8 and 8.8.4.4 DNS entries as mentioned in the other posts and none of these things will allow me to print my info sheet in order to get my account setup. 
    Everything else works fine. I am able to print from tablets and from my laptops over the wireless network and there doesn't seem to be any type of internet connection error on the printer. 
    Anyone have any ideas what I might be able to do to fix this. Getting to be at my wits end over this. 

    What's the name of the router you have?  Also, I would make sure that nothing was entered under proxy settings.  

  • Steps involved to Configure a Smartform for printing TO Item

    Hi,
    I want to develop a Smartform to print TO for each Item.
    Currently it is being done using SAP Script.
    I checked the Configuration in OMLV and assigned my print program Z****** .
    This thing here is I don't see any values passed to my program like TO Number, Whse Number etc when called through LT31.
    Where as I assign the standard program RLVSDR40 and debug it all the details are being passed to this program.
    I am not sure if I am missing any configuration.
    Please help me to figure out the issue and let me know all the steps involved in configuring the Smartforms to print Transfer Orders.
    Thanks in Advance.
    MK.

    Hi Murali,
    The SAP delivers the solution to print the TO item by SAPScript, but we can do it by Smartform as well, as in
    You need to create a project for the enhancement MWMD0001, because EXIT_RLVSDR40_001 will fulfill your purpose of doing it the other ways i.e. via Smart from.
    For this you have to use CMOD transaction to create the project for the above said enhancement.
    Note: If you do this way any configuration done via OMNU wont't be considered.
    Then after in teh import parameters you have a table XRLDRI, which contains both the warehouse number and the transfer order number, the same can be passed on to the designed Smartform to fulfill your purpose.
    Sample Code, you can refer to:
    *local variable declaration.
       DATA: l_wa_fm_name            TYPE rs38l_fnam.
    * Local Field Symbols
       FIELD-SYMBOLS : <l_fs_rldri> TYPE rldri.
    * Local Constant declaration
       CONSTANTS : lc_fmname TYPE tdsfname   VALUE 'XYXYXYXY',  "Smartform name, here designated by 'XYXYXYXY'
                   lc_chk      TYPE rldrudruck VALUE 'X'.
    *Moving Transfer Order Print :Item level data into corresponding work area.
       LOOP AT xrldri ASSIGNING <l_fs_rldri>.
    * Determine smartform function module
         CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
           EXPORTING
             formname           = lc_fmname
           IMPORTING
             fm_name            = l_wa_fm_name
           EXCEPTIONS
             no_form            = 1
             no_function_module = 2
             OTHERS             = 3.
        IF sy-subrc = 0.
    * Call the function module of the smartform
           CALL FUNCTION l_wa_fm_name
             EXPORTING
               user_settings    = lc_chk
               tanum            = <l_fs_rldri>-tanum
               lgnum            = <l_fs_rldri>-lgnum
             EXCEPTIONS
               formatting_error = 1
               internal_error   = 2
               send_error       = 3
               user_canceled    = 4
               OTHERS           = 5.
           IF sy-subrc = 0.
           ENDIF.
         ENDIF.
       ENDLOOP."LOOP AT xrldri ASSIGNING <l_fs_rldri>. 
    Please validate the same at your end and let me know in case you require any further inputs from my end.
    BR/Thanks
    Pranav Agrawal

  • How do I print a sheet of different address labels?

    How do I print a sheet of different address labels?

    I've just upgraded to Mountain Lion on my iMac. Here's what I've found.
    To print labels, select the addresses you want to print using Contacts.
    Go to File>Print. In the resulting dialog box, click on Show Details.
    In the middle of the resulting box, click on Style and select 'labels'.
    Just below the Style entry are Layout and Label. Select them in turn to choose
    the details you want, including the type of label you'll use. I use the Avery 5160
    and select it for the proper format.
    Turn on your printer, insert a full sheet of labels and print.
    Note: I have yet to figure out how to start printing on any label besides
    number 1. Because of this problem, I don't use Contacts to print labels,
    I usually use an old Palm program, now gone in Mountain Lion, or
    pearLabelizer, a free program I got on the 'net.
    Bob.

  • How to print multiple sheets per page?

    Please advise how, if it is possible, to print multiple sheets per page with Acrobat 7.0 Pro.<br /><br />I have a PDF that's about 24" x 60". I'd like to make a "poor man's poster" by printing on several pages and taping them together -- sort of like Microsoft's "Fit to <x pages> tall by <y pages> wide" feature. Can this be done with Acrobat 7.0 Pro?<br /><br />Thanks.<br /><br />-Kurt

    That is typically a function of the print driver for Acrobat. One way to do it is to print to a new PDF and select the printer properties and select multi-up. Bill

  • How can I set the printer to continuously print from a roll of paper?

    I need to print something continuously from one long piece of paper. I have googled this but all I find are answers on how to do this with an epsom printer! Just got my first HP printer today (J110) and pleased with it so far, but I'm having trouble finding out how to set it to continuously print.
    Many thanks for any advice.

    Hi,
    I can not find your printer in this list
       http://support.apple.com/kb/ht4356
    How old id it ?
    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.

Maybe you are looking for

  • How can I set iTunes to prevent selected podcasts from being copied to iPod

    Hi, I have searched and could not find the answer to this problem. Anyway, I have a 5th gen iPod and am running it on a Mac with the latest iTunes. On the iPod options pane, I have selected to update only the selected Podcasts. I am leaving the podca

  • How to create a quiz with a video background.

    I need to create multiple quiz, which should appear at certain times during the execution of a video. For example: A person watches a section of the video, and at one point have to answer a question that appears on the video, then one chooses the ans

  • Invoice Outputs

    Hai Guys, I have assigned condition records (Sales Org / Customer) for the invoice output type in 'vv31'. But when I look in the header of the Billing document, at the output, the condition type is missing. I have to manually enter the condn type (ZR

  • Order by results in duplicates rows returned

    Hi All, Just got the following question that I could not understand at all. Let's assume we have a query like this: select d.d_name, e.e_name from dept d, emp e where d.d_id = e.d_id And this query returns 3 rows only: IT JOHN IT JAMES ADMIN BILL It

  • Posting Header Freight to separate account with idoc INVOIC02

    Hi, I am using idoc type INVOIC02 to post a cross-company code invoice.  There is freight at the header level in the invoice and I want the freight amount to hit a different G/L account than the rest of the document. From the help documentation, it l