Setting page layout in Reports 6i doesn't work, gap gets to big.

We are forced to use good old' Oracle Reports 6i because another application uses this to create its forms and reports. The problem is, that we want to print those reports on continuous paper with specific measures. In millimetres it would be 210 mm x 305 mm. We already set the measures of the main part report to those specifications, but it appears that this wasn't enough.
If the report is printed straight from Reports 6i, the first page is all ok, but the second one has an offset of about 10 mm. This offset gets higher on every page, so approximately on page 4, the page is already partly on the next page of the continuous paper. This problem really drives me crazy.
I have studied this forum for a whole afternoon, but I couldn't find an answer. I have read many posts regarding the margin "bug" of Reports 6i, which seems to influence this particular report. As I am completely new to reports and Reports 6i in particular, I would love to get a helping hand here at the forums. Maybe someone can support me here.
Many thanks in advance!

Where you set the measurement ?
Did you follow this ?
@ Report Object Navigator
1. Select Layout Model >> Main Section then properties
set Width, Height and Orientation under Section
Adjust your layout and
Try...
Hope this works..

Similar Messages

  • [svn] 3610: Fixing bug SDK-17173: Setting rotate to a large number doesn' t work anymore.

    Revision: 3610
    Author: [email protected]
    Date: 2008-10-13 17:33:25 -0700 (Mon, 13 Oct 2008)
    Log Message:
    Fixing bug SDK-17173: Setting rotate to a large number doesn't work anymore.
    The Flash Player clamps rotate between -180 and 180. We should do the same now that we're doing some of the calculations ourselves. This clamping logic was added to CompoundTransform.as. Also, clamping logic was added to UIComponent. This is because FP10 doesn't handle values greater than 2^15-1; FP 9 used to handle these values fine. I filed a FP bug for this (FP-749).
    QE: Yes - Please look out for any rotation failures
    Doc: No
    Bugs: SDK-17173
    Reviewer: Ely
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17173
    http://bugs.adobe.com/jira/browse/FP-749
    http://bugs.adobe.com/jira/browse/SDK-17173
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/geom/CompoundTransform.as

    Can we now assume that the touch SDK has been abandonned by Adobe? It's now a year after "should be updated soon", and currently if you try to download the touch SDK from this page you get the Photoshop 3 SDK instead!!!
    I ask as I'm about to remove Touch support from my app; the very few people that use touch are now having problems e.g., timeouts, with the latest version of Photoshop.
    Sandy

  • Server 2008 r2 setting up firewall rule that just doesn't work!

    I have allocated static ip addresses to a group of PCs, then gone to Server 2008 r2 and gone to Windows firewall with advanced security and written a new custom rule. Am blocking internet explorer, have browsed to where it is lodged on PCs, added the ip
    addresses for blocking, in fact followed a detailed set of instructions but it just doesn't work! I am at a loss as to why, can anyone help please, driving me mad now! Thanks.

    Are you applying ADV firewall rules through GPO. If not then you need to create block rules on the clients i think. but I would create a block rule in GPO and link to these PC's OU.

  • Link in my customized Report Template doesn't work – Apex 3.1

    I created a report template based on columns of my report
    My query report is:
    SELECT MEM_NAS ID, MEM_NOM NAME, MEM_DATE_NAIS BIRTH
    FROM ACMT_MEMBRE;
    My customized report template have this Row Template definition:
    <tr onclick="redirect('f?p=&APP_ID.:6:&SESSION.:::6:P6_NAS:#ID#');">
    <td #ALIGNMENT# class="t16data_edit">#NAME#</td>
    <td #ALIGNMENT# class="t16data_edit">#BIRTH#</td>
    </tr>
    This would redirect to the page 6 when user click anywhere on a row but it doesn’t work.
    I have this error message:
    CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');">
    I realized that problem is caused by #ID# because if I hardcode this ID, it works.
    How can my report template get the “ID” from my query report ?
    Apex version: 3.1
    Edited by: mario_romero77 on Jun 8, 2012 10:06 AM

    mario_romero77 wrote:
    I created a report template based on columns of my reportAlways post code wrapped in <tt>\...\</tt> tags to prevent the forum software mangling it.
    My query report is:
    SELECT MEM_NAS ID, MEM_NOM  NAME, MEM_DATE_NAIS  BIRTH
    FROM ACMT_MEMBRE; My customized report template have this Row Template definition:
    &lt;tr onclick="redirect('f?p=&APP_ID.:6:&SESSION.:::6:P6_NAS:#ID#');"&gt;
    <td #ALIGNMENT# class="t16data_edit">#NAME#</td>
    <td #ALIGNMENT# class="t16data_edit">#BIRTH#</td>
    </tr>
    Is the report template definitely of type Named Column (row template) (defined on App Builder page 4000:4654) and not Generic Columns (column template) (defined on page 400:258)?
    Note that the <tt>#ALIGNMENT#</tt> substitution string is not supported in named column templates. Set column alignment explicitly using HTML attributes in the template, or use CSS.
    This would redirect to the page 6 when user click anywhere on a row but it doesn’t work.
    I have this error message:
    CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');">
    {code}Where do you see this? It looks like there's a mismatch between the report columns returned by the query and those referenced in the report template. Or the data contains unsafe HTML characters that aren't being escaped.
    Yes, my report query has a column called ID and it's set as Hidden. This could be the problem. In a report based on a named column template any columns referenced in the template must be +shown+ in the report, even if (as in this case) the column value is not visible to the user: the positioning of the <tt>#ID#</tt> column placeholder in the <tt>onclick</tt> attribute rather than in a table cell is what makes it "hidden". *The Show checkbox for the ID column must be checked.*
    From the gobbledygook being generated it looks like there could be a row selector checkbox column in this report as well? Named column row templates must include substitution placeholders for every shown column. It's also advisable to keep the columns in the same order in the SQL, report column attributes and row template.
    Something like
    {code}
    &lt;tr onclick="redirect('f?p=&APP_ID.:6:&SESSION.:::6:P6_NAS:#ID#');"&gt;
    <td class="t16data_edit">#CHECK$01#</td>
    <td class="t16data_edit">#NAME#</td>
    <td class="t16data_edit">#BIRTH#</td>
    </tr>
    {code}
    I realized that problem is caused by #ID# because if I hardcode this ID, it works.
    How can my report template get the “ID” from my query report ?If the above doesn't help then the easiest way to troubleshoot this would be for you to upload the app to apex.oracle.com and post guest developer credentials for the workspace so we can see the whole thing: template, SQL, and report attributes. Otherwise we're likely to and up with a lot of tedious to and fro here posting bits of code and attribute values.

  • Sub-report link doesn't work at run-time

    We have a main report and a sub-report linked to main-report. On clicking the sub-report link in the CR 2008 designer, sub-report page with data is rendered properly. Same doesn't work programmatically at run-time using Java SDK library (JRC). Any thoughts/suggestions?

    Hi,
    I am facing same problem. Please help.
    Thanks,
    Chanchal

  • APEX_ITEM report - SORT doesn't work

    Hi,
    For the following report, the SORT doesn't work. I've also tried with the "Report Attributes", but same result. Does someone know is there a way to make it sorted or can confirm it's not possible.
    Thanks.
    SELECT
    APEX_ITEM.CHECKBOX(11,id_cc_delai_recueil) id_cc_delai_recueil,
    APEX_ITEM.HIDDEN(12,id_cc_delai_recueil)||APEX_ITEM.HIDDEN(13,id_cc_regle)||APEX_ITEM.TEXT(14,numdelai,3) numdelai,
    APEX_ITEM.SELECT_LIST_FROM_LOV(15,typedoss,'DOSSIERS OU DOCUMENTS',NULL,'NO') typedoss,
    APEX_ITEM.TEXT(16,suppdoss,3) suppdoss,
    APEX_ITEM.SELECT_LIST_FROM_LOV(17,rem_suppdoss,'REMARQUE_DELAI',NULL,'YES','','') rem_suppdoss,
    APEX_ITEM.TEXT(18,perioactif,3) perioactif,
    APEX_ITEM.SELECT_LIST_FROM_LOV(19,rem_perioactif,'REMARQUE_DELAI',NULL,'YES','','') rem_perioactif,
    APEX_ITEM.TEXT(20,periosmact,3) periosmact,
    APEX_ITEM.SELECT_LIST_FROM_LOV(21,rem_periosmact,'REMARQUE_DELAI',NULL,'YES','','') rem_periosmact,
    APEX_ITEM.SELECT_LIST_FROM_LOV(22,dispoinact,'DISPOSITION1',NULL,'NO') dispoinact,
    APEX_ITEM.SELECT_LIST_FROM_LOV(23,rem_dispoinact,'REMARQUE_DELAI',NULL,'YES','','') rem_dispoinact
    FROM
    cc_delai_recueil
    WHERE id_cc_regle = :P52_ID_CC_REGLE
    ORDER BY
    3,
    2

    Paulo,
    Remove the Order By clause from your Select statement and then use the Report Attributes to determine your sort order.
    Jeff

  • Export reports views doesn't work

    export the report view's in a file doesn't work. The file is created but still empty. Workaround is to get the sql and execute it in worksheet edit and cut and past the result in a excel sheet. It woul be better if the export works fine.

    This is working fine for me.
    What version of SQL Developer are you using?
    What OS are you on?
    What report did you run?
    What type of output did you select?
    -- Sharon

  • Report script doesn't work

    Hello everyone,
    Not sure what I am doing but for some reason my report scrip doesn't seem to be working. I can't understand why, the syntax is correct as far as I can see.
    <Column (Sparse1)
    Sparse1
    <Row (Dense1,"S2,D2,S3,S4,S5,S6,D3,S7)
    D1 - L0 member
    S2 - L0 member
    D2 - L0 member
    D3 - L0 member
    S3 - L0 member
    S4 - L0 member
    S5 - L0 member
    S6 - L0 member
    S7 - L5 member
    Actual code
    <Column (Period)
    Jan
    <Row (Account,Buyer,Currency,Version,Year,Site,Seller,Scenario,Supplier)
    Profit
    Buyer001
    Dollar_USD
    Draft_version
    Y2013
    Site001
    Seller001
    Budget
    Total_Supplier
    When I execute this, I don't get anything, when I have the same combination in Excel, I can see a figure.
    Any insight into this would be grateful.
    Edited by: N13 on May 14, 2013 2:14 AM
    Edited by: N13 on May 14, 2013 2:15 AM

    Ignore, it's fine. I manage to solve it, turns out that I didn't put the "!" sign at the bottom.

  • Broken links report generator doesn't work

    I found a website that didn't work with Firefox 3.6.15. I selected the Report broken website menu item. Typed in the problem description and clicked the Submit button. The popup broken link report continues to show 'sending report' with an in progress bar for the last 10 minutes! Apparently report sw cannot contact Firefox server to send report.

    Mozilla Website Evangelism has ended, the '''Report Broken Website...''' function is gone in 4.0 & later versions, and the server was shutdown in December - which is the problem you are experiencing. You can use the Submit Feedback... feature in the Help menu in 4.0 & later, but if the report is about a website that doesn't work properly in Firefox, Mozilla isn't going to contact the website and encourage them to fix their issues.

  • User's Page Layout in Adobe XI does not work

    I'm having a hard time to configure the default page layout on my Adobe Reader XI version.
    It's really driving me crazy, I've already tried to edit my user preferences as "single page continuous" and "fit width", though every single document opened by the "latest and best version of Adobe Reader" is in "single page" and "100%"...
    All right... It's very annoying indeed, though it's not the worst part yet. Having assumed it's just impossible to make a real "user default layout", I've tried to adjust it manually, but when clicking at any other page, the freaking "single page" and "100%" zoom come back!
    I've seen people with the same problem in other forums forum before, but no one had a clue how to fix it.
    Thanks in advance,
    Vitor

    While I'm not sure how many different problems might cause the same symptom, the only time I've seen something easy work to fix this is a change in Preferences > Documents > Open Settings. The checkbox Restore Last View Settings When Reopening Documents overrides the settings in Preferences > Page Display > Default Layout and Zoom. I would say though, that in the case where this worked, the view did not reset as you paged through the document. That sounds horrible.

  • After installing: pages in inverted colors | numbers doesn't work

    I've installed iWorks 08 on my MacBook Pro 2.8GHz but it doesn't work properly. The colours are wrongly presented. A kind of inverted.
    I cannot work with these settings. If you prit it comes out ok.
    But while working everything is white, white, white...
    Does anyone know this error?
    All the best,
    Martin

    When did you install Pages08? Recently? You have to update iWork08 to latest version. Pages is in version 3.0.3. Use the Software Update check or for Pages this link [http://support.apple.com/kb/DL808]
    Which version of Snow Leopard do you have? You state 10.6. The other day version 10.6.4 was released. Download the Combo version from here [http://support.apple.com/kb/DL1048]

  • Home page Hero Orbit slider suddenly doesn't work

    We're developing this site http://scholzandbarclay.businesscatalyst.com based on the http://uguru-interior-design-us-feb52014.businesscatalyst.com template. After making a few minor changes late yesterday, the hero orbit slider suddenly doesn't work. All changes made were rolled back to working version, yet the hero still doesn't work.
    I have recopied all the page code from the uguru-interior-design template into the scholzandbarclay site, which also did not work. All other code, scripts, styles have been checked. Can't find anything. However, when the pages render there is a difference (see screen captures)
    in this one, the ul has no orbit
    in this one, the script has added the orbit code.
    Again, all scripts, code, styles have been checked.
    What am I missing?
    Thanks!

    Hi,
    Please [https://support.mozilla.org/en-US/questions/911441 see this.] You may also want to check if this happens in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode.]

  • Can't set up windows on bootcamp, keyboard doesn't work

    okay, i wait through the agony of the windows install non-sense, and it comes up to the part where i have to set up windows (name, accounts, etc.). But when i go to enter all my info, my keyboard doesn't work, or my mouse for that matter. I have a 24" iMac with the wireless keyboard and mouse. I don't know what to do!
    Message was edited by: jayqUon

    Jay:
    Below is excerpt I took from [HERE|http://support.apple.com/kb/HT1461] which mandates using an internal keyboard or a USB keyboard/mouse to install Windows via boot camp.
    Requirements
    To use Boot Camp, you need:
    1. *An Intel-based Macintosh computer with a built-in or USB keyboard and a built-in trackpad or USB mouse.*
    2. Mac OS X 10.5 or later
    3. The latest firmware updates available for your Intel-based Mac.
    4. At least 10 GB of free space on your startup disk (single partition).
    5. A full, single-disc version of Windows Vista, Windows XP Home Edition or Professional with Service Pack 2 or later. Boot Camp does not include Windows. You must provide your own properly licensed installation disc.
    Important: A Windows XP installation disc must include Service Pack 2 (SP2). You cannot install an earlier version of Windows and upgrade to Windows XP, nor install an earlier version of Windows XP and update it to SP2.
    6. Boot Camp Assistant (find it installed in /Applications/Utilities/ on Leopard).
    Axel F.

  • After installing Mavericks on my MacBook Pro 2009 (japanese keyboard) the layout doesn't work. I mean if I press the @ button the è symbol comes out. I tried to change the layout in Preferences but doesn't work. Could anyone help me please?

    Hi there
    after installing Mavericks on my macbookpro 2009 (Japanese keyboards) the layout doesn't work anymore. I mean, if I press the "@" button the "è" symbol comes out. I did already change the layout in the Preferences but it didn't work.
    Could anyone help me please?

    Apple has changed the way Kotoeri keyboard layouts work.  You should be able to get normal behavior if you activate the US layout and switch to that just before using Kotoeri.  Here is also an Apple note on the topic with another suggestion:
    http://support.apple.com/kb/TS5284
    Be sure to tell Apple you want this changed back to the way if was in 10.8 and earlier via
    http://www.apple.com/feedback
    If you know Japanese well, you might ask on the Japanese discussions whether someone has found a better fix for this:
    https://discussionsjapan.apple.com

  • Pages app is slow and doesn't work anymore

    Recently, with the new update; pages app is NOT working on my ipad and it doesn't work when trying to pull it up on icloud to work on a document. It is unresponsive to editing and typing. Using a bluetooth keyboard is almost worse than the onscreen keyboard. I have found alot of people are having this same issue with pages; does anything work. I have tried just about everything to try to get this app working as it used to.

    There may be a problem with the server. For questions about web access to .Mac services, you should post in the .Mac forum for better response.

Maybe you are looking for

  • Which HD to upgrade with?

    So, a friend just gave me two 2,5" drives. Both samsung. a 320gb 5400rpm and a 500gb in a case. Can't tell what rpm. My current set up is MBP 2.16ghz 3gb ram 250gb wd hdd. The HD was originally a 120gb. Now, I'm thinking of sticking the 320gb in the

  • ITouch flashing colors wildly, won't reset, help!

    My friend's 1st gen iTouch suddenly started wildly flashing bars and rectangles of color when you turn it on. The only way to stop it is to do a reset (holding down the top and bottom buttons for awhile). Unfortunately, the same thing happens when yo

  • Substr function fails

    hi there, can anyone tell me why a simple substr would throw an error if the target varchar assignment isn't three characters larger than the length provided to the substr function? can anyone tell me why this: declare v_legal varchar2(200); v_disp_t

  • Pages comments panel open with every document

    For whatever reason, Pages keeps opening up the comment panel on the left side of my Pages documents when I open them, even when there isn't a single comment added to the Pages document. I have to manually close the comment box and then save the file

  • Can I use Bluetooth to sync Blackberrry Bold diary and contacts with Desktop Manager (versions 6 or 7)?

    I have successfully set up a Bluetooth connection with my PC.  Can anyone tell me it is possible with either (or both) versions of the Desktop Manager software?  (i.e. update all info without need for a cable connection using a Blackberry Bold 9900)