How to use image prompt?

I want to use a map as image prompt. Are there some examples for that?

Steps are :-
1. Create new request in Answers.
2. And click on Prompt tab.
3. Click on create prompt , Click in Image prompt.
4. Give Captions and image URL and other details.
For more details use the link below.
http://oraclebizint.wordpress.com/2007/11/02/oracle-bi-ee-101332-using-image-prompts/
Regards,
Som.

Similar Messages

  • Can any one tell me how to use Image Prompt

    Hi
    Can any one tell me how to use Image Prompt in Answers?
    Thanks
    Rahman

    Had a look at this already?
    http://download.oracle.com/docs/cd/E12103_01/books/AnyUser/AboutPrompts.html
    Cheers,
    C.

  • How to use images from ADFLib

    Hello OTN,
    My application is devided into several ADFLibs, one of them is CommonUI. It includes common skin and it is imported into every application part.
    There are some images which should be available in different parts, so I decided to put them in CommonUI.
    After deploying adflibCommonUI adn refreshing Resource Palette, somehow I expected to see this image there, but it isn't.
    Could someone, please, explain me, how to use images contained in imported ADFLib, for example, as imageLink icon?
    Thanks.
    ADF 11.1.2.1

    Hi,
    images need to be saved in a specific file structure in the JAR file to be accessible. See:
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/86-images-from-jar-427953.pdf
    Frank

  • How to use the prompted value in the filter expression

    Hi
    Is it possible to use the prompted value in the filter expression?
    My requirement is that user will be prompted for a date field and I need to filter the records such that the records are displayed for the last 5 weeks from the date entered by the user.
    If somehow I know how to use the prompted value in the filter expression then this requirement is easy to be done. If this is possible, please guide me?
    If there are other ways to acheive the desired results then please suggest.
    Thanks
    -Jaz

    Edit: example added
    SQL> create table tb_test
      2  ( id number(5)
      3  , tot number(5)
      4  , mon_tot number generated always as (tot*15) virtual
      5  );
    Table created.
    SQL> insert into tb_test (id, tot) values (1, 5);
    1 row created.
    SQL> select * from tb_test;
            ID        TOT    MON_TOT
             1          5         75
    1 row selected.
    SQL> update tb_test
      2  set    tot = 15
      3  where  id = 1;
    1 row updated.
    SQL> select * from tb_test;
            ID        TOT    MON_TOT
             1         15        225
    1 row selected.

  • How to use image maps in ADF 11g

    Can somebody point me to code snippet for using image maps in JSF Page.
    I just want to use image maps in my application..but i don't know how to use image maps in ADF.
    -Deepti

    Hi chris,
    My DataBase script is given in below
    CREATE TABLE XXSR.SR_HIERARCHY
    FORM_ID NUMBER,
    FORM_NAME VARCHAR2(30 BYTE),
    PARENT_FORM_ID NUMBER,
    FORM_LOCATION VARCHAR2(1000 BYTE),
    IMAGE_FILE ORDSYS.ORDIMAGE
    I want to store the image in database from front end using ADF 11g
    -Deepti
    Edited by: 913387 on Feb 24, 2012 5:36 AM

  • How to use image and text in same component

    Hello
    Do you know how to use image and text in same component in java ?
    because i need this in my project ,which is chat application , to
    put the received text and any image if it is need within the text

    thanks levi_h
    JTextPane class extends JEditPane and allows you to embed
    images or other components within the text managed by the component

  • How to use image from a file in signature appearance.

    Hi,
    I am creating a Plugin for acrobat 9, using PubSec using DocSign sample as basis. I have created the appearance using text objects and the logos data that came with the DocSign sample. But I want to use image from a file (like, jpg) in the signature appearance creation. So far the documentation doesnt tell how to achieve this.
    Can you please tell me in a  "How-to" kinda way to achieve this?
    Thanks in advance.

    Thanks for ur prompt reply.
    There are so many samples in the sdk. which one is the "sample for adding images."?

  • How to Use Image Processor for Multiple Sizes

    I'm trying to use Image Processor to work on a folder of images and to create several sizes of .jpg's . I find an option to Save as JPEG in one size only. Is there any way to set up Image Processor to save JPEG to multiple sizes?
    Thanks in advance for your help!!!

    Hi Mehtap,
    Using the script will give you multiple selections.
    This is how I did it and it works well. It just separated the values by semicolon ";" .
    TEXT_1.setText(DS_1.getFilterText("0CUSTOMER"));
    When selected only one value:
    When selected more than one value:

  • How to use Image field in SQL-7 for curvs

    I sampling data from a NI-card. There will be a lot of data so I thought I should use Image-field in SQL-7 to save the hole curve. How do you do that?

    I would suggest looking into the Database Connectivity Toolset. It has complete SQL functionality and uses ADO to connect to many types of databases. I have it and it comes with example programs which demonstrate how to write to and read from databases using SQL.
    J.R. Allen

  • How to use image load gif of 「GIF87a」 by ByteArray ?

    Hi all:
    I want use image load gif file of 「GIF87a」 by ByteArray, but it not be displayed correctly on the screen, How can I do it , or How to conver 「GIF87a」 to 「GIF89a」 ?
    private function onButtonClick():void {
        fileRef.browse([new FileFilter("Images", "*.jpg;*.gif;*.png;*.swf")]);
        fileRef.addEventListener(Event.SELECT, onFileSelected);
    private function onFileSelected(e:Event):void {
        fileRef.addEventListener(Event.COMPLETE, onFileLoaded);
        fileRef.load();
    private function onFileLoaded(e:Event):void {
        var bytes:ByteArray = e.target.data;
        imageLoader.source = bytes;
    <mx:Image  id="imageLoader" onclick="onButtonClick()">

    Hi zhaojie198281,
    I've made a small modification on your code and it works fine. Try the following code,
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:mx="library://ns.adobe.com/flex/mx"
            width="900" height="400">
    <fx:Script>
      <![CDATA[
       private var fileRef:FileReference = new FileReference();
       private function onButtonClick():void {
        fileRef.browse([new FileFilter("Images", "*.jpg;*.gif;*.png;*.swf")]);
        fileRef.addEventListener(Event.SELECT, onFileSelected);
       private function onFileSelected(e:Event):void {
        fileRef.addEventListener(Event.COMPLETE, onFileLoaded);
        fileRef.load();
       private function onFileLoaded(e:Event):void {
        var bytes:ByteArray = e.target.data;
        imageLoader.source = bytes;
      ]]>
    </fx:Script>
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:layout>
      <s:VerticalLayout paddingTop="10" paddingLeft="10"/>
    </s:layout>
    <s:Button label="Load!" click="onButtonClick()"/>
    <mx:Image id="imageLoader"/>
    </s:WindowedApplication>

  • How to use the prompt value in the report column

    Hi
    I have a report prompt column which is 'Adj Type' which holds values 10,20,30 and when user selects Adj Type = 10 then this value should be passed to report column.
    For Eg. Column 1 value is 10 and this should multiple with prompt value and the output should be 10* 10.
    Any thoughts how to capture the prompt values in report column for calculation.

    hi hsekar,
    1) Declare a presentation variable in prompt under the Set Variable section -->Presentation Variable -->P_var
    2) In Fx Table_name.Your_column * @{P_Var}
    @{P_var}{20} ( 20 is default value it will override when a user selects value in prompt
    Thanks,
    Saichand.v

  • Applet : How to use Images in Jar file

    I want to put all images into a jar file to improve speed of loading.
    But how to invoke images from Jar file?
    Thanks.

    @Op. It's very important for a developer to know how to find information, and that skill usually comes with experience. Google is one of the best ways to find information and solutions to the most common problems.
    Kaj

  • AIR Application Installer screen - name - How to use image??

    I want to use the image instead of the plain text for the name of the application. Is there any way to use image as an application name?
    PrincessWidget-app.xml
    <!-- Used as the filename for the application. Required. -->
    <filename>Princess Countdown Connection</filename>
    <!-- The name that is displayed in the AIR application installer.
    May have multiple values for each language. See samples or xsd schema file. Optional. -->
    <name>assets/Princess_logo.png</name>
    <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
    <version>v1.0.1</version>

    thanks levi_h
    JTextPane class extends JEditPane and allows you to embed
    images or other components within the text managed by the component

  • How to use multi prompts using java script in FF3.0*

    Hey i used the java script given in link :- http://sranka.wordpress.com/2008/11/09/how-to-replace-multi-go-button-prompt-by-one/#comment-96
    to hide multi-go-button in prompts and it works for IE 7 and firefox 2.0* with 10.3.4.1.
    Now since 10.1.3.4.1 is certified with firefox 3.0* ,when i use this same script in firefox 3.0* for my prompts it doesn’t work .
    Any idea why ? Please help me with this,as i want to use this hide go button feature in firefox 3.0* too.
    Are these scripts browser to browser incompatible ? If yes from where can i get the script for firefox 3.0* ?
    Awaiting for the inputs.
    Thanks,

    Vikas:
    In the 'Button Attributes' field of the button enter 'id='thisButton'.
    Modify the button template to include the substitution string #BUTTON_ATTRIBUTES# . This should be put in the anchor tag in the template defintion.
    Modify your Javascript to reference the above id as
    html_GetElement ('thisButton').disabled = true;
    ....Varad

  • How to use image as pannel header?

    hi all,
    we here here are building a flex application for Laingorourke
    UK's domestic housing solution, which will cater the dynamic needs
    of bussiness to collect user/customer's feedback and selection on
    various components which will be used/installed in his house.
    Now the challenge, we have to macth the flex application to the
    corporate branding ( www.exploreliving.co.uk/test ). as in flex
    style explorer there are header images used for pannels ( most
    probably ). We here also need the same. Can anbody guide me to the
    link/resource from where i can get an idea of doing the same.
    flex style explorer :
    http://www.adobe.com/devnet/flex/articles/style_explorer.html[b
    thx in advance.
    warm regards
    gaurav verma

    Gaurav,
    In Flex 2.0, you can do the following:
    <?xml version="1.0" encoding="iso-8859-1" ?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml">
    <mx
    anel width="400" height="300" title="My Title"
    titleBackgroundSkin="@Embed('header.gif')">
    <mx:Button/>
    <mx:TextInput/>
    </mx
    anel>
    </mx:Application>
    - Jason Szeto
    "gv79" <[email protected]> wrote in message
    news:e3mj9g$2v6$[email protected]..
    > hi all,
    >
    > we here here are building a flex application for
    Laingorourke UK's
    > domestic
    > housing solution, which will cater the dynamic needs of
    bussiness to
    > collect
    > user/customer's feedback and selection on various
    components which will be
    > used/installed in his house.
    >
    > Now the challenge, we have to macth the flex application
    to the corporate
    > branding ( www.exploreliving.co.uk/test ). as in flex
    style explorer there
    > are
    > header images used for pannels ( most probably ). We
    here also need the
    > same.
    > Can anbody guide me to the link/resource from where i
    can get an idea of
    > doing
    > the same.
    >
    > flex style explorer :
    >
    http://www.adobe.com/devnet/flex/articles/style_explorer.html
    >
    > thx in advance.
    >
    > warm regards
    > gaurav verma
    >

Maybe you are looking for