25 lines per page?

How do I set up pages to have exactly 25 lines per page?
Thanks in advance!
Jessica

Welcome to Apple Discussions
Create a page that looks just the way you want it, with 25 lines in the typeface and point size you want to use. Adjust the top and bottom margins to fit those 25 lines. Save as template. Always use that template and do not change type size or line spacing.
Walt

Similar Messages

  • How to give no of lines per page in alv report

    hi
    could anybody tell me
    how to give no of lines per page in alv report
    i need bottom of page too
    if possible plz send the code too
    it ll be very helpful to me
    thanx
    kals.

    Hi,
    This is possible, using some of the events in the ALV.
    You could use AFTER_LINE_OUTPUT event and call you form after say, a certain line count is reached on the list output.
      MOVE 'AFTER_LINE_OUTPUT' TO gw_event-name.
      MOVE 'AFTER_LINE_OUTPUT' TO gw_event-form.
      APPEND gw_event TO gt_events.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
           EXPORTING
                it_events                = gt_events[]
    and define the form for each event as follows - this would be a dynamic call by the ALV.
    *&      Form  after_line_output
    *       Form for the After Line Output Event in the internal table
    *      --> rs_lineinfo
    FORM after_line_output USING rs_lineinfo TYPE slis_lineinfo.
      IF sy-linno eq v_linno.          "Defaulted value for line count
        perform write_footer.
        NEW-PAGE.
      ENDIF.
    ENDFORM.                    " after_line_output
    For lines per page:
    rs_lineinfo-tabindex would give you the index of the current line in the list, which you could use to read the t_outtab table, and reduce the line count of items displayed on the earlier page.
    There are a few other events too, like BEFORE_LINE_OUTPUT and END_OF_LIST which you can use as required and print the data.
    Regards,
    Anil.

  • Deskjet 5525 printing random characters, one line per page when printing both sides of page

    Hi. I have a deskjet 5525 wireless all in one printer. 
    I have installed all of the necessary hardware and have updated it. We have two computers running windows 7, 64 bit. I have not been able to update the firmware on the printer because the HP Device Updater program that does it cannot communicate with the printer via usb cable or wireless on two different computers I have tried.
    When trying to print two sided documents, it will print ok for about two pages, but then, it will start printing on line per page of random characters, blurred lines of text, gargabe basically.
    This is the second printer as the vendor replace the first one with the same problem. You would say, oh a software problem, but I have reinstalled the HP Deskjet 5520 series SW a couple of times, reinstalled the printer, but the problem continues. 
    An old HP deskjet 3845 worked for us pretty well on the same computers.
    Please help.

    Hi Onemangosta,
    I would like to help with the garbled text you are experiencing. I have found a great document for you to use and I can also help you with the firmware update.
    Troubleshoot text that might be gibberish, nonsense, or look garbled or scrambled
    In order to update the firmware on your printer ensure the printer is on the wireless network and touch the Web Services icon (this icon is the 1st of the 4 that run across the top of the front panel - looks like 2 little cell phones). Scroll through the Web Services menu, find and select Product Updates, select Check for Product Updates.
    If the printer is already up to date the front panel will say so, if it is not, the download and install will begin. It is possible you were unable to do the update form the computer because the printer does not need an update. The HP Device Updater will only see a printer that requires the update.
    Hope this helps.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • How to get Fixed lines per page  ? really Urgent !!!

    I am facing problem with the fixed lines per page. The Footer block(Subtotal) is moving up leaving space at the bottom when the number of items is less.
    I have a two groups : one for KIT ITEMS and other for KIT COMPONENTS. When i am generating report for only KIT ITEMS i am getting fixed footer by using
    <xsl:variable name="no_of_lines_per_page" select="number(30)"/>
    <?for-each@section:Q1?>
    <xsl:variable xdofo:ctx="incontext" name="inner_group" select=".//Q2"/>
    <?for-each:$inner_group?><?if:(position()-1) mod $no_of_lines_per_page=0?>
    <xsl:variable name="first_rec" xdofo:ctx="incontext" select="position()"/>
    but when i try generate the report in combination with KIT COMPONENTS together, i am not able to fix the number of lines per page. The Footer is going into next page. Now i have Q2 and Q3 where Q2 is Parent Kit Item and Q3 is Child Kit Components.
    How can i get fixed lines per page for Q3 with respect to Q2 ?
    I would really appreciate if anyone can reply me fast.

    Hi Thanks for the link.I used the code which is there in this link. It is working for the items coming from Q2( Kit Parent Items) , but I want fixed number of lines combine for both Kit parent and its kit components( i.e Q2 and Q3 ). Could you please tell me , code to get fixed number of lines for this. It is really very urgent.

  • Report error using landscape style, lines per page errors.

    Hi
    A Custom report(use character units in designer,11 X 8.5, stadard settings...) developed(reports 2.5 on apps 11), which was working fine previously using standard landscape. The report produces exactly 56 lines physically per page.
    Now, in applications ,landscape print style is properties changed, number of rows changed from 66 to 57.
    Now report gives error:
    'M_XXXX_GRPFR' is not fully enclosed by its enclosing object 'Body'. M_XXXX_GRPFR is the outer most frame in my report layout.
    (I tried increasing page size, etc, no use, same error)
    Now, I don't understand why it is giving error, as, it prints only 56 physical lines per page when I see the output file generated.
    Is that landscape is defined as 57 rows, but it is not exactly 57 physical lines? Because when I took out some stuff from report layout, which now produces only 45 physical lines, it is working fine.
    But, I have all 57 phyiscal lines in the report that I want it to work, any suggestions?
    Thanks
    Rathan.
    null

    Hi,
    Try this, i might work for you.
    <?for-each:Q1?>
    Here, place KIT ITEM Data table
    Below that:
    <xsl:variable name="no_of_lines_per_page" select="number(30)"/>
    <xsl:variable xdofo:ctx="incontext" name="invLines" select=".//Q2"/>
    <?for-each:$invLines?><?if:(position()-1) mod $lpp=0?> <xsl:variable name="start" xdofo:ctx="incontext" select="position()"/>
    [here KIT COMPONENTS tabel will start]
    [In table first cell again start for-each group like below]
    <?for-each:$invLines?><?if:position()>=$start and position()<$start+$lpp?> ---this is in table first cell
    [in rest of cells, put your columns xml tags]
    <?end if?><?end for-each?> - in last cell.
    this is end of Q2 table.
    After that put a page break
    <xsl:if xdofo:ctx="inblock" test="$start+$lpp<=count($invLines)"><xsl:attribute name="break-before">page</xsl:attribute></xsl:if> -- page break outside the Q2 table.
    Now close the invlines for-each group
    <?end if?><?end for-each?>
    Close the Q1 for-each group.
    <?end for-each?>

  • Control Lines per Page

    I need some information on how to control the number of lines that print on a page. I have designed a purchase order .rtf template. I can only print so many po lines per page and still leave room for a footer to print at the bottom of each page. Thanks for any help...

    See this
    Can you limit returned rows in a loop?
    See this thread ,
    you can do
    1. page-break
    2. sub-totalling
    3. control number of rows displayed in a page
    Re: Can you limit returned rows in a loop?

  • Why only few lines per pages

    Hello, I am customizing standard ebusiness suite reports GLRGNL.rdf.
    The problem is data goes to the 2nd page, 3rd page … but there is only about 4 lines on each page. Data on 2nd or 3rd pages for examples refer to the same repeating frame as those on the 1st page and “maximum row per page” is set to 0.
    I don’t know where the page break comes from. I didn’t change layout properties (width, height).
    Thanks for your help

    Hi all, the problem is solved. It was due to bad print condition on frame (fixed).
    I still have one problem. After every page, there is also a blank page (which is not numbered).
    Does anyone have an idea?
    Thanks.

  • How to give the no of lines per a page in alv report

    hi
    could u plz inform me
    how to give the no of lines per page in alv report
    in ordinary report we can give line-count na
    how can we give in alvs.
    thanx
    kals.

    Hi Kalyan,
    There is another Forum(Abap Development) where u can post abap related stuffs and u can also get quick answers there..
    Cheers...
    Santosh

  • How to give the no of lines per a page in script

    hi
    could anybody tell me
    how to give no of lines per page in scripts.
    actually i want to set n lines per page in scripts.
    could anybody suggest me..
    thanx.
    kals.

    Hi,
    You can not set the No of Lines per page in the SCRIPT programetically, but here is the way to count the lines per page and you can restrict the lines per page also, just count the Total lines of all winodws in that page, lines mean The length of the windoe, lets say all the window lenghts are 20cm, then 20 lines will be printed. and you can convert this lenght cm to Lines also in the script. by converting the lenght Cm tyo lines you can count and reqtrict ..
    Regards
    Sudheer

  • Html viewer - records per page setting

    Post Author: bcarsto
    CA Forum: General
    Hi there General forum posters,I am using the html_page viewer option with Crystal Reports Viewer version 8. Is there a way to configure the number of lines per page with this viewer? If so, can someone tell me what options to set?bob

    Hi ,
    Please check bi publisher blog from TIM.
    http://blogs.oracle.com/xmlpublisher/2007/03/27
    it will help you out.
    Regards
    Ratnesh

  • Maximum Number of record Per page using XML Publisher with RTF template

    Hi
    I am creating customer statement and want to show only 20 records per page. How we can set maximum number of repord per page in rtf template.
    Thanks
    Ravi

    Ravi,
    I hope you are already done with this. In the invoice there is a nice example you can use on the xml blogs.
    You limit the number of lines per page when you use the xsl commands like this in your template:
    <xsl:variable name="lpp" select="number(13)"/>
    <?for-each@section:LIST_G_INVOICE?>
    <xsl:variable xdofo:ctx="incontext" name="invLines" select=".//G_LINES[LINE_TYPE='LINE']"/>
    <?for-each:$invLines?> <?if:(position()-1) mod $lpp=0?> <xsl:variable name="start" xdofo:ctx="incontext" select="position()"/>
    and then you have the table where you have the data
    <?for-each:$invLines?><?if:position()>=$start and position()<$start+$lpp?>
    and all your lines
    and then
    <?end if?><?end for-each?>

  • Can we change [maximum number of records per page] property at run time

    can we change [maximum number of records per page] property at run time in report 6i

    Ravi,
    I hope you are already done with this. In the invoice there is a nice example you can use on the xml blogs.
    You limit the number of lines per page when you use the xsl commands like this in your template:
    <xsl:variable name="lpp" select="number(13)"/>
    <?for-each@section:LIST_G_INVOICE?>
    <xsl:variable xdofo:ctx="incontext" name="invLines" select=".//G_LINES[LINE_TYPE='LINE']"/>
    <?for-each:$invLines?> <?if:(position()-1) mod $lpp=0?> <xsl:variable name="start" xdofo:ctx="incontext" select="position()"/>
    and then you have the table where you have the data
    <?for-each:$invLines?><?if:position()>=$start and position()<$start+$lpp?>
    and all your lines
    and then
    <?end if?><?end for-each?>

  • Titles: more than 2 lines per screen in 'Centred Multiple' option?

    Hi,
    Just a quickie. I want to create an opening Title sequence to my movie but the 'centred multiple' option only allows 2 lines per page/screen, and none of the other options fits the bill.
    Is there a (preferably freeware) plug-in that allows me to do this?
    PowerBook G4 17 1.67 gHz 512Mb/100Gb   Mac OS X (10.4.3)  

    Hello Arcadian:
    Our own Lennart Thelander has a great "freeware" Download for Centered Titles. I don't know for sure that it will do all that you want, but it s a great plug in.
    LT iMovie Titles.sit
    http://www.berga.nu/Lennart_T/imovie/index.html
    Otherwise, you could using Scrolling Block...Make your titles and when the scroll gets centered in the page, pause it and go to Edit / Create Still Frame and then drag that down for your centered title. You can even change the length by going to "show info".
    Sue

  • Since downloading the 2013 Keynote upgrade, the slide image size on handouts with 3 slides per page option is very small. Is there a way to make the slide size larger while still keeping 3 slides per page   lines?

    With the new Keynote upgrade (version 6.1), the slide image size on handouts is very small, which makes it difficult to read slide content when compiling lecture notes for students. Is there a way to make the slide size larger while still keeping to a format of 3 slides per page with lines?

    A number of posts have reported the same issue, two workarounds:
    1
    check the paper handling options or equivalent in your print dialogue box and set to scale to fit

    in the Keynote option, in the dropdown menu in the Print section, select Individual Slides
    then choose Layout, and set the number of pages, when printed you will have multiple pages on a single sheet.

  • HT204135 I recently migrated from a 2 year old MacBook Pro to MacBook Pro Retina and now cannot get my LaserJet 3200 to print. I downloaded drivers from HP Support site but printer just prints a line of gibberish per page, and many pages.

    I recently migrated from MacBook Pro to MacBook Pro retina. Now my macbook will not print to my LaserJet3200 printer. I downloaded the drivers but still only prints a line of gibberish per page, and endless pages, when i send printer a print job. Any recommendations on how to correct this so the printer prints properly again?

    Hi
    where can I find the "generic PCL driver" you referred to Greg?
    Also, I searched for a LJ 2100 d4river and found these. should I be working with the HP website? or an apple website? my Apple software update is current.
    Find by product 
    Go
    How do I find my product name / number?
    5 matches found. Please select one below
    HP LaserJet 2100 Printer series
    HP LaserJet 2100 Printer
    HP LaserJet 2100m Printer
    HP LaserJet 2100se Printer
    HP LaserJet 2100tn Printer
    HP LaserJet 2100xi Printer

Maybe you are looking for

  • Getting ORA-22805 when trying to load XML file using SQLLDR

    I'm trying to learn the basics of XML since we'll be getting XML files in the near future. I'm using one of the sample schemas that comes with XMLSPY. I loaded this schema into an 11g Oracle DB using XMLSPY: <?xml version="1.0" encoding="UTF-8"?> <!-

  • Okay, I lied unfortunately

    I'm still having Airport problems after I repaired my permissions. Does anyone know how I can uninstall that QuickTime security update that I installed using my Software Update? Right after that update was installed I started having Airport problems

  • Music downloading problem

    Whenever i trying to,download a song from nokia music a notification comes that your phone already registered with an unlimited music subscription. But how can i download those songs?

  • Cannot  install ES 2.0 in ipod

    cannot  install ES 2.0 in ipod

  • Output Sharpening for Screen Still Not Sharpening?

    There's obvious sharpening differences for matte and glossy, high and low, but when I export JPG for screen, using Lightroom 2.4, PS2 shows no difference between the two layers using difference blend mode. John Gregson