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

Similar Messages

  • Iphone 4s in settings can't access Notes or Mail.  Also can't access mail from home screen. Can't send email. All else is good.

    I need help. I have reset my iphone. I have turned it off then on. Still can't launch my built in mail app from home screen. When I try it goes to blank page then right back to home screen view.
    In settings for the iphone 4s I can not access Notes or Mail, Contacts,Calendars. When I tap either of the two they highlight in blue and then go right back to Home Screen view. I seem to be able to access everything else in settings with no trouble.
    From home screen I have no trouble I can launch the built in utility Notes with no problem. I also can launch Calendars from Home Screen view. My Contacts are still reachable by tapping Phone from H/S view then clicking on contacts.
    I can not launch mail. nor can I send email. Also the built in mail app is not showing it is recieving mail either. All else seems fine.
    I can log in to my email from Safari on iphone and from my laptop with no problem.
    Anyone have any suggestions?  My iphone is out of warranty. Apples only suggestions are To pay for support.
    Thanks in advance

    Just had a thought....was trying to rememberif anything changed last night. I think I installed a mac OS X Security update. That's about the time the trouble started. Any ideas? Thanks.

  • 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.

  • Why the photo app is not closing after i finish, when i take a picture accessing directly from home screen. the location is draining my battery if I'm not closing the app by double click home button. in iOS 6 was not like this

    When im taking a picture directly from home screen after im finished the application remain open. This app is ussing the location and if im not closing like other applications by doble click the home button the batery will finished fast. On the other IOS 5 and 6 was not neccesary to unblock the phone and bouble click the home bottom.

    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • Refreshing Materialized view from APEX process is causing errors

    Hi,
    I have created a materialized view, and am attempting to create a process in APEX to refresh the mview on a button click.
    I have been reading the documentation on Materialized Views and think I am more confused now than when I started.
    Do I need to add my mview to a refresh group to enable me to use the DBMS_REFRESH.REFRESH command from an APEX process?
    I have had a few attempts at getting it working, but to no avail yet.
    Any help would be appreciated.
    Cheers, Greg

    Snowman wrote:
    Hi,
    I have created a materialized view, and am attempting to create a process in APEX to refresh the mview on a button click.
    I have been reading the documentation on Materialized Views and think I am more confused now than when I started.
    Do I need to add my mview to a refresh group to enable me to use the DBMS_REFRESH.REFRESH command from an APEX process?What error are you getting?

  • 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

  • Access camera from lock screen

    I have updated my iPhone4 to iOS5 and am told that the camera can be accessed directly from the Lock Screen. But, I do not see this feature. Is there some setting where I can enable this?

    double click the home button.
    Search before posting too

  • 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

  • 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... :)

  • 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.

  • 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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I am unable to upgrade iphoto 8.12 to access photo streaming.  It gives an error message when I try to update

    Icloud shows photo stream not available since it states it needs Iphoto update required
    I go to Learn More next to the message
    It brings me to : Support/apple.com/kb/ht4906  iPhoto and Aperture: using Photo stream
    "IF YOU ARE USING AND EARLIER VERSION OF IPHOTO 9"
    There is a link to Mac App Store for update
    It brings me to iphoto:  Are you sure you want to subscribe to this photo feed?  I hit Subscribe
    A popup comes up: 
    There is a problem with the subscription
    Request to the server Macappstore://showUpdatespage failed.  
    I hit Ok (my only choice)
    And I am at iphoto. 
    What is the fix?
    I have spent many hours.

    If you have iPhoto 8.x and want to access photostreaming, you need to buy iPhoto 9 from the App store or buy the iLife '11 package. Have you already purchased iPhoto 9 from the App store?

  • Tab out from the lov gives the error

    Hi All,
    We have an LOV as soon as we tab out or select anything using the glaas icon the error page opens up giving the following error:
    ## Detail 0 ##
    java.lang.NullPointerException
         at oracle.apps.mth.setup.meter.server.MTHMeterSetupAMImpl.setComponentValue(MTHMeterSetupAMImpl.java:202)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:153)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:762)
         at oracle.apps.mth.setup.meter.webui.MTHMeterSetupCO.processFormRequest(MTHMeterSetupCO.java
    Can someone please tell me how to overcome this error.
    Thanks a lot for your help

    Hi,
    From this error stack it is not possible for me to guess anything.
    Please share the properties, LOV map details for LOV, then we can look into this.
    Regards,
    Reetesh Sharma

  • Update changed how I access keyboard from home screen

    I updated iPad and now when I swipe screen up from the bottom   I get a screen with air drop, music, etc.  I used to get the keyboard.  How do I get this back

    Swipe from top to bottom of that screen.
    What you are seeing is the Control Center.

Maybe you are looking for

  • F110 - Payment proposal simulator

    Dear all, does anybody knows if SAP provide a standard report ables to perform a simulation of payment proposal? That is, I need to extract the total amount of an hypothetic payment but without locking all open items as F110 does. Thanks in advance!

  • Dynamic page number

    dynamic page number I am trying to print multiple documents in one report, the requirement is to reset page numbers for every document(to start counting from 1) I don't have control over the size of the document because it is a flow table I am using

  • Static IP with network unplugged

    Is it possible to force an TCP/IP stack on a stand-alone machine? I'm trying to set a static IP manually, with Mac unplugged by any network (ethernet/airport), to make demo with a web server/application server running on my macbook. With ifconfig IP

  • Extracting photos/graphics from FrameMaker

    From a FrameMaker 11 book, I want to extract all the imported photos and graphics and put one on each slide of a PowerPoint presentation. This way our trainer can present the photos/graphics to our trainees in person and quiz them on what is shown in

  • CLASSIC will not recognize my zip drive

    classic will not recognize my zip drive...i have one program that roland will not update and it only runs in os9...so the program opens but will not let me select the zip drive as a option...please advise if classic can detect zip drives etc...thanks