JDEV 11 r1 Returning from page opened as dialog , give errors

I have some problems when we call pages as dialogs.
When I return from dialog i have strange validation errors (Too many objects match the primary key oracle.jbo.Key[100 ].)
this happens when the same view object is used from both pages.
You can see detailed description in
[http://adfbugs.blogspot.com/2009/07/adf-return-from-dialog-dialog-bug.html]
Anyone else has the same problem?
Is this a bug?
Is there a workaround?

Hi,
you need to refresh the calling page (re-execute the VO query) if you perform changes to the VO in the dialog. Otherwise the view and the model are out of synch.
Frank

Similar Messages

  • Startup command starts database but alter database open read only gives error

    Hi,
    I'm having some strange behavior. I've 10.2.0.3 database on windows 2003.
    The startup command starts database without any issues.
    But if I try following it gives error.
    startup mount (successful no errors)
    alter database open read only; gives error that file Mnnnnnn is missing.
    Why this is happening and how to fix it?
    Thanks.

    You really need to show us exactly what Oracle is telling you, using copy and paste, so we can have some clue.  You can hide details like instance and host names if they show up.
    I'm wondering if you had some messed up offline datafile in a tablespace, where Oracle handles it with startup, but gets upset when you try to open read-only.  It's some bizarro sequence of events like: add a datafile to a tablespace, decide that was a mistake, alter it offline, then remove it from the OS without telling Oracle any more about it.  I've come back from vacation to find scenarios like this, it winds up being a time-bomb trying to recreate a standby later.  Or something like that, I could be unremembering some details.

  • How to add column to report from the same table? Gives error now

    Steps to reproduce:
    Build a report on a table with easy report, select all columns
    Add column to the table
    Edit report and add column (one has to click Show Related Tables Only: No to view the same table!)
    Report will give error as it will be build as
    SELECT ... FROM table1, table1

    AH HAAA!!!!
    And I was afraid to convert from the "SQL (Structured Query)" to "SQL". Probably because I blew up my other reports...
    Thanks!

  • Calling stored procedure from page process and PLS-00049 error?

    Good morning guys!
    I'm dealing with several problems this morning! The one that I need to deal with first is the following.
    I created the page process (see below: 1st code) in order to validate if all records where LNG_GEBIET matches have the status 3 or 4. If that is the case I want to call the procedure "set_status_arbeit_zu_gebiet". If amountrs and countstat do not match, then nothing is supposed to be done.
    The problem lies within the stored procedure itself. I receive a PLS-00049 bind variable error for :new.LNG_GEBIET.
    Can you please tell me what I forgot to declare in code 2 below???
    Thank you guys!
    The page process:
    Declare
      amountrs    number;
      countstat   number;
    begin
    SELECT COUNT(*) INTO amountrs FROM TBL_PUNKTDATEN where LNG_GEBIET = :P4_CNT_GEBIET;
    SELECT COUNT(*) INTO countstat FROM TBL_PUNKTDATEN where LNG_GEBIET = :P4_CNT_GEBIET and INT_STATUS = 3 or LNG_GEBIET = :P4_CNT_GEBIET and INT_STATUS = 4;
        IF amountrs = countstat THEN
         set_status_arbeit_zu_gebiet;
        ELSE
         dbms_output.put('nothing');
        END IF ;
    end;Code 2 with the true problem!
    CREATE OR REPLACE PROCEDURE set_status_arbeit_zu_gebiet
    IS
        cursor c2 is select LNG_GEBIET from TBL_ARBEIT_ZU_GEBIET where PNUM = 1114 and LNG_GEBIET=:new.LNG_GEBIET;
        v_c2  c2%ROWTYPE;
    BEGIN
       open c2;
    fetch c2 into v_c2;
    if c2%notfound then
            INSERT INTO TBL_ARBEIT_ZU_GEBIET
            LNG_GEBIET,
              LNG_ARBEITSSCHRITT,
              PNUM,
              INT_BEARBEITER,
              DATE_DATUM,
              GEPL_DATUM
            VALUES
            (:new.LNG_GEBIET,
             52,
             1114,
             895,
             sysdate,
             to_date('01.01.1990', 'DD.MM.YYYY')
            commit;
            close c2;
    END set_status_arbeit_zu_gebiet;One more question: Is it possible to integrate the first validation that calls my stored procedure into code 2?
    Thanks for you time!
    Sebastian

    The error is in following statement:
    INSERT INTO TBL_ARBEIT_ZU_GEBIET ( ... ) VALUES ( :new.LNG_GEBIET, ... );
    As the statement is part of a procedure and not trigger so it is not able to bind this variable with any value.
    As a resolution, pass this value to the procedure from the process and use it in the insert statement.
    The process will have following IF statement:_
    IF amountrs = countstat THEN
    set_status_arbeit_zu_gebiet *(:P4_CNT_GEBIET)*;
    ELSE
    dbms_output.put('nothing');
    END IF ;
    and the procedure will be as follows:_
    CREATE OR REPLACE PROCEDURE set_status_arbeit_zu_gebiet *(p_lng_gebit varchar2)*
    IS
    cursor c2 is select LNG_GEBIET from TBL_ARBEIT_ZU_GEBIET where PNUM = 1114 and LNG_GEBIET= --:new.LNG_GEBIET-- p_lng_gebit ;
    v_c2 c2%ROWTYPE;
    BEGIN
    INSERT INTO TBL_ARBEIT_ZU_GEBIET ( ... )
    VALUES
    ( --:new.LNG_GEBIET--  p_lng_gebit, ... );
    END set_status_arbeit_zu_gebiet;

  • How To Remove A Specific Application Name From The "Open With" Dialog

    When you right click on a file you are presented with the "Open With" menu item and you are also presented with a list of applications that could potentially be used to open that file.
    In my case, when I click on a file of type .mov I am presented with the name of an application that I want to remove from the list, because that application ( Miro.app (2.5.2) ) no longer exists on my system.
    What is the best way to remove that application name from the list?

    Ok, but how does one remove some of the applications that are appear in the context menu for a given file type? Is there an asc file which can be edited?
    For example, in my system a PDF can be opened with over 10 applications. I would like to see just the three ones I use: Acrobat, Skim and Preview.
    Thanks in advance.

  • ColdFusion Administrator v.9 does not open in browser, gives error 500

    I am hoping someone can help me, I have been working on and off on this problem for over a year with no luck.
    In February 2013 I patched ColdFusion 9 with the hotfix APSB13-03, both on my production and development servers.  Everything went perfect on the development server but production had some issues, I can't recall anymore exactly what happened but I was able to get it to the point that everything worked; meaning that all our cf webpages are served up correctly both inside and outside our organization.  The only standing problem is that the ColdFusion Administrator will not load.  Going to http://localhost/CFIDE/administrator/index.cfm returns
    According to my application.log here are a few sample error messages.  They are always the same except for the jrpp #.
    "Error","jrpp-47","05/05/14","09:50:42","cfadmin","coldfusion.server.SecurityService.remov eAuthenticated()V The specific sequence of files included or processed is: C:\Inetpub\wwwroot\CFIDE\administrator\index.cfm, line: 12 "
    "Error","jrpp-156","05/05/14","18:33:39","cfadmin","coldfusion.server.SecurityService.remo veAuthenticated()V The specific sequence of files included or processed is: C:\Inetpub\wwwroot\CFIDE\administrator\index.cfm, line: 12 "
    "Error","jrpp-157","05/05/14","18:41:10","cfadmin","coldfusion.server.SecurityService.remo veAuthenticated()V The specific sequence of files included or processed is: C:\Inetpub\wwwroot\CFIDE\administrator\index.cfm, line: 12 "
    I have opened index.cfm in Dreamweaver and line 12 is:
    _ $class$coldfusion$tagext$io$SilentTag  Ljava/lang/Class;  coldfusion.tagext.io.SilentTag c  forName %(Ljava/lang/String;)Ljava/lang/Class; ef  java/lang/Class h
    This is identical to that line in my development server, where the Administrator works just fine.
    I have gone over so many files line by line and they are seemingly identical between servers.  I have checked IIS (v. 6) and both entries for CFIDE are identical.  I am fairly clueless when it comes to JRE stuff so maybe my problem is there but I don't know where to look.
    A bonus complication on the production server is that it runs a very clunky, old, un-updated CMS for the non-ColdFusion sites.  We are trying to move away from this but are stuck with it for a while more.  I am not allowed to touch anything that could mess with the CMS.
    I am very tired of trying to debug problems without the Administrator.  If anyone has any suggestions for me I would be very grateful.
    Thanks,
    Christina

    Hi Christina,
    If you're getting 500 error which means the hotfix was not applied properly and you missed something. Only option which I think is to roll back the update and you can copy all the backup folders and the re-apply the hotfix. If you search forums you will lot of users had same issue and that is because they missed something while applying the hotfix.
    Thanks,
    Priyank

  • Trying to move a users from one database to another gives error

    When I try moving a user from one database to another I get an error, but one some PC's installed with EMC, gives no problems. So what could the the issue here, I tried googling, but came out without any solution. Exchange 2010 sp3, EMC on Windows 7 pc.
    The error message is:
    The move request for user is invalid. The user's Active Directory identity doesn't match the mailbox identity in the
    move request. It was running command "Get-MoveRequestStatistics -identity.....

    Is this 1 specific mailbox or any mailbox? Things to consider:
    Make sure that your Exchange management tools are running the same build as your Exchange server (2010 SP3 RUx). 
    Try using the Exchange Management Shell and typing Set-ADServerSettings -ViewEntireForest $True
    You might need to use the RUN AS ADMINISTRATOR when open Exchange tools
    Try running Clean-MailboxDatabase against each DB -
    http://technet.microsoft.com/en-us/library/bb124076(v=exchg.141).aspx
    Review and then Remove old move requests
    Try mailbox repair request -
    http://technet.microsoft.com/en-us/library/ff625221(v=exchg.141).aspx

  • Migration from Exchange 2007 to 2013 gives error "Failed to communicate with the mailbox database'

    I have been trying to migrate several databases from Exchange 2007 to Exchange 2013. The migration started successfully, and many of the mailboxes moved successfully (about 70). The remaining mailboxes, failed. Looking deeper, we found a few issues; The
    two 2013 Mailbox servers were on different versions. The Server had run out of disk space, and the NIC drivers needed to be updated.
    Now when we try to migrate a mailbox that had failed in the earlier batch, we get the following error:
    Data migrated:                        
    Migration rate:                        
    Error:                        
    MigrationTransientException: Failed to communicate with the mailbox database. --> Failed to communicate with the mailbox database. --> MapiExceptionNetworkError: Unable to make connection to the server. ‎(hr=0x80040115, ec=-2147221227)‎ Diagnostic
    context:    ......    Lid: 9624    dwParam: 0x0 Msg: EEInfo: Detection location: 501    Lid: 13720   dwParam: 0x0 Msg: EEInfo: Flags: 0    Lid: 11672   dwParam:
    0x0 Msg: EEInfo: NumberOfParameters: 4    Lid: 8856    dwParam: 0x0 Msg: EEInfo: prm[0]: Unicode  string: ncacn_ip_tcp    Lid: 8856    dwParam: 0x0 Msg: EEInfo: prm[1]: Unicode  string: <Server
    FQDN>    Lid: 12952   dwParam: 0x0 Msg: EEInfo: prm[2]: Long val: 3749909585    Lid: 12952   dwParam: 0x0 Msg: EEInfo: prm[3]: Long val: 382312662    Lid: 45169   StoreEc: 0x824        
    Lid: 50544   ClientVersion: 15.0.847.32    Lid: 52080   StoreEc: 0x824         Lid: 44273      Lid: 49064   dwParam: 0x1    Lid: 37288  
    StoreEc: 0x6AB         Lid: 49064   dwParam: 0x2    Lid: 59431   EMSMDB.EcDoConnectEx called [length=203]    Lid: 51239   EMSMDB.EcDoConnectEx exception [rpc_status=0x6D9][latency=0]   
    Lid: 62184      Lid: 16280   dwParam: 0x0 Msg: EEInfo: ComputerName: n/a    Lid: 8600    dwParam: 0x0 Msg: EEInfo: ProcessID: 3460    Lid: 12696   dwParam: 0x0 Msg: EEInfo:
    Generation Time: 0414-04-07T16:32:03.2100000Z    Lid: 10648   dwParam: 0x0 Msg: EEInfo: Generating component: 2    Lid: 14744   dwParam: 0x0 Msg: EEInfo: Status: 1753    Lid: 9624   
    dwParam: 0x0 Msg: EEInfo: Detection location: 501    Lid: 13720   dwParam: 0x0 Msg: EEInfo: Flags: 0    Lid: 11672   dwParam: 0x0 Msg: EEInfo: NumberOfParameters: 4    Lid: 8856   
    dwParam: 0x0 Msg: EEInfo: prm[0]: Unicode  string: ncacn_ip_tcp    Lid: 8856    dwParam: 0x0 Msg: EEInfo: prm[1]: Unicode  string: <Server FQDN>    Lid: 12952   dwParam: 0x0 Msg: EEInfo:
    prm[2]: Long val: 2767313664    Lid: 12952   dwParam: 0x0 Msg: EEInfo: prm[3]: Long val: 382312662    Lid: 59505   StoreEc: 0x824         Lid: 50544   ClientVersion:
    15.0.847.32    Lid: 52080   StoreEc: 0x824         Lid: 36081      Lid: 51152      Lid: 52465   StoreEc: 0x80040115   
    Lid: 60065      Lid: 33777   StoreEc: 0x80040115    Lid: 59805      Lid: 52487   StoreEc: 0x80040115    Lid: 19778      Lid: 27970  
    StoreEc: 0x80040115    Lid: 17730      Lid: 25922   StoreEc: 0x80040115
    All of the issues listed above have been corrected, and all of the databases are mounted. Users are able to send and receive mail, but I can not migrate mail using the Migration Batch utility.
    The destination server is a Hyper-V Guest running Server 2012, SP1, and Exchange 2013
    The Source Server is Running Exchange 2007.
    I have tried doing a test move to another destination server that is also Server 2012, and Exchange 2013, and the migration also failed.
    I would appreciate any help you can give me!
    Thanks,
    Jon

    Any update if you have resolved the issue.
    Not similar, but this thread can be helpful while you migrate the mailboxes from exchange 2007 to 2013. Please check :http://social.technet.microsoft.com/Forums/exchange/en-US/721f0ae4-623a-4b02-adaf-f561d86c0426/move-mailboxes-and-public-folders-from-exchange-2007-to-exchange-2013?forum=exchangesvrdeploy&prof=required

  • Premiere CS6 won't open my project, gives error message.

    Premiere CS6 is saying "This project contained a sequence that could not be opened.  No sequence preview preset file or codec could be associated with this sequence type."  The project is all .SWF files and it was working just fine.  It all of a sudden started this.  How do I fix this?

    Here is the solution. It appears this a Creative Cloud Issue. Very simple fix:
      Solution 1: Deactivate, and then reactivate Adobe Premiere Pro   
         Launch Adobe Premiere Pro by clicking the application icon. Do not attempt to load a project file.     
         Choose New Project, then create a project. The settings you choose in this step are not important. Launch Adobe Premiere Pro so that the Help menu is available.   
         Choose Help > Deactivate. Then on the Deactivate, screen click the Deactivate button.   
         Launch Adobe Premiere Pro as you did in Step 1.   
         On the Sign In Required screen, click the Sign in button.    
         If prompted, sign in with your Adobe ID. The full list of sequence presets is reinitialized.   
         Open the project the generated the error to ensure that it opens correctly. If you are still unable to open your project, contact Adobe Technical Support.   
    To the top  
      Solution 2: Re-create the Adobe Premiere Pro preferences and plug-in cache   
         Get ready to press the Alt (Option) + Shift keys simultaneously.   
         Launch Adobe Premiere Pro by clicking the application icon, and immediately press and hold the Alt (Option) + Shift keys.   
         Continue to hold the Alt (Option) + Shift keys down until you see the Welcome Screen. Note: If the preferences have been reset successfully, the Recent Projects area of the welcome screen will be blank.
    http://helpx.adobe.com/premiere-pro/kb/missing-sequence-presets.html

  • Cookies. Page that checks cookies gives error if there are no cookies.

    Hi All,
    I got the code that checks for cookie names :
    Cookie[] cookies = request.getCookies();
    out.println("there are " + cookies.length + " cookies<br>");
    for(int i = 0; i < cookies.length; i++)
         out.println("<li>" + cookies.getName() + ": " + cookies[i].getValue());
         if (cookies[0].getName().equals("user")) {
              String someString = cookies[0].getName();
              out.println("<p><p>" + someString);
    But when there are no cookies, this page gives an error. So first there
    should be some code that checks if there are cookies and if so then
    check to see what cookies there are.
    But how would I do this?
    It allready gives an error at :
    Cookie[] cookies = request.getCookies();
    Thanks for any help!!

    Cookie[] cookies = request.getCookies();
    if (cookies != null) {
        out.println("there are " + cookies.length + " cookies<br>");
        for(int i = 0; i < cookies.length; i++)
         out.println("<li>" + cookies.getName() + ": " + cookies[i].getValue());
         if (cookies[0].getName().equals("user")) {
              String someString = cookies[0].getName();
              out.println("<p><p>" + someString);
    } else {
    out.println("there are no cookies ");

  • Remove from page menu option in personalization

    Hi All,
    After clicking the Personalize link am getting new window Portal  lagunage option in the detail navigation.
    In the Page menu there are different option like remove from page, open in new window. I have selected remove from page  option and afte that whole contect area became blank.
    I want to revert the changes but am not able to do the same, because i am getting nothing in the content area, only in the detail navigation i am getting one link as Portal  lagunage. After clicking this link also am not getting any thing.
    I want to get back the language change page. i got one thread on the same but anot able to revert the changes done by me. ESS - Personilize - urgent
    Please provide solution for the issue.
    Deepak!!!

    Use the System Admin role to revert it back.
    There is a under System Admin> Support > > Portal Content Directory > Personalisation cleanup
    the required tool.
    Use Principal and enter the user.
    Regards,
    Kai

  • I get a printer error every time I try to print from Pages 5.2

    Over the past few days whenever I try to print from Pages, I get a printer error (on the printer) and it won't print. Pages is version 5.2 and I am printing from an iMac (2009) with Mavericks to an HP Laserjet. I am not the only one in my office to have this issue.

    - OSX and Pages versions:
    OSX 10.9.2
    Pages 5.2 (update is most recent)
    - is iCloud file sync On for Pages
    Yes. But doesn't seem to affect printing (both iCloud files and files from computer wouldn't print)
    - copy of a document shows an error in Pages when printed
    I don't really understand this. No errors appear in Pages or on the computer/printer dialog. The error occurs at the printer.
    - details about workflow before the error occurs; was the file edited
    Sometimes yes, sometimes no. No consistent workflow patterns that result in this error. The only consistency I have found thus far is files with more than one page.

  • Open file dialog search does not show the correct files

    When i use "open file" in the menu of, for example Pages, and then type a word of my desired file name into the search dialog it does not always find the file. Searching in Finder works. And the file is where it is supposed to be.
    Does it use different kind of searches? I have "reindexed" spotlight but no avail.
    Of course i can look for the file manually and then start pages by double clicking the file...
    Any ideas?
    thanks wolf

    I'm not sure how Pages treats this, but it's possible that from an Open File dialog it may only search either the current directory or the default documents folder. Not sure about this as I'm not a Pages' user.

  • Why can't I sort in Open/Save dialog boxes?

    Ever since I upgraded to ML, I found that I am unable to sort the listing in open/save dialog boxes. Currently the folder contents (List view) are all sorted by reverse Name. There are times I rather sort by Modification Date or Creation Date.
    The regular finder windows work as expected (click to sort, two clicks to reverse sort), but it seems this functionality have been removed from the Open/Save dialog boxes. I've searched for any tips/hints, but have been unable to find anything. Help.

    v3ktor.com wrote:
    Could not find the sorting function in the open dialogs before coming here. Really bad interaction design from Apple. It took me ages to figure it out. And if you sort it on "name" how do you switch A-Z or Z-A?
    You are not sorting, you are Arranging (ie grouping). In the Open file dialogs, you don't have an option to Sort.
    If you want to sort the items, set Arrangement to None and use the List View. Click the headers to sort. If you want to add more headers, right-click on the headers to select them.
    In the regular Finder Windows, the options when you click on that button without any modifiers is the Arrangement options. Arrangement groups items by those criteria. By Name is like Sort, but without an option to switch direction.
    If you press that button (or use the menu command in Finder) while holding down the Option (alt) key, you will get the sort options.  If you have an arrangement set, then the Sort option will sort within the groups. Some Arrangements have no sort option (like by Name) because it doesn't make any sense. If you just want to Sort, then set Arrangement to None and use the Sort option to sort.

  • Create/Open Workbook dialog performance

    Hi,
    We use Discoverer Plus (Application Server version v10.1.2.2) and we have around 20,000 workbooks. All these workbooks are shared amoung all the user, in other words all the discoverer users have access to all these 20,000 workbooks.
    We are experiencing a slight delay (20-30 sec) while opening "Create/Open Workbook dialog" in discoverer plus. This dialog appears automatically when the discoverer plus is launched. We area also experiencing a slight delay (20-30 sec) when we try to open "Open workbook from database" dialog. This can be opened using File/Open or Click Browse button from "Create/Open Workbook dialog".
    Please suggest any solution to improve the performance of this or any configuration in discoverer plus that supresses the "Create/Open Workbook dialog" that apprears automatically when discoverer plus is launched.
    Any suggestions is much appreciated.
    Regards
    Sriram

    Hi Michael,
    Thanks a lot for the details.
    We are following this approach. We have three catagories of users and they are as follows:
    Super -> All the discoverer plus permissions are assigned ( Create/modify/schedule and all the other Plus permissions).
    ReadWrite -> Only Create/modify workbook (Scheduling not allowed)
    View -> Only to run the workbooks created by the above two users.
    We have created three database users for discoverer and assigned appropriate permission in Administrator and created public connections for these users.
    Discoverer is accessed from our application (by clicking a menu item provided in our bespoke application). The application users are maintained within the application and we also have a security module which restricts the use access to application. In that security module we have three roles (as above) created for discoverer purpose and users will be given permission to one of the roles. When the user invokes discoverer from application, it decides which discoverer user to be used based on the discoverer role assigned and launches discoverer plus.
    Please note each application belong to an organisation.
    We follow naming convention when the workbooks are created, the organisation specific workbooks starts with the organisation name + workbook details. All the workbooks are shared to all the above users, so that it is accessible to all the categories of users. The basic idea is, user logs in to discoverer plus and click browse button in the Create/Open workbook dialog and search for their organisation workbook by typing in thier organisation name and then select the workbook to run.
    The problem that we are facing here is the amount of time it takes (15-20 sec) to open "Create/Open workbook" dialog and "Open workbook from database" dialog window.
    I have checked all the indexes are in place and added a composite index as well. It takes the same time. Is there any way we can supress Create/Open workbook dialog window when Discoverer Plus is launched?
    Regards
    Sriram

Maybe you are looking for

  • Where did the installed program files go?

    I installed some programs on memory card of my N95 and would like to delete the program completely. I use undelete function to remove the program and reinstall the program again. All the previous settings resume. Can someone advise where the program

  • Problem with displaying panel in a JFrame

    This application is supposed to display the actual month in a calendar with the current day in a red background. When running initially I get the frame with nothing in it, but if I resize it everything is displayed perfectly. I've played with the siz

  • Vendor No.  down payment posting Error in Special GL goes to Customer No.

    Hai. While vendor ( Exp No. 200) down payment  2nd  line items  reflects in customer down payment 2nd line item Customer  ( Exp. No. 200) This  is error  reflects Vendor Vs customer account balances So I want to know if there is any solution . Postin

  • Opening .cfm documents

    Is there a program for mac that can open .cfm documents because I am taking an online course from BYU and i can't open the cover sheet for my portfolio that they gave me. They said mac's are supported so there must be a program to open these right??

  • 2 Iphone with same itune account

    I have 2 iphone with a same apple account id.And the phone is for me and for my wife. Now we have problem of confusing of app because some app that I downloaded were different with my wife. Sometime she wanted to download those app that I already hav