Install of OEHR not working on Apex 3.0.1 and Oracle 10.2.0.3

Hi,
I've tried this about 10 times and it's driving me mad. I'm trying to install the OEHR sample application in to new workspace and after the install finishes and it all looks like it worked perfectly. However there seems to be a problem in that only the about box is there and it thinks that none of the supporting objects are there, but they are.
Any help appreciated.
John.

Hi All,
Me too facing the same probs.
Hoping to get some solution soon.
Regards
Arif.

Similar Messages

  • Oracle dbms.set_role does not work in APEX application

    Hi, in our j2ee applications, we use secure application role. Basically, the data source use the app user schema to connect to the database. the app user only has create session privileges. the database logon trigger will copy a set of attribute to the local secure context. (ip address, session user, client id, application name). The applications explicitly invoke the stored procedure sec_mgr.set_role before any DMLs are executed.
    the sec_mgr.set_role will check the local context attribute , authorize the ip, application name, and set an appreciated role to this session based on session user.
    we want to apply the same framework to the APEX application. First, we change the paring schema to the app schema which only has create session privilege. then we put the plsql code in which sec_mgr.set_role is called in the application builder --> shared components ---> edit security attribute ---> Virtual Private Database (VPD).
    however, we got the error ORA-06565: cannot execute SET ROLE from within stored procedure
    the sec_mgr.set_role is defined as invoker's right(AUTHID CURRENT_USER)
    do i missing something in APEX to get it work?
    Thanks

    Please explain it does not work in APEX? Is the application updating tables that have a trigger? APEX does NOT override trigger actions. Is it possible the values your trigger is looking for are NOT available in your APEX application? Can you post the trigger code here for review?
    Thank you,
    Tony Miller
    Webster, TX
    What if you really were stalking a paranoid schizophrenic... Would they know?
    If this question is answered, please mark the thread as closed and assign points where earned..

  • After updating My iPad 2 to iOS 5.1.1 , my newly installed apps are not working.

    After updating My iPad 2 to iOS 5.1.1 , my newly installed apps are  not working . When I try to open the app the screen just flashes and then nothing happens. Built in apps works fine . Please help

    I realize that installing apps is not the problem. Installing another app from the app store is a recommended troubleshooting tip from Apple if all of the third party apps will not open. It resets your iTunes authorization when you install the app because you have to enter your password.
    If you didn't install another app try it. Read this support article as well.
    iOS: Troubleshooting applications purchased for the App Store
    Try this as well. Quit all apps, reset the iPad.
    Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    If that doesn't work - sign out of your account, restart the iPad and then sign in again.
    Settings>Store>Apple ID. Tap your ID and sign out. Restart the iPad.
    Go back to Settings>Store>Sign in and then see if the apps will launch.

  • TS3212 I get an apple application support error when installing itunes. It says uninstall and re-install.  Does not work.  same message.  What is a solution?

    I get an apple application support error when installing itunes. It says uninstall and re-install.  Does not work.  same message.  What is a solution?

    Is that an error 2 message?
    If so, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • It's been a while that Im unable to copy music from itunes to my iphone. I updated my device to the latest version of IOS 5.1.1 and made sure no jailbreak is installed but still not working. please assist.

    it's been a while that Im unable to copy music from itunes to my iphone. I updated my device to the latest version of IOS 5.1.1 and made sure no jailbreak is installed but still not working. please assist.

    Assuming you are not manually managing your music, verify the following:
    You are using the latest version of iTunes
    On the summary tab of your iTunes sync settings you have checked "Sync only checked songs and videos"
    In your music library you have checked all the songs you want to sync to your phone
    There are no exclamation points next to any of the songs you want to sync to your phone
    You have authorized your computer for all Apple IDs for purchased music you want to sync to your phone (in Store>Authorize this computer)
    You have checked "Sync Music" on the Music tab of your iTunes sync settings
    When everything looks correct, sync your phone.

  • Authentication function not working in APEX but works in pl/sql

    Greetings, Jim here.
    I have written a very simple authentication funtion which uses the dbms_ldap package to authenticate using the userid and password from the login page.
    I've tested this function thru pl/sql and it returns true and false accordingly.
    I've created a custom authentication schema and in the authentication function I have return myfunction;
    The problem is, when called thru APEX, it appears to always return true and lets the login proceed, even if the password is correct. I know its using the function due to the fact that if I enter a bogus function as the authentication function, APEX spits up a message saying so.
    So, I know the function works, but I don't know why it does not work with APEX. Posting function below.
    CREATE OR REPLACE FUNCTION ODBS.CUSTAPEXLOGIN (p_username IN VARCHAR2,p_password IN VARCHAR2)
    RETURN BOOLEAN AS
    retval PLS_INTEGER;
    emp_session DBMS_LDAP.session;
    ldap_host VARCHAR2(256);
    ldap_port VARCHAR2(256);
    ldap_user VARCHAR2(256);
    ldap_passwd VARCHAR2(256);
    ldap_base VARCHAR2(256);
    BEGIN
    ldap_host := 'oraldap';
    ldap_port := '389';
    ldap_user := p_username;
    ldap_passwd := p_password;
    ldap_base := 'cn=users,dc=company,dc=com';
    emp_session := DBMS_LDAP.init(ldap_host,ldap_port);
    retval := DBMS_LDAP.simple_bind_s(emp_session,('cn=' || ldap_user || ',' || ldap_base),ldap_passwd);
    if retval = 0 then
    return true;
    else
    return false;
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    begin
    if sqlcode = -31202 then
    return false;
    end if;
    end;
    END;
    /

    Hi Jim,
    Can you clarify this -
    The problem is, when called thru APEX, it appears to always return true and lets the login >proceed, even if the password is correctThat implies you're saying your authentication function ALWAYS returns true? Is that correct? Also 'even if the password is correct' doesn't read correctly to me, did you mean 'even if the password is incorrect'?
    You then say -
    now the function works, but I don't know why it does not work with APEX.So by 'does not work' you mean in APEX it is always returning true therefore allowing you to login regardless of the username/password you use? Is that correct?

  • I have the Native AMP stack installed but apache not working

    i have the Native AMP stack installed but apache not working is there a way to reset apache manafaacture settings

    The following line tells me that this is not a template file, but a document created from a template called index.dwt
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/index.dwt" codeOutsideHTMLIsLocked="false" -->
    This means that you saved a child document as a template file at some stage.
    If you go to Modify->Templates->Detach from Template, you can remove the template structure from your document. All you then need to do is to re-save the document as a template.

  • Switch Theme is not working in apex 4.2.Plz  help me out.........

    Hi.......
    Switching from one theme to another theme is not working in apex 4.2..............
    Thanx in advance

    Hi!
    Same problem.
    Upgraded from 4.1 -> 4.2.
    Change theme from slightly modified Green theme (in mine case 101 is number and original was 11, One level Tabs) to Theme 25 Blue Responsive.
    Login page for instance doesn have "Login Region" for instance (not in LOV). And all pages are softly said strange.
    All have DISPLAY problem described on "http://1.bp.blogspot.com/-GzseTk6Lpes/UHvJkg9GulI/AAAAAAAAHRQ/Wt406GGZADQ/s640/Screen+Shot+2012-10-15+at+10.25.29.png", but without many parts that Dmitri describe.
    Rg
    Damir

  • Select count(*) not working in Apex

    Hello,
    The following sql works in both SQL*Plus and Toad but not in apex.  The variable seems always to be 0 no matter what data I have on the table.
    Basically I try to flip the status from "Inactive" to "Active" only when there is no "Inactive" status left on the table.  Say there are 2 inactive statuses.
    If I delete one inactive status, the overall status should still be "Inactive".  However, with this code, it flips to "Active" status regardless. 
    I tried manually assign the variable to 1 and the status was not flipped.  Therefore, it sounds to me that the count(*) is not working in APEX.
    Does anyone experience this before? 
    Thanks in advance,
    Ning
    ===================================
    DECLARE
    v_status_count NUMBER;
    BEGIN
    UPDATE LGR_APP_STATUSES
    SET DELETED = 'Y'
    WHERE LGR_APP_STATUS_ID = :P42_LGR_APP_STATUS_ID;
    commit;
    select count(LGR_STATUS_ID) into v_status_count from LGR_APP_STATUSES
    where DELETED = 'N'
    and LGR_APPLICATION_ID = :p42_application_id
    and LGR_STATUS_ID in (3,8);
    IF (v_status_count = 0) THEN
    update lgr_applications
      set lgr_application_status = 'ACTIVE'
      where LGR_APPLICATION_ID = :P42_LGR_APPLICATION_ID;
    commit;
    END IF;
    END;

    Hi,
    In query you have used p42_application_id.
    Other statements use P42_LGR_APP_STATUS_ID
    Do you have that item? What is session state for that?
    Regards,
    Jari

  • Fresh CS4 install, adobe updater not working. How do I install updates?

    I just re-installed the CS4 suite (except Acrobat) on my mini after getting that 30:150 "license not working" error. My license now appears to be working and I can open the applications. I'd like to apply update patches, but Updater is not working. Should I go out and install Updater 6.2? I have seen others on this forum told to update manually instead; I started that process but got spooked when the files I downloaded didn't seem to match Adobe's installation instructions. Specifically, the instructions say to click "adobe photoshop updater," but the downloaded file is "setup.app." Is this the correct app to open? And if it is, should my first update be the 11.0.1 /multiple languages? Thanks!

    thanks for the quick reply, Ned. Can you tell me whether opening setup.app is the correct way to apply the update? As I mentioned above, that didn't seem to jibe with Adobe's instructions.

  • I inadvertently installed the mountain Lion Safari over my existing copy not realising that it would not work with OS 10.7.5 and now I am unable to use it .

    I inadvertently installed the Mountain Lion Safari over my existing copy not realising that it would not work with OS 10.7.5 and now I am unable to use it .
    Can someone suggest a solution please.

    It should work, but it's an unmitigated mess. Simplest is to boot into recovery mode and reinstall the OS.

  • HT201304 I can't install any app from apple store. The install button is not working now. Before it was working perfectly had installed many app and I had purchased many app from i-store

    I can't install any app from apple store. The install button is not working now. Before it was working perfectly had installed many app and I had purchased many app from i-store

    If you installed Leopard that is why you can't install Mt Lion. The system Must be running Snow Leopard 10.6.8 to upgrade to Lion or Mt Lion.
    If you only erased the Macintosh HD partition then you left the Mt Lion Recovery HD partition in tact on that system. At startup hold down the Command+r keys to boot to the Recovery HD Partition. From there erase the Macintosh HD partition and then select Reinstall Mac OS X. It should then download Mt Lion and ask you for the Apple ID that was used to purchase Mt Lion.
    The Reason Snow Leopard might not be installing is because of the Recovery HD partition. To get rid of that you must First Re-Partition the drive As One Partition. Then install Leopard then SL (Or Snow Leopard from the start) and then update it to 10.6.8. Once that is done you should be able to log on to the Mac App Store and Re-Download Mt Lion.

  • I just bought an iPad mini and installed Facebook. NOT working. Only messages, but sporadically. Anyone know what's the deal?

    I just bought an iPad mini and installed Facebook. NOT working. Only messages, but sporadically. Anyone know what's the deal?

    Weird... Turned the iPad off and back on, while waiting on the line to be connected to an apple support specialist, now it works.

  • My Yahoo mail account has suddenly stopped working. Have deleted and re installed but still not working. Recently updated iOS could this be related?

    My Yahoo mail account has suddenly stopped working. Have deleted and re installed but still not working. Recently updated iOS could this be related?

    Try resetting the Yahoo password. Yahoo not infrequently has problems.

  • I have a printer xerox 3220 on networking ,have pc´s and a mac ,problem:it´s already install but does not work ,only print many page with code program,i will appreciate the solution

    i have a printer xerox 3220 on networking ,have pc´s and a mac ,problem:it´s already install but does not work ,only print many page with code program,i will appreciate the solution

    Hi guillermospain,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Click on the link to see more details and screenshots. 
    OS X: Connecting a Wi-Fi printer to your Wi-Fi network
    http://support.apple.com/kb/ht3500
    OS X Mountain Lion: Set up a printer
    http://support.apple.com/kb/PH11145
    OS X Mountain Lion: Reset the printing system
    http://support.apple.com/kb/PH11143
    Cheers,
    - Judy

Maybe you are looking for

  • Is there a way to force for rendering ALL clips in work area?

    Is there a way to force for rendering ALL clips in work area? All clips: not only the ones with the red horizontal line indicating that they need rendering! I ask for this because the rendered clips preview very smoothly, but the unrendered ones do n

  • Looking for a more suitable animation tool

    I've been creating animations from sprites in After Effects, with mixed results.  The input is a number of pixel art sprites (exported from elsewhere), and the output is a video, characters running around and interacting.  I have AFX doing quite a lo

  • How should I cut out people on bicycles with a background of a forest?

    Dear Everyone, I have an image of three people on bicycles in a forest - I need to cut the people/bicycles out of the background for use in a photo collage. Since the nooks and crannies in and around the bicycle are so small, I am not sure that even

  • Exchange Rate Type per Company Code

    HI Experts, In our system the conversion rates for EURX are maintained since there are several European companies working with the system. Now we would like to use the same SAP-system for companies in China & Taiwan. In both countries there is an ind

  • Sharing in 2nd account

    For some reason the SHARED feature in the side bar does not show up in my wife's account on my iMac. If I log in to my account (admin) I can see my Macbook under shared but when I switch to my wifes account nothing is there????