Hierarchy  column display image(Triangle) format need to be changed in obiee11g

Hi ALL,
Hierarchy  column display image(Triangle) format need to changed
For Mobile users of obiee11g, the triangle symbol image is big in size while viewing in mobile phone,i have two issues
1. I need to reduce the size of triangle image
2.Need to reduce the spacing between triangle image and the text
Expecting the  the response ASAP
Thanks,
Bala

Hi ALL,
Hierarchy  column display image(Triangle) format need to changed
For Mobile users of obiee11g, the triangle symbol image is big in size while viewing in mobile phone,i have two issues
1. I need to reduce the size of triangle image
2.Need to reduce the spacing between triangle image and the text
Expecting the  the response ASAP
Thanks,
Bala

Similar Messages

  • Obiee 11g hierarchy columns download into csv format.

    When using hierarchical columns, Is there a way to download the results as the user see it on the view (be it table or pivot view) into a CSV format.
    Excel format works, but if the user drill down on the hierarchy column and then export in CSV format... the data gets exported to the level the report was originally set.
    Is there any way to change this behavior?
    One option we can recommend to users is to download in excel format and then convert to CSV....if needed.
    FYI, we just starting looking into 11g 11.1.1.5 version... planning to migrate from 10g to 11g...
    Thanks
    Sundar

    Nii Moi wrote:
    Hi Every Body,
    am using asp.net as a front end and oracle 11g as back end am wondering if there is a way to download data in an csv format and merge them into a table.How is this related to Application Express ? Please explain

  • Column displays going down. Need it to go across and group together.

    I have an Oracle report I've created and I'm trying to get certain columns of data to display only for the first row and grouped together going horizontally. It's hard for me to explain in words what I need to be done. I could email some screen shots explaining if someone is willing to help me. Thanks in advance!

    What about using the report functionality itself?
    Create the report as Group Left vendor wise and for the Repeating Frams of field Class_Code set the Print Direction to Across/Down and the Horizontal Elasticity to Variable and for all the Parent Frames same. Then it should work as expected.
    Or keep the report tabular and use the formula column as below...
    DECLARE
      CURSOR Fetch_Codes IS
      SELECT class_code
      FROM table_name
      WHERE vendor = :vendor;
      vClsCodes table_name.class_code%TYPE;
    BEGIN
      FOR Get_Codes IN Fetch_codes LOOP
       vClsCodes:=vClsCodes||Get_Codes.class_code||', ';
      END LOOP;
      RETURN vClsCodes;
    END;In the layout editor use this formula column as source of class codes.
    -Ammad

  • Display image in applet - need help

    Ive got this code in my applet
    Image image1 = toolkit.getImage("images/background.jpg");
    Which runs fine when run locally, but when I try to run it from a html in a browser it starts to fire off lots of security messages.
    How can i do this?
    the remainder is I set it as my background
    g.drawImage(image, 0, 0, this);

    I have tried the following while running the applet in a browser and it worked...so I guess you can give this a try...
    java.net.URL backgroundImage = getClass().getResource("back.jpg");
    ImageIcon icon = new ImageIcon(backgroundImage);
    and then use this ImageIcon to set the background.

  • .CSV files format needs to be changes

    Hi ,
    I have procdure which converts all my data to .csv format, The problem here is i have used the SQL which has the alias name's Jan-12...upto Dec-12.
    The resulting .csv file dispalying this format as 12-Jan ---------up to 12-Dec
    I want the .CSV format should contain Jan-12...upto Dec-12.
    Pleae advice.
    Thanks

    876639 wrote:
    Hi ,
    I have procdure which converts all my data to .csv format, The problem here is i have used the SQL which has the alias name's Jan-12...upto Dec-12.
    The resulting .csv file dispalying this format as 12-Jan ---------up to 12-DecNo, the resulting .csv file contains whatever data you put into it. It's just a text file with characters in it.
    If data is getting changed then that's either being changed by your own code before it's put in the .csv file, or by the application you are using to view the .csv file.
    Let me guess, you're loading the .csv file into Microsoft Excel to view it...?
    Excel can recognise certain data and change the display formats accordingly e.g. it can recognise numbers and dates and display them in it's default formats. That's not a fault with Oracle or your code in that case, but with how the data is being viewed through Excel.
    Is the data still wrong if you open it up in WordPad or Notepad?

  • How to display images from BLOB column via APEX 4.0

    Hello,
    I did the following in order to display images of two Oracle records on the APEX page. I am using APEX Version : 4.0.1.00.03 , Oracle DB Version : 10.2.0.4.0.
    1. Created An oracle table TEST_FORM
    with 3 columns
    ( ID number, MIME_TYPE varchar2(255) , Image BLOB )
    2. Inserted two records
    10001, image/gif, ( actual image1)
    10002, image/gif, ( actual image2)
    3. created an Oracle procedure
    CREATE OR REPLACE PROCEDURE show_my_form ( p_image_id IN test_form.id%type) AS
    l_mime test_form.mime_type%type;
    l_length NUMBER;
    l_file_name VARCHAR2 (2000);
    lob_loc test_form.IMAGE%type;
    BEGIN
    SELECT mime_type, IMAGE
    , DBMS_LOB.getlength (IMAGE)
    INTO l_mime, lob_loc, l_length
    FROM test_form
    WHERE id = p_image_id;
    owa_util.mime_header(l_mime, false);
    htp.p ('Content-length: ' || l_length);
    owa_util.http_header_close;
    wpg_docload.download_file (lob_loc);
    END show_my_form ;
    4. In Apex 4.0
    step1. Created an interactive report on a new APEX page
    step2. Specified the following in the Region Source
    select id, mime_type, '<img src="#OWNER#.show_my_form ?p_image_id=#ID#" />' photo
    from TEST_FORM
    The column result shows as <img src="CCS.show_my_form?p_image_id=#ID#" />
    I am unable to display the column image as a link to a proper image photo.
    Could you please advise me if I missed anything ?
    Thanks a lot.
    Regards
    Susanna
    Edited by: user10318332 on 13/12/2010 15:51
    Edited by: user10318332 on 13/12/2010 20:10

    Maybe the space you have before the ? is causing issues. there shouldn't be any space.
    Your procedure looks to be much the same of one that I have.
    Have you granted execute on your procedure?
    Also, what version DB are you running? This could be another issue: http://daust.blogspot.com/2006/04/xe-calling-stored-procedures.html
    But anyway, you don't need to create your own procedure these days. You could do the following:
    in your query, have a column: dbms_lob.getlength(blob) photo ; save, then in column attributes for that column, apply a format mask. There is usually a link below the text box for the format mask - BLOB Download Format Mask, which will help you build the format mask. But it is documented here: http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/advnc.htm#BCGGJHEF
    Ta,
    Trent

  • Apex 4.0 display image item :BLOB column returned by SQL statement

    Hello
    I'm creating an display image item in apex 4.0. The source is a BLOB column returned by SQL statement.
    When I'm issuing an sql statement like this:
       select lado.blob_content
       from   large_documents      lado
       ,        large_doc_headers    ladh
       where lado.ladh_nr = ladh.nr
       more criteriait works fine.
    When I create a function inside a package with the same query (in a cursor)
    function get_image(some parameters in) return blob
    Following in apex by:
    select get_image(some parameters) from dualI get a
    ORA-06502: PL/SQL: numeric or value error: character string buffer too smallAnybody any idea why this does not work?
    Regards Erik

    Hi Eric,
    the environment assumes varchar2-output by default, which will be limited to 32767 characters and may have problems with binary formats. You could define a blob-variable to select the value into.
    DECLARE
      l_blob BLOB;
    BEGIN
      SELECT get_image(some parameters)
        INTO l_blob
        FROM dual;
    END;
    /If you expect the BLOB-Content to be text (you should consider CLOB then), you may use UTL_RAW.CAST_TO_VARCHAR2 to convert the content. If your object is larger than the maximum varchar2 size, or you want to convert BLOB to CLOB, you might be interested in some converter like described here: {message:id=559749}
    Hope this is what you were searching for.
    -Udo

  • Displaying images in their own format.

    I wrote the following code to store a path of an image into a textbox:
    declare
    filename VARCHAR2(255);
    begin
    filename := GET_FILE_NAME(NULL,NULL,'All Files (*.*)|*.*|');
    :infiles.letterpath := filename;
    end;
    Then,
    I used the following code to read an image(bath) from "letterpath" textbox and display it into an image item:
    Read_image_file(:infiles.letterpath, 'gif', 'infiles.letter_image');
    Now, what i want is to show images in their own format, not to dispaly them into an image item.
    Can someone please tell me how i can display images in their own format.
    For example: lets say i store a path of a word document in a textbox then when i click an open button, i want that document to be displayed in MS Word.
    Thanks in advance.

    Hi,
    you could use an OLE container in Forms and associate this with the externmal viewer that you would like to show the source. This however works for c/s and immediately stops working once moving your app to the Web. There you would need to investigate in a Java Bean solution to do this.
    Frank

  • Column Sort image display permanent

    By default adf table column sorting image is displayed on mouse hover.
    I need to display sort images permanently with the column name.
    How can I do it? Please help.
    Thanks,

    Hi,
    Use sortable="true" for relevant Column and define sortProperty.
    <af:column sortProperty="NodeSubsidiaryType" sortable="true"
                             headerText="Header" id="c14" width="40">
                    <af:outputText value="#{row.field}" id="ot12"/>
    </af:column>

  • How to display images in a table column?

    Hi,
    In a VC model, I have to display images in a table column for each record found.
    How can this be done?
    Regards,
    Nitin

    Hi Nitin,
    It can be done by adding to the table the Image control (can be found under Advanced Controls in the Compose panel).
    In the URL property (in the Configure panel of the Image control) you can define any expression that will return the image URL. For example:
    ="http://hosting.site.url/"&@ImageNameField
    Regards,
    Udi
    Edited by: Udi Cohen on Jun 11, 2008 1:39 PM

  • Displaying images from ORDSYS.ORDIMAGE columns

    Does anyone know, if Oracle9i Reports can display images fetched from ORDIMAGE columns in the database? If so, could you give me a brief explanation how?
    Thanks in advance!

    Jacob,
    As of now , it is not supported. It is under development for next release.
    It currently supports images stored in DB as LOBs
    Thanks
    The Oracle Reports team

  • Displaying Image from ADF BC (BLOB Column) in ADF Mobile Application

    I have made an ADF BC over a database. Now I want to use that ADF BC's data control in my ADF Mobile App to display image stored in a blob column in the database!
    How should I got about it?
    Regards,
    Muhammad Zaheer

    Sir,
    I have exposed it through web services and I'm using the Web Service data control in my mobile application but the blob column is shown as output text in the data control. Now I don't know how to display the image from the blob column in my ADF mobile application.
    Looking forward for your help.
    Thank you.

  • Needs to be displayed in US format, instead of EU

    The tolerance limits characteristic, 0TOLERANCE, needs to be displayed in US format, instead of EU.  ie.  5.000,00  needs to be changed to 5,000.00

    These are user display settings and can vary from user to user , thats why its maintained in the user master. I guess this is the only place where you need to maintain it , probably someone else can share if there is something more specific.

  • Need sample code using windows BitBlt() function to display image in CVI

    Hello all,
    I need a sample code which uses windows BitBlt() function to display image in CVI
    Thank you.
    Bob.

    Hello Bob -
    I'm curious why you'd like to use BitBlt.  What functionality does it offer that you've not seen in the CVI canvas control?
    It's hard to say without knowing what transitions you're looking for, but the canvas is very capable of animating/transitioning.  The place it can fall a little short is if you require access to the alpha channel for transparency.
    I put together a short demo for you - maybe it will address some of what you're looking for.  The important functions are CanvasStartBatchDraw, CanvasEndBatchDraw, and CanvasDrawBitmap.  The animation/transition is driven by a simple UI timer.
    Let me know if you have any questions -
    NickB
    National Instruments
    Attachments:
    CanvasAnimation.zip ‏10 KB

  • Displaying the Tiff format image in JPanel

    How can i display an .tiff formatted image in a jpanel ?

    How can i display an .tiff formatted image in a jpanel ?

