ERR-3331 Appearing regularly when working on APEX 3.0 page definitions

ERR-3331 This page was already submitted and can not be re-submitted.
I cannot consistently reproduce it but it happens every now and then. Refreshing the browser (ctrl-F5) solves the problem but you lose a bit of work every time.
Cannot remember having had this message in V2.12
Rene

Joel,
It happens in the application builder. Just every now and then. I've been working on an application all day now and it happened maybe 5 times. I thought I had a reproducible case but later it went ok. The example I thought I had was:
- Made a new region.
- Under items I clicked a region name to get all items in that region.
- Moved some of the item to the new region
- Apply changes
- Clicked on a button to move that also to the new region.
- Apply changes
** Error **
Could reproduce this a couple of times but after ctrl-f5 it worked fine.
Later it happened at various different actions.
If I'm the only one to experience this it must be my local setup. Will try a different browser and or workstation tomorrow to see what happens.
Rene
Edit: Just missed Sharons comment while typing mine...
Message was edited by:
renewestenberg

Similar Messages

  • Why do lines appear faint when working with layers?

    I'm drawing using a Cintiq and using layers.  When the image is then flattened, the lines become much blacker.  I don't want the line quality to look different when in layers than when flattened.  When I work in Sketchbook Pro, it looks exactly the same in layers as when it is flattened or saved as a jpeg, so why does Photoshop behave this way?  Is there a way to fix this in Photoshop?  I'm hoping so because it's a real deal breaker for using Photoshop to draw.
    Here is an attached sample to show the difference.  Thanks.

    Perhaps it because Photoshop is not displaying the transparency grid and you perceive your lines darker when displayed on a white background.  That is the same thing that happens when you flatten a document. Empty and transparent pixels become 100% opaque because a background layer does not support transparency.  If the canvas default color is white. White is added to all pixels till the pixels are 100% opaque. You may perceive the change in contrast as your lines becoming darker.
    Here is a screen capture of your example with white remove. One copy with no background the other over a white background.

  • When working on my ipad with pages and numbers, I have experienced it freezing up and i cannot access the files?

    When I am using Pages or Numbers app on my ipad it has frozen up?  I cannot edit, open any of the files.  Then later I can which is what I am hoping with the document I just produced?  Is it because it goes to the cloud? 

    This happens to me once in a while using Pages, but the "freeze" is very brief and I can usually just wait a short period of time and then the documents are accessible again. I have no idea what causes it, but it may be due to the fact that a file is being uploaded to iCloud as you suggest, but I don't know that for sure.
    Sometimes I close Pages from the task bar (double tap the home button and tap and hold down on the Pages icon until it wiggles then tap the minus sign to close it, then tap the screen above the tsak bar.) And when I launch Pages again, it is back to normal.

  • Problem with tiny white lines appearing in my work

    Hi all,
    I'm very new to photoshop. I find that while I'm working this white noise (and also other times in the form of a bunch of tiny white lines) appears to cover most of my image. See to the right of the man's head as well as from his neck down on the orange background. It's manageable (though annoying and distracting) while working, but I got to thinking what if the finished file displays the lines as well? To test this, I saved it in a few file formats and I still see the lines. Also, this project, including the starting file, is from the adobe tutorial classroom in a book, if that helps. I'm hoping someone can help me! Thanks!

    Thanks for your help.
    8 GB 1600 MHz DDR3
    OS X 10.9.5
    174.08GB free of 250.14GB
    I haven't set any scratch discs. Should I set them up at this point?
    The book is showing the same exact image without the lines.
    The attached screen shots show each layer on its own - some show the white lines, some do not. None of the channels show the white lines. They appear often when working with masks.

  • How to avoid error "HTP 404" when working with "Google Suggest" and Apex 3?

    Hi,
    I am trying to implement the GOOGLE SUGGEST function in an APEX application (a sample of Google Suggest + APEX can be found in http://htmldb.oracle.com/pls/otn/f?p=22777:6:4312817919732414 or http://teradata.weizheng.net/2009/08/using-google-suggest-in-apex.html).
    The release of APEX is 3.2.1 and of RDBMS is 9.2.0.8 (64 bits). They are installed on a SOLARIS 9 SPARC 64-bits server, where i have an EBS 11.5.9 application. So, i´m using RDBMS and Apache of EBS 11.5.9 to work with APEX 3.2.1.
    I can see the list generated by javascript function when i type in P2_REPORT_SEARCH, but when i SELECT an item (pressing ENTER), i have got an "HTP 404 error". Looking in the logs in the apache, i have found this error:
    http://prigaudi1.sote.tasa.com.ar:8002/pls/apex/wwv_flow.accept
    [Tue Jul 26 10:12:53 2011] [error] mod_plsql: /pls/apex/wwv_flow.accept ORA-0
    wwv_flow.accept: SIGNATURE (parameter names) MISMATCH
    VARIABLES IN FORM NOT IN PROCEDURE: AQ,OQ
    NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM:
    I think that "AQ" and "OQ" are variables of "ac.js" javascript.
    The JAVASCRIPT procedure that is situated on HTML HEADER of PAGE 2 is :
    <script src="/i/BASE_CONOCIMIENTO/ac_google/ac.js" type="text/javascript"> </script>
    <script language="Javascript" type="text/javascript">
    function iac()
    { InstallAC(document.wwv_flow,document.getElementById
    ('P2_REPORT_SEARCH'),"","ASKTOM.incsearch_articulo","en"); }
    </script>
    The JAVASCRIPT function that is situated on HTML BODY ATTRIBUTE is:
    onLoad="iac()"
    My "INCSEARCH" procedure is described below:
    CREATE OR REPLACE PROCEDURE IncSearch_ARTICULO(qu VARCHAR2, hl VARCHAR2, js VARCHAR2,
    client VARCHAR2 default null) AS
    l_List1 varchar2(10000);
    l_Query varchar2(255);
    l_separator varchar2(10) default '';
    BEGIN
    l_Query := qu || '%';
    FOR x IN (select TIT_TOPICO,NULL AS COMPLEMENTO from BAC_TOPICO where Upper(TIT_TOPICO) like Upper
    (l_Query) order by 1)
    LOOP
    l_list1 := l_List1 || l_separator || '"' || x.TIT_TOPICO || '"';
    l_separator := ',';
    END LOOP;
    owa_util.mime_header('text/html', false);
    owa_util.http_header_close;
    htp.p('sendRPCDone(frameElement, "'|| qu ||'", new Array(' || l_List1 || '), new Array(""), new Array(""));');
    END INCSEARCH_ARTICULO;
    I think this procedure is working fine on Apache Server:
    Example:
    http://prigaudi1.sote.tasa.com.ar:8002/pls/apex/asktom.incsearch_articulo?qu=A&hl=A&js=a <enter>
    sendRPCDone(frameElement, "A", new Array("Ayuda Como crear un topico en la base de conocimiento"), new Array
    (""), new Array(""));
    I would like to know how i can solve this problem of HTP 404 and "SIGNATURE (parameter names) MISMATCH"
    Best regards,
    Sergio Coutinho

    Hi,
    Maybe i provided too much information about my problem,
    Well, i tried to implement the solution "Google Suggest" in my APEX 3.2 application, but i´m having now an "HTTP 404 error" when i select an iten in the list buided by "google suggest".
    Can anybody make a suggestion of how i could analize this error and fix it?
    Best regards,
    Sergio Coutinho

  • Arabic text appearing incorrectly in Photoshop CC when working with PSD created in previous version

    Hi. I'm working with PSD files that were originally created in Photoshop CS5 and they contain English text. Now I want to open them with Photoshop CC ME and add Arabic text.
    So I've gone to Preferences > Type > clicked the "Middle Eastern and South Asian" radio button
    Then from the main menu I selected Type  > Language Options > checked "Middle Eastern Features".
    I see the Middle Eastern features in the Paragraph and Character panels. However, if I create a text box and paste in Arabic text - the text is corrupt. The characters are not connected and their appearence is incorrect.
    I've double checked that I have right-to-left selected in the Paragraph panel and in the Character panel I have both "Standard Ligatures" and "Contextual Alternates" selected.
    When I open a new file in Photoshop CC and paste the same text into a newly created text box - it works fine. The Arabic appears perfect. The issue is only when working in a file that was previously created in an earlier version of Photoshop.
    If I move a text box from the new PSD created in CC to the other PSD created in CS5 - all is good. However this work-around is far from Ideal, since I need to work in the existing text boxes.
    Does anyone have an idea how to enable proper appearance of Arabic text in Photoshop CC in a file that was created in a previous version?
    Thanks!

    I submited a ticket;
    http://feedback.photoshop.com/photoshop_family/topics/bug_in_cc_with_arabic_text_on_old_ph otoshop_documents

  • In iphoto 6.06 I make the red  eye changes, it appears to have worked, but when I open the pic again the red eye is back. Advice?

    In iphoto 6.06 I make the red  eye changes, it appears to have worked, but when I open the pic again the red eye is back.Advice?

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • Device not showing in iTunes for 'Wi-Fi Sync' and 'Sync Now' on phone only works(appears dark) when plugged in via USB so kinda defeats object. Any ideas please?

    Device not showing in iTunes for 'Wi-Fi Sync' and 'Sync Now' on phone only works(appears dark) when plugged in via USB so kinda defeats object. Any ideas please?

    Had the same issue. Tried everything that was posted for troubleshooting bye apple and on the discussions.
    Finally, tried something that solved it and it works flawlessly now. I changed my wireless router.
    I was using my ISP's supplied ZyXEL PN660 ADLS2+ with Wireless N. Swtiched to an older Linksys WRT160N and it is working beautifully now.
    Take a look at your router, make sure the firmware is up to date, and that UPnP is enabled, and if all is correct, and you have done everything else, try another Wireless router if you can.

  • On IPad running iOS 7 when I select mail, I get several warnings saying "Caanot Get Mail " can't connect to server   However, everything appears to be working fine with mail ?

    On iPad when selecting mail getting multiple boxes saying "Cannot Get Mail" cannot connect to server. However, mail appears to be working fine ? Ca not figure why this is happening ?

    Hi there wjmcder,
    I would recommend removing and re-adding the affected account as an inital troubleshooting step
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    -Griff W.

  • Compressor is not working. When I export to compressor from FCP to encode DVD, FCP freezes and Compressor appears to be working but the progress bar never fills no files are created. I'm using a MacBook Pro 10.6.7 version 2.66 GHz core 2 Duo 4GB 1067 MH

    Compressor is not working. When I export to compressor from FCP to encode DVD, FCP freezes and Compressor appears to be working but the progress bar never fills no files are created. I'm using a MacBook Pro 10.6.7 version 2.66 GHz core 2 Duo 4GB 1067 MH. I'm not new at this. I re-installed FCP successfully. I trashed the preferences. Please help.

    Do you have any filters applied to your clips?
    This happened to me before, I accidently had applied a broadcast safe filter to a color matte that was black....
    I figured it out by duplicating my sequence and deleting items from my timeline 1 by 1 until I was able to export a reference movie.
    Anywho, export again, this time with "self contained" movie selected.
    Then try to import to Compressor.

  • I have an iPhone 4S I've been useing a sever for awhile now. Downloaded new iOS now I'm getting 403 forbidden when trying to look up anything from the server. Regular 3G works. How can I fix so I can use the server?

    I have an iPhone 4S I've been useing a sever for awhile now. Downloaded new iOS now I'm getting 403 forbidden when trying to look up anything from the server. Regular 3G works. How can I fix so I can use the server?

    Update: An Apple rep called me today to update the status of my return. I was told that the replacements for the BLACK iPad 2's was still another 3 weeks out (at least) so they offered me a brand new WHITE 16GB iPad 2. I could have that or continue waiting. I opted to go ahead and accept the offer of a new white one. Worst case scenario if I don't like the white one I have buddy that just bought a 16GB black one that he would be willing to swap it.

  • IChat not working (not appearing online when I should be)

    I have had iChat open all day and it appeared to be working fine, but I never noticed anyone come online which is unusual. I then opened iChat on my wife's computer (using her account) and I didnt appear online, and she didnt appear in my account. I tried deleting my plist file, resetting my disc permissions and restarting my computer but it didnt help. I logged in on my wife's computer and had the same problem. It may be a coincidence but yesterday I installed the latest iChat AIM update on my iPhone and I set it up to keep me online 24 hours after I quite (using the SMS alerts). I tried logging out and disabling it on my iPhone but still no luck. Any help much appreciate, as I use iChat alot!
    James

    I seem to have fixed it. I downloaded AIM for mac, and it was the same problem. It showed all my friends as offline when I knew some of them should be online. I then tried talking with someone I knew was online and it said they were blocked. In my buddy list however it showed them as not being blocked, but I blocked one of them anyway and then unblocked them and then it allowed me to chat with that person. Then I quit AIM and opened iChat and it started working. Very strange I know, but I wont be using iChat on my iPhone until they bring out a new update.

  • Am I able to assign different lists of favourites to different Locations in Mac OSX 10.6? (ie, my work favs when work network settings applied and home favs appear when home network settings applied?)

    # Question
    am I able to assign different lists of favourites to different Locations in Mac OSX 10.6? (ie, my work favs when work network settings applied and home favs appear when home network settings applied?

    The local firewall is off out of the box.
    The log on the Netscreen shows nothing out of the ordinary. Shows the connections being established then closed.
    Support for the firewall is long gone.
    I can try calling Apple but I do not look forward to that call just to be told the firewall is at fault and there is nothing they can do about it.

  • I was updating my ipod touch to iOS 6.1.3...when it's finish..the recovery mode appeared and when i plugged it on itunes it didn't work

    I was updating my ipod touch to iOS 6.1.3...when it's finish..the recovery mode appeared and when i plugged it on itunes it didn't work

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar              

  • Getting ERR-3331 while trying to import application

    Hello,
    i'm trying to import an application from a 3.1.0.00.32 to a 3.1.0.00.30 APEX (there is no compatibility problem, right?!). I first was wondering the exported file is very big (~27 MB). When I'm trying to import this application on the target system it's processing for a while and then after ca. 5-7 minutes an error-page appears. ERR-3331 the error-text is in German but means something like "This application has allready been redirected and can't be redirected again."
    I don't know what to do. Hope you can help me.
    Thank you in advance
    Sebastian

    Hi,
    i now have tested the exported script with SQL*Plus getting following result:
    Set Application ID...
    begin
    FEHLER in Zeile 1:
    ORA-20001: Die Package-Variable g_security_group_id muss festgelegt werden.
    ORA-06512: in "FLOWS_030100.WWV_FLOW_API", Zeile 48
    ORA-06512: in "FLOWS_030100.WWV_FLOW_API", Zeile 246
    ORA-06512: in Zeile 4
    may be there is a solution for this error?
    Thank you
    Sebastian

Maybe you are looking for