How to display the Page Numbers in AP Check Print Report

Hi
I am using <?for-each@section:G_CHECKS?> at form field. But It did not works for me.
Please guide me inthis regard.
Thanks
Namitha

In your case,
<?for-each@section:G_CHECKS?>
Table (A word table)
Put the Form-Fields that you want to display
Just type 1 of 1 where you want to display the page number.
End Table
<?end for-each?>
Now on Microsoft Word
Go to Insert -> Page Number -> Format
Select Number Format: 1,2,3.....
Under Page Numbering: select Continue from previous section
That should do it.
Thanks,
Shaf

Similar Messages

  • How to display the page no in script

    HI,
    Can any one tell how to display the page no's as follows in Scripts.
    current page/total no.of pages(ex:1/10)

    Hi,
    For Smartforms:
    Just insert fields: &SFSY-PAGE& and &SFSY-FORMPAGES&.
    Page: &SFSY-PAGE& of &SFSY-FORMPAGES&
    For Sapscript:
    Just add: &PAGE& and &SAPSCRIPT-FORMPAGES&
    Page: &PAGE& of &SAPSCRIPT-FORMPAGES&
    Regards,
    Edited by: Jatra Riwayanto on Jun 4, 2008 9:33 AM
    Edited by: Jatra Riwayanto on Jun 4, 2008 9:34 AM

  • Cheque printing. How to avoid last page in case of check printing in F110?

    F-68 prints only one page whereas F110 prints 2 pages.
    How to avoid last page in case of check printing using F110? Is there any other option than changing the Script.

    Hi,
    Im also facing the same issue. Generates 1 page with F-58 but 2 pages with f110. Kindly let me know how to resolve.

  • How to get the page numbers of a word/mpp/execl doc using Java?

    Hi,
    I meet a problem in Java programming. I want to get the page numbers of a Word/MPP/EXECL/PDF document. For exmaple, if a PDF docment have 10 pages, I need get the 10 . How to get it using Java?
    Please advise me as soon as possible if you have any good suggestions! Thanks!
    Yin

    There are several good tools that allow you to access COM objects from Java. Here are two of the better ones:
    Bridge2Java
    http://www.alphaworks.ibm.com/tech/bridge2java
    J-Integra
    http://www.linar.com/
    Both of these tools will allow you to access MS Office products (including Word and Excel) via COM interfaces.

  • Dynamically display the page numbers on forms

    Hi,
    I have 10 pages in a form with the common footer section/fap in all pages. I used the common footer section to maintain the consistent left and right footer (having State specific footer information) on all ten pages. But I would like to display the page number dynamically based on page number as specified below:
    For example, for page 1, it should display the footer as Page 1A,for page 2 it should display as Page 1B, for page 3 it should display as Page 1C etc.,
    Can anyone help me on this issue how can I dynamically display the page number based on the current page as per the above requirement.
    Thanks,
    Srini.
    Edited by: 943696 on Jul 9, 2012 4:39 PM
    Edited by: 943696 on Jul 9, 2012 4:44 PM

    Ignoring the fact that you have 10 pages that you want to label all as "page 1", assuming you have version 11.4 (? or higher) you might be able to do this.
    Somewhere around that version the concept of "Print time" fields was introduced where you can define a field that will make a call-out to generate the value at the point in time when it tries to print.
    You would name the field something like: ~DAL MyPageValue
    Yes, with the tilde next to DAL and a space between DAL and the name of a script you want to execute that would do your calculation. As the previous reply mentions, you would have to keep track of your own page counter to know whether to append the 'A', 'B', 'C', etc. to the "Page 1" description you intend.

  • How to get the page numbers in the PrintAdvance Data grid without using Vbox/Vgroup header or footer

    hi
    I want to print the page numbers for the data in Advance Data grid, For printing I am using print advance data grid , but unable to print the page numbers with that.
    actually i tried with Vbox/Vgroup, but when tha data is more because of this it is strucking, and more over imageRenderer in the PrintAdvancedataGrid not printing.
    can any one help in this regard?

    Image Caches hold images you've already loaded so the next time you request them, they can be made available without network latency.  This assume for your DG, that all images you need to print have been loaded by, for example, whatever DG the user was looking at before hitting Print.  This is easy when there are only a few icons used to show status, but won't work if each row has a different image unless you've somehow loaded up all of those images beforehand.
    Spark BitmapImage has an Image cache, but some third party ones are discussed here:
    http://thanksmister.com/2009/01/18/superimage-redux/
    -Alex

  • How to display the data of a structure in a report

    i want to display the data of a structure resbd.
    i know it does not have data.
    but it contains data at runtime
    plz help
    thanx

    Hi,
       For displaying the data of a structure you can use the write statement.
    WRITE : structurename - fieldname.
    eg : write : resbd-rsnum.
    Before that you need to declare the structure name inside the report.
                  Please refer the following code for your querry
    REPORT ZSTRUCTDATA .
    Table Declaration
    tables : resbd.
    Assigning Values to Structure Fields
    resbd-rsnum = 1234.
    resbd-rspos = 12.
    Displaying Values
    write : / resbd-rsnum.
    write : / resbd-rspos.
    This report will give the output like this.
    0000001234
    0012
    Regards,
    LIJO JOHN.

  • How to display the fields using field catelog in ALV Report

    Hi,
    I have rquiremrnt in ALV report.I would need to add the new fileld in the ALV output screen.I have added the field but its appearing in the layout set but not directly displaying in the output screen.
    I have written the below logic for field catelog.
    CLEAR wa_fieldcatalog.
      wa_fieldcatalog-fieldname   = 'LOGGR'.
      wa_fieldcatalog-ref_tabname = 'MARC'.
      wa_fieldcatalog-col_pos     = l_pos.
      wa_fieldcatalog-outputlen   = 13.
       wa_fieldcatalog-seltext_s   = 'Log. group'.
      wa_fieldcatalog-seltext_m   = 'Logistics group'.
      wa_fieldcatalog-seltext_l   = 'Log. handling group'.
       wa_fieldcatalog-reptext_ddic = 'Log. handling group'.
      APPEND wa_fieldcatalog TO it_fieldcatalog.
      l_pos = l_pos + 1.
    Please let me know why the added field was not displaying automaticaly in the output screen.
    Regards,
    Reddy

    hi,
             try this
    clear wa_fieldcatalog.
    wa_fieldcat-tabname       = 'ITAB' ( give the internal table which has the field LOGGR)
    wa_fieldcatalog-fieldname = 'LOGGR'.
    wa_fieldcatalog-ref_tabname = 'MARC'.
    wa_fieldcatalog-col_pos = l_pos.
    wa_fieldcatalog-outputlen = 13.
    wa_fieldcatalog-seltext_s = 'Log. group'.
    wa_fieldcatalog-seltext_m = 'Logistics group'.
    wa_fieldcatalog-seltext_l = 'Log. handling group'.
    wa_fieldcatalog-reptext_ddic = 'Log. handling group'.
    APPEND wa_fieldcatalog TO it_fieldcatalog.
    l_pos = l_pos + 1.

  • How to display the Quantity and Rate fields in PO Report

    I am trying to get a Purchase Order report that has the following fields in it.
    1. Ordering Date
    2. Purchase Order ID
    3. Supplier
    4. Product
    5 Quantity
    6. Rate
    7. Amount (Quantity x Amount)
    The reports under the Purchase Order WoC do not display Quantity and Rate.
    Any more information like pointing to an Article or Help Topic is appreciated.
    Regards
    Yagyesh

    Try the Purchase Order Volume report as your starting point.
    I got everything you need onto that report in about two minutes (except quantity which may take longer).
    The report can be found under the reports menu or you can find it under Business Analytics WoC if you have access.
    I have been using the Business Analytics WoC for all of my reporting since it saves me the step of going to each WoC to look for the core reports.
    Jim

  • How to display the same field more than once in  report with diff. filters

    Hello,
    I have an RTF template I built out. There is a 1:M relationship of an opportunity:deal point.
    I want the user to be able to pass the opportunity and then see a report including all the deal points.
    The report looks something like this:
    Date: DP100
    Terms: DP200
    Duration: DP300
    and so on. to simplify things, the date will always be DP100, terms will lways be DP200, etc.
    Where do I set these filters? When using the query builder on the BI Publisher server i don't see anywhere to filter.

    Here is a copied piece of the RTF template illustrating what I'm trying to do in the word template builder.
    Tenant (Signing Entity): <Deal_Point_Value where Deal_point_name = 'DP231'>
    Tradename (D/B/A): <Deal_Point_Value where Deal_point_name = 'DP240'>
    State of Incorporation: <Deal_Point_Value where Deal_point_name = 'DP1330'>
    Landlord: <Deal_Point_Value where Deal_point_name = 'DP1560'>
    Premises: <Deal_Point_Value where Deal_point_name = 'DP144>
    Storage Space: <Deal_Point_Value where Deal_point_name = 'DP235'>
    Off Premises Equipment: <Deal_Point_Value where Deal_point_name = 'DP386'>
    Term: <Deal_Point_Value where Deal_point_name = 'DP940'>
    Options: <Deal_Point_Value where Deal_point_name = 'DP1200'>
    Rent Commencement: <Deal_Point_Value where Deal_point_name = '1136'>
    Estimated Delivery Date: <Deal_Point_Value where Deal_point_name = 'DP123'>

  • How to display the Buyer's signature in PO BI Publisher Report

    Hi,
    How to display the Buyer's signature dynamically in XMLP Purchase Order Report.
    Please anybody help on this.Your help greatly appriciated.

    Hi All once again
    I was able to display the signature on XMLP AP Check Print Report by went through the follwoing Tim's blog http://blogs.oracle.com/xmlpublisher/2006/04/13#a12
    But in Purchase Order report requirement is different. We need to display the Buyer's signature on XMLP PO Report. So, where is the best place to store the buyers signatures.(For example if we have 10 buyers with 10 signatures respectively then after approving the PO, we should display that particular buyer's signature in PO XML Publisher report).We observed that in byuers & User's form there is no attachment feature enabled.
    This is an urgent requiremnt. Please help/guide/suggest to resolve this issue.
    Thanks in advance.

  • Master pages do no display auto page numbering

    This is strange. I set up auto page numbering on the master pages and the document pages display the page numbers correctly. But later on I thought the page numbers were too large so I went to the master pages to change the size and there's nothing. Thinking the page numbers were hidden from view or somehow were white in color (i.e, they were there but weren't being displayed) I chose Select All but still nothing.

    You're a genius. Happy Thanksgiving.

  • How to display the Previous years

    Hi
      CJE0 - 12KST1A costs:budget/actual/commt/rem.plan/assd
    How to display the previous years budget in above mentioned report. at present the report is showing only cumulative value of previous years,2009 and 2010.....
    My requirement is from 2005 to 2009 i want display the value in this report, please through some light on this.
    Thanks
    S.Murali

    Hi
    But i want check the previous years budget for some number of projects not one by one, because the number of project are more.
    The above mentioned solution is for one by one i can check the pervious years budget. But my requirement is collective.
    Thanks
    S.Murali

  • How do I use page numbering and a text block in a footer in Word with the Report Generation Toolkit?

    I am creating a Word document with the Report Generation Toolkit, and LabVIEW 8.2.1. In the report I am using a template that has page numbering enabled in the center. When I try to add a text block to the left side footer, it eliminates the page numbering and adds my text on the left side. I found "Set Report Footer Text" and "Word Set Page Numbering" vi's that may be the clue to this. When I use these two vi's I either get Page 1 of 456789-001 on the left side, or if I reverse the order I get only 456789-001(text) in the left side with nothing in the center. What I would like to achieve is 456789-001(text) on the left footer, and Page 1 of 2 in the center. Is this possible and if it is, then how can I do it?

    Hi SciManStev,
    I have attached a vi where you can see how they can be made to work together. You have to design it such that one follows the other. If you don't design it that way, it results in a race condition and only one of them get executed.
    Good Luck!
    Warm regards,
    Karunya R
    National Instruments
    Applications Engineer
    Attachments:
    SciMan1.vi ‏14 KB

  • How do I add page numbers to my document without the page numbers automatically changing. I do not want the page numbers the software automatically places into my document.

    How do I add page numbers to my document without the page numbers automatically changing? The title page is blank, I can type in 1 on the 1st typed page, but the #1 automatically goes into the next page and will not change.

    Click at bottom of the first page:
    Menu > Insert > Section break
    Click somewhere in the 2nd page (not the header/footer)
    Inspector > Layout > Section > Page Numbers > Start at 1 > Configuration > uncheck use previous headers and footers
    Click into the header or footer of the second page:
    Menu > Insert > Auto Page Numbers…
    If there is anything in the header or footer on the first page that you don't want just select it and delete it.
    If you really wanted to manual place page numbers on each page you will have to use a section break between each and every page. I can't imagine that would be useful.
    Peter

