WAD 2004s Analysis Item Row Select RRI_RECEIVER does not pass Filter values

I have created an Analysis item and using a Data Provider that has a Sender-Reciever entry for it. I created a Command on the Row Selection Activation that does an Report to Report (RRI) jump to another web page(template or app whatever sap calls it). When running the page, it performs the jump to the other page, but does not filter the page on the selected hierarchy value on the original page.
Why does this not work?
If I do the same thing by selecting the Goto from the context menu on the cell it works fine.

Answering my own question here....
This was solved by applying the patch mentioned in Note 1115027.

Similar Messages

  • Region does not pass the value

    Hi,
    I have a region which includes a task flow with a selectonechoice component. This component displays the values true/false and save the value in a managed bean. Also it has the auto submit = true.
    In my jspx page which has the region inside I have a button which is rendered when the above value is set to true. However, the button does not react to the selection of the selectonechoice component unless the F5 button is clicked. Here is the code in the jspx page:
    <af:panelGroupLayout id="pgl1" layout="scroll">
    <af:region value="#{bindings.testbtf.regionModel}" id="r1"/>
    </af:panelGroupLayout>
    <af:panelGroupLayout id="pgl2" layout="scroll" partialTriggers="r1">
    <af:commandButton text="button" id="cb1"
    rendered="#{ManagedBean.Visible==true}"/>
    </af:panelGroupLayout>
    What has to be done in order for the page to be partially refreshed and display / hide the button?
    P.S: if I use the same code, and instead of a region, I use the selectonechoice by itself the above approach works.

    Yes, you need to set the partialTrigger to the selectOneChoice component itself, not the region. It is the component that sends the trigger event. You didn't mention your JDeveloper version, but in newer versions you can click the little arrow next to the partialTriggers field, select "Edit..." and find the triggering component inside the region in the dialog that opens.

  • Match code in report selection screen does not show any values for 0FISCPER

    Hi Experts,
    I have problem with selection screen in several reports. When I use match code for fiscal period selection I get only # as a possible value. I have checked the master data they seem to be correct. I work with 7.0 BW system. Can you please give me any hint what I should check?
    Thank you,
    Michal

    Hi,
    maybe I ask different way - how do you add characteristic values for a characteristic in the BEx? Is it automated somehow in SAP (e.g. from master data)? For the fiscal period I use custommer exit to fill in the default value, which is the current fiscal period. But this is something different, right?
    <removed by moderator>
    Michal
    Edited by: Arun Varadarajan on Nov 14, 2008 3:55 PM

  • Status row for item '', activity ID '264766' does not exist.

    I have developed a custom workflow which is AME configured. The workflow runs well in R12.1.2 instance. But when deployed to R12.1.3 it fails out.
    error starting at line 20 in command:
    exec XX_PACKAGE.XX_PROCEDURE(19098, 'XX_WF', '1:Yes;')
    Error report:
    ORA-01086: savepoint 'WF_SAVEPOINT' never established in this session or is invalid
    ORA-20002: 3101: Status row for item '', activity ID '264766' does not exist.
    ORA-06512: at "APPS.WF_ENGINE", line 4192
    ORA-06512: at "APPS.XXIFMIS_ICX_UTILS", line 20
    ORA-06512: at line 1
    01086. 00000 -  "savepoint '%s' never established"
    *Cause:    Trying to roll back to a save point that was never established.
    *Action:
    Could anyone suggest how I can debug this issue.

    Sosa,
    When i run the wfstat nothing wrong in the info. unable to find the issue.
    But, i have narrow down the issue. In the function process in my workfow i am calling a custom function called update_approval_status_new.
    In this the value of the respond notification to be updated to a header table of this workflow and insert into events tables.
    When i comment these two dml ( update to header status & insert into events ) there is no error.
    Can any one tells me can i update and insert custom tables in workflow or not. If I want to do this, what is procedure.
    Regards/Prasanth

  • Selected model does not contain any target value prior

    Hi ODM experts,
    I have tried to apply the SVM alg in order to find anomalous records.The table source have rows like that:
    uniq_rec ID NAME A1 A2 A3 A4 A5 data
    577     2052956018     NAMEHDRCP8     2.27     0.4     85.46     0.01     14.54     24-JAN-13
    578     1250914484     NAMEDJDRVP3     11.45     1.24     56.24     0.01     43.77     24-JAN-13
    579     1968689283     NAMEDKEND12     0.000011     6.78     0.000029     0.01     0.091     24-JAN-13
    580     2063389130     NAMEDNMXG14     0.000011     0.65     36.65     0.02     0.091     24-JAN-13
    unq_rec is the pk, id is the id for the generic name and A1 .. A5 attributes ,data when collection occur etc
    I'm trying to execute the following code:
    drop table ALG_SET;
    exec dbms_data_mining.drop_model('SVMODEL');
    create table ALG_SET (setting_name varchar2(30), setting_value varchar2(4000));
    insert into ALG_SET values ('ALGO_NAME','ALGO_SUPPORT_VECTOR_MACHINES');
    insert into ALG_SET values ('PREP_AUTO','ON');
    commit;
    Begin
    dbms_data_mining.create_model('SVMODEL', 'CLASSIFICATION', 'ODM_PAR_FIN_HIST', 'UNQ_CRT', null, 'ALG_SET');
    end;
    The results is the following error:ORA-40104: invalid training data for model build ( if I run the code) .If I run from graphical interface I have obtained this
    error code " Selected model does not contain any target value prior"(using the similar model - SVM for anomaly detction plus the same source table )
    Please advice what is missing or wrong and if possible how to bypass this issue.
    Thanks in advance for support.
    Best Regards,
    Bogdan

    Here is also a newer example of creating a SVM Anomaly model from ODM sample code (12.1 version but this applies to 11.2):
    Rem
    Rem $Header: rdbms/demo/dmsvodem.sql /main/6 2012/04/15 16:31:56 xbarr Exp $
    Rem
    Rem dmsvodem.sql
    Rem
    Rem Copyright (c) 2004, 2012, Oracle and/or its affiliates.
    Rem All rights reserved.
    Rem
    Rem    NAME
    Rem      dmsvodem.sql - Sample program for the DBMS_DATA_MINING package.
    Rem
    Rem    DESCRIPTION
    Rem      This script creates an anomaly detection model
    Rem      for data analysis and outlier identification using the
    Rem      one-class SVM algorithm
    Rem      and data in the SH (Sales History)schema in the RDBMS.
    Rem
    Rem    NOTES
    Rem   
    Rem
    Rem    MODIFIED   (MM/DD/YY)
    Rem    amozes      01/23/12 - updates for 12c
    Rem    xbarr       01/10/12 - add prediction_details demo
    Rem    ramkrish    06/14/07 - remove commit after settings
    Rem    ramkrish    10/25/07 - replace deprecated get_model calls with catalog
    Rem                           queries
    Rem    ktaylor     07/11/05 - minor edits to comments
    Rem    jcjeon      01/18/05 - add column format
    Rem    bmilenov    10/28/04 - bmilenov_oneclass_demo
    Rem    bmilenov    10/25/04 - Remove dbms_output statements
    Rem    bmilenov    10/22/04 - Comment revision
    Rem    bmilenov    10/20/04 - Created
    Rem
    SET serveroutput ON
    SET trimspool ON 
    SET pages 10000
    SET echo ON
    --                            SAMPLE PROBLEM
    -- Given demographics about a set of customers that are known to have
    -- an affinity card, 1) find the most atypical members of this group
    -- (outlier identification), 2) discover the common demographic
    -- characteristics of the most typical customers with affinity card,
    -- and 3) compute how typical a given new/hypothetical customer is.
    -- DATA
    -- The data for this sample is composed from base tables in the SH schema
    -- (See Sample Schema Documentation) and presented through a view:
    -- mining_data_one_class_v
    -- (See dmsh.sql for view definition).
    --                            BUILD THE MODEL
    -- Cleanup old model with the same name (if any)
    BEGIN DBMS_DATA_MINING.DROP_MODEL('SVMO_SH_Clas_sample');
    EXCEPTION WHEN OTHERS THEN NULL; END;
    -- PREPARE DATA
    -- Automatic data preparation is used.
    -- SPECIFY SETTINGS
    -- Cleanup old settings table (if any)
    BEGIN
      EXECUTE IMMEDIATE 'DROP TABLE svmo_sh_sample_settings';
    EXCEPTION WHEN OTHERS THEN
      NULL;
    END;
    -- CREATE AND POPULATE A SETTINGS TABLE
    set echo off
    CREATE TABLE svmo_sh_sample_settings (
      setting_name  VARCHAR2(30),
      setting_value VARCHAR2(4000));
    set echo on
    BEGIN      
      -- Populate settings table
      -- SVM needs to be selected explicitly (default classifier: Naive Bayes)
      -- Examples of other possible overrides are:
      -- select a different rate of outliers in the data (default 0.1)
      -- (dbms_data_mining.svms_outlier_rate, ,0.05);
      -- select a kernel type (default kernel: selected by the algorithm)
      -- (dbms_data_mining.svms_kernel_function, dbms_data_mining.svms_linear);
      -- (dbms_data_mining.svms_kernel_function, dbms_data_mining.svms_gaussian);
      -- turn off active learning (enabled by default)
      -- (dbms_data_mining.svms_active_learning, dbms_data_mining.svms_al_disable);
      INSERT INTO svmo_sh_sample_settings (setting_name, setting_value) VALUES
      (dbms_data_mining.algo_name, dbms_data_mining.algo_support_vector_machines); 
      INSERT INTO svmo_sh_sample_settings (setting_name, setting_value) VALUES
      (dbms_data_mining.prep_auto, dbms_data_mining.prep_auto_on);
    END;
    -- CREATE A MODEL
    -- Build a new one-class SVM Model
    -- Note the NULL sprecification for target column name
    BEGIN
      DBMS_DATA_MINING.CREATE_MODEL(
        model_name          => 'SVMO_SH_Clas_sample',
        mining_function     => dbms_data_mining.classification,
        data_table_name     => 'mining_data_one_class_v',
        case_id_column_name => 'cust_id',
        target_column_name  => NULL,
        settings_table_name => 'svmo_sh_sample_settings');
    END;
    -- DISPLAY MODEL SETTINGS
    column setting_name format a30
    column setting_value format a30
    SELECT setting_name, setting_value
      FROM user_mining_model_settings
    WHERE model_name = 'SVMO_SH_CLAS_SAMPLE'
    ORDER BY setting_name;

  • SELECT DISTINCT does not work - Another Problem!

    Dear All
    Previous Post
    I just posted a thread, which has been answered by an expert. It's here:
    SELECT DISTINCT does not work. Why?
    My original problem was that the Query returned duplicate records, and SELECT DISTINCT did not work.
    The solution was to change this select:
    T0.[U_SupInv]      AS 'Link'
    ... to this:
    CAST(T0.[U_SupInv] as nvarchar(100))      AS 'Link'
    The amended Query worked.
    New Problem
    I just discovered that resolving the problem created a new one.
    The field U_SupInv (Link) is in fact a UDF.
    I created it so that all Suppliers' Invoices could be Scanned to pdf files, and these pdf could be linked
    to the respective AP Invoice.
    Originally, when I clicked 'Link' in my Query results, the pdf scan pops up.
    When the Query is amended by adding CAST, the link becomes dead.
    Help
    Could anyone tell me how I can make SELECT DISTINCT work, as well keeping the LINKS live?
    The main purpose of my Query is to help users view the pdf scans by clicking on the links.
    Thanks
    Leon Lai
    Here's my Original Query
    SELECT
    T0.[UpdateDate] AS 'Update Dt',
    T0.[TaxDate] AS 'Doc Dt',
    CASE T5.[TransType]
         WHEN '18' THEN 'PU ' + CONVERT(VARCHAR(6), T0.[DocNum])
         WHEN '19' THEN 'PC ' + CONVERT(VARCHAR(6), T0.[DocNum])
    END 'SAP Ref.',
    T1.[ImportLog]     AS 'Ship #',
    T0.[CardCode] + '' AS 'Supplier #',
    T0.[CardName]      AS 'Supplier Name',
    T0.[DocTotal]      AS 'Rs',
    T1.[BlockNum]      AS 'Reqn #',
    T0.[DocNum]        AS 'Doc No',
    T0.[U_SupInv]      AS 'Link'
    FROM klship.[dbo].[OPCH] T0
    INNER JOIN klship.[dbo].[PCH1] T1 ON T0.[DocEntry] = T1.[DocEntry]
    INNER JOIN klship.[dbo].[OJDT] T5 ON T0.[TransID] = T5.[TransID]
    WHERE
    (T0.[UpdateDate] >= '[%2]' AND
    T0.[UpdateDate]  <= '[%3]' AND
    T0.[U_SupInv] IS NULL)
    OR
    (T0.[UpdateDate] >= '[%4]' AND
    T0.[UpdateDate]  <= '[%5]' AND
    T0.[U_SupInv] IS NOT NULL)
    FOR BROWSE

    Dear István Korös,
    Thanks a lot for your answer.
    I will test your suggestion tomorrow, as it's night and I am returning home now.
    However, I do not think it will suit my requirements for the foll reasons:
    - I worked hard to get rid of the need to enter anything in the @Scan2 field.
    - This UDF was created solely as a text of instruction for my staff.
       Unfortunately I had to fill in something to make the Query work.
    - The problem is that if the user forgets to click the drop-down arrow and leaves @Scan2
       blank, the query does not work.
    - With the help of another expert, I succeeded in ignoring @Scan2 altogether.
    - I posted only a simplified version of my Query on the forum, without the codes relating to eliminating the
      need to enter something in @Scan2, so you may not be aware of my requirement.
    - I hope you understand my reluctance. But I will try your suggestion nevertheless.
    My Suggestion
    I think using PCH1.VISORDER may be the solution.
    If we select only those rows where visorder = 0, then
       - there will be no duplication
       - I need not use SELECT DISTINCT
       - All my LINKS to pdf files will be live because I need not use CAST
       - I may retain that part of my Query which permits ignoring @Scan2 altogether.
    - A Dream!-
    The problem is that I don't know how and where  to place that VISORDER.
    If you think I may be right, could you help me along that line?
    Best Regards
    Leon Lai

  • Query Selection Screen does not appear in Web Analyzer

    Hi Experts,
    Query Selection Screen appears when we open the query in Bex Analayzer in production system. But when we open the query in ABAP or JAVA Web view, the selection screen does not appears.
    As the volume of data in the cube is very high, and since the selection screen is not appearing, the query extracts 1.5Mrecords and results in dump.
    Kindly let me know the possibility for selection screen not appearing.
    Note: The selection screen appear in Development system in Bex Analyzer, ABAP View and Java View
    Regards
    Suresh Kumar

    Dear Suresh,
    You can check if the parameter &VARIABLE_SCREEN=X is added to standard template or not, If not add this,
    In order to add this parameter in the webtemplate you have to change 0ANALYSIS_PATTERN and save it as ZANALYSIS_PATTERN and enter this standard web template under TCODE RSCUSTV27.
    Also I would like to explain you the behavior of Web Analyzer,
    Parameter VARIABLE_SCREEN=X only influences the WEB application at startup. This will not come into affect
    when you use the 'New Analysis' button. The 'New Analysis' button resets the dataprovider so this would not
    affect the variable screen and would not redisplay the variable screen as you require.
    Regards,
    Arvind

  • The arrow select tool does not marquee

    The arrow select tool does not work properly.  At times it marquees and some other times it doesn't.
    Please help.

    Judy,
    Has it worked with Yosemite before?
    Did you upgrade to Yosemite, then reinstall? That is the recommended way/order.
    Especially if the tool has just stopped working, there may be some kind/level of corruption/disturbance, and you may try the list.
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media, see below. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible), for CS3 - CC you may find the folder here:
    https://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Error: Selected disk does not exist (21) Module-SRE-700

    Already tried everything that the recovery cisco commands, anyone have idea how to solve the problem of the print shown in print?
    Initializing memory #2. Please wait...
    This may take a minute....
    Serial ATA Port 0 : Hitachi HTE545050B9A300                
    DDR Memory 4096 MB detected
    Intel(R) Core(TM)2 Solo CPU    L3400  @ 1.86GHz
    BIOS SM 3.52.8,  BIOS Build date: 02/08/2011
    System now booting...
    Please wait... 
    Please press P to select Primary Boot Loader ...  
              or S to select Secondary Boot Loader ...  
              or wait to boot from default configuration ...  
    Now booting from primary boot loader....  
    Authenticating boot loader....  
    Primary Boot Loader Authenticated - booting....  
    ServicesEngine boot-loader> install_key waas-accelerator-4.4.5c.4-k9.bin     
    Keyfile Size 202814577 over limit 32768 will not burn into flash
    ServicesEngine boot-loader> verify                                            
    Loading disk:/bzImage ... Unable to load image
    Error: Selected disk does not exist (21)
    Unable to boot image
    Unrecognized command
    ServicesEngine boot-loader>                                                   
    #service-module sm 1/0 session
    Trying 172.20.245.1, 2067 ... Open
    Please wait... 
    Please press P to select Primary Boot Loader ...  
              or S to select Secondary Boot Loader ...  
              or wait to boot from default configuration ...  
    Now booting from primary boot loader....  
    Authenticating boot loader....  
    Primary Boot Loader Authenticated - booting....  
    Please enter '***' to change boot configuration:
    Trying to reset Service Module SM1/0.
    May  7 11:27:33.055: %SRE_SM-6-STATE_CHANGE: SM1/0 changing state from SERVICE_MODULE_STATE_ERRQ to SERVICE_MODULE_STATE_SHDN
    Initializing memory #1. Please wait...
    Initializing memory #2. Please wait...
    This may take a minute....
    Serial ATA Port 0 : Hitachi HTE545050B9A300                
    DDR Memory 4096 MB detected
    Intel(R) Core(TM)2 Solo CPU    L3400  @ 1.86GHz
    BIOS SM 3.52.8,  BIOS Build date: 02/08/2011
    System now booting...
    Please wait... 
    Please press P to select Primary Boot Loader ...  
              or S to select Secondary Boot Loader ...  
              or wait to boot from default configuration ...  
    Now booting from primary boot loader....  
    Authenticating boot loader....  
    Primary Boot Loader Authenticated - booting....  
    Please enter '***' to change boot configuration:
    Detect and Initialize network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Finding (hd1,3)/296e03bc-3236-4a68-a178-688e56400a1e, failed
    Local install not supported
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait ................... done.
    May  7 11:29:03.331: %SM_INSTALL-6-INST_RBIP: SM1/0 received msg: RBIP Registration RequestLoading disk:/bzImage ... Unable to load image
    Error: Selected disk does not exist (21)
    Unable to boot image
    þ
    Initializing memory #1. Please wait...
    Initializing memory #2. Please wait...
    This may take a minute....
    Serial ATA Port 0 : Hitachi HTE545050B9A300                
    DDR Memory 4096 MB detected
    Intel(R) Core(TM)2 Solo CPU    L3400  @ 1.86GHz
    BIOS SM 3.52.8,  BIOS Build date: 02/08/2011
    System now booting...
    Please wait... 
    Please press P to select Primary Boot Loader ...  
              or S to select Secondary Boot Loader ...  
              or wait to boot from default configuration ...  
    Now booting from primary boot loader....  
    Authenticating boot loader....  
    Primary Boot Loader Authenticated - booting....  
    Please enter '***' to change boot configuration:
    Detect and Initialize network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Finding (hd1,3)/296e03bc-3236-4a68-a178-688e56400a1e, failed
    Local install not supported
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait ................... done.
    May  7 11:30:31.339: %SM_INSTALL-6-INST_RBIP: SM1/0 received msg: RBIP Registration RequestLoading disk:/bzImage ... Unable to load image
    Error: Selected disk does not exist (21)
    Unable to boot image
    ú
    Initializing memory #1. Please wait...
    Initializing memory #2. Please wait...
    This may take a minute....
    Serial ATA Port 0 : Hitachi HTE545050B9A300                
    DDR Memory 4096 MB detected
    Intel(R) Core(TM)2 Solo CPU    L3400  @ 1.86GHz
    BIOS SM 3.52.8,  BIOS Build date: 02/08/2011
    System now booting...
    Please wait... 
    Please press P to select Primary Boot Loader ...  
              or S to select Secondary Boot Loader ...  
              or wait to boot from default configuration ...  

    Hi,
    Opened a tac and managed to get the resolution of the problem. For those with the same problem reported by me above just follow the procedure below:
    1. uninstall existing SRE-V software
    http://www.cisco.com/en/US/docs/interfaces_modules/services_modules/sre_v/1.5/user/guide/software.html#wp1055364
    2. run sm-hw-util to set sata mode to IDE
    http://www.cisco.com/en/US/docs/interfaces_modules/services_modules/sre_v/1.5/user/guide/software.html#wp1091438
    3. configure a static, 32bit route to point the service module IP address to the SM slot/0 interface
    ip route 255.255.255.255 SM slot/0
    4. install WAAS:
    http://www.cisco.com/en/US/docs/app_ntwk_services/waas/waas/v421/module/installation/guide/wssmcfg.html#wp47040
    http://www.cisco.com/en/US/docs/interfaces_modules/services_modules/sre_v/1.5/user/guide/software.html#wp1091438

  • "Selected disk does not exist" after install using Unetbootin

    Hello, I downloaed core iso file and use unetbootin to created a bootable usb disk, then I booted from the usb disk, installed the system as usual, then I rebooted the machine, the grub menu is shown, but when I selected archlinux, it shows:
       Booting 'Arch Linux'
    root (hd1,0)
    Error 21: Selected disk does not exist
    Press any key to continue...
    if I press any key, it goes to grub menu again.
    I noticed that when I installed the system, the usb disk is /dev/sda1, the harddisk is /dev/sdb1, /dev/sdb2 ... (several partitions), so I guess there is a problem here, and when I reboot, harddisk becomes /dev/sda1 sda2... so the system cannot find /dev/sdb1 2...
    I read a post about unetbootin, it did not mention anything about the problem, so I think there is no problem install using unetbootin...

    Try to change (hd1,0) pour (hd0,0). GRUB considers the disk from where he was loaded as hd0.
    If you want more infos check with http://sourceforge.net/projects/bootinfoscript/
    and post it's output.

  • Visual Studio 2012 SharePoint Project Error : The partial project item type does not have a value for this property

    Hi,
    I am getting this error from visual studio 2012 whenever i try to create the following project types:
    - Workflow Custom activity
    - Web parts
    The error is as mentioned below
    "The partial project item type does not have a value for this property"
    Due to this the when I add above type of items in my project, they show a red cross icon against them.
    Please let me know If have you any solution?

    Hi
    I had same issue. Below is the solution
    Installing
    "Visual Studio 2012 Update 3" usually solves this problem. (You can download it through microsoft's official site at
    "http://www.microsoft.com/en-in/download/details.aspx?id=39305")
    Hansraj Rathva

  • The parameter name [...] in the query's selection criteria does not match..

    Hi all,
    I'm trying to pratice EJB 3 (which I learnt at school), with JSF and JPA, but i'm really stuck with that error :
    Exception [TOPLINK-6094] (Oracle TopLink Essentials - 2.0 (Build b41-beta2 (03/30/2007))): oracle.toplink.essentials.exceptions.QueryException
    Exception Description: The parameter name [departmentID] in the query's selection criteria does not match any parameter name defined in the query.
    Query: ReadAllQuery(oracle.datamodel.Employees)
    I will try to explain clearly what i'm trying to do :
    In fact, i'm following that tutorial :
    http://www.oracle.com/technology/obe/obe1013jdev/10131/ejb_and_jpa/master-detail_pagewith_ejb.htm
    But, as i didn't have any oracle database, but had a mysql one on my machine, i decided to use that DB instead of the the oracle DB... So i created a set of example data (to replace the oracle example set) ...so i created the tables EMPLOYEE, and DEPARTMENT... with the correct relations (FK) and PK)
    All was ok, i choose my "mysql-connector" (jdbc) instead of the oracle jdbc connector... so i could follow the tutorial.
    My problem appears at the step 12 (of "Creating a Master-Detail JavaServer Faces Page"), when i run the file deptEmployees.jspx.
    The information of the first departement displays correctly :
    departmentID 1
    departmentName ... etc
    but it can't display the employees belonging to that department !
    the error is :
    JBO-29000: Exception Description: The parameter name [departmentID] in the query's selection criteria does not match any parameter name defined in the query. Query: ReadAllQuery(oracle.datamodel.Employees)
    I think i understand what is the problem... I think that the query in charge of gathering the data of a specific departement need a parameter, but couldn't find it. But i don't know why :-/ I have tried many things and read the topics talking about that error... but it didn't solved the problem. I don't know anymore where to investigate.
    I have created a Zip file of my work (it's an EJB/JSF Application.. with jdev 10.1.3.3.0)
    (available here : http://dl.free.fr/mQ5esdQuS/EJB_appli.zip)
    I would be glad if someone could take few minutes to help me.
    Thank you in advance,
    Thomas B (student)

    Hello,
    This is a common mistake. Java string comparisons in TopLink are case sensitive by default, and since column names are uppercase when defaulted, TopLink cannot find the "departmentID" column name. In this case, Departments ID column defaults to "DEPARTMENTID" as required by the JPA specification.
    Either change Departments id annotation to     @Id
        @Column(name="departmentID", nullable = false)
        private Integer departmentID;or change Employees' ManytoOne annotation to:
        @ManyToOne
        @JoinColumn(name = "departmentID", referencedColumnName = "DEPARTMENTID")
        private Departments departments;Best Regards,
    Chris

  • The item Hierarchical Context Menu does not support pre-calculation

    Hello,
    Trying to download pre-calculated web templates via RepAgent, using the Hierarchical Context Menu feature within the template (populated via control query with Hierarchy) the system returned the following message upon file download:
    "The item Hierarchical Context Menu does not support pre-calculation"
    As a result the Hierarchical Context Menu is not displayed on the downloaded html-files. Navigation not possible.
    Could not find any constraints documented in the online help, at this point.
    Question: is there something missing on our setup or is this really out of scope for precalculation with navigation?
    Any other experiences on that or shall we open OSS-message?
    Best regards,
    Markus
    (We are on BW3.1)

    Hi,
    we have the same problem. Does anybody have any hint or workaround? Is there a solution for this in 3.5 or any upcoming version.
    Any input is appreciated.
    Thanks,
    Stefan

  • Even if homepage is selected it does not open in new tab

    even if homepage is selected it does not open in new tab.when i opened Firefox the previous website which i opened is coming .please give me answer.

    I guess it is too much to ask your users to middle-click the Homepage button to get their Homepage in a new tab.
    I don't think Mozilla is even interested in "Enterprise" any longer. The new Fast Release schedule for Firefox doesn't meet the needs of the corporate community for long term support, so I guess they aren't valued any longer. Mike Kaply has written about this situation repeatedly this year. <br />
    http://mike.kaply.com/

  • Selected resource does not exist

    Trying to download a file my teacher has posted for a Live Lesson. Get that the selected resource does not exist, gives link to Adobe Connect, I make sure I have latest download, but does not help, Don't know what to do?

    Ok thank you. I am watching a recorded lesson when doing this. Must happen when it is recorded because I can see in the lesson that people in the lesson are downloading it. Thank you very much for the help.
    Sent from my iPhone

Maybe you are looking for

  • Windows 2000 Advanced Server Service Pack 2 and Oracle 8.1

    Hy, I've got Oracle 8.1.6 instaled over an Windows 2000 Advanced Server user as a web server. Yesterday I updated it with the service pack 2 for windows 2000. When I restarted the server after the install, the Oracle database services didn't start. T

  • My itune wont open

    hi, i just got my ipod nano and i have had so many problems already. im trying to sort them out but its not working. i installed the cd for the itune+ipod but when i click on the itune it dont open. i uninstall the program so many times and it still

  • I am in a non english country and firefox defaults to that language. How do I set it so firefox defaults to english?

    I am in Korea but do not speak the language. I need english

  • Payment Method Rejected. Situation Explained.

    Dear All, Im new to the support communities, and am looking for help. Situation: My Iphone uses "Apple Id #1" with "Creditcard #1." I bought an Ipad for my father, and have created an apple id for him ("Apple Id #2"), but with "Creditcard #1". I boug

  • Transparent Dock Folders

    I have created a couple of folders for my apps and have placed them in the right side of the doc. I have customised each folder with an icon, however as soon as I drop a few apps into the folder the icon disappears and the folder becomes a jumbled me