Maybe you are looking for

  • Capturing Issues

    Setup: Mac Pro 2X2.26 Ghz Quad Core Xeon Mac OSX v. 10.6.5 FCP: v. 7.0.3 AJA Kona LHi Capture Card AJA KLHi Breakout Box Problem: Whenever I capture anything through my AJA Kona LHi Capture Card, I have an issue of a thin strip of distorted lines at

  • N97 Phone Memory Filled Up

    Hi, I am using N97 rom 02-Aug-09. everything was working fine untill i notice tht my phone memory is getting filled up although i never installed any application & i hv set my default memory as mass memory from the very beginning. for nokia care in i

  • Calculate future date in MM/dd/yyyy format

    Hi, I am trying to add a 56 months to a given date (MM/dd/yyyy string) and output the date in MM/dd/yyyy format. Here is my code:                SimpleDateFormat date = new SimpleDateFormat("MM/dd/yyyy");                date.parse("07/30/2000");     

  • Adding option to "Add to favourite" to my webhelp skin

    Hi, I have a webhelp project to which I want to have a button in the skin that can enable me to add the current page to the favourite list.. I have found numerous options on the internet that provide options to add intenet pages to the list. However,

  • Scanned PDFs are black

    Recently I can't scan documents to be saved as PDFs. I have contracts that need to be saved as one document. What it does is create black pages! I can only save the pages individually as jpegs, which is not convenient. I redownloaded the drivers and