To show the 2 parts on every page

Hi,
Within the following jpg file, the 1st highlighted field is a grouped field, and I want to show the 2nd highlighted part as the header of the fields of the detail group. How can I show both the 1st highlighted part and the 2nd one on each page?
http://www.4shared.com/photo/FfOIVmef/t9_online.html
Regards,
edward

Many thanks. I think the way should work and will confirm this.
By the way, I want to see the way to show the words vertically like this
http://www.4shared.com/photo/9VWbcw7z/T11.html

Similar Messages

  • How to add footer at the end of every page

    Hi,
    I need to add some text at the bottom of every page in my application. I have made a footer region where i have put that text component. I have simply included that footer region as the last element of every jspx page. This shows the footer at the end of the content and not at the end of page(which is required).
    Using css like position:absolute;bottom:0px; shows the text at the bottom of bowser window, not page(so, problem for pages having scoll).
    It is not feasible to make any changes in each jspx page. So, what is the way out to achieve this by keeping the change limited to pagefooter region page and/or ss.css
    Note: I am using Jdev10.1.3

    With JDev 11g, you can create pageTemplate however, in 10g though support for page template is not available, you can achieve basic functionalities like this through web template. See sample here:
    http://www.developer.com/db/article.php/3513706/Easy-Web-Templates-with-Oracle-JDeveloper-10g.htm
    And if incase you use JHeadstart tool for development, JHeadstart provides templating facilities too.
    If you want to achieve using CSS, check this example:
    http://www.electrictoolbox.com/html-css-footer/
    regards,
    ~K

  • How to configure CSWP on Category page to show the Published Catalog-item page on Publishing site in a Cross Site Publishing scenario?

    I have created a Cross Site Publishing Environment in SharePoint Online. After connected
    to my catalog. 2 pages automatically created. But in "Category" page, if i click on an item it will bring me to the original path/item located in Authoring site. How to configure Content Search Web Part on Category page to show the Published Catalog-item
    page on Publishing site?
    Can we do this by changing the property mappings?

    Hi,
    According to my understanding, you want users to be redirected to pages in the current site instead of the source page of the search results in a Content Search Web
    Part.
    By default, the hyperlinks of the search results in a Content Search Web Part will point to the source page where the data comes from, when the hyperlink of each result
    is clicked, user will be redirected to the corresponding source page.
    If the data comes from other sites, what page do you want to display when user clicks a search result in the Content Search Web Part?
    Property Mappings can help to control the content of each part of a display template, however, there seems no such property in the search result can help to redirect
    to the pages of the current site, thus, it might not be able to meet your requirement.
    More information about customizing the Content Search Web Part:
    https://www.martinhatch.com/2013/02/customising-cbswp-part1.html
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • How to capture PLSQL package error and show the same in OAF Page.?

    Hi all,
    I am having the requirement to capture the error from a PL/SQL package and show the error in OAF page with meaning full error.
    Assume i am having the create and review page.
    The create page having the employeeLOV input field (non mandatory field).
    (i have the package which will check whether this LOV value is filled or not.. if not given then the user should be able to see a "understandable message.)
    to achieve the above scenario am following the below steps
    In my CO,
    with in try catch i called the am method which will invoke the XX_CUSTOM_PKG.
    so, from the catch it is giving me the message as shown below.
    try
    ((OAApplicationModule)localObject1).invokeMethod("insertData", personParam);--which will call the am method which in turn call the package.
    catch(Exception exception)
    throw new OAException("Review Error: "+ exception);
    Assume there are 2 possiblity of error inside this package one for Date field and another one for Employee field. we don't know which validation the user will encounter.
    For Employee field validation it is giving messag as below
    Review Error: oracle.apps.fnd.framework.OAException: Exception in insertData:java.sql.SQLException: ORA-20500: Employee field is required. ORA-06512: at "APPS.CUSTOM_UTIL_PKG", line 702 ORA-06512: at line 1
    for Date field as below.
    Review Error: oracle.apps.fnd.framework.OAException: Exception in insertData:java.sql.SQLException: ORA-20500: Date field should always greater than sysdate. ORA-06512: at "APPS.CUSTOM_UTIL_PKG", line 702 ORA-06512: at line 1
    But i need to display only the message "Employee field is required" or "Date field should always greater than sysdate" in the screen.. as information.
    Could you please help me to achive the above message? any sample code will be great help for me.
    Thanks,
    Thiru.
    Edited by: thiru_apps on Mar 13, 2012 11:13 AM

    try
    ((OAApplicationModule)localObject1).invokeMethod("insertData", personParam);--which will call the am method which in turn call the package.
    catch(Exception exception)
    //throw new OAException("Review Error: "+ exception);
    /*Try this code*/
    String exception = null;
    exception = exception.toString();
    if(exception.contains("Employee")){
    throw new OAException("Employee field is required");
    else if(exception.contains("Date")){
    throw new OAException("Date field should always greater than sysdate");
    else
    throw new OAException(exception.toString());
    I hope this might help
    Niranjana

  • How do I create a text box or form field on the top of every page of a pdf in XI Pro for titles?

    I generate pdf content from another program and then in Acrobat XI Pro I want to add titles to each page.
    I'm thinking I can use form fileds and duplicate across all pages but how do I make each form filed unique?
    Or could i add a form field to a background and then apply the background to every page in the pdf?
    thanks.

    This type of thing is probably best done with a script, either by adding a uniquely named field to each page or by spawing a template page that contains just the form field (like your last idea). There's not a built-in method for doing this. If you add a blank page to the beginning of the document, create the field in the location you want, and make the page a template, you can run the following script in the interactive JavaScript console (Ctrl+J):
    // Get a reference to the template
    var t = getTemplate("Field");
    // Spawn the template on each page, automatically renaming the fields
    for (var i = 1; i < numPages; i += 1) {
        t.spawn({nPage: i, bRename: true, bOverlay: true});
    To run the code, select it all in the console and press Ctrl+Enter, or Enter on the numeric keypad.
    To make a page a template in Acrobat 11, make sure you're on the page you want to make a template and select: Tools > Document Processing > Page Templates
    and enter a name. I used a name of "Field" in the example above, but you can use anything.
    To create a blank page, you can use the following script:
    newPage({nPage: 0, nWidth: 8.5 * 72, nHeight: 11 * 72});
    for an 8.5"x11" page. Adjust the numbers to match whatever your page size is. It will be added to the beginning of the document and you can then add the field and make it a template. Once the fields have been added, you can remove the template page.

  • Why my firefox 7.0.1 in my ubuntu 11.10 is not show the text in every website it just show the pict and some chineese alphabet? and how to solve this problem?

    my firefox 7.0.1 in my ubuntu 11.10 is not show the text in every website it just show the pict and some chineese alphabet

    Upgrade your browser to Firefox 8 and check
    * getfirefox.com

  • How can I take off FINAL DRAFT written in diagonal in the middle of every pages of my document.

    How can I take off FINAL DRAFT written in diagonal in the middle of every pages of my document.

    Then ask whoever sent it to you to remove it and create a new PDF.
    There is one thing you can check first and that’s layers in the PDF. Perhaps whoever created it put that on a top layer and you can just turn it off.

  • Show the Textbox in all page print

    I need to show the Textbox in all page of report to print . Currently its showing in only one page last page only 
    I need to show the Textbox in
    all page  print
    Need Help!!
    Thanks

    Hi ,
    IF you are showing each page based on group or number of rows.
    If you don't have any group then you must create on group based on number of rows as
    Group expression =Ceiling((RowNumber(Nothing)) /5)
    this will create group of 5 Rows, you can increase it.
    After adding Group Remove Group Column not Group.
    Just add Group footer and merge all the columns in the group footer, add the Text in the group footer.
    you can follow how to create this type of group in below link.
    https://msbitips.wordpress.com/2012/10/18/solution-for-issue-max-65536-rows-limitation-while-exporting-ssrs-report-to-excel-2003/
    Thanks
    Prasad
    Mark this as Answer if it helps you to proceed on further.

  • Hello, I'm pretty sure my fan on my 2009 mac book pro has stopped running. Would this cause the computer to slow down and take for ever to boot up and show the color wheel every time I select an application ?

    Hello, I'm pretty sure my fan on my 2009 mac book pro has stopped running. Would this cause the computer to slow down and take for ever to boot up and show the color wheel every time I select an application ? how involved to replace fan ? cost ?
    thanks

    Not directly, but if the CPU overheats because of incompatible software, that would cause slowdowns. Do not allow the computer to run if the fan is not working unless you wish to fry your motherboard. Please make a Genius Appointment and take it in for service.

  • To Print Static content on the back of every page

    I have a requirement where I need to print "Terms and Conditions" on the back of every page.
    One way of achieving this is to use a preprinted form where one side of it contains "Terms and Conditions". But my customer doesnot want to use that method.
    So I need to prepare a layout template in RTF which when converted to a PDF report should have terms and conditions on every alternate page.
    The challenge is that in case I have a table with multiple rows, so typically spanning across pages, on the back of every page "Terms and Conditions" should be displayed.
    Can I have a solution to this please

    As it was recently discussed in this forum, you can do this by using Word functionality of displaying headers/footers only on Odd or Even pages (in Page Setun). In this case, the preprinted text will occupy entire page footer of the even pages. What you will not be able to do, however, is to increment page numbers only on every odd page. At least, XMLP folks keep silence on how to do this.

  • W3c valid site, initially no error reported by developer toolbar. But upon right click (giving the validation menue), the the toolbar reports two errors: width and height. Despite the fact that every page is validated! On the forum for the toolbar, this i

    w3c valid site, initially no error reported by developer toolbar. But upon right click (giving the validation menue), the the toolbar reports two errors: width and height. Despite the fact that every page is validated! On the forum for the toolbar, this is said to be a Browser error. So, how can this be fixed? I'm using FF 3.6.6
    == This happened ==
    Every time Firefox opened
    == after update from 3.5?

    Hi Sara,
    Can you give us the URL of the page you're having problems with and of the forum thread you mentioned?
    Thanks!

  • My facebook page will not load properly just shows the text headings on page no graphics like there should be.

    My facebook page will not load properly just shows the text headings on page no graphics like there should be.

    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • My iphone 4 died even though it had plenty of battery, and shows no sign of life until i put it on to charge where it shows the apple sign every now and then but just turns off again after a few seconds.....HELP!!!!

    my iphone 4 died even though it had plenty of battery, and shows no sign of life until i put it on to charge where it shows the apple sign every now and then but just turns off again after a few seconds.....HELP!!!!

    Could be a defective battery, you should get it checked by visiting an Authorized Apple Service Provider or Apple Store next to your place.
    Find an Apple Authorized Service Provider

  • ApWo S1-6.2.7 Columns NOT linked? + empty space on the bottom of every page

    Hi,
    this is about Apple Works S1-6.2.7:
    * I would like to have a space of about FIVE empty lines on the bottom of EVERY sheet of my manuscript. How is this possible? (Not just ONE line with a number, as for the page number footnotes.)
    * I would also like to write parts of my script in two columns that don´t interfere with each others. That means f ex I would be able to add extra lines in the first column while keeping everything in place exactly as it is in the second column, and vice versa. (That means the texts in the two columns should NOT be linked to each others.) Can anybody help?? (I have tried with a tabell but they don´t continue on to next page when necessary.)
    - A huge thanx for smart solutions!

    A I do not though understand what a WP document is.
    Where do you open that?
    Neither can I find a table at the Tool Palette, I´m
    afraid...
    WP = word processor document (ie. not aspreadsheet, drawing, etc.)
    Show the Tools palette by clicking the red toolbox icon at the lower left of the document window.
    The Table creation tool is one of the group of four at the top of the Tools palette: Text tool, Spreadsheet tool, Paint tool and Table creation tool.
    Click the Table (creation) tool, then drag a rectangular space the approximate size of the table you want. When you release the mouse button, you'll see a dialogue in which you can specify the number of columns and rows in the table. When you click OK, the table will be placed in your document as a Floating object.
    I also have this question:
    B If I have specific headlines here and there
    within a text that are numbered 1, 2, 3, 4, 5 etc.
    and suddenly want a new numbered headline between f
    ex the headlines numbered 3 and 4. How can I make 4,
    5, 6 etc automaticly switch up one number so the
    string of numbers will maintain perfect? Is this
    possible at all? Thank you for good advice!
    Best regards Martin
    Although it might be possible to accomplish this, the game would not be worth the candle.
    Automatic numbering is available only for "paragraphs" and in the preset "Outline" styles. When "paragraph" numbering is set, it applies only to contiguous "paragraphs." If you change the format to allow unnumbered paragraphs, then change back to 'numbers', the numbering is reset to 1 for the first paragraph of the new set.
    ("paragraph" in AppleWorks's understanding of the word is "all the text up to the next return character.")
    You might be able to define an "Outline" style based on one of the three provided Outline styles (Diamond, Harvard, Legal) that would label Level 1 paragraphs with number and apply no label to paragraphs at other levels. If successful, this should automatically renumber the headings if they were inserted as top level paragraphs.
    See "styles", "outline" and "editing styles" in AppleWorks Help for instructions on how to do this.
    I've left Yvan's post here as it appears to have disappeared from this thread (or came from a separate topic).
    Regards,
    Barry
    Try to do that:
    create a new WP document
    insert a page break so the doc will contain two
    pages.
    Create a table from the Tool Palette.
    You may set the row number to a huge value: try 100
    for instance.
    The table will cross the page break.
    In fact, defining a table from the Tool Palette is
    not the same thing that defining one from the menu
    item.
    The menu item creates an inline table (which of
    course is unable to cross a page break) while the
    Tool Palette define a floating one which may be
    higher.
    We may do that. Is it a good thing is another
    question because the application is unable to cut the
    table by itself so the printed result will be odd.
    Yvan KOENIG (from FRANCE mercredi 13 décembre 2006
    20:27:18)

  • Footer at the bottom of every page

    I need to place a footer in every page of an application. The footer can be a jspf or html file.
    What I want is to place the footer after the last item of each page (can be a table, text field, etc).
    I would like it to render correctly both in IE and Firefox.
    I need the JSP code clip so I can place it in every jsp because the project has ~150 jsp's.
    Thanks in advance,
    Ant�nio

    You could use 'Page Fragment Box'. Check the online help for "Page Fragment Box".
    'This component enables you to include a page fragment in a page. A page fragment is a separate, reusable part of a page that can be included in any number of pages. For example, you might want to put a common a visual element like a header graphic in a page fragment and then include it in all the pages in an application......'
    Hope that helps.

Maybe you are looking for