Ora9i Rpt Dvlpr doesn't display clob in web report

I've got simple table with clob data:
CREATE TABLE TAB_CLOB (
ID NUMBER (12) NOT NULL,
CLASS VARCHAR2 (3) NOT NULL,
CONTENTS CLOB,
with some data.
Using SQL+ with this select:
select * from TABLE_CLOB
finds and displays data in all three columns.
Paper report with the same select formula displays number, char and clob data, but web report displays only number and char data - doesn't display clobs.
Suggestions?

This was an issue with 9.0.2 base release and has been fixed in Reports patches. Please apply Report 9.0.2.0.5 integrated patch for the fix.
thanks
rohit

Similar Messages

  • Display Comments in Webi Report

    Hi All,
    We have a requirement, to display comments (2 or 3 paragraph in each page of report).The text needs to preserve the format (bold, bullets and colored text) i.e the format from the source data should be retained when displayed in the webi report.
    Say for example the source is the excel and the text is coloured red or green , some part of the text is bold, all these formats should be preserved in the webi report also.
    Can you please suggest, how to implemet this in webi report?
    Thanks,
    Sudha

    you can take the formatted text in a word document, take a screen shot, put it in mspaint and select the required part. now place this picture in the blank cell's background image. this will preserve the formats of all kinds.
    but u cant change the text dynamically.
    usually we do this to give users an introduction page(tab1 in report followed by report tabs.) describing the application.
    Thanks,
    karthik

  • Secondary Cost Element Values doesn't display in Profit Center Report

    Hi everyone,
    I'm having a problem with our Profit Center plan/actual/variance reports wherein it doesn't display the postings I made to the Secondary cost element when I executed an assessment cycle (KSU5). I already set in the configuration that all postings to be done in the cost centers, should have a parallel posting to the profit center assigned to it. I can see the postings in my cost center reports, but not in my profit center report. Could I have missed out on any procedure to enable the secondary cost element parallel posting in my profit centers? Any help would be appreciated. Thanks!

    it might be the configuration of the library or some parameter in the report (record type should be 0 and 2 for actual values, where 2 stands for distributed values and 1 and 3 for planned values)
    but it also might be that the reconciliation is done between different CC and same PC
    - check your CC organisation asignment
    - if sender cost center and receiver cost center have tha same PC it is probably the reason
    - I had that problem my self and didn't solve it
    cheers
    matej

  • Stationery Doesn't Display in Outlook Web Access

    Looks like the stationery doesn't display properly in Outlook Web Access. Not that anything else does either, but it's worth noting.

    Good news.  Our basis team fixed the problem.  There were some security settings on our apache server we use that caused the problem.  Thought I would post the fix.  Thanks for replies.

  • Browser doesn't display the right web page

    Hey everyone,
    I have this problem with a web page that doesn't display
    right. What happen was my client has a news web page that is being
    updated once every week. The way I update it is changing the
    content on Dreamweaver and copy the codes and pasting them on the
    server interface, and resave them. Thus, over riding the old news
    page.
    Everything display right on my computer. The only thing is I
    have to refresh my browser in order for the right page to show up.
    Once it did, then it stays as that.
    The thing is, my client still sees the old news page even
    after I've replaced it with the new codes.
    I've done this for him for over 3 months, and this problem
    has never occur before.
    I don't understand why it's like this. If this is happening
    to him, wouldn't it be happening to other people's computer as
    well. If it is, then it's bad news, cause no one would like to
    always have to refresh their browser for the right news page to
    show.
    Could anyone explain why this is happening? And how would it
    affect other users? Or is this even possible.
    Thanks in advance, everyone.
    Jen

    It sounds like a cache issue. When you view the page, that
    page is loaded into your (or your client's) browser's cache memory.
    This is done so that when you return to that page it will load
    faster (since it is already loaded into memory).
    This will only happen if a person has been to the page
    recently. There is a limit on the amount of information your
    browser will store in cache memory. The more you surf, the more
    likely it is that the page will be replaced in the cache memory
    with some other information.
    You (and your client) can, depending on what browser you are
    using, set your preferences so that all web pages will be
    completely reloaded every time you visit them. In IE 6 for Win:
    Tools>Internet Options>Settings> Select 'Every visit to
    the page'. You can also set your cache to be the minimum amount of
    space alotted. Note: This doesn't really work very well in IE 6 for
    WIN. I use firefox for reviewing changes because I have found IE 6
    is completely unreliable for viewing the latest.
    Most other browsers will allow you to hold down Shift and hit
    'refresh' to throw out the cache for that page and view the latest.
    As far as I know this is standard operating procedure for proofing
    new pages.
    If there is a coding technique to force a browser to use only
    the latest information, I don't know what it is.
    Good luck.

  • Graphs doesn't display on the crystal report server

    I have a graph that displays good on the developer and when saved on the server and run it from the server doesn't display the graph. Any thoughts why its not displaying?
    I also want to retrieve it from .net application using Managed RAS, is there any thing that I need to set for it display the graph output.

    I'm using the same code for all reports and it works fine....only problem is its not displaying graph reports.
    SessionMgr sessionMgr = new SessionMgr();
                EnterpriseSession enterpriseSession;
                ReportAppFactory reportAppFactory;
                ReportClientDocument reportClientDocument;
                EnterpriseService enterpriseService;
                InfoStore infoStore;
                InfoObjects infoObjects;
                InfoObject infoObject;
                // set the name of the CR server
                String crServerName = ConfigurationManager.AppSettings.Get("CRServerName");
                // set userid to logon to CR server
                String crUserID = ConfigurationManager.AppSettings.Get("CRUserID");
                //set pwd to logon to CR server
                String crPwd = ConfigurationManager.AppSettings.Get("CRPwd");
                //set userid to logon to database
                String dbUserID = ConfigurationManager.AppSettings.Get("DBUserID");
                //set pwd to logon to database
                String dbPwd = ConfigurationManager.AppSettings.Get("DBPwd");
                //pass Crystal enterprise logon credentials
                enterpriseSession = sessionMgr.Logon(crUserID, crPwd, crServerName, "secEnterprise");
                enterpriseService = enterpriseSession.GetService("InfoStore");
                infoStore = new InfoStore(enterpriseService);
                //pass the report Name to query and pass it to reportClientDocument
                infoObjects = infoStore.Query("Select SI_ID From CI_INFOOBJECTS Where SI_NAME='" + reportName + "' And SI_INSTANCE=0");
                infoObject = infoObjects[1];
                //Connecting to RAS (Report Aplication Server)
                EnterpriseService tempService = enterpriseSession.GetService("", "RASReportFactory");
                reportAppFactory = (ReportAppFactory)tempService.Interface;
                reportClientDocument = reportAppFactory.OpenDocument(infoObject.ID, 0);
                // Pass datbase logon credentials
                reportClientDocument.DatabaseController.logon(dbUserID, dbPwd);
    FileStream fs = null;
    BinaryWriter bw = null;
    rptFileName = u201CTestChartReport.pdf";
    fs = new FileStream(Server.MapPath("~/reports/" + rptFileName), FileMode.OpenOrCreate);
    bw = new BinaryWriter(fs);
    PrintOutputController rasPrintOutputController;
    CrReportExportFormatEnum rasReportExportFormat =   CrReportExportFormatEnum.crReportExportFormatPDF;
    rasPrintOutputController = reportClientDocument.PrintOutputController;
                ByteArray tempByteArray = rasPrintOutputController.Export(rasReportExportFormat, 0);
                Byte[] byteStreamOutput = tempByteArray.ByteArray;
    bw.Write(byteStreamOutput);
    String file = "reports/" + rptFileName;
    Response.Write("<scr" + "ipt>\r\n");
    Response.Write("open('" + file + "');\r\n");
    Response.Write("</scr" + "ipt>");

  • To restrict the number of data columns displayed in BW Web report

    Hi,
    In the corresponding Bex query i am using 'Start Time' characteristic in the row. In the BW Web template i don't want the 'Start Time' to be displayed when i execute.
    I tried to restrict the number of data columns displayed in the web item table properties but that did not help
    Can i get some help
    Thanks,
    Mala

    Hi Mala,
    You can try out the following: Create a view on your query and in that view remove the Start Time char from the drilldown. Use this view as a data provider in the web template.
    Hope this helps...

  • Search for display attributes in Web reporting

    Hello,
    When I execute a query in Excel, in the variable entry screen, I can search values for material, for example, using some display attributes as Colour or Size. I mean, I want to execute the report for materials whose colour is white. I can open the matchcode for Material, I select the value "white" for the Colour display attribute, and I get a list of all the materials with that colour. The report is executed for those materials.
    However, when I execute the same report using Web reporting, I don't have the display attributes in the selection screen, to restrict the material. Once the report is executed, in the Navigational block, if I filter the material, there is an option called "Search for display attributes activated", where I can restrict per Colour, but only for one value.
    I have two questions related to this topic:
    1) Is it possible to have the functionality "Search for display attributes activated" in the variable entry screen, for Web reports, in the same way it is available in the reporting via Excel?
    2) Is it possible to configure that functionality, in order to restrict several values for the display attribute at the same time (in my example, for Colours "white", "black" and "red" at the same time)?
    Thanks very much for your help
    Patricia

    Hi Patricia,
    Looks like you have some new navigational attribute requirements, don't you think? I'm sure that would solve your issue, though maybe you're trying to avoid using navigational attributes (it is usually said that using navigational attributes is slower).
    Maybe you can do a test on BEx to check if your query is considerably slower when filtering directly by material code (by filtering on the selection screen using display attributes) or using a navigational attribute.
    Match codes on web reporting have lost some functionalities compared to BEx (such as importing a list of values from a file, for instance).
    Regards,
    David.

  • Local Calculation (Summation) in query doesn't display correctly in web

    Hi All,
    I have been working on a complicated query where I have formulas that perform calculations.  I then Hide these formulas and use them in another formula for further calculations.  The new calculations I then use local summation to basically just add the columns values and come up with an overall result.  Works perfect and is displayed perfectly.
    Problem is now in the web.  Either using a Pie Chart or just simply an Analysis item, the values are not displayed correctly at all.  The Pie Chart only displays the first row of data (not the overall result...which is a local summation...which is what I would prefer) and suprised that the Analysis item doesn't basically display what the query does.  I'm guessing it has to do with this local calculation.
    Can someone explain this behavior?
    Thanks.

    Anyone any ideas?

  • Firefox 35.0.1/windows doesn't display all yahoo web mail controls, IE works fine.

    To expand the message list to cover the advertise area when preview pane is below the message list, click on the expand control symbol to the right of the scroll bar. This shows in IE. This does not show in firefox.

    I just tested this on an existing install of FF 35 on another computer (a headless win 7 x32), one that has been working just fine. I RDP'd to it from both this new computer and a 3rd computer (also Win 7 x64 but does not have FF installed). When I RDP'd to the headless unit via the 3rd computer, FF 35 played FB videos just fine (though I did get the weird play button thing). But when I RDP's to the headless unit from this new computer, FF 35 will not play FB videos. So it must be something here on this computer that is messing things up.

  • Text not displayed in the Web Report

    Hi All,
    I have a query where user is expecting both Key and Text to displayed in the report for the Info object "Local Product High". This infoobject has text data available. But Iam not sure why this is not getting displayed even when I select both Key and Text in the properties screen.Only Key is getting displayed.
    Can some one throw some light on this.
    Regards,
    Srinivas

    I juct checked the Text table and I see the texts for the infoobject exists. I do not think CHange run will resolve this issue. but yes the master data is active .
    I will now try to run the report through Bex and come back.
    Thanks for the input..
    regards,
    Srinivas

  • Display pattern in web report

    HI all,
    We have different infoobjects and whose bex properties defined differently for description. some are set to show short description and some are long description.
    so here is the question
    ‘Short text’ such as a year should be centered when displayed as a value in a column, ‘Long text’ should be left justified and ‘Key figures’ should be right justified.
    Please let me know how to achieve this in 3.5 WAD.
    -Rajesh

    Hi Rajesh,
    Changing the code in the stylesheet can solve you issue of text alignment global
    which will change the text alignment of all the characteristics.you can change the alignment for KF's with conditions or exceptions. But looking at your requirement i dont think changing style sheet will answer you requirement. Since you want to change the text align for Iobj, we might have go for some <b>table interface</b>.
    Peter

  • Images displaying haphazardly in WebI report

    Hi,
    We are currently working on BI 4.0 SP5 Patch 3.
    I am having an issue in the images that are being displayed in my report.
    I have a report that displays a company logo on the top left corner(say, Company - "ABC"). Below that I have 1 table and a couple of images(circle and rectangle).
    Following are my observations.
    When I, :
    1. View the report in Launch Pad:  - In the Header of the table I can see the "ABC" logo, which shudn't be there. - In the circle and rectangle also, I can see the "ABC" logo, instead of the circle and rectangle image. I checked the properties and in the appearance I donot see any image of "ABC" added in the cells.
    2. Export report in Excel/PDF after Viewing: The Header of the table and the images are displaying fine.
    3. Open in WebI Rich Client: The Header of the table and the images are displaying fine.
    4. Scheduling the report: The Header of the table and the images are displaying fine.
    I donot see where the error might be. Require your help.
    Thanks,
    Amrita

    Hi Amrita,
    check the WebIDefaultStyleSheet.css file located under c:\program files\sap businessobjects\sap businessobjects enterprise xi 4.0\images. This is located on the application server.
    If this doesnt fix the issue, then I need to ask you few questions:
    1- how many nodes are there in your environment?
    2- which tool did you use to write the report (rich client, or webi)?
    3- do you see this image when you open existing reports too or is it just with the new reports?
    Regards,
    samique
    917.945.3676

  • How can I get the username displayed in BW Web-Report?

    Hello all,
    I try to get the username displayed in BW-Report such as 'welcome <username>'.
    Maybe you can give me a suggestion how to do it.
    I appretiate your answer.
    Regards
    Vivian

    you can use the following javascript within the webtemplate to get the user id
    <script language=javascript>
    var user_name ='<object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TEXTELEMENTS_USER"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_TEXT_ELEMENTS"/>
             <param name="DATA_PROVIDER" value="DP"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="ELEMENT_TYPE_1" value="COMMON"/>
             <param name="ELEMENT_NAME_1" value="SYUSER"/>
             <param name="ONLY_VALUES" value="X"/>
             ITEM:            TEXTELEMENTS_USER
    </object>';
    </script>
    Regards
    Raja

  • How to Audit the data displayed within a Webi report

    Hi All,
    We have BOBJ XI R2 SP4 installed on our server.
    One of the requirements is to audit the data the user has viewed through Canned reports and also Adhoc reports created in Webi.
    I understand that we can audit what reports are accessed by the user, but not sure how to audit the data within the report. Could someone please let me know if auditing data can be acheived form SDK ? If so how ?
    Thanks,
    Sireesha

    Pablo,
    The following should get you started;
    This is a report to pull Universe Name, Report Name, Action Time (last refreshed), Action Duration (execution time), User Name and Object Name (universe objects used in reports).
    The Result Objects are as follows:
    Object Name from Actions/Action Details
    Action Time from Actions
    Action Duration from Actions
    Action Type from Actions
    Action Type Detail from Actions (detail object associated with Action Type)
    User Name from Actions
    Document Name from Actions/Document
    Universe Name from Actions/Action Details
    The Query Filters are as follows:
    Action Time between Day1 And Day2
    Note: The Query Filter is necessary (obviously) only to restrict the size of the query. I wouldn't run this query without a filter on demand. Depending on the size of your deployment, you might want to restrict the query initially to a specific universe/list of universes while testing.
    At the report level, I moved Universe Name and Document Name in to (nested) sections.
    i.e.
    Section on: Universe Name
    Section on: Document Name
    Table
    Another option would be to retrieve this information from the CMS tables using WID Scanner [here|http://www.forumtopics.com/busobj/viewtopic.php?t=80856]
    The last option would be to use the Report Engine SDK (for Webi) to write a program extract this information from the CMS tables and pass it to another table. WID scanner (above) does effectively the same thing, passes the info to an MS Access table (if I remember correctly..I may be wrong. I have'nt used it since it last tried to create a report to extract all used objects.)
    Best,
    Srinivas

Maybe you are looking for