Maybe you are looking for

  • HT1311 Can I have two ITunes accounts at once.  For example one for Canada and the other for France?

    Would someone be able to tell me if I can maintain two I tunes accounts at once.  We  like to downloads movies from the French Itunes movie site but would also like to keep at the same time our Canadian account.  I'm  not to keen on having to cancel

  • Resolution of Pages PDF for offset printing

    I'm making a brochure for my wife's company. I've already made it in Photoshop (on my PC). I've duplicated it in Pages (tri-fold template). The pdf made in PS is about 25MB. The pdf made by pages is about 1.3MB. The printer wants files that are 350pp

  • Report on Account determination errors

    Normally, when billing sometimes you get the account determination errors and then users have to investigate and find solutions.  My user wants to run a report prior to billing to detect any possible errors that prevent the posting to accounting docu

  • Livecycle: Not sure how to create a database to connect to the form

    Trying to create a data base to connect to the form so I can reference to . 1. What does the data base system need to be... (Word, Excell, something else? No Clue here) 2. How do I categorize the cells in the data base to be readable in livecycle for

  • Call Spec in Developer 6i

    Hi Guys, Can I create following function in Forms6i Program Units ? FUNCTION Hello(x varchar2) RETURN VARCHAR2 IS LANGUAGE JAVA NAME 'hello.WishMe(java.lang.String) return java.lang.String' ; I have hello.class in FORMS_JAVADIR Path. IF I load hello.