Can not extend Entity with  OAPlsqlEntityImpl

I want to make an entity that extends OAPlsqlEntityImpl so that i can do the updates and inserts in PLSQL procedures.
However , when i am trying to create a new entity object i am not able to select the
"oracle.apps.fnd.framework.server.OAPlsqlEntityImpl" in the Extends Entity field. What do i have to do or include in my project to be able to create an entity that extends OAPlsqlEntityImpl ?

Please create a standard EO and then make sure the EOImpl extends OAPlsqlEntityImpl. This should suffice.

Similar Messages

  • HT4259 I have a Netgear wndr3400 and I can "join a wireless network" but can not "extend a wireless network" on my Airport express.  Does anyone know why?

    I have a Netgear wndr3400 and I can "join a wireless network" but can not "extend a wireless network" on my Airport express.  Does anyone know why?

    Sorry, but "Extend a wireless network" is a proprietary Apple setting that will only work if you have another Apple router.
    It is not compatible with devices from other manufacturers.

  • HT4623 I just got an iPhone 4, and I can not connect it with my iTunes. I tried to set up a new iTunes account but it says that my security code is wrong, even when everything is correct. What should I do?

    I just got an iPhone 4s, and I can not connect it with my iTunes from my previous account. I have already tried making another account, however it says that I have the wrong security code even though this is not true. What should I do?

    Contact iTunes support.  There's a link to it on the bottom of every page in the iTunes store.

  • I forgot my iCloud password, and i can not reset it with email authentication, when i do it, i don't receive any mail from Apple

    I forgot my iCloud password, and i can not reset it with email authentication, when i do it, i don't receive any mail from Apple

    If you don't know your password, don't know your security questions and don't have a rescue address or don't receive a reset email, you should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
    If you are in a region that doesn't have international telephone support try contacting Apple through iTunes Store Support.

  • My old appleID use email with domain already deactivate. So I changed my appleID and primary email and now I can not access iCloud with iOS7. ICloud shows my old appleID but I can't change it. How do I get iCloud to work with my updated ID?

    My old email that using register for apple ID cannot access/check any mail because that domain already deactivate.
    So I changed my appleID and primary email and now I can not access iCloud with iOS7. ICloud shows my old appleID but I can't change it. How do I get iCloud to work with my updated ID?

    Hi ccharat,
    Welcome to the Apple Support Communities! It sounds like you did a good job editing your Apple ID and primary email address, but you didn’t sign out of iCloud on your iOS device before hand. What you may need to do in this situation is go back to the Apple ID website and edit your Apple ID and primary email address back to the email address that is signed in with iCloud (there is no need to verify the account after editing it back to the old account, just changing it back is enough). Once your Apple ID is back to the original account, delete the iCloud account from the iOS device and be sure to keep all info on the device when prompted. After you delete the iCloud account, go back to the website and edit your Apple ID and primary email address back to the new address. Once it is back to the account you would like, you can sign into the iCloud on the iOS device with that new account and merge all of the data when prompted. Please use the following article as a reference.
    iOS 7: If you're asked for the password to your previous Apple ID when signing out of iCloud
    http://support.apple.com/kb/ts5223
    Change your Apple ID temporarily
    If signing out and back in to iMessage or FaceTime didn't help, try these steps:
    Change your Apple ID to the Apple ID you used previously. You shouldn't need to verify the email address.
    Go to Settings > iCloud. Complete these steps only if the Find My [Device] setting is turned on:
    Scroll down and tap Delete Account, then tap Delete to confirm.
    Tap “Keep on My [Device]” or “Delete from My [Device].” In either case, your data remains in iCloud and will be updated on your device when you sign in to iCloud again.
    Enter the password for your previous Apple ID.
    Change your Apple ID to the new email address that you want to use. You'll need to verify the email address.
    Return to Settings > iCloud and sign in with your new Apple ID.
    I hope this helps,  
    -Joe

  • I am trying to update my iPod but I can't until I sync it. However when i try to sync it a message pops up and says "Blythes iPod" can not be synced because a session can not be started with this device. What do I do? Help!

    I am trying to update my iPod but I can't until I sync it. However when i try to sync it a message pops up and says "Blythes iPod" can not be synced because a session can not be started with this device. What do I do? Help!

    https://support.apple.com/kb/TS1567
    Ah, it has been mentioned daily esp since iOS 5 / iTunes 10.5 but has always been there as an issue.
    Order of attempts:
    Repair the installers
    Uninstall EVERY Apple component (auto and manual)
    Services: Restart all 3 Apple items (AMS, Bonjour, iPod)
    I* always do the last almost, then launch iTunes, and only then connect iPod.
    IF you see a yellow alert in Devices and Printers or in Device Manager, then I could find NO WAY to fix or repair other than a clean OS. Something messed up the device driver support.
    If/when Windows asks "what to do when it detects iPod"? don't chose any default action, to me, based on hunch and 3 PCs, that seems to mess AMS up for some reason.
    Tried with Windows 7 64-bit Pro and Home Premium, and also Deve Preview 8 (which other than the inability to update iOS to 5.0 seems to run better -- except when it comes to AMS thing! so seems Apple is not on the same page writitng drivers.

  • SendMail: can not send mail with body more than 1000 caracters

    Hi,
    I can not send mail with a body wich is more than 1000 caracters.
    FUNCTION SendMail(SMTPServerName IN STRING,                     
                        Sender IN STRING,                     
                        Recipient IN STRING,                     
                        CcRecipient IN STRING,                     
                        BccRecipient IN STRING,                     
                        Subject IN STRING,                     
                        Body IN STRING,                     
                        ErrorMessage OUT STRING,                     
                        Attachments IN ATTACHMENTS_LIST) RETURN NUMBER IS      
                        AttachmentList VARCHAR2(4000) := '';      
                        AttachmentTypeList VARCHAR2(2000) := '';   
                          BEGIN       ParseAttachment(Attachments,                      
                                                      AttachmentList);      
                                      RETURN JSendMail(SMTPServerName,
                                                       Sender,                       
                                                       Recipient,                       
                                                       CcRecipient,                       
                                                       BccRecipient,                       
                                                       Subject,                       
                                                       Body,                       
                                                       ErrorMessage,                       
                                                       AttachmentList); 

    Hi,
    I can not send mail with a body wich is more than 1000 caracters.
    FUNCTION SendMail(SMTPServerName IN STRING,                     
                        Sender IN STRING,                     
                        Recipient IN STRING,                     
                        CcRecipient IN STRING,                     
                        BccRecipient IN STRING,                     
                        Subject IN STRING,                     
                        Body IN STRING,                     
                        ErrorMessage OUT STRING,                     
                        Attachments IN ATTACHMENTS_LIST) RETURN NUMBER IS      
                        AttachmentList VARCHAR2(4000) := '';      
                        AttachmentTypeList VARCHAR2(2000) := '';   
                          BEGIN       ParseAttachment(Attachments,                      
                                                      AttachmentList);      
                                      RETURN JSendMail(SMTPServerName,
                                                       Sender,                       
                                                       Recipient,                       
                                                       CcRecipient,                       
                                                       BccRecipient,                       
                                                       Subject,                       
                                                       Body,                       
                                                       ErrorMessage,                       
                                                       AttachmentList); 

  • I am using iPhoto '09 Version 8.1.2 but can not use iCloud with it. I've looked for updates in iPhoto and iLife'11 but no luck. Suggestions very welcome.

    I am using iPhoto '09 Version 8.1.2 but can not use iCloud with it. I've looked for updates in iPhoto and iLife'11 but no luck. Suggestions very welcome.

    No you won't necessarily lose your photos when upgrading but it's very very unwise not to back up first. Backing up is like using a seat belt in a car. You can drive without one for years and have no issues, but if you do have a problem the outcome will be a lot worse. So, too, with back ups. And upgrading is one of those times when the risks of a problem are higher.
    Most Simple Back Up:
    Drag the iPhoto Library from your Pictures Folder to another Disk. This will make a copy on that disk.
    Slightly more complex: Use an app that will do incremental back ups. This is a very good way to work. The first time you run the back up the app will make a complete copy of the Library. Thereafter it will update the back up with the changes you have made. That makes subsequent back ups much faster. Many of these apps also have scheduling capabilities: So set it up and it will do the back up automatically.
    Example of such apps: Chronosync - but there are many others. Search on MacUpdate or the App Store

  • Who can tell me if it right I can not write rfc with bdc?

    Dear experts,
            I want to write a rfc with BDC so that vs.net can use this rfc, but I find it can not be used. who can tell me if it right I can not write rfc with bdc?
    Best Regards,
    Shinny

    Hi Shinny,
    Can you explain what error are you getting a little briefly. Coz you can write BDC in Function Modules.
    Thanks,
    Prashanth

  • OBIEE 11g, can not signin analytics with user admin "Weblogic"?

    Hi all,
    I have a problem as i can not signin analytic with user Weblogic, with error "An error occurred during authentication. Try again later or contact your system administrator".
    then, i create one user other, with admin privilege and sign in ok, same with all other user.
    Before i get this problem, i have create one user --> add to a role --> grant permission of some analytic on weblogic folder to this user.
    plz tell me what the reason of this problem.
    Thanks so much.

    From Srini's update i see its a bug, but can you give it a try with the below options and also let us know the OBIEE Version?
    try to shutdown everything admin,managed and opmn services and then restart everything once everything is up now deploy the old rpd and see if it helps
    paste the log files from admin and nqserver.log

  • I have € 0.09 in my account and I can not buy anything with this value. I want to undo (give up) this value. What do I do?

    I have € 0.09 in my account and I can not buy anything with this value. I want to undo (give up) this value. What do I do?

    Click here and request assistance.
    (68968)

  • Can not extend Package ZBI7

    Hi all,
    I created a package ZBI 7 as Main Package and application component as BW in SE80.
    I created a view in R/3 system.But while assiging this view to the the package ZBI7, it says "Can not extend Package ZBI7".
    Any idea on resolving  this problem
    regds
    Ramu

    Hi Ram,
    Could you check the attributes of the Package in SE80?  - Right Click>>Display.
    'Allowed object types' should have No restrictions.
    'Package not extendable' should NOT be checked.
    Assign a standard Transport Layer.
    BR/
    Mathew.

  • IPhone 4 can not wifi sync with my 2011 new MacBook Air

    My iPhone 4 can not wifi sync with my 2011 MacBook Air.
    My iTunes is 10.5.1, I'm using OS X 10.7.2 and my iPhone 4 is iOS 5.0.1
    Does anyone know how to slove this?
    Please let me know, thanks a lot~
    Gavin

    Having the same issue. Iphone 4 at 5.0.1, Itunes at 10.5.1 iMac at 10.7.2. Synch session fails to start either wi fi or USB connected. Don't know if it is related, but since turning on Match the Music app crashes on the iPhone. No problems on iPad 1, though

  • I bought Lightroom 5 in te year 2003. My order number is AD004521948BE. My serial number is  removed . I download of my new Imac PC. I can not log in with the serial number

    I bought Lightroom 5 in the year 2003. My order number is AD004521948BE. My serial number is <serial number removed>. I download of my new Imac PC. I can not log in with the serial number

    Please specify the error that you are getting, the serial number is good & working.
    Regards
    Rajshree

  • My Mac book pro powers on and once on cursor moves but can not open anything with it.

    My Mac book pro powers on and once on cursor moves but can not open anything with it.

    ladislavfromcygnet wrote:
    Thank you Shootist007. I cannot do even Update now. I probably should have spent the same amount of money on a new IMac!
    No not really. If this is a brand new Macbook Pro take it back for a refund. Apple has a 14 day No Questions Asked return policy for Full refund.
    Take it back, get the Full Refund (DO NOT LET THEM TRY TO FIX IT. YOU BOUGHT A NEW COMPUTER NOT ONE THAT HAS BEEN WORKED ON OR NEEDS TO BE FIXED) and then decide whether to buy another Macbook Pro or the iMac. Or you could return it, get the Full refund and buy some other brand computer.

Maybe you are looking for