How to divide RTF data to several pages?

Hi everybody,
I created an RTF file from rdf. In my rtf,
<?start:body?> For
<?if:GROUP_NAME1 = ‘C’ and GROUP_NAME2 = ‘B’?>
<?NAME?>
<?SURNAME?>
etc.
Here a text which contains the number of table data for these groups such as <?PERSON_NUMBER?>
person_id
address
post code
<?end if?>
<?if:GROUP_NAME1 = ‘C Grubu’ and GROUP_NAME2 = ‘B Grubu’?>
For - a different for here
<?PERSON_ID?>
<?ADDRESS?>
<?POST_CODE?>
<?end if?>
End
<?if:GROUP_NAME1 = 'A'?>
Different text here accordingto group name.
<?split-by-page-break: ?>
<?table-footer?>
<?end if?>
And here is the question. The data in the table (for group B and C) can be several numbers which I can not fit to one page so it continues to second or third pages, or more pages. But in those new pages, I also want to put the upper side to that page. I mean, I want to divide my data, with it's header side. But there is also a problem which is about <?PERSON_NUMBER?>. Because it has to be equal to number which those page include.
I wish I can tell my problem.
I will be very very greatful if anybody can help.
Thank you so much.

More details would be helpful

Similar Messages

  • How to Hightlight the Data in Jsp Page

    How to Hightlight the Data in Jsp Page,
    I am doing doing search page,based on values given search page those are sent to servlet,in servlet based on some conditions if particuler id i am getting then i am redirecting to Respective jsp page with highlight the data from database..
    Thanks in advance...

    "Highlighting data in JSP sounds strange".
    Without looking at your search specific algorithms I feel you are finally going to display a page (HTML content) to user which contains highlighted text. Highlighting is not directly related to server side language you use (JSP, ASP, PHP etc.). This is purely HTML and CSS. However, server side script (such as JSP) should generate HTML content for getting highlight effect.
    Following HTML shows highlighted text using background-color property on span element.
    <html>
      <head>
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
      </head>
      <body>
          <p style="font-size:1.1em">This is a long paragraph which contains <span style="background-color: yellow;">highlighted text</span> and non highlighted text.</p>
      </body>
    </html>Thanks,
    Mrityunjoy
    Edited by: mrityunjoy on 14 Jun, 2010 3:30 AM

  • How to display all data on one page in web app

    Hello.
    So I have web app JSF (IceFaces framework) + JBoss all Crystal Report working perfectly. So I have page with Crystal Report tags (e.g.
    <bocrv:reportPageViewer reportSource="#{crystalReport.reportPath}" ...
    in this report I have table with some data (data from DB) and I want to display this data on one page. Unfortunately now this data are moving to the next page and unfortunately I even donu2019t know how switch to the next page (I see only info e.g. 1with 2).
    So how to display this data on one page if its impossible how to torn on pagination.

    So I canu2019t do this, I canu2019t display all data on one page (until Iu2019m using JSF tags)?
    In JSF tags Iu2019m setting only path to file. In my bean Iu2019m using u201CReportClientDocumentu201D object itu2019s easy way to load report file (u201Copenu201D method) and set parameters (u201CgetDataDefController().getParameterFieldController()u201D method) and also connect to data base (u201Clogonu201D method) but I havenu2019t this property u201CsetSeparatePages(boolean)u201D.
    Maybe Iu2019m doing this wrong and there is a simpler way maybe I can use somehow u201CCrystalReportVieweru201D please give my any advice.

  • How to clear the data in my page after user enter submit button

    hi......
    how to clear the data's in my page after user enter submit button. Actually while pressing first time itself the data is uploaded in database.

    Hi Nazeer,
    Instead of doing it on the same button better create a separate button for this functionality, As per my understanding you want to clear these fields to create new record so that you can enter a new record so for this you just need to insert a new row in VO.
    Still if you want to do it on the same button then you need to put the check that particular record is not dirty if it is not then create new record else create new record.
    One more thing if you will clear on the second click of a button how will you update your record??
    Regards,
    Reetesh Sharma

  • How to generate row numbering over several pages in PAGES??

    How can I generate row numbering over several pages in PAGES??
    e.g. Page1 1-35
    Page2 36-...

    Hi Labrat,
    My suggestion would be to create a Template in the Page Layout mode. This template would have a 1-column Table to present the line numbers and a Text Box for the Body Text. If you want the Line Numbers to stay in alignment with the Body Text, set the spacing for both to Exactly. Set the Table Cell Borders to None. The faint cell borders that you see in the following example are there because I am in View Layout mode. They will not show when printed.
    For my example I have used Format > Advanced > Capture Pages to create a Pull-down +Page option for a Numbered Line Page. You can Capture as many versions of your numbered pages as you like to avoid having to modify the Line Numbers on successive pages.
    Here's my example:
    Regards,
    Jerry
    Message was edited by: Jerrold Green1

  • How to keep entering data in web pages

    hi,
    i am using ADF 11g 2 release. I have remote application connect with ADF jar lib and local application. when i enter data to my local application and redirect to remote application and enter the data their also. But when I link to local app page via url view but I entered data is not there. I am not commited any page data. In remote app... alos link but there also no data. how to keep them??
    all page in taskflow and they connect with control flow case. I made Auto submit true and immediate true for text component.. but no any change.
    can not use any setting changes? Need java coding for both application??
    hoping chance..
    thanks.

    hi,
    I have developed ADF 3 web applications. 2 of them are connect as ADF jar lib files in other application. That application name is local application and other 2 mentioned as remote application(jar lib files). those are in taskflowcall. IN my Local Application which has Application Module. so I selected remote application's Application modules as Application Module Instances. Then in my Local Application DataControl which include that added Application Modules inside the local application DataControl. which are in nested. Remote application DataControl also appear in the local app DataControl.
    Problem is I want to save all applications data through my local application. therefore I link to first remote app and enter data but not commit ,then come back to local app.. and enter data and again goto first remote app again, BUT entered data Not there. so I want to keep them and save all 2 remote app data and local app data.
    DCDataControl dc = bc.findDataControl("TestRemoteAppDataControl"); // *<-- this is one of my remote application Data control name..*
    ApplicationModule am = (ApplicationModule)dc.getDataProvider();
    am.getTransaction().commit();
    dc.commitTransaction();
    this code is not worked. BUT local app data only saved using below code...
    BindingContext bc =BindingContext.getCurrent();
    DataControlFrame dcf= bc.findDataControlFrame(bc.getCurrentDataControlFrame());
    Collection<DCDataControl> dcCol =dcf.datacontrols();
    for(DCDataControl dCDataControl : dcCol) {
    if(dCDataControl.isTransactionDirty()){
    try{
    dCDataControl.commitTransaction();
    catch(Exception e) {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    facesContext.addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR, e.getMessage(), null));
    e.printStackTrace();
    thanks ,hopping chance.
    any who know this??
    thanks.

  • How to Display RTF data with images from SQL database in Crystal Report

    I am using Crystal report in my WPF application, I have generate Question Paper Report, in which have Question with images. Question with images are stored in SQL Server in rtf format, I want to generate Question report with RTF Text and Images in report

    Hello Sir,
    I am still Facing problem in Crystal report generation with RTF Data (Text + Images),
    I am storing Questions in SQL Server which are RTF Format, Questions have Text + Images..
    I changed field data type then also i didn't get image in Crystal report
    if i browse an image n stored that in DB then its displaying in Crystal report, but when i pasted that image in RichTextBox and saved that in DB then no data displayed in Crystal report.
    My Table Structure is
    Table Name: tblQuestions
    field :    Questions Varbinary(max)
    I tried with nvarchar(max) also but its aslo not working

  • How to change the date created in pages?

    Switching from windows to Mac OS.
    I thought of using pages to store all my documents but am wondering if I could preserve when these documents were created as a form of memory. They input them as date entered into pages. Any ideas ?

    This is one of those things Apple changed.
    Click on the + icon on the Toolbar to Insert > Date & Time > then right click on the date in the text and choose your options.
    Peter

  • How to print contionus data in next page

    Hi! All
    I'm displaying data using classic list display.
    my requirement is if my total no. of records is 10 need to display first 5 records in 1st page and the next 5 in next page along with these records i'm displaying other details which are like header details for the document. thus while printing next 5 records in next page need to print along with those hedar details .
    how to print it.
    Regards
    Kv

    hiiii  Kv
    the complete information on printing ALVs  has been given in the following ...link
    go through it
    http://help.sap.com/saphelp_sm32/helpdata/en/a6/6dee408a63732ae10000000a155106/content.htm

  • How can I take data from multiple pages documents and put them into a numbers table?

    I produce invoices in pages, with dates, invoice numbers, references and amounts due. I want to take all this data from multiple documents and transfeer it to a single numbers table. Is this possible and if so, how do I do it. I know I can do it the other way round with mail merge but I can't figure out how to do it this way round?
    Thanks,
    Keith

    The data is spread throughout a pages document in specific areas here's a copy of an invoice for you to have a look at.

  • How to get a date on different pages?

    Hey everyone, I am working on a daily planner for the office and have a script that automatically generates the dates but I don´t know how to get each of the dates on a different page. I'd really appreciate if anyone could help me get each date generated by the script on teh following page of my 365 page document. The scrip is:
    var months = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ];
    var length = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
    var days = [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ];
    count = 0;
    day = 0;
    month = 0;
    weekday = 5;
    str = "";
    while (count < 365)
    count++;
    str += days[weekday]+", "+(day+1)+" "+months[month]+"\r";
    day++;
    if (day >= length[month])
      day = 0;
      month++;
      if (month > 11)
       month = 0;
    weekday = (weekday+1) % 7;
    app.selection[0].contents = str;
    Tanks!

    Try this,
    app.activeDocument.viewPreferences.rulerOrigin = RulerOrigin.pageOrigin;
    app.activeDocument.zeroPoint = [0,0];
    with(app.activeDocument.viewPreferences){
        horizontalMeasurementUnits=MeasurementUnits.points;
        verticalMeasurementUnits=MeasurementUnits.points;
        rulerOrigin=RulerOrigin.pageOrigin;
    var months = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ];
    var length = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
    var days = [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ];
    count = 0;
    day = 0;
    month = 0;
    weekday = 5;
    str = [];
    while (count < 365)
    count++;
    str[count]= days[weekday]+", "+(day+1)+" "+months[month]+"\r";
    str1 =str.toString();
    day++;
    if (day >= length[month])
      day = 0;
      month++;
      if (month > 11)
       month = 0;
    weekday = (weekday+1) % 7;
    for(i=0;i<document.pages.length;i++)
    var myTextframe = document.pages[i].textFrames.add({geometricBounds:[0,0,50,150]});
    myTextframe.insertionPoints[0].contents=str[i+1];
    Vandy

  • How to print large image across several pages?

    After using Appleworks for years I finally got Pages 09. In AW I used to be able to use drawing app to print large (36 x 36) images over several pieces of paper, simply by adding pages to the document. I would then tape the pages together to form the large poster. I can't see anyway to do this in Pages. It won't let you print any larger than 11x17, nor let you add pages to a layout to print a large image. Anybody know how to do this, or did I just waste my money?

    Welcome to Apple Discussions
    Yvan Koenig discovered with iWork '08 that you can span images across pages in a Numbers document as a substitute. Select & delete any tables & then treat the Numbers document as a draw document. You shouldn't need to add pages like in AppleWorks as Numbers adds them as needed to display all of the content.

  • How to show database data in jsp page?

    actually i m doing a small appliaction of quiz test.
    where i m keeping my question and answers in the database.
    now i want to pull questions from the database and display in the jsp or html page.for each question i m having 4 options 4 them.
    like this user has to answer the question and display the resuklt in the end.
    so how can i do this?
    can i get any example or source code for this from any sites?

    Hope this will be ur assignment. Pls try to start ur assignment and post ur doubts with ur code. So that some one can help u.
    Cheers.

  • PSE 8: How to create a pdf with several pages?

    I want to deliver DINA4-Sheets (thats bacic European standard size of a sheet of paper for let's say writing an official letter) to print out in a copy-shop. Now the copy-shop-owner says, for him it will be much easier if I hand in my 10-20 pages in one pdf-file with 10-20 pages and not 10-20 single-paged pdf-files, cause then he only needs to do the colour-routines and adjustings once and not many times. Now there is the problem, in Elements 8 there is the option to save a psd as a pdf-file, but I don't know how to add the other files and make a pdf with more pages than just one. May be I need to do that with Scribus, a freeware prog.

    Hello Barbara!
    Your answer just proved extremely helpful. It worked that way. I first created a pse-file in the right document size. Then with copy and paste I imported the first page and flattened it to one layer. Then I chose to create the second pse-page, that shows automatically in the menue then with the pse-file open. Into the second page again with copy and paste I imported the second single sheet and flattened the second page too to one layer and so on. That way it works. Finally I first save in the pse-file and then save the whole thing as pdf.
    Very easy to do. Thanks a lot!

  • How to batch load data to several tables

    Hi,
    One customer have such data structure and have large number of data(arround 10 Million). I think it's proper to convert them to data that SQL loader can recognize and then insert into Oracle 8 or 9. The question is how to convert?
    Or maybe to insert them one by one is simpler?
    1:     Component of Data
    The data file consists of nameplate and some records.
    1.1 Structure of nameplate
    ID     datatype      length(byte)     comments
    1     char     4     
    2     char      19     
    3     char      2     
    4     char      6     records in this file
    5     char     8     
    1.2 structure of each record
    ID     datatype     length(byte)
    1     char     21
    2     char     18
    3     char     30
    4     char      1
    5     char 8
    6     char      2
    7     char      6
    8     char      70
    9     char      30
    10     char      8
    11     char      8
    12     char      1
    13     char      1
    14     char      1
    15     char      30
    16     char      20
    17     char      6
    18     char      70
    19     char      5
    24     bin(blob)     1024
    25     bin(blob)     defined in ID19
    2: data file and table spaces in database
    dataID 1-13 of each record insert to table1,
    14-18 to table2, and 19,24,25 to table3
    Is there a method to convert them to some data that SQL loader can input and then at a whole load into Oracle 8 or 9?
    Thanks &Regards.

    I've check the Oracle Utilities docs, but did not find a way to load so many data files at a batch action.
    In my view the solution consist in two ways:
    1, Load each of them individualy individually to different tables by some programme. But the speed may be problem because the uninterrupted db connections and close.
    2, Convert them to one or three files then use SQL loader.
    But either isn't much easy, I wonder if there's a better method to handle.
    Many thanks!

Maybe you are looking for

  • TNS:connection timeout error

    Hi, I have installed oracle 10g in my system. the tnsnames.ora file contails the following: TEST = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.2)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = test) and sqlnet.ora

  • IMac retina - screen random stripes / grain

    Hi, Recently I found an unexpected and weird issue during my work on my iMac, without any reason the screen got lots of grain and diagonal stripes in random way. It doesn't seem to be an hardware problem, since I got some screenshots (check below) an

  • Can OBIEE 10.1.3.4 work with Oracle 11g 64bit?

    I Installed Oracle 11 g 64bit with JDK 64bit on my windows 7 Home Premium 64bit machine . After this i installed OBIEE 10.1.3.4 . Now OBIEE needs 32 bit JDK. How do i solve this? Can OBIEE 10.1.3.4 be used with oracle 11g 64 bit edition??

  • Conditions vs .rtf filter

    Working with FM 9.2p250 and a silly request - 1. I open a document where I've been tracking changes with conditions since 2002. Only the last release's changes are visible, 'cause that's what I've specified with Show/Hide Conditional Text. 2. I selec

  • SCCM 2012: Active Directory Group Discovery, Delta Discovery?

    Hi, Our scenario: *Software is requested via a seperate system which puts AD computer objects in groups *Software within SCCM 2012 is deployed to computer collections *Computer collections query AD groups, in those AD groups the pc's reside *Collecti