Start webpage with applet from a Form gives an error.

Hi all,
In E-business suit I try to start a web page from payables-->invoices. I do this with the zoom button.
When I try to open a normal website it works fine. But when I open the site I want, with an applet on it, I get a fatal error and my explorer(IE) is closed!
The error is:
Runtime Error!
Program: C:\Program Files\Internet Explorer\IEXPLORE.EXE
This application has requested to terminate it in a unusual way. Please contact the application's support team for more information.
Has this something to do with the Oracle Jinitiator and the JVM the applet starts?
Thanks in advance.

Do one thing try to run... this on some other pc, do u face the same problem? It might due to clash of java runtime classes in oracle jinitiator and sun jdk which may utilised by the other custom applet.
Better use a wrapper jsp to forward to applet and check if it works fine.
--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • I have a Seagate expansion drive with files from my former pc.  How do I transfer these files to my new iMac?

    I have a Seagate expansion drive with files from my former pc.  How do I transfer these files to my new iMac?

    Drag them to the desired locations.
    (93394)

  • Custom Webpage with data from Web JetAdmin

    We are currently using Web JetAdmin to monitor a large fleet of network printers spread across our campus.  I love the features of the application but I would like to see if there is a way to simplify the interface a little bit.  I would like to see if it is possible to create a custom webpage with the status images of the printers that Web JetAdmin provides on the application interface.  Essentially what I would like to do is create a grid of these images for each printer so we could constantly monitor the status of these printers. 
    Any ideas how I could do this?
    Thanks
    -Jesse

    hi there,
    U can copy that data into a excell file in a fixed format. After that using SQL*Loader u can import that data into oracle database.
    But fix one format so that u can easily dump that data into oracle database when ever u want with out much effort.
    Cheers
    Naveen

  • Start synchronization with CRM from Outlook

    Hello,
    I have set up client based Outlook integration with SAP CRM 2007.
    When I in Outlook press the button "Start synchronization with CRM", I have to logon to the CRM system manually even though I have done the following:
    1) Checked in SMICM the server name and port number for HTTPS.
    2) Concatenated it into <server_name>:<port number> and entered it in the synchronization settings together with client, user-ID and password.
    Any thoughts on this?
    Kind regards,
    Johan Wigert

    Hello,
    I managed to solve this by using X.509 Client Certificates. See the following link for more info:
    http://help.sap.com/saphelp_crm60/helpdata/en/1c/ad1640033ae569e10000000a155106/frameset.htm
    Kind regards,
    Johan Wigert

  • Customer self service form gives the error of  "Page cannot be displayed"

    Hi All,
    Customer self service form from Navigation: Recievables -> Customers --> Standard gives the error of "Page cannot be displayed" but the same form gets opened when i navigate that from Order Management responsibility
    Thanks&Regards,
    APPS DBA

    Hi All,
    I have been trying to install the EBS 11i in configured system core 2 duo with 1 gb ram and 250 gb HDD,
    have been following the below steps to install the EBS 11i,
    1.installed Win20003 server edition
    2.VC++ and copyind the link file into windows\system32,
    3.GNU make done the path set everything,
    4.MKS tool kit,
    5IP config and installing MS loopback,
    started the installtion direct from the DVDs,
    Pre-Installtion everything was OK,
    but after done everything I got struck last min, where the popup window appeared as login page responding but i did wait for 30 min and nothing has happened.
    So closed and I restarted the System and I have restarted process putting 1st DVD and given the command rapidwiz -restart.from command prompt.
    and Again its started as a new installtion, and preinstatltion wizard has came.
    where I haeve commited the mistake i did not understand...?
    Please guide me
    regards
    Satya

  • Reading from text file gives IndexOutOfBoundsException error

    Dear All
    I really need your help in doing my assignment as soon as possible
    I am reading from a text file the following data
    4231781,Ali,AlAli
    4321790,Adnan,AlAli
    using two classes first one is
    public class Student
    private String studFName;
    private String studLName;
    private String studID;
    private double assignment1;
    private double assignment2;
    private double final_exam;
    private double total;
    public String getstudfName() {
    return studFName;
    public void setstudfName(String studFName) {
    this.studFName = studFName;
    public String getstudlName() {
    return studLName;
    public void setstudlName(String studLName) {
    this.studLName = studLName;
    public String getstudid() {
    return studID;
    public void setStudID(String studID){
    this.studID = studID;
    public double getAssignment1() {
    return assignment1;
    public void setAssignment1(double Assignment1) {
    this.assignment1 = assignment1;
    public double getAssignment2() {
    return assignment1;
    public void setAssignment2(double Assignment2) {
    this.assignment2 = assignment2;
    public double getFinal_exam() {
    return final_exam;
    public void setFinal_exam(double final_exam) {
    this.final_exam = final_exam;
    public double getTotal() {
    return total;
    public void setTotal(double total) {
    this.total = total;
    Student[] students = new Student[30];
    the second is manager one which is:
    import java.io.*;
    import java.io.IOException;
    import java.util.Arrays;
    import java.util.ArrayList;
    public class manager {
    public static Student[] students = new Student[30];
    public static void main(String args[]) {
    // We want to let the user specify which file we should open
    // on the command-line. E.g., 'java TextIO TextIO.java'.
    if(args.length != 1) {
    System.err.println("usage: java manager (file_name)");
    System.exit(1);
    // We're going to read lines from 'input', which will be attached
    // to a text-file opened for reading.
    BufferedReader input = null;
    try {
    FileReader file = new FileReader(args[0]); // Open the file.
    input = new BufferedReader(file); // Tie 'input' to this file.
    catch(FileNotFoundException x) { // The file may not exist.
    System.err.println("File not found: " + args[0]);
    System.exit(2);
    // Now we read the file, line by line, echoing each line to
    // the terminal.
    try {
    String line;
    // Student[] students = new Student[30];
    while( (line = input.readLine()) != null ) {
    // System.out.println(line);
    int m = line.indexOf(",");
    int j = line.lastIndexOf(",");
    String sID = line.substring(0,m);
    String sfn = line.substring(m+1,j) ;
    String sln = line.substring(j+1);
    int n = 0;
    students[n] = new Student();
    students[n].setStudID(sID);
    students[n].setstudfName(sfn);
    students[n].setstudlName(sln);
    students[n].setAssignment1(0.0);
    students[n].setAssignment2(0.0);
    students[n].setFinal_exam(0.0);
    students[n].setTotal(0.0);
                        ++n;
    catch(IOException x) {
    x.printStackTrace();
    // Arrays.sort(Student.students);
         int length = args.length;
    System.out.println();
    // System.out.println("Sorted by stuID");
    for (int i=0; i<length; i++) {
    System.out.print("Student ID "+students.getstudid() + "|||");
    System.out.print("Student Fname "+students[i].getstudfName() + "|||");
    System.out.print("Student name "+students[i].getstudlName());
    when I comile progrma it doesn't give any error but when I run it gives me the following exception:
    java.lang.String.substring. IndexOutOfBoundsException string index out of range : -1
    as can be seen from the manager class I form the read line from readline method as follows:
    int m = line.indexOf(",");
    int j = line.lastIndexOf(",");
    String sID = line.substring(0,m);
    String sfn = line.substring(m+1,j) ;
    String sln = line.substring(j+1);
    Therefore, student ID should be read from the beggining tel the character before the comma (,) then from the character after first comma tel that before second comma will be firstname, finally the rest after second comma will be last name.
    I want my program to read all lines in the text file and put them in order as above forming the array like database record and print them all.
    Could you please Help me in this matter friends as soon as possible.
    Regards,
    Java_Hobby

    please, format you code first (select your java code and hit the code button), then post all the error log message.

  • When running form give me error

    hi every one
    In my PC
    I Install oracle10 DB and Developer10 g
    when I make form first I connect for example HR/HR CONNECT success but when I run form give me this error
    ora-12560
    I move tnsname from folder DB to developer but no good
    i make new listner also no ggod
    what the solution
    thanks in advance

    Perhaps you should try running the Net Configuration Assistant from the Oracle Developer Suite program group instead of copying the tnsnames.ora from the database. ;)
    If you are going to copy the tnsnames.ora file from the database NETWORK\ADMIN folder to Forms Developer, you need to copy the sqlnet.ora file also.
    Another alternative would be to add a TNS_ADMIN entry in the Oracle -> KEY_DevSuiteHome10g Windows Registry and add the full path to your database copy of these files. For Example: Open Windows Registry editor, navigate to: HKEY_LOCAL_MACHINE -> SOFTWARE -> Oracle -> KEY_DevSuiteHome10g. On the right you will see numerous String entries. Right click in this area and select NEW -> String Value. Name the string value key: TNS_ADMIN. Double-Click the new string and enter the full path to your SQLNET.ora and TNSNAMES.ora files.
    ALWAYS exercise caution when modifying the Windows Registry!
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Loading from SQL Server gives an error

    Hi,
    I try to load data from SQL server to Oracle. When I try to run my mapping, I get the following error:
    Job 4 error: com.microsoft.sqlserver.jdbc.SQLServerException: Invalid object name 'kssefflataus.dbo.SLD_LAHETTEET_EFF'.
    while executing
    "java0xc execute java0x4 {select     
         SLD_LAHETTEET_EFF.OLE_LAHETE     AS OLE_LAHETE,
         SLD_LAHETTEET_EFF.OLE_JUURI_ID     AS OLE_JUURI_ID,
         SLD_LAHETTEET_EFF.OLE_..."
    (in namespace eval "::EFFICA_DB_LOC_EU::LCT_SQL_TO_ORACLE" script line 1)
    invoked from within
    "nseval $srcToTarget execute [java::getinterp] $p_src_stmt $p_src_jndi $p_tgt_stmt $p_conn $p_src_tech $p_tech $p_commitrows"
    invoked from within
    "set g_res [nseval $srcToTarget execute [java::getinterp] $p_src_stmt $p_src_jndi $p_tgt_stmt $p_conn $p_src_tech $p_tech $p_commitrows]"
    while executing
    "error $errorInfo"
    ("if" then script line 11)
    invoked from within
    "if {[catch {set g_res [nseval $srcToTarget execute [java::getinterp] $p_src_stmt $p_src_jndi $p_tgt_stmt $p_conn $p_src_tech $p_tech $p_commitrows]} r..."
    (procedure "source_to_target" line 8)
    invoked from within
    "source_to_target $p_src_stmt $p_tgt_stmt $p_srcvar $connection $p_srctech $p_tgttech $p_tgtcommitrows"
    while executing
    "error $jdbc_errorInfo"
    ("if" then script line 2)
    invoked from within
    "if {[info exists jdbc_errorInfo]} {
    error $jdbc_errorInfo
    (procedure "execsourcetarget" line 24)
    invoked from within
    "execsourcetarget $src_stmt $tgt_stmt "$SRC_LOCATION" "$TGT_LOCATION" "TGT_AC" "" "GENERIC" "ORACLE" -1 "false" "false""
    (procedure "5_LOAD_DATA_main" line 33)
    invoked from within
    "5_LOAD_DATA_main "
    while executing
    "error $errorInfo"
    ("if" then script line 4)
    invoked from within
    "if {[catch {
            logTaskStart Started $taskDetail {4} {}
    global _OMBTaskFlowAudit
    set _OMBTaskFlowAudit {TASK_LOADING|5_LOAD_DATA}..."
    ("if" then script line 2)
    invoked from within
    "if {$AFTER_ICT == "false"} {
    if {[catch {
            logTaskStart Started $taskDetail {4} {}
    global _OMBTaskFlowAudit
    set _OMBTaskF..."
    (procedure "5_LOAD_DATA" line 27)
    invoked from within
    "5_LOAD_DATA"
    (procedure "LCT_SQL_TO_ORACLE::LCT_SQL_TO_ORACLE_main" line 50)
    invoked from within
    "LCT_SQL_TO_ORACLE::LCT_SQL_TO_ORACLE_main "jdbc/SQLSERVER_DATABASE_LOCATION-OWB11-OWB11_REP-PUBLIC_PROJECT-EFFICA_DB_LOC" "jdbc/ORACLE_DATABASE_LOCATI..."
    (in namespace eval "::EFFICA_DB_LOC_EU" script line 4)
    invoked from within
    "namespace eval EFFICA_DB_LOC_EU {
    logPhaseStart "" {EFFICA_DB_LOC_EU} "" {5}
    eval [getScript "CODETEMPLATE-OWB11-OWB11_REP-PUBLIC_PROJECT-BUILT_IN..."
    null
    Something is wrong but what? Source table is imported straight from SQL server db and target table is basicly a copy of it. I'm not used to work with SQL server databases so this can be a configuration issue or something like that.
    BR,
    Mari                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Seems that the problem is here: 'kssefflataus.dbo.SLD_LAHETTEET_EFF'. It should be 'kssefflataus.mydatabase.dbo.SLD_LAHETTEET_EFF'. That "mydatabase" is defined in SQL server location but it doesn't use it here. How can I add it to the code?
    BR,
    Mari

  • Whenever i try to download app from itunes it gives a error saying my id is diabled

    Whenever i try to download app from itunes on my pc it gives a error saying my account is disabled..i have reset the password but having the same problem

    Here is the troubleshooter for error -50:
    http://support.apple.com/kb/TS1583

  • Populate PDF template with data from another form

    Hi all, it's been a while since I've been here. I'm not a LC pro by any stretch, but I've been working on a personal project which I hope will someday result in a small business. The idea is simple: a client fills out a custom form in Acrobat Reader which I've created in LC Designer. Upon completion, they email the pdf (or XDF, or XML, or E4X or whatever might be possible, I'm not even sure!) back to my website.
    On my end... and this is hopefully automated... the data would be injected into a template PDF the client needs. This would then be sent back via email for them to print.
    It's been over a year since I worked on this. Both the front end forms and the pdf templates are built, but the interaction between receiving the client data and populating the template form never got worked out.
    Could anyone provide me with a clue as to what this workflow might look like?
    Just to be clear, this application would be waaay too small to even think about going the Enterprise route. I'm "thinking" the automation part of it would be handled by some custom PHP coding, but that's another story.
    Thanks!
    Graham Calhoun

    Thanks PMG.
    Yes, I am wedded to the idea that I will only use Adobe PDF. The server component is a whole other story though. I understand the value of it, but as a small business, the idea of coughing up 60k is pretty much out of the question. Especially given that this form is a one of a kind, simple, time saver for my prospective clients.
    From what I understand about LC, Acrobat and Reader, there are severe limitations imposed on saving form information in Reader. My clients need to be able to do that, as the form is quite extensive and needs to be revisited to be sure information is correct.
    While any one user will probably not exceed the 500 submissions issue, hopefully there will be more than 500 users submitting 1 time!
    We'll see if I can work around this issue.

  • Recovery of VHD file from tape immediately gives null error, ID 1001, and job fails.

    I am attempting to recover a VHD from tape.   When I finish the recovery wizard and it starts to create the job, I get an immediate popup error with an ID: 1001 and a "More Information" link that goes to a "page not found" on technet.
     There is no actual errror message or other info in the dialog box.  When I click ok, the dialog and recovery wizard disappear, and no job seems to have been created. 
    I've seen a couple of other posts about this, but didn't find any solutions.  I did run a tape verification against the recovery point in question, and it completed.  (I don't see where it says passed/failed, just completed.  I assume the
    job would have failed if it found a problem?)
    I've also tried a couple of other recovery points, on different tapes, but am getting the same results. 
    Any idea what is going wrong?

    Hi,
    Can you provide DPM version and update rollup version.  Are there any events from MSDPM after the error, if so, can you supply the event details ? 
    As a workaround,  you can restore the VHD by going to Management>Tape Library>Right Click on the Tape>select backup set for the data source containing the VHD and then click on the COPY button.  That will restore to
    a network location and you can then copy it to the hyper-v server and replace the VHD manually.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Exports From Audition CC Give "Header Error" in Premiere Pro CS6

    Hello,
    I have finished the audio mixing on a 15 track project in Audition CC. It is very heavy so I had to export all the tracks separately to import them back into the Premiere Pro CS6 movie project. That way I could also do further adjustments in individual tracks later on directly on Premiere, if needed (since mixing isn´t something we´re ever done with).
    I´ve exported them all in wav 9600 Hz 32 bit (Audition doesn´t say whether it´s floating point or not) and also wav 9600 Hz 24 bit. The originals on all the tracks were eitther wav 9600 Hz 24 bit, or wav 9600 Hz 32 bit (converted from 24 bit to aplly declipping and normalization), except 2 tracks with music that had mp3, wav and m4a.
    When importing the exported Audition files back into Premiere all of the 15 tracks, including the ones that didn´t have mp3 and m4a in it, give me the message "The file cannot be opened because of a header error".
    Questions:
    1. What could be wrong?
    2. In case there isn´t a solution, what would be the best lossless formats to try and do the exports for importing into Premiere?
    Thanks a lot.

    I see...
    Trouble is I´ve never had an answer for my posts in the Audition forum (I did originally post this here because I thought it´s more of a Premiere issue, though). I guess Audition just isn´t nearly as widely used as Premiere.
    Also, I have done the same kind of exports for smaller tracks from Audition before and didn´t have an issue importing them into Premiere.
    I find it really troubling that Adobe intends to make Audition a reliable pro audio suite integrated with Premiere and, on top of some weird issues like this one (and such as the 16 bit limit for sending a project from Premiere to Audition, making that integration probably useless for most pro uses), there´s so little support.
    But thanks a lot, anyways!

  • NFS - Solaris 10 client from Ubuntu server gives Rpcbind error

    Hello All,
    New to Solaris, and I've been scouring the Internet to find a solution, but none have been produced. I'll start by giving you details about the setups, and then go into the error:
    Server Setup:
    Ubuntu 8.04
    Exports file ->
    /home/<folder> <Solaris 10 Server DNS name>(rw,no_subtree_check,async)
    Client Setup:
    Solaris 10
    Set /etc/default/nfs to have NFS_CLIENT_VERSMAX=3
    Ran svcadm -v enable -r network/nfs/client and then tried
    mount -F nfs <Ubuntu Server DNS name>:/home/<folder> /mnt/test/
    and all I ever get are Rpcbind failure - RPC: Timed Out and then it says it's retrying: /mnt/test
    I've gotten the firewall out of the way, I can ping the Ubuntu server from the Solaris server and vice versa, and I'm able to mount the Ubuntu NFS share on another Ubuntu machine perfectly, but I can't get it to mount on the Solaris server. If I specify v3 of NFS, that doesn't change anything. If I specify v4 of NFS, I get the error that the file or folder doesn't exist on the Ubuntu server.
    Any ideas? Any more info needed?

    This is the exact same problem I've been having. My server is Ubuntu 8.10, and the client is Solaris 10. This is on my home network, so I'm pretty confident it isn't a network issue. I do NFS all the time at work between Solaris machines, but I'm stumped on this one. I've noticed there are similar threads on the topic with no real answer that I have found --
    http://www.linuxquestions.org/questions/linux-networking-3/nfs-server-on-ubuntu-doesnt-play-nice-with-nfs-client-on-solaris-626508/
    I did a dfshares from the Solaris box, and I actually get a response listing the shares. Even though I can see it I still can't mount it. Here is what I see:
    bash-3.00# dfshares tabasco
    RESOURCE SERVER ACCESS TRANSPORT
    tabasco:/media/Shared tabasco - -
    bash-3.00# mount -F nfs -o ro tabasco:/media/Shared /mnt
    nfs mount: tabasco:/media/Shared: No such file or directory
    bash-3.00#
    NFS is working on the server, as I can mount it locally (see below)
    root@tabasco:/# cat /etc/exports
    /media/Shared *(ro,sync)
    root@tabasco:/# mount tabasco:/media/Shared /mnt
    root@tabasco:/# cd /mnt
    root@tabasco:/mnt# ls
    Videos lost+found Music Pictures Other
    root@tabasco:/mnt#
    Yes... my server''s name is tabasco... remember it's a home network... and I like Tabasco... :)

  • Call Forms Forum from Oracle Forms Main Page - Error 404 Not Found

    Hello !
    The Layout and fuctionality of the Oracle Forms Forum has changed - very nice !
    But it's not possible to call the Oracle Forms Forum
    from the Oracle Forms Main Page !
    Error-message :
    404 Not Found
    OracleJSP: An error occurred. Consult your application/system administrator for support. Programmers should consider setting the init-param debug_mode to "true" to see the complete exception message.
    Thomas

    Please use the [Post-Upgrade Problems|http://forums.oracle.com/forums/forum.jspa?forumID=587&start=0] to report Forums related problems.
    This is the Forms Forum.
    Tony

  • Accessing DBMS_AQ from Apex screen gives an error

    Hi,
    I have created an Advanced queue (DBMS_AQ) in my schema and i can successfully enqueue and dequeue messages through a stored proc.
    But when i call the same stored proc from an APEX screen, i get the following error.
    "ORA-24010: QUEUE APEX_PUBLIC_USER.<Q_name> does not exist."
    As AQ admin and even as SYSDBA, the following permissions were given, but still
    no luck.
    1) DBMS_AQADM.grant_queue_privilege (
    privilege => 'ENQUEUE_ANY',
    queue_name => 'Q_name',
    grantee => 'APEX_PUBLIC_USER',
    grant_option => FALSE);
    2) DBMS_AQADM.grant_queue_privilege (
    privilege => 'DEQUEUE_ANY',
    queue_name => 'Q_name',
    grantee => 'APEX_PUBLIC_USER',
    grant_option => FALSE);
    3) DBMS_AQADM.grant_queue_privilege (
    privilege => 'ALL',
    queue_name => 'Q_name',
    grantee => 'PUBLIC',
    grant_option => FALSE);
    4) Created a public synonym for the queue and tried to access the queue from the screen.
    Can you please help me to access the Queue from APEX screens ?

    Hi Scott,
    First to answer your questions based on the error i was getting
    All 1 , 2 and 3 are the same.
    1) The schema assigned to the application is 'XYZ'
    2) 'XYZ' is the AQ_administrator
    3) Permission was granted to APEX_PUBLIC_USER by connecting as 'XYZ'.
    Also in my local XE DB, i tried the same and i am able to access Q from the APEX application created in that Schema.
    I did not grant any privilege except that the schema (foo) is the AQ_ADMIN.
    schema: foo
    workspace: foo (automatically created when i create an app in the schema)
    parsing schema: foo
    Please find the steps below
    Connect As Sysdba
    AQ_ADMIN PRIVELEGES
    1) GRANT aq_administrator_role TO foo;
    2) GRANT execute ON dbms_aq TO foo;
    3) GRANT execute ON dbms_aqadm TO foo;
    Connect As foo
    1) create type image_uploaded_ot as object
    sheet_id NUMBER(15));
    2) GRANT EXECUTE ON IMAGE_UPLOADED_OT TO PUBLIC;
    -- create QT and Q
    3) begin
    DBMS_AQADM.CREATE_QUEUE_TABLE (
         queue_table => 'image_uploaded_qt',
    queue_payload_type => 'image_uploaded_ot'
    DBMS_AQADM.CREATE_QUEUE (
    queue_name => 'image_uploaded_q',
    queue_table => 'image_uploaded_qt'
    DBMS_AQADM.START_QUEUE (
    queue_name => 'image_uploaded_q'
    end;
    -- verify if queue exists
    4) SELECT name, enqueue_enabled, dequeue_enabled
    FROM user_queues;
    SELECT name, enqueue_enabled, dequeue_enabled
    FROM user_queues;
    5) TESTING - ENQUEUE/DEQUEUE
    CREATE OR REPLACE PROCEDURE demo_enqueue ( OT_I image_uploaded_ot)
    IS
    enq_msgid RAW(16);
    eopt dbms_aq.enqueue_options_t;
    mprop dbms_aq.message_properties_t;
    aprop sys.aq$_agent;
    pragma autonomous_transaction;
    BEGIN
    aprop := sys.aq$_agent(NULL, 'foo.image_uploaded_q', 0);
    mprop.sender_id := aprop;
    dbms_aq.enqueue('foo.image_uploaded_q', eopt, mprop, OT_I, enq_msgid);
    COMMIT;
    END demo_enqueue;
    CREATE OR REPLACE PROCEDURE demo_dequeue IS
    deq_msgid RAW(16);
    dopt dbms_aq.dequeue_options_t;
    mprop dbms_aq.message_properties_t;
    payload_t image_uploaded_ot;
    q_on_hand PLS_INTEGER;
    no_messages EXCEPTION;
    pragma exception_init(no_messages, -25228);
    pragma autonomous_transaction;
    BEGIN
    dopt.dequeue_mode := dbms_aq.remove;
    dopt.navigation := dbms_aq.first_message;
    dopt.visibility := dbms_aq.immediate;
    -- add functionality with mprop.attempts and mprop.enqueue_time
    dbms_aq.dequeue('foo.image_uploaded_q', dopt, mprop, payload_t, deq_msgid);
    UPDATE OFFICE
    SET OFFICE_NAME = 'TEST'
    WHERE OFFICE_ID = payload_t.SHEET_ID;
    COMMIT;
    EXCEPTION
    WHEN others THEN
    RAISE;
    END;
    6) TESTING FROM APEX
    created a pl/sql process
    declare
    test_ot image_uploaded_ot;
    begin
    test_ot := image_uploaded_ot(1);
    demo_enqueue(test_ot);
    demo_dequeue();
    end;
    By looking at the test program above and the answer to the questions. The test prgm satisfies criteria 1 and 2 above and as you had mentioned and confirmed by test prgm, 3 is not required.
    I am not sure what privilege is missing in the actual schema.
    But atleast a hope that a AQ is accessible from APEX :)
    Thanks,
    Rakesh

Maybe you are looking for

  • Web Search not working in Yosemite Spotlight

    Hello, One of the major features of Yosemite was that Spotlight could directly return web search results. But unfortubnaltly that isn't working for me. Anyone else facing this issue or has already figured out a work around for this? Regards, Kartik G

  • Switching to BT within 5 days but don't get new ro...

    Hi, i'm a little worried, today i recieved an email from my old broadband provider (aol) to say that my new service provider (BT) will be taking over within the next 5 days. The problem is that when i spoke to BT they said that the router will be del

  • Smartforms - Email

    Hi Experts, Plz tell me how to send (email) the output of a purchase order when i save it in ME21n or me22n like ALE.

  • How to call a ECC 6 Function module from BI 7 process chain

    Hi BI Gurus I wann to push the data from infocube to ECC 6 ( Tcurr) table  on a daily basis, and we have a function module written in ABAP and this FM is in ECC 6 sytem and we need to call this function module from BI inorder to update the TCURR tabl

  • GS60-2QE (970M) USB Boot Issue

    Hi all, I have been having a strange issue on my new Ghost Pro, sometime it allows me to boot from a USB CD drive or thumbstick and other times it won't. I have checked the BIOS settings, secure boot, UEFI, boot order and they are fine. The USB devic