Changing the Report - RTF layout

Hi.
I run the report output to RTF format. It works fine. But When I open with MS-Word the page layout is showing too small. I can't change layout anything from MS-WORD.
What to do for viewing output of Report - 80x66 (letter size) page in MS-WORD in the same size.
pls. help me.
thanks in advance

Hello Syed,
I tried to reproduce your problem on Reports Builder 6i (6.0.8.22.0) and Reports Builder 9i (9.0.2.1.1). But in both cases, output of a report generated to RTF shows up with proper sizing in MS Word.
If you are able to reproduce the problem with the latest patch, please provide a detailed description of the problem.
Thanks,
The Oracle Reports Team.

Similar Messages

  • Question on changing the report template to display the images

    I am trying to change the report template so that each table cell will display an image and a checkbox for the image. The column templatet for the new report template is like this:
    <td #ALIGNMENT# headers="#COLUMN_HEADER#" class="t17data">
    <table>
    <tr height="90%"><td>
    <img src= "&F101_GET_THUMB.#COLUMN_VALUE#" onmouseover="return onmouseover_img('#COLUMN_VALUE#');">
    </td></tr>
    <tr height="10%"><td align="center" valign="bottom">
    <input type="checkbox" name="f01" value="#COLUMN_VALUE#"/>
    </td></tr>
    </table>
    </td>
    My questions are:
    1. If the #COLUMN_VALUE# is null, the table cell will display a broken image icon and a checkbox. How could I avoid this? I could add condition to this template, such as when #COLUMN_VALUE# is not null, but how to refer to the value of #COLUMN_VALUE# in pl/sql?
    2. I want to always put the checkbox at the center bottom, but no matter what I set "align='center' valign='bottom', it is always close to the image. Since the image sizes are different, the appearance of the checkbox are just up and down. How to fix this?
    Thanks,
    Fengting

    hello,
    at designtime the elements from the template are physically
    imported into the report. the only way of re-applying a template
    is to use the wizard, which will re-default the layout.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Change the Report Title for XML Publisher, depending on the field value.

    I want to change the Report Title as below.
    if the field_A='B' then the report title as it is defined in report defination
    else the report title is 'XXX"
    Please let me know whether it is possible, if yes please guide me. how can we do it.
    Thanks
    Venkat

    Tim covered the inline if statement, though not specifically regarding a title, in his blog recently:
    http://blogs.oracle.com/xmlpublisher/2007/12/18#a723
    The syntax is:
    xdoxslt:ifelse(.//WM_FLAG='C’,'Canceled','Approved')

  • Hi I am trying to change the margins and layout of an existing in design document, help!

    Hi I am trying to change the margins and layout of an existing in design document, help!

    This is an open forum, not Adobe support... you need Adobe support to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    or
    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html
    -email address https://forums.adobe.com/thread/1446019
    -http://helpx.adobe.com/x-productkb/global/didn-t-receive-expected-email.html

  • How change the report graph color in teststand

    how change the report graph color in teststand?

    Michael,
    You might also be able to customize the style sheet associated with the report. The TestStand Help provides some information about how to customize ATML or XML style sheets to change report colors based on the status of test steps.
    Please take a look at the following topics; are these helpful?
    ATML Report Style Sheets
    Modifying Cell Background Color Based on Step Status in ATML Test Results 5.0 Reports
    XML Report Style Sheets
    Modifying Cell Background Color Based on Step Status in XML Reports
    Tom
    TestStand Documentation

  • Dynamically need to change the report value reference names

    Hi Forum,
    Greetings to all !!!
    I have to create one report(document summary report) and the parameters are Document type(Special Information name through lov) and start date and end date.
    Based on these parameters it will fetch only that document details. I prepared the report based on this , now user selecting another document type then the segmets which are attached to this is coming but the heading details are not able to change in the report layout.
    Can any body suggest me how to create the layout for this type of reports.
    Regards,
    Nag.

    Hi Guru,
    We are running report in t-code:S_ALR_8701225, but last two days onwards we are not able to see the Expand and Collape tab option and Hierarchy option also, and the report format also got changed but the user want as per the previous format and which we can do the drill down. Please help me.
    And please inform me how to get the report name .
    Regards,
    John Pal

  • Changing the report template

    Hi All,
    I have created a report using a particular template
    created by me. The template contains only Margin layout
    and font setting. Now, if i change the template
    can i get the report layout changed according to new
    template layout without disturbing body section. I tried
    by reassigning the template to the report through the
    report wizard but it changes the layout of body section.
    Is there any way out.
    Thanks.

    hello,
    at designtime the elements from the template are physically
    imported into the report. the only way of re-applying a template
    is to use the wizard, which will re-default the layout.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Dynamically change the report column name.

    Hi All,
    I have a report where i am showing data for greater than current week and year and the code of same is below
    SELECT
        item_number,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+1 THEN
                    quantity
            END
        ) plus_1,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+2 THEN
                    quantity
            END
        ) plus_2,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+3 THEN
                    quantity
            END
        ) plus_3,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+4 THEN
                    quantity
            END
        ) plus_4,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+5 THEN
                    quantity
            END
        ) plus_5,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+6 THEN
                    quantity
            END
        ) plus_6,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+7 THEN
                    quantity
            END
        ) plus_7,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+8 THEN
                    quantity
            END
        ) plus_8,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+9 THEN
                    quantity
            END
        ) plus_9,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+10 THEN
                    quantity
            END
        ) plus_10,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+11 THEN
                    quantity
            END
        ) plus_11,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+12 THEN
                    quantity
            END
        ) plus_12,
        SUM
        (   CASE
                WHEN year_week_num = to_number(to_char(sysdate,'IW'))+13 THEN
                    quantity
            END
        ) plus_13     
    FROM
        (   select
                re.item_number,
                row_gen.year_week_num,
                SUM(NVL(re.quantity,0)) OVER(PARTITION BY re.item_number ORDER BY row_gen.year_week_num) quantity,
                ROW_NUMBER() OVER(PARTITION BY re.item_number, row_gen.year_week_num ORDER BY NULL) rn
            from
                (   SELECT
                        to_number(to_char(sysdate,'IW')) + ROWNUM year_week_num
                    FROM
                        DUAL
                    CONNECT BY LEVEL <= 13
                ) row_gen LEFT OUTER JOIN
                        (   SELECT
                                le.item_number,
                                le.quantity,
                                to_number(to_char(sysdate,'IW'))+1 year_week_num
                            FROM
                                BACKLOG_WEEK_WH_AFTR_ATP le
                            UNION ALL
                            SELECT
                                re.item_number,
                                -re.quantity,
                                to_number(substr(re.year_week,-2,2)) year_week_num
                            FROM
                                BACKLOG_ATP_GT_CW re
                         ) re
                    PARTITION BY (re.item_number)
                    ON ( row_gen.year_week_num = re.year_week_num)
    WHERE
        rn = 1
    GROUP BY
        item_numberI have a item in the report page from which i am displaying which week this year holds and the code of same is below
    In the item source, i have selected source type as sql query return single value. and the current week is returning as "2011-WK30"
    select to_char(sysdate,'YYYY"-WK"IW') from dual;Please suggest how i can change the display of column dynamically. I want PLUS_1 to show as 2011-WK31, PLUS_2 to show as 2011-WK32 and so on for this week. When next week will come then the plus_1 should show as 2011-WK32, plus_2 to show as 2011-WK33.
    Any help how to do this?
    Thanks in advance
    Regards

    Hi,
    Go to the Report Attributes, in the Column Attributes section:
    1) Use Headings Type as PL/SQL.
    2) In the text area Function returning colon delimited headings write a PL/SQL anonymous block returning colon delimited headings.
    Hope it helps!
    Regards,
    Kiran

  • How can we change the Reports scheduled Time in OBIEE 11.1.1.5

    Hello Friends,
    I have scheduled BI Publisher reports for FTP, but now I want to change the scheduling time or cancel the scheduled reports.
    But I didn't get any option for that. If any body know, please let me know.
    Thanks & regards,
    Pradip

    Hi Pradip,
    Go to the report location. You will find options open, Edit, schedule etc based on previliges. Click on schedule.
    then you will find options, General, Output, schedule Notification. Under Scgedule tab you can change the scheduled time of the report.
    Thanks,

  • Changing the report in one client , it is getting reflected in other client

    Hello experts,
    We are having one development system(EID) in which we are having two clients.One is development client(100) and one is sandbox client(710).We are having repository object like report.We are changing this report in EID 710 and it is getting reflected in EID 100.Now we want that once we changed this report in EID 710 it shld not get reflected in EID 100.We want to parallely work on this report.We tried with client change option  "no changes to cross client customizing object" but it is not working.Can you plz suggest something.

    Hi,
    you can not do like this...
    if you want to  work parallely copy the same report to $temp program. then you can work parallery on both.
    Regards,
    Satya.

  • I would like to change the project page layouts, but setup option in Project Superuser are not available. How can I change the selected page layouts?

    Hi
    I updated the page layouts for a project in Project Management. Now I woujld like to change those chosen page layouts, but the setup options for the project are no longer available for me to change. How can I update the original chosen page layouts (for performance management) to different layouts or change the chosen layouts to the default (blank) layouts?
    Thanks
    Chris van de Graaf

    AppleMan,
    It all began inside the settings of my Sanyo VPC-HD2000A when somehow the selection got switched from 1280 x 720 to that other setting with so-called 25fps. Also, I don't know whether the mishap occurred before or after I took my new footage.
    I edited the clips last night and now they are on my blog and channel and they seem ok but slightly fuzzy.
    I used a Sanyo VPC-HD2000A .7x wide angle lens with macro and I notice that when I zoomed in to the little sun conure, the picture blurred. I think that might be something that happens when one zooms the focus.
    Also, I was born and raised to a teenager in Hawaii, but now Southern California has me in its grip.
    -L

  • Dynamically changing the report path

    Is there any way to dynamically change the path where the reports are saved. Teststand 4.1.1
    Message Edited by glennjammin on 04-21-2010 03:30 PM
    Test Engineer
    L-3 Communications
    Solved!
    Go to Solution.

    Yes you can run a VI in the ReportOptions Sequence, add it to the Setup of that sequence. If you dont use FileGlobals.Dated anywhere else then use a Local instead. Just remeber FileGlobals are only global to sequences that are contained in a SequenceFile. They are not global across SequenceFile unless you are using the Batch Process Model.
    You will probably have to set a number of other parameters up to work with ReportOptions.Directory. The best way to handle this is to setup up you exact conditions statically (ie via the Config | Report Options... menu ). Place a breakpoint in the ReportOptions (use a label if you dont have any steps in the ReportOptions sequence at the moment) and run your Sequence. Remeber to use Test UUTs or Single Pass. You dont have to use your full test sequence just create a simple one step sequence.
    When you reach the break point, then you can browse the Parameters.ReportOptions and see what properties are required to ensure your reports are setup correctly.
    Hope this helps.
    Regards
    Ray Farmer 
    Regards
    Ray Farmer

  • GridPOV is getting reverted to UserPOV without changing the report in Stdio

    Hi everyone,
    I am a facing a problem on Reports because of that the Grid POV get moves to User POV. I could see the Date and time stamp or Report modified, but I am sure that the change was not made physically by logging into FR Studio. I know this sounds weird but I would appreciate if anybody will share His/Her thoughts about this. Although I could see the date and time stamp of the reports modified but It could be of the access given/change.What could be the possible reason for this.
    Thanks
    Yogesh Jain

    Which version is this? I've never heard of this one before. Sounds like a bug to me. I'd open a ticket with Oracle.
    Cheers,
    Mehmet

  • Changing the report Length/LINE-ZISE cause printing issues

    Hello,
    We have changed the LINE-SIZE from 225 to 250 for one of the Z-report. Now some of the printers are causing problem while printing the output. Issue is basically with old printers.
    Has any one faced some issues like this? advice.
    Thanks a lot.

    Hi
    I think the SAP Report support standard report length 255 you can define length of report between 1 to 255 that works fine with all kind of printer. But while printing kindly check the printer properties called page format there you can select your suitable page format than try to print it this will solved your proble.
    Regards,
    Hiren

  • Changing the report header/footer in SAP BusinessObjects Enterprise X1 3.1

    Hi ,
    We have SAP BO 3.1. We have a requirement to change the header\footer of all the reports in the system.
    I tried the option under Header/Footer Properties --> Appearance , Apply to all reports.
    This option does change all the header\footer of all the tabs/pages within a report.
    In our environment currently we have around 300 reports. We cannot edit individual report and make changes to the header/footer.
    Is there any option through which i can change the header\footer of all the reports existing in the system?
    Thanks in Advance
    Regards,
    Pavithra P

    Hi Pavithra P,
    Check the below links,
    https://cw.sdn.sap.com/cw/ideas/1388
    https://cw.sdn.sap.com/cw/ideas/5239
    http://scn.sap.com/thread/2050054
    http://evtechnologies.com/web-intelligence-4-0-default-paper-size/
    http://devlibrary.businessobjects.com/businessobjectsxi/en/en/RE_SDK/resdk_dg_doc/doc/customizing_webintelligence_EN/ewucw_082.html
    Regards,
    Anish

