I want to display the narrative view as All Choices

Hi Experts,
If ‘All choices’ option is selected, I want to display the narrative view as All Choices.
How do I achieve it?
Waiting for your reply....
Regards,
Sathyan

Hi Sathyan,
Set a presentation variable for that prompt.
and in request, go to the column formula,
CASE WHEN '@{pv_var}' IS NULL THEN 'ALL CHOICES' ELSE col_name END
Regards,
Raghu

Similar Messages

  • Hide the Narrative View in 11g

    Hi,
    I have a requriment where users want to hide the filter view on the report and should be able to see only when they download or print the report.I don't find option to hide on the Default Filter View (i.e. in CSS properties DISPLAY:NONE).Instead I am trying if it is possible in Narrative View to call the Column @1 and hide it in report and show only when they download the report.
    Any ideas?Really appreciate your help
    Thanks

    I got it to hide the narrative text and display only when downloaded.
    div style=display:none@1/div. But can we do it on Filter View?
    Edited by: user620031 on Dec 5, 2011 4:13 PM
    Edited by: user620031 on Dec 5, 2011 4:13 PM

  • Want to display the UDID

    Hi,
    This is my first post on Adobe DPS forum.
    On one page I want to print the UDID of my iPad. But this should be a variable as whenever I open my folio on another iPad it should show the UDID of that iPad. All in all, whenever I open my folio it should display the UDID of the iPad on which I'm opening the folio. Is it possible?
    Thanks in adavance and best regards.
    With regards,
    Anil Yadav

    i don't think you have access to this 'sensitive kind of information'.
    a Google search for "html UDID display" might get you the answer in seconds.
    —johannes
    (mobil gesendet)
    Am 07.10.2011 06:11 schrieb "Anil Yadav" <[email protected]>:
       Re: want to display the UDID  created by Anil Yadav<http://forums.adobe.com/people/Anil+Yadav>in
    Digital Publishing Suite - View the full discussion<http://forums.adobe.com/message/3959005#3959005>

  • I want to display the Employee details in table format without using iGrid

    Hi all,
    Can anybody help me that I want to display the Employee details return by transaction in table  format without using iGrid.

    Hi, view the link below.
    http://help.sap.com/saphelp_xmii115/helpdata/en/Advanced_Topics/Customizing_Output/Customizing_Output.htm
    Hope this help.
    Danilo Santos

  • I redownloaded my Photoshop CS5 and Camera Raw will not accept my RAW files nor will the Adobe Bridge display the picture view of these files. A message displays saying it doesn't support this camera.  I have a Nikon 5100 DSLR Camera.  It always displayed

    I redownloaded my Photoshop CS5 and Camera Raw will not accept my RAW files nor will the Adobe Bridge display the picture view of these files. A message displays saying it doesn't support this camera.  I have a Nikon 5100 DSLR Camera.  It always displayed them in the past.  How can I get it to display these photos in Bridge and open them in RAW?

    Adobe - Adobe Camera Raw and DNG Converter : For Windows : Camera Raw 6.7 Update
    Adobe - Adobe Camera Raw and DNG Converter : For Macintosh : Camera Raw 6.7 Update
    Benjamin

  • Prompts are not working when we call another report from the narrative view

    Hi,
    In my dashboard i need a table view report which should have scrolling option only for that section.
    For this i added a html tag <iframe ........scrolling="yes"> in the narrative view and i added that narrative view in the report.
    Now,it works fine in the dashboard.
    But when i apply prompts in the dashboard the values are not filtering even though i added the "is prompted" filter condition in the criteria of both narrative view section and the called function.
    Any help would be greatly appriciated.
    Thanks,
    chinna.

    Hi,
    since you have created an iframe dashboard prompt wont work on that report.Same is the case if you put the report in Embeded content.
    One possible workaround is to creaate a dummy report having columns same as that of dashboard prompt.Put all the columns is prmompted in this report
    (No need to create dummy report if you already have those columns in some other report,You can use that report also)
    Then go to your Iframe report and use "filter based on other request".In this way dashboard prompt will filter dummy report and based on dummy report values your iframe report will also filter.
    Thanks
    Sandeep

  • I'm using qurey panel with table.i want to display the rows as default

    Hi
    I'm using jdeveloper 11.1.1.2.0 with ADF 11g.
    I'm using qurey panel with table , for first time when i run ,rows are not displayed as default .After i fire search button records / rows are displaying.Now i want to display the rows in table when i run for first time , mean i want to display rows by default.
    thanks in advance.

    Hi,
    if the queryPanel is based on a ViewCriteria in ADF BC then this autoExecute can be defined on the VC definition
    Frank

  • I have a key figure in my master data table i want to display the key figur

    Hi All,
    I have a key figure in my master data table i want to display the keyfigure in my report how can i display it can somebody help me in this scenario 
    Regards
    Kiran Kumar

    Hi Kiran,
    Assume that Material master data table material has price as an attribute. To get this price as key fig in query, get material number in rows and in columns create new formula with replacement path to get material price as key figure.
    Note: Without taking material number into rows, we can't get the price into columns.
    Hope this helps u..
    Cheers......
    Sk babu

  • I want to display the number of Passed / failed tests in Testtand xml report , please help me

    Hi, I want to display the number of Passed / failed tests in Testtand xml report , please help me.
    My requirement is later i should be able to display these number of passed/failed test in report header too.
    Solved!
    Go to Solution.

    I have attached a sequence to give you an idea of how to get the Result count (I didn't check it's working ), I have used "SequenceFilePostResultListEntry" callback to calculate the Result Count,
    and the Result Count is passed to the "ModifyReportHeader" through File Globals,  where you can edit the XML file to show it in the Repot (follow the link in my previous post).
    Hope this helps
    AshwiN,
    Attachments:
    Get Result Count.seq ‏8 KB

  • I want to display the 3 different counts in one table

    Hi,
    I have three different counts , now I want to display the 3 counts in one table. Is it possible,
    For example :
    1. Select count(*) from table1 ;
    Ans : 10
    2. Select count(*) from table2;
    Ans : 20
    3. Select count(*) from table3;
    Ans : 30
    Now I want to display like this
    A 10
    B 20
    C 30
    Thanks

    Nihar,
    You can write a pl/sql block to achieve this
    CREATE TABLE new_table (table_name VARCHAR2 (30), COUNT     NUMBER);
    DECLARE
       CURSOR mcur
       IS
          SELECT   table_name
            FROM   user_tables
           WHERE   table_name IN ('A', 'B', 'C');
       v_sql   VARCHAR2 (100);
       v_count number;
    BEGIN
       FOR x IN mcur
       LOOP
          v_sql := 'select count(*) from ' || x.table_name;
          EXECUTE IMMEDIATE v_sql INTO   v_count;
          INSERT INTO new_table
            VALUES   (x.table_name, v_count);
       END LOOP;
       COMMIT;
    END;
    select * from new_table;Regards

  • I want to display the website which i have designed using jsp in telugu....

    Hi,
    I want to display the website which i have designed using jsp,mysql in telugu.I have searched a number of articles but couldn't get sufficient information.I read articles on internationalise jsp based websites but they were about converting in other languages rather than indic languages.
    Could anyone let me know the procedure to convert it into indic languages.What all are required.
    Thanks.

    (Please keep the subject line to a short descriptive sentence. Don't put your entire question there.)
    LabVIEW can communicate via serial port. If the microcontroller listens to serial data, there must be a certain command to light a LED connected to a certain port. All you need is to check the manual to find out what the serial data needs to be.
    LabVIEW Champion . Do more with less code and in less time .

  • Want to display the item in MDM2 but dont want the customer to order it

    Hi
    I want to display the item in the catalog but i want to block the material from being orderd. how do i do that?

    Hi,
    SRM-MDM Catalog has somthing like display mode. You can set it in UI customizing. If you want to block order for only some of items, please create custom filed like "display only=X" and check the value in the BADI BBP_CATALOG_TRANSFER.
    Regards,
    Masa

  • Want to display the contents of a text file in a jsp

    hi
    i am new to jsp, i want to display the contents of a text file in a jsp file ,whenever jsp file is loaded from browser.
    -thanx

    i had come up with the code
    <!-- form.jsp -->
    <%@ page import="java.io.*, java.lang.*" %>
    <%@ page language="java" %>
    <html>
    <head>
    <title>Display</title>
    </head>
    <body>
    <%
    String sample[100];
    String line;
    %>
    <%! int i=0; %>
    <%!File f1 = new File("c:\\file.txt"); %>
    <% try { %>
    <%!FileReader fi = new FileReader(f1); %>
    <% } catch(FileNotFoundException io) { } %>
    <%!BufferedReader in = new BufferedReader(fi); %>
    <%
    while((line=in.readLine())!= null)
    sample= line;
    i++;
    in.close();
    %>
    i will display sample here
    </body>
    </html>
    but i am getting error
    display_jsp.java:16: unreported exception java.io.FileNotFoundException;
    must be caught or declared to be thrown
    FileReader fi = new FileReader(f1);
    ^
    plz help
    -thanx

  • Can I display the list view of a blog horizontally?

    Hi,
    Is there any way that I can display the list view of a blog horizontally? {module _blogpostlist} defaults to a vertical display.
    Thanks,
    Dean

    Hi Dean,
    How you present it is up to you and use of CSS.

  • Design Window is not displaying the correct view

    Hi
    For some reason the Design View on my CS3 is not displaying
    the correct view.
    It used to show how the web page would look but it is simply
    showing up the wording and pictures surrounded by dotted black
    lines.
    I am using a template as a bases for all the pages and all
    the pages are showing like this.
    My other sites are showing up OK though.
    When I Preview in Browser, it all shows up OK.
    Can anyone help?
    Bezz

    VIEW | Style Rendering > Display Styles
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Bezz333" <[email protected]> wrote in
    message
    news:fttdsr$394$[email protected]..
    > Hi
    >
    > For some reason the Design View on my CS3 is not
    displaying the correct
    > view.
    >
    > It used to show how the web page would look but it is
    simply showing up
    > the
    > wording and pictures surrounded by dotted black lines.
    >
    > I am using a template as a bases for all the pages and
    all the pages are
    > showing like this.
    >
    > My other sites are showing up OK though.
    >
    > When I Preview in Browser, it all shows up OK.
    >
    > Can anyone help?
    >
    > Bezz
    >

Maybe you are looking for

  • Error Message while making PO

    Hi, I got a error message while creating PO. "No short text maintained in language DE(Please re-maintain material)" How to go with this? Regards

  • Trouble with new ipod nano..

    Just purchased a new ipod Nano but the music wont load fron my computer- Mac OS 10.6.8. The itunes version is the latest- 11.1.3 (8). Under devices the 'syn' option can't be selected and only 'Transfer purchases from ipod' The ipod shows up in itunes

  • Mac OS Server Open Directory Will Not Turn On

    Yesterday I got the server application for Mac OS Mountain Lion.  This is my first time working with apple server software and when I try to turn on Open Directory it says: An Error occured on the server while processing a command. The error occurred

  • Printing Panoramas with Aperture

    I've run into a roadblock trying to print panoramas with my Epson 2400. If I select A4 - Banner - Borderless as my paper, Aperture restricts me to an 8.5 by 11 (roughly) print. If I select custom size, I can set the proper size (in this case, 8 by 22

  • GUI tool to monitor all oracle 11gR2databses on a physical server

    Hi friends, need some help.actually i am searching for some tool where i can see all the oracle databases in a server then there schemas and all other objects.so that i can check and manage all the database related information