Header covering the whole page

hi i am displaying the input parameters , to be displayed on the top of the report,
but its taking away more than half afthe page,
and when i am scrolling the report , we could only see the 40% of the total report.

If you writing you input parameters in TOP_OF_PAGE system will considered that as header area. so that portion will not comes under scrolling.
As standard practice usually input values will be displayed at end of the report.

Similar Messages

  • P1006 printing problem, covering the whole page

    I just bought new p1006 printer. Problem is that the whole page is covered (the page is not white - it is gray). The text is ok, but.
    I've tried reinstaling Windows, didn't help. Tried to print from live Ubuntu, didn't print anything (Detected the printer fine. But you try to print something, doesn't report any error and doesn't print anything.).
    The printer is defective? Toner cartrige defective? Something else?

    If you writing you input parameters in TOP_OF_PAGE system will considered that as header area. so that portion will not comes under scrolling.
    As standard practice usually input values will be displayed at end of the report.

  • Color covering the whole pager when printing

    My color laserjet 4600dn, the Magenta color cover the whole paper when printing, and some yellow color spots on the paper too. Is something wrong with the transfer belt? Please help!

    Also, the best way to do this is not to adjust the black and white levels but to adjust the opacity of the image. You will need to make the background layer into a regular layer (double click it in the layers palette and say yes to the dialogs), then use the opacity slider to lighten it.
    Or alternatively you could add multiply layers till you reach the required lightness, then flatten the image.

  • I can no longer see my bookmarks or firefox screen. a bing search box covers the whole page

    i used to be able to use mozilla but now it seems disabled on my desktop eventhough i downloaded the new edition.

    Try the Firefox SafeMode. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    # You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    # Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • Downloaded pictures from e-mail. It covers the whole screen. How do I get back to e-mails?

    I downloaded pictures on my new I-Pad 2 from email. It covers the whole page. How do I get back to my e-mails?

    Double click the Home buttom (bottom button) and it will bring up recent app activity. Then, just click the Mail icon.

  • Refresh the whole page in one case in SPRY

    I have created login page in php, Using spry i posted the
    form in same page,getting response in div section i.e. <div
    id="response_form1" align="center"></div>
    when i supply wrong password the form submitted and error
    message appeared in <div id="response_form1"
    align="center"></div>.
    Now my question is that how can i achieve the whole page to
    be refreshed when i successfully authenticated.
    In other words
    i want the whole page to be changed in one case (redirect the
    whole page).
    and in other case response will be getting in DIV (Not whole
    page will be updated/posted).
    code of Login_ajax.php file is given below .
    login_form.php
    <?
    if(count($_POST)>0){
    $usrname=$_REQUEST['usrname'];
    $pass=$_REQUEST['pass'];
    $cmdlogin=$_REQUEST['cmdlogin'];
    //echo $usrname."<br>".$pass;
    if (file_exists('adm.os')) {
    $lines = file('adm.os');
    for($i=0;$i<count($lines);$i++){
    $auth=explode('||',$lines[$i]);
    $key=array_search($usrname,$auth);
    if(!is_int($key)){
    $msg = "<b>Error : <font color=Red>Username /
    Password not exists or correct ...</font></b>";
    }else if($auth[0]==$usrname &&
    $auth[1]==md5($pass)){
    header("Location: new.php");
    }else{
    $msg = "<b>Error : <font color=Red>Username /
    Password not exists or correct ...</font></b>";
    } else {
    $msg = "<b>Error : <font color=red>The file
    $filename does not exist</font></b>";
    echo $msg;
    }else{
    ?>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <link href="css/samples.css" rel="stylesheet"
    type="text/css" />
    <style type="text/css">
    .product {
    cursor: pointer;
    .hover {
    background-color: #FFFFCC !important;
    .selected {
    background-color: #CCCCCC;
    .style6 {font-size: 14px}
    .style7 {font-size: 12px}
    </style>
    <script src="js/xpath.js"
    type="text/javascript"></script>
    <script src="js/SpryData.js"
    type="text/javascript"></script>
    <script src="js/SpryUtils.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    // Callback function that will update the response_form1 div
    with the response that comes from the server
    function updateResponseDiv(req)
    Spry.Utils.setInnerHTML('response_form1',
    req.xhRequest.responseText);
    //-->
    </script></head>
    <body>
    <table width="100%" height="100%" border="0"
    align="center" cellpadding="0" cellspacing="0">
    <tr><td>
    <form name="form1" method="post" action="login_ajax.php"
    onSubmit="return Spry.Utils.submitForm(this,
    updateResponseDiv)">
    <table width="30%" border="0" align="center"
    cellpadding="0" cellspacing="0">
    <tr>
    <td height="25" colspan="2"> </td>
    </tr>
    <tr>
    <td height="25" colspan="2"><span class="style5
    style6"><strong>Administrator
    Login</strong></span></td>
    </tr>
    <tr>
    <td width="40%" height="25"><div align="right"
    class="style5 style7"><strong>Username
    :</strong></div></td>
    <td width="60%" height="25"><input type="text"
    name="usrname" id="usrname"></td>
    </tr>
    <tr>
    <td height="25"><div align="right" class="style5
    style7"><strong>Passwd
    :</strong></div></td>
    <td height="25"><input type="password" name="pass"
    id="pass"></td>
    </tr>
    <tr>
    <td height="25" colspan="2"><label
    for="cmdlogin"></label>
    <div align="center">
    <input type="submit" name="cmdlogin" id="cmdlogin"
    value="Login">
    </div></td>
    </tr>
    </table>
    </form>
    <div id="response_form1" align="center"></div>
    </td></tr>
    </table>
    </body>
    </html>
    <?}?>
    end login_ajax.php
    --------------------------------------------------------------

    quote:
    Originally posted by:
    NAVISD
    One embiguity i have your alteration to code makes sense but
    can you please clear me how PHP header("Location : new.php"); &
    $msg=true; communicate to javascript response function you have
    mentioned?
    Good point. It actually doesnt .. thats why it wouldnt work.
    I mixed the wrong functions with each other.
    Lemme think of someting..
    Found something, lemme edit
    First, U need to update your setInnerHTML function of
    SpryData with this:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=602&threadid =1306334&enterthread=y
    So just copy paste it over the old innerHTML function
    This function allows u to fireup javascripts true
    setInnerHTML..
    Than change this php code to:
    }else if($auth[0]==$usrname && $auth[1]==md5($pass)){
    header("Location: new.php");
    }else{
    TO:
    }else if($auth[0]==$usrname && $auth[1]==md5($pass)){
    $msg = "<script language="javascript"
    type="text/javascript">window.location="new.php";</script>";
    }else{
    What this basicly will do.. Is add the script inside the div.
    and executes it.. Seems a wierd work a round but it could work
    ^_^

  • How do I load an image w/o loading the whole page?

    On my site I have tons of images (I'm an artist) and in the gallery where my images are viewed, "pastels", I have layed out 9 blocks/squares of images and when one of the blocks is clicked upon, I'd like the image to change in the view, but not reload the whole page. Am wondering how in iWeb it can be done to have just the newly selected image change out instead of the whole page load up. Does this make any sense?
    Help and your comments are encouraged here on how to make it more user friendly.
    http://web.mac.com/makinart

    So, let me understand what you're saying here....
    Textwrangler is a program I can download (free, I see) and it can process a multitude of pages. Once I get the JavaScript (the HTML code that enables the image to change out), (still have to find that one on the net), then I can take the JavaScript, enter it by using Textwrangler into my html coding. How will I know where the JavaScript is to be placed in the html with all that coding, how is a newbie to figure this out? Is the html code for my iweb site located in my "published folder"? Afterwards, I would best save the whole iweb site as a folder, then upload it to .mac as a file? Any changes I make on Iweb and republish will be lost? Yikes! There's something to tell the iweb programmers!
    I can tell you this, that it may be well over my head!

  • Scroll the whole page

    Hello there
    Jdeveloper : 11.1.2.2.0
    my page template should be as following
    header - footer - center - menu on the right
    the question is how can i achieve the template design and at the same time have a scroll over the whole page not just the center.is that possible ? what layout should i use ?
    thanks in advance
    Omar

    Thanks Pandu05
    here is the page
    <?xml version='1.0' encoding='UTF-8'?>
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
            xmlns:c="http://java.sun.com/jsp/jstl/core">
        <c:set var="viewcontrollerBundle" value="#{adfBundle['viewcontroller.Templates.lookupTemplateBundle']}"/>
        <c:set var="msgBundle" value="#{adfBundle['com.beshara.corrs.view.ViewControllerBundle']}"/>
        <af:document title="home.jsf" id="d1">
            <af:form id="f1">           
                    <af:panelStretchLayout id="idd">
                        <f:facet name="top">
                            <af:outputText id="t" value="Top" inlineStyle="background-color: #FF6666;"/>
                        </f:facet>
                        <f:facet name="start">
                            <af:outputText id="s" value="Start" inlineStyle="background-color: #FFFF66;"/>
                        </f:facet>
                        <f:facet name="center">
                            <af:panelGroupLayout layout="vertical">
                                <af:image source="/skins/images/security_home.png"/>
                                <af:image source="/skins/images/security_home.png"/>
                                <af:image source="/skins/images/security_home.png"/>
                            </af:panelGroupLayout>
                        </f:facet>
                        <f:facet name="end">
                            <af:outputText id="e" value="End" inlineStyle="background-color: #66FF66;"/>
                        </f:facet>
                        <f:facet name="bottom">
                            <af:outputText id="b" value="Bottom" inlineStyle="background-color: #6666FF;"/>
                        </f:facet>
                    </af:panelStretchLayout>           
            </af:form>
        </af:document>
    </f:view>the problem now is that the center is not scrolled and when i set the lauyout of the panelGroupLayout in the center to scroll i get the scroll in the center,but what i want is to scroll over the whole page instead of the center.how can i achieve that ?

  • Why do text variables using Running Header character style translate forced returns as a word space in the running head on the first page but close up the space on subsequent pages?

    In an InDesign document that requires 3 different Chapter head paragraph styles (to cope with differrent length headings) I've set up the running heads on the master page with a text variable using the Running header (character style) option. The character style I've assigned to this is an empty character style that is applied to all 3 chapter head paragraph styles.
    Some chapter heads require a forced line break, so that the line breaks are aethesically pleasing. On the first page the text variable translates this forced line break as a word space in the running head, but on subsequent pages it ignores the forced line break. This means that if you have a word space before the forced line break, on the first page you get a double word space and on subsequent pages the running head sets correctly with a single word space. But if you remove the word space before the forced line break in the chapter head text, the first running head sets correctly with forced line break interpreted as a single word space, but on subsequest pages the space is closed up.
    This only seems to be a problem when the character style option is used for header text variables. If a paragraph style is used the forrced line break is interpreted as a a single word space in all instances, both on the foirst page and subsequent pages.
    This would appear to be a bug in how text variables are applied when using the Running header (character style) option. I can't see any other reason why the text variable would beheave differently on the first page and on subsequent pages. There is only one master page, so it isn't a case of their being an error between a main master page and a chapter opener master page.
    Does anyone have any solutionss, or know if this problem has been fixed in subsequent releases of InDesign (I'm using CS6 ID version 8.0)
    Thanks

    Ask in the ID forum...
    Mylenium

  • When I AirPrint it only does small portions of the page. How do I get it to print the whole page?

    When I AirPrint The printer only prints a portion of the page.  How do I get it to print the whole page.

    It would help if you stated what printer you are using and what application you are doing the printing from. Also, what are you printing?

  • In Pages '09, how do I remove the header from the first page of the document in a page layout document?

    Working Pages '09, I am trying to set up a multi-page document using page layout  (not a word processing document, because I'll be using lots of graphics and text boxes), with headers and footers, but no header on the first page, as this will be the title page. The layout>section pane has the 'First page is different' option  greyed out (because it's a word processor only option). Help tells me that each page is it's own section in page layout, but there is no way to have one page without a header and all the others with, as far as I can tell. Am I completely missing something or is there a way around this?
    Also, I want to do this again for additional chapters in the document (or else, I believe, be forced to manually start page numbering for each chapter in a new document).
    Cheers.

    Hi, Barry. I don't know why this solution didn't work for me :-\ Does it matter that my page numbers are in the footer and not the header? When I follow your direction, the pages do get numbered differently. My problem occurs with the last step.
    1. Open the Inspector. (Check!)
    2. Click the Layout button (second from left). (Check!)
    3. Click Section. (Check!)
    4. Make the two settings shown: (Check!)
    5. Go to Page 1 and delete the contents of the Header. (When I do this, the content for all footers is deleted...)
    I really appreciate your insight.

  • Not printing the whole page

    the printer is not printing the whole page it is cutting the right side
    hp photosmart 7520

    My HP Photosmart model 5520 is only printing part of a page.

  • Can't print a graph on the whole page in landscape

    Hello!
    I have XY graph that I want to print on the whole page in landscape orientation (paper A4).
    On the screen the graph is small, so I do resizing, appending image to report, and then printing.
    After sending it to the printer I get preview (from the printer software) and see that the graph uses only approx. 5/6 of the page in the width, in other words the height of the graph takes the whole height of the page (21 cm) and the width of the graph leaves 5 cm of the page unused.
    I tried to change the width and the height of the plot area to get proper ratio, but in vain.
    If I set the height of the graph too large it goes beyond the page, but whatever I write to the width I always get 5 cm of the page unused on the right side. (not including 1 cm of the margin).
    Note: surely, if you set small width you can get more space of the page unused, I'm talking about increasing the width of the graph.
    Any ideas?
    See attached for the vi. I tried to save it for 7.1 version but it can't, so you'll need LabView 8.0 to check it.
    Also in attached you can find the page preview I get before it goes to printer.
    Thanks in advance.
    Rashid.
    Using LV 8.0 Pro on WinXP with printer Canon PIXMA iP1000 (also tested on HP printer, but I think it doesn't matter).Message Edited by Rashid on 06-06-2006 07:09 AM
    Attachments:
    Graph printing out.vi ‏40 KB
    Report preview.png ‏48 KB

    Rashid,
    It could be that you would need to install the entire LabVIEW 8.0.1 update rather than just the updated Run-Time Engine (RTE).  Here is a link to the 8.0.1 update.  If you download and install this version, you can then use the utility to mass compile or compile when you are prompted. 
    Repost if you have more questions!
    Andy F.
    National Instruments

  • How do i get my image to fill the whole page in pages

    I am making an epub book and would like the image on my cover page to fill the whol page without the large white borders around it. How can I do that in pages. I know you can't export a document as an epub if it has floating objects in it but i don;t know if thats a problem for this application or not. Thanks

    Menu > File > Page Setup > create a custom paper size of 9" x 13.5" > set all margins to 0 > Format > Any Printer > OK
    Create your custom cover as a jpeg and crop to 9" x 13.5" or proportional pixel equivalent.
    Import your cover onto the first page of your ebook.
    Inspector > Wrap > Object Placement > Inline...
    Stretch cover image to fill the page.
    Menu > File > Export > ePub > Use first page as book cover image
    Haven't tried this myself, but this is what is recommended.
    Peter

  • How to display the search result without reloading the whole page

    HI,
    I have separate fragments for Search Box to enter keyword and Search Result to display the result. Also I have different sections within the page to put these fragments. So how could I display the results without reloading the whole page.
    Also if I have next button in my search result area, how could I display the search results in next page without reloading all other sections present in our page. Please let me know if any service or idoc function present such that result could be shown in search result section without reloading whole page.
    Please let me know how to restrict page reload for every action within a page.
    Thanks,
    Ramesh
    Edited by: Ramesh_Est on May 27, 2010 3:14 AM
    Edited by: Ramesh_Est on May 27, 2010 8:39 PM

    This is default behaviour of the template of your space. You can create a new page template and than you can create a region for the search results.
    Or you can create a custom taskflow were you use the webcenter taskflows to search for the space.
    Take a look at this white paper:
    Extending webcenter spaces: http://www.oracle.com/technology/products/webcenter/pdf/owcs_r11_extend_spaces_wp.pdf
    and this one:
    Customizing site templates: http://www.oracle.com/technology/products/webcenter/pdf/owcs_ps1_site_template_wp.pdf
    Edited by: Yannick.O on 13-Apr-2010 02:32

Maybe you are looking for

  • GR/IR Key manditory in PO...How can i clear customs duty befor GR

    Hi All, As per the business requirement, i made GR based IR manditory in PO. Now for Import Pos, how can i clear the customs duty before doing GR.] Regards, Naidu.

  • Field with 4000 bytes

    Hi, There are some fields coming from legacy sytem with 4000 bytes of char. Can anyone please suggest any thing how to convert them in to BI system. Thanks in advance

  • Help!!! My iTunes won't work!

    Help!!! I'm using a Max OS X 10.6.8 & just downloaded the latest iTunes update but after the update my iTunes won't open! Thinking that it was just an error with the download, I tried re-downloading the iTunes app but now I can't install either! When

  • Menu bar dissappears, regularly, and I must manuallyiireboot to get it back

    I have an intel imac 24" running Snow Leopard 10.6.5 It is pretty much always on, either running but usually is in sleep mode. After the system's been running for awhile the MENU BAR completely disappears. The only way to restore the MENU is to shut

  • Cs3 and Leopared

    is it jest mine or is any one elces having really slow start time of cs3 stuff and some time lags in them and ether programs after doing a clean install of Leopard.