Word wrap in RTF for an excel output : BIP 11g

Hi,
If we set the word wrap property in RTF and generate the output in Excel format, it doesnt reflect. However, PDF output reflects the difference.
Looks like Excel overrides the property set in RTF. Is there anyway to text wrap a column for excel output?
Thanks,
Divya

Sorry but this is a longstanding complaint.
The more people who report a bug or request a feature, the more likely it is to be actioned. Please follow this link.
http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
See www.grainge.org for RoboHelp and Authoring tips
@petergrainge

Similar Messages

  • Unable to see EXCEL output for xml report--browser issues?

    hi i have created and registered an xml publisher report.
    i want to see the out put in Excel format.When i run the report i get junk data as output.
    is there any profile setting or viewer profiles that i need to change to view the output in excel.
    i can see excel output on standalone version when i load the data into template and look for the excel output.
    i cant see the same when i run the program through apps.
    Can any one help me regarding this.
    Thansk in advance

    I got the solution for this issue i am closing the thread..
    i had to change the system profiles to browser
    sysadmin>system>profile>query %Viewer%>set Viewer Text:browser
    and Text:browser
    Thanks.

  • How to control Excel Output in Oracle BI Publisher

    I have created an XML report in Oracle E-Business Suite. It displays the output in Excel. The problem is when I generate it's output in PDF it is perfectly fine but when I see the output in Excel, the layout automatically aligns it to the leftmost corner. This behavior is same with all the Excel reports.
    My question is: Is it the default behavior of Excel outputs or Can I control the layout so that it is displayed in the middle not the leftmost corner?
    Can I center align the layout by default? If so , how?
    Regards

    Hi;
    I suggest please refer below which could be helpful on your issue:
    How To Generate XML Output (Excel, HTML, PDF) for FSG Reports [ID 804913.1]
    E-XMLP: BI Publisher Report RTF Template to Excel output is not same as PDF,RTF or HTML format.[Article ID 1515711.1]
    BI Publisher Enterprise Excel Output File Size is Too Large [ID 1271544.1]
    Regard
    Helios

  • How to make items in a list word wrap as needed and be variable heights

    I am trying to build a custom itemrenderer for the List control.  The items in the list are variable lengths of text, some of the text items will have different colors determined at runtime base on some criteria (this works fine now with my custom itemrenderer).  What I need is for the items to word wrap, and therefore for the list to display items of varying heights.  Is this possible to do?  All my attempts seem to have failed.  If I can't do this with an item renderer any suggestions about how to do this?  Thanks very much in advance to any of you gurus who are able to help me.

    Trick here is not to specify any height for the renderer so that Flex will determine the height according to the content. Also set the variableRowHeight="true"
    Here is a simple example
    <mx:ArrayCollection id="dp">
            <mx:Array>
                <mx:Object label="some very long text"/>
                <mx:Object label="some very loooooooooooooooooooooooooooooooooong text"/>
                <mx:Object label="some very loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong text"/>
                <mx:Object label="some very looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong text"/>
                <mx:Object label="some very long text"/>
            </mx:Array>
        </mx:ArrayCollection>
        <mx:List dataProvider="{dp}" variableRowHeight="true">
            <mx:itemRenderer>
                <mx:Component>
                    <mx:Canvas width="100%">
                        <mx:Text width="100%" text="{data.label}"/>
                    </mx:Canvas>
                </mx:Component>
            </mx:itemRenderer>
        </mx:List>

  • Word wrap works only selectively

    Hi
    I'm experiencing the following effect in Discoverer Plus (10.1.2.54.25).:
    Situation
    Crosstab worksheet with several dimensions on the side. All dimensions have word warp activated.
    Problem
    Word wrap works only for the dimension that is the furthest to the right. If there is no wrap for that dimension (e. g. because the text is short) there is no wrap for the other dimensions either so text might be hidden. Only if the rightmost dimension wraps the others do so, too.
    With several dimensions in the worksheet and text not to be hidden there is not much space left for the data.
    Is this a bug or am I expecting to much?
    Franziska

    Obviously there is a bug files in metalink: Bug No 6608110

  • Generate Excel Output

    Hi All!
    I would very much appreciate if you could send me the code for generating Excel output.
    Thanks,
    Waqas
    [email protected]

    Hi,
    Here's the code for generating the excel output, you can write this in button press of form which calls the excel report.It automatically opens a new excel sheet , and then it executes the SQL query, after that each rows will get filled with the values.
    First of all you need to makeall the queries in the report in to a single query.
    declare
         application CLIENT_OLE2.obj_type;
         workbooks CLIENT_OLE2.obj_type;
         workbook CLIENT_OLE2.obj_type;
         worksheets CLIENT_OLE2.obj_type;
         worksheet CLIENT_OLE2.obj_type;
         cell CLIENT_OLE2.obj_type;
         args CLIENT_OLE2.list_type;
         rowcount integer;
         i integer;
         cursor c2 is select 1 from dual;
         cursor c1 is /* write your select query that fetches the required values */
    begin
    application := CLIENT_OLE2.create_obj('Excel.Application');
    CLIENT_OLE2.set_property(application,'Visible','True');
    workbooks := CLIENT_OLE2.get_obj_property (application,'Workbooks');
    workbook := CLIENT_OLE2.invoke_obj(workbooks,'Add');
    worksheets := CLIENT_OLE2.get_obj_property (workbook,'Worksheets');
    worksheet := CLIENT_OLE2.invoke_obj(worksheets,'Add');
    rowcount := 0;i:=1;
    for rec1 in c2 loop
    rowcount := rowcount + 1;
    -- For the headings
    args := CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.add_arg(args,rowcount);
    CLIENT_OLE2.add_arg(args,1);
    cell := CLIENT_OLE2.get_obj_property(worksheet,'Cells',args);
    CLIENT_OLE2.destroy_arglist(args);
    CLIENT_OLE2.set_property(cell,'Value','Column 1 Heading');
    CLIENT_OLE2.release_obj(cell);
    args := CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.add_arg(args,rowcount);
    CLIENT_OLE2.add_arg(args,2);
    cell := CLIENT_OLE2.get_obj_property(worksheet,'Cells',args);
    CLIENT_OLE2.destroy_arglist(args);
    CLIENT_OLE2.set_property(cell,'Value','Column2 Heading');
    CLIENT_OLE2.release_obj(cell);
    end loop;
    for rec1 in c1 loop
    rowcount := rowcount + 1;
    args := CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.add_arg(args,rowcount);
    CLIENT_OLE2.add_arg(args,1);
    cell := CLIENT_OLE2.get_obj_property(worksheet,'Cells',args);
    CLIENT_OLE2.destroy_arglist(args);
    CLIENT_OLE2.set_property(cell,'Value',rec1.field1);
    CLIENT_OLE2.release_obj(cell);
    /*null value may create problems,then use the if condition as follows*/
    args := CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.add_arg(args,rowcount);
    CLIENT_OLE2.add_arg(args,14);
    cell := CLIENT_OLE2.get_obj_property(worksheet,'Cells',args);
    CLIENT_OLE2.destroy_arglist(args);
    IF rec1.field2 IS NOT NULL THEN
    CLIENT_OLE2.set_property(cell,'Value',rec1.field2);
    ELSE
         CLIENT_OLE2.set_property(cell,'Value',' ');
    END IF;
    CLIENT_OLE2.release_obj(cell);
    end loop;
    CLIENT_OLE2.release_obj(worksheet);
    CLIENT_OLE2.release_obj(worksheets);
    CLIENT_OLE2.release_obj(workbook);
    CLIENT_OLE2.release_obj(workbooks);
    CLIENT_OLE2.release_obj(application);
    EXCEPTION WHEN OTHERS THEN
         MESSAGE(SQLCODE||' - '||SQLERRM); MESSAGE(' ');
    end;
    Hope this helps .
    Regards,
    Nycy

  • Help on EXCEL Output for  RTF

    Hi All,
    my requiremnt is output should be EXCEL output.
    the body content has 25 columns.
    I am new to XML Publisher and this is my first report which I am working on excel output.
    My steps are shown below. please correct me If I am wrong any steps
    1. designed RDF
    2. while registring given output as 'XML'
    3.run the program and save the output of the program in desktop as .xml
    4. using XML PUblsher Desktop, uploaded xml file to WORD, and created table which has 25 columns
    and insert the filed in each cells of the table
    5.and attached the RTF to data template
    6. and run the program, I am able to see the output in excel format
    My issues are
    1. how can I wrap the each cell of the table, to see data in that cell.. how can we achieve this one??
    2. can we add company logo to excel.
    please help me in this regard, highly appreciated..
    Thanks,
    HHT
    Edited by: user633508 on Sep 7, 2010 11:16 PM

    Hi Kaydee,
    In RTF Template, I created table with 25 columns , and using xml builder , droping requried filed in the each cell.
    In otuput: If the value of the column is lenghthy -- how can I wrap the cell, so I can see the data in cell itself.
    please let me know if you have still problem to understand my problem.
    Thanks

  • Excel Output for rtf template

    Hi
    I have a query of obtaining the output of a XML Publisher report in 2 formats (PDF and Excel). Depending on the user option (parameter),i have two query for pdf and excel output. the request should generate the output in the specified format.
    I have created the XML Data template , and then assigned the concurrent program to the template. But now i can specify only 1 format in the template.
    Any solutions for the same ?
    Thanks in advance
    SS

    hi ,
    there is one way for output is ... when you are submitting the request for the specific report ... on request submission form there is one options button ... you can change your output format there... by change the template output format...
    second way isonce u submitted the request ... and the request completed normal... after that on window menu ... you will get reprint and republish option ... you can set your output format there also ... suppose u submit request for pdf and after the request completion you go and change the out put format as excel in reprint and republish ...
    i hope it will help you out.
    Regards
    Ratnesh P

  • Excel Output Wrapping columns Xml Publisher

    Hi,
    I am creating a RTF Template in XML Publisher, Need some help regarding the Output Format Excel:-
    When I am generating the excel output everything looks ok except the one i.e. data in some columns is automatically wrapping up and I need
    Data should be display for each line, the excel columns needs to be expended to view the data but I don’t want it
    I have tried so many thing like dynamic columns or word properties but nothing works
    Please help it would be really a big help if any one can resolve my problem.
    Regards,
    Pragati

    Hi,
    Thanks for the reply.
    it was quite helpful for me. But is there any way to display the data in the same line in excel as if we set row height exactly then it works but data going to be display in the next line.
    e.g.
    NASHOBA VALLEY
    MED CTR
    But our requirement to display it like NASHOBA VALLEY MED CTR.
    Thanks,
    Pragati

  • Columns doesnt wrap in Excel output

    Hi,
    I have a Table in RTF template which has 7 fixed width columns. I have couple of description columns in the Table and I have set "Wrap Text" option for those columns so that column width remains the same even for "long" descriptions. This works fine for PDF output and I get output as I see in the template. Problem is with Excel output. In Excel, column width is automatically adjusted to fit text. "Wrap Text" option is set for the column in MS Word. I have also tried using <fo:block wrap-option="wrap">, <fo:inline wrap-option="wrap">, <fo:wrapper wrap-option="wrap">. But still text is not wrapped in Excel. All I want is that the column width should remain constant and it shouldnt be resized to fix text. Can anyone throw some light on the above issue? Your help is much appreciated.
    Thanks in advance,
    Murari

    No light - but I see the same issue - so it is not just your configuration.

  • Need help in formatting a number field with same precision for excel output

    I am trying to get the same preciision for a field in RTF template when the output is in EXCEL
    i.e. same number of digits after decimal. So, I would like to show 150 as 150.00 and 123.2 as 123.20 etc !! Is there a way to do it. the Built in formatting will not display 150.00 for 150 . but if i add $ symbol it will display. But i dont need $ syambol. please help.

    I found this on one of the forum questions.
    Excel dont preserve the trailing zeros.
    try opening the xcel and type 5.0000 and tab out, it wont preserve the trailing zeros after decimal.
    try finding out how to disable the option in excel. if you do that, you will see what you send out from the report.
    But you can try to convert the number into a text by trying to append a space at the beginning. See if that would work.
    Thanks
    Swarna

  • Excel Output For Standard Report In R12

    Hi Experts,
    My Client wants Excel Output for Standard Reports ( ex:-Open Purchase Order Report (by cost center)_xml)
    I changed the default output to Excel in Template of xml publisher administrator Responsibility.
    Now it is showing the Excel output, but The layout of report is not same as layout which in text output of standard report.
    Please guide me is there any solution to develop the reports layout in ms-excel using xml file rather than rtf template.
    Thanks
    Durga.

    Hi Alex,
    Thanks for your replay.
    Generating the new rtf template which is same as standard layout is difficult task for us. Actually we have 120 reports which have same requirement.
    Is there any other solution for this . please guide me
    Thanks
    Durga
    Edited by: 805567 on Jan 23, 2012 12:33 PM

  • In SSRS , after exporting report in excel,wrap text property for cell and freeze column for SSRS table header not working in Excel

    I am working no one SSRS my table headers are freeze cangrow property is false and my report is working perfect while rendering data on RDL and i want same report after exporting in Excel also , i want my table header to be freeze and wrap text property
    to work after exporting in my report in excel but its not working ,is there any solution ? any patch ? any other XML code for different rendering ? 

    Hi Amol,
    According to your description, you find the wrap text property and fix column is not working after exporting into Excel. Right?
    In Reporting Services, when exporting to excel file, it has limitation for textbox.
    Text boxes are rendered within one Excel cell. Font size, font face, decoration, and font style are the only formatting that is supported on individual text within an Excel cell.
    Excel adds a default padding of approximately 3.75 points to the left and right sides of cells. If a text box’s padding settings are less than 3.75 points and is just barely wide enough to accommodate the text, the text may wrap in Excel.
    In this scenario, it supposed to be wrap text unless you merge cells. If cells are merged, word-wrap does not work correctly. If any merged cells exist on a row where a text box is rendered with the
    AutoSize property, autosize will not work. For the Fix Data Property, it can't be working in Excel. These are features when exporting to Excel. We can't change it because it's by design.
    Reference:
    Exporting to Microsoft Excel (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • In BI Publisher Report of excel output for one column is filled with spaces

    Hello,
    We have issue in BI Publisher report of excel output.
    In Excel output for one column few records are displaying as left alignment
    and few record are displaying as right alignment.
    If you are having any xml tag or any syntax for removing spaces for left side
    Please help on this issue.
    Thanks in Advance.
    Regards,
    Swaraj

    Please post the details of the application release, database version and OS along with BI Publisher.
    Is the issue with all reports or specific one(s) only?
    Do you have the patches in the following docs applied?
    Overview of Available Update Patches for Oracle BI Publisher Enterprise 10g [ID 797057.1]
    Overview of Available Update Patches for Oracle BI Publisher Enterprise 11g [ID 1276869.1]
    Overview of Available Patches for Oracle XML Publisher embedded in the Oracle E-Business Suite [ID 1138602.1]
    BI Publisher 10g RTF Template Changes Alignment Settings for Numbered Lists [ID 1418504.1]
    Thanks,
    Hussein

  • Preventing automatic scientific notation conversion for excel output?

    I have a column in a report that contains a mixture of numbers and letters and hyphens. If the only letter is E, then I get scientific notation instead of the actual text when I run the report for excel output and open it in excel.
    For example:
    185701E-02 becomes 1.86E+03
    4962E6 becomes 4.96E+09
    Any ideas how to fix or work around this in the template, data definition, or excel config?
    Thanks,
    Kevin

    I tried pre-pending an apostrophe in the SQL and in the rtf template to indicate to excel that it is a text field, but this just resulted (not surprisingly) in '185701E-02 instead of 185701E-02

Maybe you are looking for