Filter view with session variable does not display value properly.

Hi All,
I have a very unique issue and I am not sure if anyone ran into this before.
I have a prompt in my dashboard and a link to a report. The session variable default the value to the current value (term)
when I click the link to the report I get the following value, on the filter view of the report: Term Code Desc is equal to NQ_SESSION.CSA_Analysis_Term
however if I click the go button in the prompt I get the value: Term Code Desc is equal to 2030 (2011 Spring)
does anyone have a solution to this issue
thanks

Hello,
Have the same issue. Any solution. Gurus plz help.
thanks,
deep

Similar Messages

  • CM14 BI Publisher - modifying an existing Data Model, the Graphic View in Query Builder does not display

    I am trying to edit the default forms/reports that come with CM14, trying to edit the data model, data set, (to get to the old Infomaker style graphic view) , the Query model does not display (error the list of tables is too long..) Oracle tell me the limit is 60,  there are not 60 tables referenced in any CM report.
    Does this Query builder view work at all on any report?
    (bigger question, we are moving from CM12, should we move to CM13 which works with infomaker?)
    Thanks,
    Paul L

    Kurt, thanks for your replies.
    A couple of notes/clarifications.
    1.     You are correct that BI works better in Firefox--I have observed issues with the BI display when using IE.  I would recommend using Firefox too.
    2.     You are correct about the way to get to the Query Builder to see a graphical view of data tables.  There are basically two issues with this that I mentioned, but will re-iterate:
    a.  If you have an EXISTING query in the data set, then click the "Query Builder" button, this will remove the existing query that's there, it will NOT display the existing query in the query builder.  Query Builder works only to create a NEW query from scratch.
    b.  Query builder is limited to selecting 60 fields max in your query.  If you are creating a large report with many tables, you may find that 60 fields is not enough.  For that you will have to work in the SQL edit screen rather than using the query builder.
    I would impress on anyone developing CM14 reports that they become familiar with the database schema and relationships to avoid problems when developing your BI reports.  You should be able to find the tables and joins documentation in the knowledgebase.

  • Preview does not display pdf properly

    I have OS X 10.5.8 and Preview 4.2. Preview will not display a bank statement properly. Most of the content is missing. I initially thought this was the bank's fault, but the pdf statement displays OK on my work Mac using Adobe Acrobat Professional. On Preview, howerver, at work (OS X 10.4) it also does not display properly.
    Can anyone suggest a fix, or does Apple read these discussions...? Thanks. Graham

    "Preview is meant for previewing PDFs generated by OSX applications for printing.
    OSX uses its own code to generate and display PDFs, not Adobe's code.
    Adobe has been adding features to its PDF code that is used by some non-Apple software.
    PDFs generated by such software may not display correctly with Preview, but will work with the latest Adobe Reader."
    (courtesy of Malcolm Rayfield in this thread https://discussions.apple.com/message/12739728#12739728 )
    So, download and install the latest free Adobe Reader on your home Mac for these statements.
    Stefan

  • User-Defined Type does not display values in Table Data grid

    I have a User defined Type that is a collection of one character VARCHAR2 values. In the Table Data grid it does not display the character values. I know on all our other Oracle development applications these values display. Is this a bug or is there a snippet to display these values?

    Version: 1.0.0.15
    DB: 10.2.0
    Workstation OS: Windows XP

  • Select list with bind variable does not work

    Hi,
    What can be wrong with a 'select list' with the a simple select
    select omschrijving o, id i
    from basiscodes b
    where domein = 'OPTIES'
    and b.id in
    (select eo.basiscode_id from evenementen_opties eo
    where eo.event_id = :P16_ID)
    The :P16_ID has a value and should give result
    But it does not work at all with 'select list'
    Using the POPUP LOV (display discription, return key value) works nice
    The select retuns less then 10 records

    Hi Flavio,
    As I explained, the P16_ID is an item of the master page (page 16)
    In Page 18 where I want to reuse that value, the item is not there, but I use it to assign
    P18_EVENT_ID with the value in P16_ID and that works fine.
    In an after submit process, I do this :
    declare
    function get_pk return varchar2
    is
    begin
    for c1 in (select EVENEMENT_INSCHRIJVING_SEQ.nextval next_val
    from dual)
    loop
    return c1.next_val;
    end loop;
    end;
    begin
    :P18_ID := get_pk;
    :P18_EVENT_ID := :P16_ID;
    :P18_CREATIE_DT := TO_CHAR(SYSDATE,'DD-MM-YYYY HH24:MI:SS');
    :P18_CREATIE_USER := APEX_APPLICATION.G_USER;
    end;
    The value P16_ID is there before I open page 18
    I made a display item that displays the value P16_ID
    If I change the LOV select in :
    select b.omschrijving o, b.id i
    from basiscodes b
    , evenementen_opties eo
    where b.domein = 'OPTIES'
    and b.id = eo.basiscode_id
    and eo.event_id = 16
    then it returns the value I want : 1 record
    You see, I'm a really new one in apex.
    Forms 6i was easier for me...
    Regards Jules
    null

  • Filter recordset with session variable

    This has never happened to me before, but for some reason, my
    recordset that drives a dynamic table won't filter results based on
    a session variable. I know session variables are working because I
    have the session variable echo on the page (dragged-n-dropped my
    session variable from the Bindings panel to my page), and that
    works fine. So why can't I filter my recordset with the same
    session variable??? What's going on?
    PS: I've attached my result page's code to this
    message.

    Gabe the Animator wrote:
    > <?php require_once('Connections/sales.php'); ?>
    > <?php
    > if (!function_exists("GetSQLValueString")) {
    > function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "",
    > $theNotDefinedValue = "")
    > {
    > $theValue = get_magic_quotes_gpc() ?
    stripslashes($theValue) : $theValue;
    >
    > $theValue = function_exists("mysql_real_escape_string")
    > mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    >
    > switch ($theType) {
    > case "text":
    > $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    > break;
    > case "long":
    > case "int":
    > $theValue = ($theValue != "") ? intval($theValue) :
    "NULL";
    > break;
    > case "double":
    > $theValue = ($theValue != "") ? "'" .
    doubleval($theValue) . "'" :
    > "NULL";
    > break;
    > case "date":
    > $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    > break;
    > case "defined":
    > $theValue = ($theValue != "") ? $theDefinedValue :
    $theNotDefinedValue;
    > break;
    > }
    > return $theValue;
    > }
    > }
    >
    > $colname_rsSales = "-1";
    > if (isset($_SESSION['state'])) {
    > $colname_rsSales = $_SESSION['state'];
    > }
    > mysql_select_db($database_sales, $sales);
    > $query_rsSales = sprintf("SELECT * FROM sales WHERE city
    = %s",
    > GetSQLValueString($colname_rsSales, "text"));
    > $rsSales = mysql_query($query_rsSales, $sales) or
    die(mysql_error());
    > $row_rsSales = mysql_fetch_assoc($rsSales);
    > $totalRows_rsSales = mysql_num_rows($rsSales);
    >
    > session_start(); ?>
    The issue is that PHP doesn't "work" with session values
    until the session has started, and that must be done on each page,
    and must be done in the code *above* any reference to a session
    variable. The code you posted has the session_start() after it
    tries to use the session value ito filter the recordset. So move
    this last line of code ( session_start(); ) above $colnam_rsSales =
    "-1". Better yet, use:
    if(!session_id()){
    session_start();
    To prevent some versions of PHP from generating a
    warning/notice if you've called session_start() on the page already
    and you call it again.
    Danilo Celic
    | Extending Knowledge Daily :
    http://CommunityMX.com/
    | Adobe Community Expert

  • View with renamed column does not use index

    Is there any reason why a view that renames the columns presented to the users would ignore an index?
    For example:
    CREATE OR REPLACE VIEW ENROLLMENT
    (ENROLLMENT_ID, ENROLLMENT_DATE, FIRST_NAME)
    AS
    select distinct
    a.col1 as enrollment_id,
    a.col2 as enrollment_date,
    a.col3 as first_name
    from t1 a
    When a user queries the view, with a WHERE FIRST_NAME = 'TOM", it results in a FTS. However, if you run the query against the base table (using col1, col2, and col3), it uses the index against t1 on (col3, col2, col1).

    Well, I tried to create the supporting evidence afterwards (sigh, why do I keep doing that ...), it seems that Oracle has addressed this problem already:
    SQL> create table t1
      2  as
      3  select l col1, sysdate - l/86400 col2, decode(l,1,'TOM',to_char(l)) col3
      4    from (select level l from dual connect by level <= 100000)
      5  /
    Tabel is aangemaakt.
    SQL> create index i1 on t1 (col3, col2, col1)
      2  /
    Index is aangemaakt.
    SQL> exec dbms_stats.gather_table_stats(user,'T1',method_opt=>'FOR ALL INDEXED COLUMNS')
    PL/SQL-procedure is geslaagd.
    SQL> create view enrollment
      2  (enrollment_id, enrollment_date, first_name)
      3  as
      4  select distinct
      5  a.col1 as enrollment_id,
      6  a.col2 as enrollment_date,
      7  a.col3 as first_name
      8  from t1 a
      9  /
    View is aangemaakt.
    SQL> set autotrace on explain
    SQL> select * from enrollment where first_name = 'TOM'
      2  /
                             ENROLLMENT_ID ENROLLMENT_DATE     FIRST_NAME
                                         1 16-01-2007 14:41:25 TOM
    1 rij is geselecteerd.
    Uitvoeringspan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=3 Card=1 Bytes=44)
       1    0   VIEW OF 'ENROLLMENT' (Cost=3 Card=1 Bytes=44)
       2    1     SORT (UNIQUE NOSORT) (Cost=3 Card=1 Bytes=18)
       3    2       INDEX (RANGE SCAN) OF 'I1' (NON-UNIQUE) (Cost=3 Card=1
               Bytes=18)I'm on 9.2.0.7.0 here, what's your version ?
    Regards,
    Rob.

  • Jpeg image loaded with Loader- loadBytes() does not display when app is deployed on remote server

    I am loading a JPEG  image from the server, using the Loader->loadBytes() and that works when the app is deployed under my local Tomcat server.  When I deploy it on other servers the image is not displayed,  instead of the image I see II*
    On the server side I have java, Spring, BlazeDs and I use RemoteObject on the client.
    The code that loads the image looks like below:
    private function imageLoadResultHandler(event:ResultEvent):void {
        var result:ArrayCollection = event.result as ArrayCollection
        var bytes : ByteArray = result.getItemAt(0) as ByteArray;
        _loader = new Loader();
        _loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loaderCompleteHandler);
        _loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loaderFaultHandler);
        _loader.loadBytes(bytes);
    private function loaderCompleteHandler(event:Event):void {
        var loaderInfo:LoaderInfo = event.currentTarget as LoaderInfo;
        var img:Image = new Image();
        img.source = loaderInfo.content;
        myPanel.addChild(img);
    <mx:RemoteObject id="ro" destination="imageLoadService">
         <mx:method name="loadImage" result="imageLoadResultHandler(event)" fault="faultHandler(event)" />
    </mx:RemoteObject>
    Any help with this problem is much appreciated.
    Thank you,
    Lumi Velicanu

    Hi Dmitri,
    Thank you for the prompt reply, your question about the jpeg content was a helpful pointer.
    I solved the problem, it had nothing to do with flex, it was all on the java side. The image was obtained from converting a TIFF to a JPEG, the conversion was failing and the flex loader was receiveing a tiff and it did not know how to display it.
    The java problem was kind of interesting, I'll post it here as an FYI in case anybody cares :
    On my server the first writer returned by ImageIO was an instance of JPEGImageWriter and on the other servers was CLibJPEGImageWriter. And it happens that  only JPEGImageWrite can write the type of TIFF that we are having.
    The fix was to iterate through all the writers and pick the instace of JPEGImageWrite, instead of the first one found.
    Lumi

  • Workbook with changed query does not display the changes...

    Hi,
    I have a problem with a workbook with one query in - the query has been changed, but the new added keyfigures are not displayed in the existing WB.
    I know from Bex 3.5 there is the option on WB settings "return to global definitions" - I miss this functionality in BI 7.0.
    My installed sap gui is version 710
    Please let me know where I can switch on this feature...
    regards
    chris

    If you use "Return to Global Definition on refresh" option, all the users would have to have it turned on in their workbooks. In that case won't they lose any settings/navigation the user did, specific to their need. All the workbooks end up being the same in that case.
    We are still running on 30B and starting the upgrade to BI70. We just went through training on the new BEx analyzer, and I have to agree with you that some of the useful features of BEx 3X will be missed. Specially in the area of Workbook support, things like Copy query, insert query etc are missing as well.
    Thanks
    Vineet

  • QuickWatch windows does not display Value and Type.

    The quick watch window is only displaying Name (screenshot below). It is not displaying Type
    and Value fields. I tried "Reset All Settings", repair, uninstall/install but the issue is not resolved.  I will appreciate any help.

    Hi ranjanks,
    Could you share us a sample? So we could debug the same app in our side, please also tell us the VS version in your side.
    For example, just a simple console app with a variable "int i", I could get it in my VS2013 version like the following screen shot. So if you debug a simple sample as mine, how about the result? If it works well, I doubt that it would be related
    to the specific variable of your app.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Bc4juix:RenderValue does not display value

    After migrating to OAS 10.1.3 and JDev 10.1.3 we encoutered strange problem: in one table in TableDetail section we get empty cells. Everything works in JDev's embedded server and on one instance of cluster, but never on the other instance, and only for some rows (for some where clause it works, for some not, consistently). If I search some client using some criteria, it displays, using other it does not.
    Has anyone some clue? I compared configurations of both server and found no difference. If I use <uix:text> (commented out in example), it shows correct value, but ignores renderers, so it is not a good solution.
            <bc4juix:Table datasource="master" width="100%" formSubmitted="true">
              <uix:columnHeaderStamp>
                <uix:styledText textBinding="LABEL" />
              </uix:columnHeaderStamp>
              <jbo:AttributeIterate id="dsAttributes"  datasource="master" hideattributes="UixShowHide">
                <bc4juix:RenderValue datasource="master" dataitem="<%=dsAttributes.getName()%>" />
              </jbo:AttributeIterate>
              <bc4juix:TableDetail>
                <uix:rawText text="<center><br>" />
                <bc4juix:Table datasource="detail" proxied="true" width="800">
                  <jbo:AttributeIterate id="dsAttributesIn"  datasource="detail" hideattributes="UixShowHide">
                    <uix:column>
                      <uix:columnFormat bandingShade="light" />
                      <uix:columnHeader>
                        <uix:text text="<%=dsAttributesIn.getUIHelper().getLabel(CmIfaceModule.useApplicationModule()
    .getSession().getLocaleContext())%>" />
                      </uix:columnHeader>
                      <bc4juix:RenderValue datasource="detail" dataitem="<%=dsAttributesIn.getName()+'a'%>" />
                      <%--uix:text textBinding="<%=dsAttributesIn.getName()%>" /--%>
                    </uix:column>
                  </jbo:AttributeIterate>
                </bc4juix:Table>
                <uix:rawText text="</center>" />
              </bc4juix:TableDetail>
            </bc4juix:Table>Thanks, Viliam

    Hi Nik,
    In case of LOVs i had faced this problem , when i was using the LOV as the dymanic one .
    Ex:- select name d,id r from stud where id not in (select id from stud_joined );
    In this case , my lov was returning numeric value for already selected names and the name for the new one to be added .
    The fact behind this is ex:-
    Nandini 1
    Naina 2
    Nidhi 3
    Shijesh 4
    suppose this are students list .
    when i click lov and select a "Nandini "
    then its entry is made in the Stud_joined table.
    Now the Query will no longer has the name "Nandini " hence it will display id as 1.
    Hope , this may give a tip to find solution to your problem.
    Thanks & Regards,
    Nandini Thakur.
    Edited by: Nandini thakur on Nov 30, 2010 1:56 AM

  • Safari 5 does not display DIV properly - had to downgrade to 4.0.5

    Say you have a web page with
    Then some JavaScript code later:
    document.getElementByID('div_a').style.display='inline';
    Works fine under Safari 4.0.5 (and other browsers), ie the DIV content is displayed.
    DIV is not displayed under Safari 5. No JS error raised.
    /A

    Entry above had html code erased. Discard and see below:
    Say you have a web page with
    <div id='div_a' style='display:none'> some HTML objects here </div>
    Then some JavaScript code later:
    document.getElementByID('div_a').style.display='inline';
    Works fine under Safari 4.0.5 (and other browsers), ie the DIV content is displayed.
    DIV is not displayed under Safari 5. No JS error raised.
    /A

  • Page built with a table does not display well in Internet Explorer.

    In Chrome and Safari it appears correctly (items are left justified in each column) while in Internet Explorer all columns are centered. Website is www.eventpowerli.com and it is the home page where we have the issue. I am new to building websites so please bear with me on this question: -) Let me know if you need addnl info. From what I have seen thus far, IE is a real problem child for more than one reason

    Honestly do not use tables for your site layouts. There is a variety of box model issues and more with IE, especially with using tables. And it is really bad form to design that way anyway.
    Tablless web design using CSS is the way it should be done and if you conform to web standards and CSS standards and best practises you will have less issues.
    http://girlswhogeek.com/tutorials/2006/create-a-tableless-css-layout Just as a basic example.

  • Why are people still using a browser that wants to censor any views with which it does not agree?

    Mozilla drives out its CEO because he contributed $1000 to support a particular law in 2008 . Then it claims it values diversity. We all know that censors like Mozilla have NO place on the Internet --so PLEASE BOYCOTT MOZILLA --please fight for what little freedom we still have to hold differing views.

    Hi FirstAmendment,
    Thank you for contacting Mozilla about this issue and taking the time to share your thoughts.
    The decision to step down was made by Brendan. Since the moment Brendan was appointed, free and open discussion has come from a diverse spectrum of viewpoints. Mozilla is an organization that believes in openness and that no one should be persecuted for the beliefs they hold, no matter what those beliefs are. We believe in unconditional freedom and openness. That's why we support rights for everyone.
    As this is the Firefox support forum I can only help with questions related to the specific product. If you need more info about Mozilla's CEO you can check the resources below:
    Mozilla Blog: https://blog.mozilla.org/ <br>
    Brendan Eich's Blog: https://brendaneich.com/
    If you have any issues with Firefox, please post a question at [/questions/new] and someone will assist you.

  • PROMPT WITH DEFAULT VALUES DOES NOT DISPLAY VALUES THE FIRST TIME

    Hi,
    With one of our scorecard reports, when you select a division, the leader role/leader prompt picklist values do not get populated the first time. Because this is only happening in reports we have written in house, we do not see this happening to the reports that are installed as default.
    Is there any workaround known for this error.
    Thanks and Regards

    Hey can somebody please let me know how to go about this isssue ..
    Thanks

Maybe you are looking for