Maybe you are looking for

  • Adding same Free Goods items in the sales order

    Hello experts, We are using (exclusive) free goods functionality. In condition records you can specify the free goods that should be added to certain materials when they are ordered by the customer. The problem is this: when different materials shoul

  • ORA-12560 on Windows 2000 sp4, Pentium 4 CPU running vmware and Pent

    Hello all, I am getting ORA-12560 error running svrmgrl,sqlplus or dbca after installing 8.1.7 release 3 and patched to 8.1.7.4. My oracle_sid is set, oracle_home is pointing to the right file system. listener and database services are up and running

  • CRT versus LCD

    Per specs, Apple's old 21" Studio Display (graphite-CRT) and their original 22" Cinema Display (M5662-LCD) have the same ppi (85), but I am struck by the difference in display clarity. Both are set at max resolution: CRT-1600x1200 and LCD-1600x1024.

  • Why do Single-Process shared variables create a single variable VI in my dir.

    I'm creating an application VI following the example which is created by starting a two loop Real-Time project which creates a Single-Process shared variable and a Network-Published shared variable for each variable that needs to be sent to a non-Rea

  • How to access Properties in Custom Crawler

    [Plumtree 5.0.2 / .NET] Hi, Where in the source code for the NT File Crawler does the accessor (in this case the html accessor) pick up the metadata from the document and input the values into the Plumtree Cards? To explain - we are developing a cust