I want to display one field in first page only

Hi All
I have a tipical question. I am working on invoice report in which i need to display one field which should display in the first page only. For a second invoice that field should not get displayed. In the first page only it should get display. Is there any workarround for this.
It would be greate help if anybody suggest the solution for this.
Thanks in Advance
Sudheer

Hi
Sorry. My Question is:
I am generating the invoices. If particular invoice lines data extend to next page then invoice header should get repeted in the second page except one field. For each invoice, that filed should get display only first page of invoice and should not come in subsequent pages. For each invoice it should be like this. I am using @section loop to refresh the page numbers for each invoice.
Is there any work arround to display the partiuclar filed in first page of invoice?
Any suggestions highly appriciated?
Thanks
sudheer

Similar Messages

  • Displaying one field in first page and other field in last page (header)

    Hi
    We are using following way to print headers but we need one field (WO START) to display in first page and another field (WO END) to display in last page
    If output is only 1 page then both needs to be printed on same page
    <?for-each@section:G_WORK_ORDER?>
    WO START This needs to be printed on first page only
    WO END This needs to be printed on last page only
    <?for-each:G_OPERATION?> <?end for-each?>
    <?end for-each?>
    Let us know if any fix for this
    Thanks
    Kamalakar.G
    Edited by: kamalakarg on Sep 21, 2012 4:53 PM

    Hi Kamalakar,
    Send me sample XML data and RTF template i will try on my side. email me [email protected]
    Thanks,
    Omkar Deshpande.

  • In reports, i want to display currency field out put with diff currencies

    Hi all
    in reports, i want to display currency field out put with different type of currencies like 1st record in rupees 2nd record in dolors 3rd record in       
    Euros. for this i should not use any tables and any currency fields and any functional modules. pls give replay urgently.

    Hi swamy,
    so sorry, but you have to use some of the objects you do not want to:
    Currency values in ABAP are stored in currency fields (type CURR). If they are stored in structures or database, every CURR field must be connected to a CUKY field (currency key).
    Displaying data using WRITE statement four output on a list is obsolete technique, you may use the use WRITE with the option CURRENCY c to format according to currency c in table TCURX.
    SAP recommends to use ALV technique. If you use ALV to display structure data, then create a dictionary structure with currency value and currency key. The rest goes automatically.
    Believe me: It is much easier and more reliable.
    Regards,
    Clemens

  • In smartforms i want to display one page in A4 and other in A3 size paper.

    1)in smartforms i want to display one page in A4 and other in A3 size paper.  How?
    2) in front page all the values and in back page all the terms and condition of the company. this will b going on for all the printed documents.pls brief me about this.
    Thanks in advance
    gouranga

    Hi,
    In case of sap script u can not. But in case of smartforms u can assign one format for 1 page and 2 format for 2 page it is possible.
    In Global setting -> Form Attributes -> Output Options define your format.
    Rewards points if it is useful.

  • I want to display some fields using the BDC and i want to know thruogh whic

    I want to display some fields using the BDC and i want to know thruogh which transaction these fields are displayed.Could you please help me out.

    You can use JFreeChart which is a free and good tool to generate graphs in Java. It has samples and other guides which you can use to get started...

  • Need to display a field for every page

    Hi All.
    I am trying to display a field <?job_no?> for every page of that job.
    I mean if I select job no from 1 to 10. for Job number 1 the data can be printed in one page or several pages.
    But i need to show this Job number( which we show with BARCODE font) in every page of that job.
    This job is under G_JOB group. In general I used like below
    <?for-each:G_JOB?>
    <?job_no?>
    <?...?>
    <?...?>
    <?...?>
    <?...?>
    <?...?>
    <?end for-each?>
    This is getting printed in first page only. If I put it in header, of RTF file, it is ok if I selected only one job number. But if I select for n number of jobs it is not geting displayed.
    Please help.
    Thanks Vasa.

    Vasa,
    Try this:
    <?for-each@section:g_job?>
    <?job_no?>
    <?start:body?>
    <?data?>
    <?end for-each?>The "start:body" makes everything before that a page header.
    Kurz
    Edited by: Kurzweil4 on Feb 7, 2011 1:15 PM
    Added @section. This will reset the header region for each job.

  • How do I set the wallpaper for the the first page only

    how do I set the wallpaper for the the first page only.I have my ICE #'s as wallpaper but I only want it on the first page

    When you set a wallaper you are asked where you want to set it. Either Lock Screen or Home Screen or Both.
    If you choose Lock screen it will only appear when you wake up your phone.
    If you set it to Home screen, then it wil be set behind the app icons on all your home screens.
    If you choose both, then it will be on both.
    Not sure what you mean by the " have a photo of my ICE in contacts that I am trying to use????" 
    The Photo should be in the Photos App. how is it in contacts?  is it assigned to a contact?

  • ADOBE Form printing terms and conditions back side of first page only.

    Hi ,
    Please let me know how to print only on first page back side in the adobe. I have multiple pages data flow. But i have to print Conditions on the back side of first page only.
    Thnaks in advance.
    Hema.

    Hello Hema,
    Create a master page set.  One for front page and other for back page.
    Make your hierarchy as Front Page - Oddpages
    Back page - Even Pages
    in placement options use, for first page only.
    Thanks,
    Rakesh

  • How to make a summary column appear only once (in the first page only) in SSRS 2008?

    Hello Everyone,
    How to make a summary column appear only once (in the first page only) in SSRS 2008?
    Regards
    Gautam S
    Regards

    Hi,
    Assuming you have test data like this ;
    select 'abc'as [GROUP],'NN' name , 1 id
    union all
    select 'abc' as [GROUP] ,'PP' name , 1 id
    union all
    select 'abc'as [GROUP],'RR' name , 2 id
    Step1  : take Tablix with row group as your group Name .
    Step2 : right Click on Row Group Details -> Delete-> Delete Group Only
    Step3 : In Count Cell use below expression ;
    =CountDistinct(Fields!id.Value)
    Follow this link;
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/b6b45917-0a26-4d15-be46-2c6a2697d6e9/distinct-rows-sum?forum=sqlreportingservices#5ffdee06-c2c8-44ea-a3a5-b958488bb6b5
    Thanks
    Please Mark This As Answer or vote for Helpful Post if this helps you to solve your question/problem. http://techequation.com

  • Printing an ALV Report: Header to be printed on first page only

    Hi All,
    I was just wondering if there's a way such that the header of an ALV report appears on the first page only when the report is printed out?
    Thanks for your replies.
    Edited by: Chris Estanislao on Sep 21, 2010 4:22 AM

    Hi Chris,
    Which ALV technique will you use to print out?? (LIST, GRID or something else...).
    Please give us more information.
    Thanks,

  • Batch OCR first page only?

    Trying to batch ocr the first page only of a group of pdf's.  Is javascript the only/easiest way?  Any scripts that can help?

    http://forums.adobe.com/message/1098742#1098742
    had to delete the batch process and start over for some reason.

  • Want to update one field in MIRO

    Hi Experts,
    During the MIRO transaction, I want to update "Assignment" field in "Detail" Tab according to purchase document number.
    I have to fetch data from Z table using Purchasing document number and update it in Assignment field when user post the document in MIRO.
    Please help me how to do this as i am very new to this moodule.
    Thanks
    Sameer Dhuke

    Hi
    Did you try changing the 'Sort key' in GL master to 010 - Purchase order number
    Thank You,

  • Displaying one currency symbol per page on groups

    I have a report that displays data at grouped levels only.  I need to display the currency symbol only once per page on certain fields.  While this works on the detail section, it's not working on the group header/footer sections.  Does any one know how to limit the currency symbol to one per page on a grouped field?  Thanks.

    Hoperfully this will make my problem a little more clear:
    My report groups on FIELD_A and sums $FIELD_B at the group level.  The report displays Group Footer 1 which contains the group name FIELD_A and the sum of $FIELD_B.  The user can drill down on the FIELD_A group  to see the detail.  I only want the currency symbol for the sum of $FIELD_B to be displayed once on each page - on the first line of each page.  When I format the sum of $FIELD_B field at the FIELD_A group level, the "display currency symbol once per page" option does not work.  I could use a conditional statement to set the currency symbol for the sum of $FIELD_B but I'm don't know how to determine if the sum of $FIELD_B is the first instance of the field on a page.
         GROUP FOOTER1     GROUP FIELD_A     SUM($FIELD_B)
         DETAIL          FIELD_A          $FIELD_B
    Edited by: Susan Scott on Jul 29, 2008 2:37 PM
    Edited by: Susan Scott on Jul 29, 2008 3:51 PM

  • How to Display 10 columns in first page,next columns in second page in smartforms in sap.

    In internal table having 30 columns of data.
    i have to display like
    first 10 columns in first page with page no :1
    second 10 columns in second page with page no :2
    third 10 columns in second page with page no :3
    how to develop this.
    please how develop this in smartforms .
    please help .

    Hi,
    You dont have to divide the data.
    You must be using TABLE node in your smartform to display the table.
    Copy the node 2 times more so that the total table nodes become 3.
    Now, change the headings in each table according to the column you want to display.
    Change the fields of the workarea in the ITEM lines accordingly.
    Add a COMMAND node after each table and set it to go to next page.
    E.G :
    Suppose I have a table with 6 columns and I need to display 2 columns in a table then page break.
    Work area name is WA.
    Then first table will have headings : FIELD1 FIELD2
    Items will have field     :     WA-FIELD1 WA_FIELD2
    COMMAND NODE : Go to Next Page
    Second table will have heading : FIELD3 FIELD4
    Items will have field     :     WA-FIELD3 WA_FIELD4
    COMMAND NODE : Go to Next Page
    Third table will have heading : FIELD5 FIELD6
    Items will have field     :     WA-FIELD5 WA_FIELD6
    So, same table with same work area will be used 3 times, displaying different set of columns in each TABLE node.
    Regards,
    Ashish

  • Dont want to display Faces Message in JSF Page

    we are using seam framework. In our application user authentication is failed i create one FacesMessage like this
    FacesMessage.instance().add("Login Failed"); but this is displayed in top of the page but i want to display above the username and password field so what i did is i create text above that field .
    <h:outputText value="Login Failed" rendered="#{! empty facescontex.maximumServity}"/>
    Its working properly but the problem is in top of the page Login Failed comes from Faces Meassage is also displayed , i dont want to display that message.So i tried to create an message like
    FacesMessage.instance().add(""); then its not display the text...
    so please any giving suggestion regarding this..
    Thanks in Advance

    Sounds like that there is a <h:messages /> element in the top of the page which indeed shows any facesmessage in the queue. Remove that and use component specific <h:message /> elements only. The way that you're handling facesmessages is also bad, it's like a huge roundabout.

Maybe you are looking for

  • Predefined network  model themes

    I am having a problem whilst trying to load one of the above into mapviewer. I have a network model that is working, valid and I can perform analysis using the SQL API. I am trying to create a theme with insert into user_sdo_themes values( 'RAILNET',

  • Create PDF From a backend web page

    Hello, this is my first post on the Adobe Forums I am trying to get a capture of a web page using Adobe Acrobe "Create PDF from Web Page" However, I cannot figure out how to capture a page after I have logged into the site. I thought that Adobe Acrob

  • INVOICE SPLIT AND CONSOLIDATION

    Hi Everyone! Do you happen to know any site that I can search for information on invoice split and consilidation? Or perhaps you can share with me some of the documents you have. I'll promise to reward points for those who'll give me answers. Thanks!

  • Excel 2013 - conditional format with dates

    Hi I have a workbook that logs courses people have been on and I type in the date the qualification needs to be renewed. I would like that cell to change colour when it is so many days before the renewal date using the =today() function. pale yellow

  • Class-path manifest attribute

    Hi, I have a session bean, that references some external classes. I am deploying the application as a ear file. The session beans are stored in a jar file and the external classes are stored in a separate jar file. Both the jar files go into an ear f