Cascading LOVs in discoverer desktop 10

Hi
Is it possible to create Cascading parameters in Discoverer Desktop 10?
i know the possibility in discoverer plus but didn't find the "filter the lov based on the selected condition" radio button while creating the paramenter in Desktop10.
Thanks

Hi,
You do not have to upgrade the desktop or administrator (you can if you like to).
can i install Plus as client?No, the plus is installed on IAS or weblogic
you can search this forum for links to download, and it will need installation and configuration.
the same schema, reports, configuration will work on Plus?Yes it will as long as the configuration is right.
Tamir

Similar Messages

  • Cascading LOVs in Discoverer

    I am deveoping in Oracle BI Discoverer 11g (11.1.1.4.0).  I have a report with two LOVs with a dependency. LOV ITEM type which can be Inventory or Dropship.  When the user selects Inventory I want the LOV for Order Type to display Internal Rq or Min-Max Req and so forth.  I want to know if I can define this dependency in Discoverer and how to implement it.

    Hi,
    You do not have to upgrade the desktop or administrator (you can if you like to).
    can i install Plus as client?No, the plus is installed on IAS or weblogic
    you can search this forum for links to download, and it will need installation and configuration.
    the same schema, reports, configuration will work on Plus?Yes it will as long as the configuration is right.
    Tamir

  • LOV in Discoverer Desktop Edition 4.1  Vs. LOV in Discoverer 4i Viewer

    I have developed an LOV for a parameter in Desktop Edition 4.1 which allows the user to either select a value from the LOV or enter a parameter from the keyboard. It is working perfectly.
    However, when this same workbook is executed by the Discoverer 4i Viewer, it will only allow the user to select from the LOV and does not let the user enter any value from the keyboard.
    I have not found any entries in metalink regarding this problem. Any help will be appreciated.
    Regards,
    John

    Hi John
    I'm afraid this is a feature of Discoverer Viewer. The same "feature" has been carried through into 9ias and 10g so I'm sorry to say that upgrading will not help you either.
    The newest Discoverer though, codenamed Drake, does allow this and you can either select from a list of values or you can key your own value.
    By the way, the new Discoverer also does not force you to enter any value. If you omit a value in a Drake parameter, Discoverer will assume you want all values.
    Now the bad news is that Drake has not been released yet. You should expect to see an announcement sometime in January though.
    Hope this helps
    Regards
    Michael

  • Dependent LOVs in Discoverer Admin

    Hi All,
    Can we create dependent LOVs in Discoverer. If yes can anyone throw some light that.
    regards,
    gt1982

    Well, let me try to clarify what Tamir said. I think you probably will need to do some setup work in Administrator. I am assuming that you want to do something like this in a worksheet - The user first clicks the LOV indicator on the Region parameter and picks a region from the Region LOV (say they pick the East region value), and then based on that region value, when they click on the City parameter LOV icon, the list of cities they see is filtered so that they only see cities in the East region (say New York City and Boston). To do this correctly in a worksheet, you need to define an Item Hierarchary in Discoverer Administrator. The two parameters must have some kind of relationship in the database to make this work.
    Then once you have the item hierarchy defined, the rest of your work is in Discoverer Plus. You create the first parameter in the worksheet. In my example, you would create the Region parameter first. Next you would create your second parameter (in my example, that would be the City parameter). When creating the second parameter, that is when that section on the parameter window ("Do you want to filter the list of values for this parameter") comes into play. You will want to select the "Filter the list of values based on the selected conditions" option, and then find the condition name (for the Region parameter created condition) and select that condition. The term Oracle uses for this is "Cascading Parameters". So if you search on that term in the Discoverer Plus user guide, that will give you more information on this process.
    Now, you do have to be careful. Ideally the folder with the relationship between the two parameters is based on a master table, not a detail table. If based on a detail table, you can run into performance problems when clicking on the LOV icon for the second parameter. The system may take forever to try to build that second LOV.
    But the process does work. I have used it a couple of times.
    Hope this helps a bit. Good luck.
    John Dickey

  • Discoverer report - Output from Discoverer plus is not the same as Discoverer desktop

    As a part of Upgrade project we are migrating the discoverer reports from 11i (11.5.10.2) to R12 (12.1.3) .After migrating to R12, for a custom discoverer report the output given by discoverer desktop is correct (24 rows for a scenario). But the report output from Discoverer plus does not show the credit transactions (2 rows). The output from Discoverer plus shows only 22 rows (24 - 2), which is incorrect. The query is the same in Discoverer desktop and Discoverer plus.
    Please let me know why these transactions that are appearing when the report is run from discoverer desktop are not appearing in discoverer plus. Is there any setup in discoverer plus for this?
    Regards,
    Brajesh

    Pretty hard to answer a question like this.  Best bet would be to copy the existing discoverer plus book and start removing conditions, fields, etc until those two rows from desktop show up and see if you can work it out. 

  • Get('XML') doesn't work, but get() does in javascript - CASCADING LOVs

    I'm trying to get cascading LOVs working in Apex 3.1.0 in Oracle 11g. When I call get.get('XML') it returns null in firefox and empty string in IE6. If I change it to call get.get() then it returns the XML as a string into Javascript.
    The Application process is getting called in both scenarios as i've put PL/SQL logging to disk in order to prove it. The XML being returned is very basic so i'm sure it's not a problem with formatting. I'm not getting any exceptions thrown in javascript either.
    Is it possible to use get.get() and then convert the text into an XML object which is returned as per get.get('XML') which at least will allow me to get something working ?
    thanks
    <script language="JavaScript" type="text/javascript">
    function getBusinessFieldJS(pThis, pSelect)
    alert('getBusinessFieldJS');
    try
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    var get = new htmldb_Get(null, html_GetElement('pFlowId').value, 'APPLICATION_PROCESS=GET_DATA_FIELDS_XML', 0);
    /*get.add('F120_GETBUSINESSFIELD_ITEM',pThis.value);*/
    gReturn = get.get('XML');
    alert('gReturn=' + gReturn);
    alert('gReturn.value=' + gReturn.value);
    if (gReturn == null)
    alert('gReturn is null');
    if(gReturn && l_Select)
    var l_Count = gReturn.getElementsByTagName("option").length;
    alert('l_count='+l_Count);
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++)
    var l_Opt_Xml = gReturn.getElementsByTagName("option")+;+
    + appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),+
    + l_Opt_Xml.firstChild.nodeValue)+
    + }+
    + }+
    +
    get = null;+
    + }+
    + catch (e)+
    + {+
    + alert('Exception : ' + e);+
    +
    }+
    +}+

    Hi,
    I've been trying to replicate your problem here: [http://apex.oracle.com/pls/otn/f?p=37055:1]
    My application process is:
    BEGIN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p('Cache-Control: no-cache');
    HTP.p('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn('<select>');
    HTP.prn('<option value="-1">Please Select</option>');
    HTP.prn('</select>');
    END;(Just copied from your post and XML changed to xml, otherwise untouched)
    And my page has a simple HTML region with the source of:
    &lt;div id="XMLOUTPUT" style="border:1px solid blue; width:200px; height:200px;"&gt;&lt;/div&gt;
    &lt;div id="XMLOUTPUT2" style="border:1px solid blue; width:200px; height:200px;"&gt;&lt;/div&gt;
    &lt;script type="text/javascript"&gt;
    function getMyXML()
    var l_Return = null;
    var get = new htmldb_Get(null, html_GetElement('pFlowId').value, 'APPLICATION_PROCESS=RETURN_XML', 0);
    gReturn = get.get('XML');
    var d = html_GetElement('XMLOUTPUT');
    d.innerHTML = gReturn;
    var d2 = html_GetElement('XMLOUTPUT2');
    d2.innerHTML = get.get();
    var s = gReturn.getElementsByTagName("select");
    alert(s.length);
    &lt;/script&gt;
    &lt;a href="javascript:getMyXML();"&gt;Click&lt;/a&gt;Click on Click at the bottom of the page. The first DIV gets the get.get('XML') object and the second one the get.get() and a popup message tells you how many "select" items are in the XML version.
    As far as I can see, this works fine.
    Andy

  • Checkbox in discoverer desktop edition

    Hi,
    The query we are executing created for cross tab report have plenty of views and is returning null data which needs apps intialization which cannot be done from discoverer.
    I think loging into Discoverer desktop edition with oracle applications user would resolve the same.
    I have checked the checkbox in desktop edition and logged in as operations/welcome. but it is showing as invalid user name /password.
    please help in setup that must required to check and login to oracle applications user. Also Provide if there is any alternative.
    I would be very much thankful if you could help me on this.
    Best Regards,
    Katty.
    Edited by: karthik.thadakamalla on May 10, 2009 11:49 PM

    Hi,
    The apps initialization can be done by Discoverer provided that you are connecting to an Apps mode EUL with an applications username and password.
    You must specify that you want an Apps mode EUL when the EUL is created. Then when you connect to Disco Admin as the owner of the EUL you will be able to grant access privs and security to the Application users and responsbilities.
    If you have an apps mode EUL and still get an invalid username/password then this could be because the application is running in secure mode. Then you need to copy the .dbc file to a local directory. Search this forum for details on how to do this.
    Rod West

  • Discoverer Desktop crash

    When trying to open a report created by a colleague, Discoverer immediately throws a Windows (Vista 32Bit) error that "Oracle Discoverer Desktop has stopped working". I click close program, and Discoverer closes. It's a very simple report so I recreated it yesterday, ran it fine, could change parameters for different outputs, no problems. This morning I log in and when trying to open the newly created report from yesterday, same error. No exception, no memory pointers, nothing, just the Win error that it has stopped working.
    Anyone seen this before? Running Discoverer Desktop v 10.1.2.3 Client v 10.1.2.55.26.

    My colleague was able to open and modify the report that I created without issue so I suspect the report is alright, perhaps my installation? Odd that I can run many other reports just fine in the same environment and that this one ran fine from development, but as soon as I closed it to reopen, no luck.

  • Discoverer Desktop Issues 10.1.2

    Hi,
    I am using Discoverer Admin and Desktop both of Verions 10.1.2
    I have no issue with Admin; I could do successfully all the work here.
    In Desktop i have login successfully as Application user; and created simple Order Report workbook (Order_Report.DIS) and saved it.
    Again when i login as application user in desktop; When i try to open my existing workbook (Order_Report.DIS); It will prompt me
    Do you want to run the query for the sheet Ord_report; Yes/No; If i select option as Yes i am getting error mesg as Failed to connect to database; If i choose No I will get empty sheet; In either case I will see empty sheet appears; From the Tool Bar if i select Sheet --> Refersh Sheet; I am able to see records in my sheet.
    When i continue working on this sheet; All of sudden i get error screen as Oracle Discoverer Desktop has encountered a problem and needs to close
    Basically i have two problems in desktop
    1. When I open workbook i get error as Failed to connect to database
    2. All of sudden i get vague error as Oracle Discoverer Desktop has encountered a problem and needs to close
    I would appreicate if some one can help on this.
    Thanks!!
    Uday

    Hi,
    I have the same issue with Discoverer Plus 10g Rel 1 (10.2.0.2 )
    Desktop and Administrator are working good. So, I cannot resolve it by re-installation.
    Also, this is not reproducible. Sometimes it works very smoothly, but sometimes it gives error for the same report.
    Any idea ?
    Thanks!
    Yogini

  • Discoverer Desktop Graphing Questions

    I have several questions about the graphing tool in Discoverer Desktop:
    1. I'm bringing in a customer id field which I convert with a to_char in the query from a numeric field. Most of them are 5-digit, but some are 4. I notice in the x-axis the customer id's appear only for the 5 digit id's, and for the 4-digit ones the identifier appears. i.e. if the 5th record has an id of 1508, instead of displaying 1508 it displays 5. Does anyone know how to correct this?
    2. In the y-axis values, is it possible to display more than 5 decimal places? (We're dealing with very small percentages). When I try to enter 6 or higher as the decimal value in Options, it says invalid number.
    3. When I open an existing workbook, it readjusts the y-axis scale to a max of 1, when I've set it to .0001. How I can I make this retain my scale values?
    4. Is it possible to display the y-values in the graph area itself next to the plot points?
    Thanks for any help!!!!

    Hi paul,
    Its a good idea to upgrade from 4i to 10g 4i is no more used by many and their are some issues or bugs with it.The latest version is 11g which has been released 1 week back.If not go with 10g version available.
    1) Do all reports have to be stored on the database to allow them to be accessed by Plus or Viewer? Can only the 10G client version open files from a local hardrive or shared network drive?Yes they have to stored in the database so any ened user can access them from plus or viewer.
    Can only one report be open at any given time with Plus or Viewer? In client it is possible to have 2 reports open at the same time to facilitate easier comparisons.Yes,if the reports are registered as different reports and if the end user has access to both the reports thn he can open and compare it OR if both reports are in same workbook as different sheets than its easy to view or compare.
    NULL values are still showing the word "NULL" even though in Tools Options we have set it to show blank, existing reports are still using the NULL value.It should show blank,might be some problem.In discoverer 10g i think you will not find this issues.
    Hope this helps you.
    Best Wishes,
    kranthi.

  • Discoverer Desktop 10.1.2 error while opening the report.

    Hi ,
    Do you know why I would be able to open a report from a Discoverer Plus responsibility in Oracle Financials but not from Discoverer Desktop?
    The report was owned by User1 and shared with both Admin1 and AdminUser1. I have tried accessing the report with both user names, and in both cases, I get the error shown below when I am logged into Desktop but I do not get the error when I log in through the application.
    Error message:
    Join configuration cannot be resolved. Reason: more than 1 of the detail folder uses non-aggregated items
    Thanks!
    Radhakrishna

    Hi,
    try the solution suggested in below thread.
    Join Configuration cannot be Resolved!!!
    thanks!
    Sunil

  • Discoverer Desktop Report issue

    Hi,
    One of my user is facing a format issue while running the report in Oracle Discoverer 10g. The report produces the following out put.
    count(Col A)     Col B     Col C     Col D
    12          A     200709     12-Sep-07
    11          A     200709     21-Sep-07
    24          B     200709     11-Sep-07
    32          B     200709     13-Sep-07
    10          B     200710     15-Oct-07
    Col A is of number data type, Col B character, Col C is number and Col D is date
    if Col D is removed from the report, the user is getting the result in following format
    count(Col A)     Col B     Col C
    23          A     401418
    56          B     401418
    10          B     200710
    i.e. col C displays the sum of the value based in Col B instead of displaying it as 200709.
    but when I ran the report from my end I'm getting the result in a proper manner.
    count(Col A)     Col B     Col C
    23          A     200709
    56          B     200709
    10          B     200710
    Please help me in sorting out this issue.
    Environment Details:
    Oracle Discoverer Admin 10g(9.0.4)
    Oracle Discoverer Desktop 10g (9.0.4)
    End User Layer 5.0.2
    Thanks in Advance.
    Regards,
    SS

    @Himanshu3jul:
    I'm not using any Oracle Application secure views. Also, the data that are being displayed is proper if Col D is not removed. If user removes Col D, the result is getting aggregated based on Col B but for me it is showing in a perfect manner.
    @puppethead:
    I'm afraid I may not be able to the check the registry on user machine since user is sitting at a different location.
    @Rod West:
    The default Aggregate property for Col C is set to <none> and it is grayed out. I'm not able to change it too. Also, if it is a bug then I should get the result as what user receives but I'm not facing any issues in that report but only user is.
    Please let me know what can be done next to figure it out.
    Also, I have the screen shots from my machine and from user’s. if you think that it will really help then I can post it. please let me know where and how I can post it so that you can have a look at it.
    Thanks,
    SS

  • Report Layout difference in Discoverer Desktop and Discoverer Viewer

    Hi,
    A report was developed in Discoverer Desktop. It is having some 10 columns as data points. The summarized columns for those 10 columns are required. But only 3 columns should be displayed in Detailed Data Points. So we shrinked(brought together) all the unwanted columns keeping 3 datapoints displayed. Now it is working fine in the discovere Desktop. But when we open the same report in the Discoverer Viewer, all the 10 columns are displayed in the Detailed Data Points as well.
    Thanks in Advance
    Regards
    Rakesh

    hi Michael,
    good morning..hope u had a good sleep.
    as per your last thought y'day, even though i create a function for the sum of season values n select those columns into the report, those will not be shown as summarized columns on right hand side of the report. they will be shown as datapoints for every month in that selected season.
    i think the only possible solution for like this report is to hide those unwanted columns. for this we have hidden checkbox option in tools->sort while developing. but this option is available only for tabular reports.
    if u come up with any fresh solution for the fresh day...i am glad.
    Thanks,
    _Rakesh.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Problem while installing discoverer desktop edition

    HI
    I find few error messages while installing discoverer desktop edition..
    When i give oracle home as
    name:OracleHome92
    Location: DiscovererDesk
    it gives me a error
    " oracle discoverer doesnot support multiple installations thus it cannot be installed on oracleHome92.It can only be installed on 'OraHome92'"
    When i give oracle home as
    name:OraHome92
    It automatically takes my 9i oracle home path i.e E:\oracle\ora92 and gives me a error like
    "The location specified 'E:\Oracle\ora92', is already used an oracle home for an
    'Oracle 82 beta'.It cann't be used as an oracle home for nt."
    I have oracle 9i and form6i,report 6i installed in my system.
    Please suggest me ..
    Regards,
    Satya

    Hi
    The easiest way to get a fully working TNSNAMES in a version 4 environment is to use the Net 8 Configuration utility.
    Here's a workflow:
    1. From the Start button, select Start | Oracle for Windows NT | Oracle Net8 Easy Config
    2. When it starts, check Add New Service and in the little box to the right type the name by which you want this connection to be known
    3. Click the Next button
    4. Select TCP/IP (Internet Protocol) and click the Next button
    5. Enter the fully qualified domain name or IP address of the server that contains the database
    6. In Port, enter the port number - it defaults to 1521
    7. Click the Next button
    8.In Database SID enter the name of the database, then click the Next button
    9.Click the Test Service button
    10. Provide a username and password for an account on the database, then click the Test button
    11. If you see: Connecting.... The test did not succeed you got the username/password combination wrong or some other part of the setup
    12. When you see: Connecting.... The connection test was successful click the Done button
    13. Click the Next button
    14. Click the Finish button
    You should now have a valid TNSNAMES connection for use by Discoverer 4
    Best wishes
    Michael

  • Discoverer Desktop Connections Fails With Invalid Username/Pass in r12

    Hi all;
    I have problem. I can login Discoverer Administrator from my localmachine and i can see what ppl did it there.. But when i try to login Discoverer Desktop from my localmachine its gives me Invalid Username/Pass. error.
    I even cant login my system from browser :
    http://xx.com:7778/discoverer/plus << pages comes and i fill in the blanks area like:
    Connect to : Oracle Application
    Username: sysadmin
    pass: ***
    Database: VIS
    I found some document from forums. Whihc is :
    Discoverer Is Unable to Connect to Oracle Applications database: invalid username/password      Doc ID: Note:467919.1
    Discoverer 10g (10.1.2) Connectons To Oracle E-Business Suite 12 Fails With 'Invalid Username/Password'      Doc ID: Note:443661.1
    But before i apply those patch i want to take advice from you. Coz i can login Discoverer Administrator and can use it but cant login Discoverer Desktop...its kind of wierd... i already checked what i have done in installtion and its all seems correct.
    Any idea;
    Regards
    Helios

    Discoverer supports two kinds of connections - database schema connections and apps connections. For Disco Admin, you login using a database schema, which, as you stated, works. For Disco User you login using an Apps user account (for which there is a no equivalent database scherma). To enable such a connection, you need to check the "oracle applications user" check box on the 10g Disco login screen. Also, under Tools --> Options, in the Connection tab, make sure that "connect to both standard and applications EULs" radio button is selected.
    HTH
    Srini

Maybe you are looking for

  • Customer Master Data Report

    Hi,     How can i see the report of customer master data.. Like for sale order it is va05... So how for a customer master data? Ashis

  • Working with .MOD clips

    Before I go on I can see I'm asked if I want to use or delete the recovered version (of this content?) I'll do nothing if i can until I know what it means!   Now about .MOD - Since I could not see much listing about the topic I'd like to share my suc

  • Dual 1.8 GHz G5 only running of one processor

    My dad has a Dual 1.8 GHz G5 and had problems in the past, one of the processors went out. He took it to a repair shop and they switched it to run only off one processor. Apparently after they repaired the computer, they didn't tell it to run on both

  • Question about installing Gnome

    Hey everyone. I'm currently a Ubuntu user planning on trying out Arch Linux after my exams are done (in 2 weeks ). I understand that in order to install Gnome, i need to update pacman using the commands 'pacman -Syu'  and 'pacman -Syy'. After this pr

  • Problem with Select Filter value.......

    HI all We have created a report on Sales cube,and Inserted the Report into work book. In the report we have 2 Commission codes 1.Customer,2.material.    when we are trying to select filter values for customer Commission code,we are Gatting the Pop-up