Unable to extend from this object

Hi al,
I am new in to OaFramework.
Now i got requirement for Am extension.
If i extend standard Am then i got error message like "Unable to extend from this object"
Application Module.
Oracle.apps.per.selfservice.compgaps.server.CompGaps has an invalid View instance tempresultsVO.
please let me know how can i resolve this issue.
Regards
Ramoji

I know this way of extension..
But Here Standard table is "Dual"
select null competence_id,
null competence_name,
null competence_element_id,
null personal_comp_prof_level,
null assess_comp_prof_level,
null mandatory,
null min_prof,
null max_prof,
null low_step_value,
null high_step_value,
null target_prof_level,
null select_flag,
null personal_prof_meaning,
null assessment_prof_meaning,
from dual
Here i need extend one field ie is Prioratise.
can we give link from Dual table to Any Other Custom Table.

Similar Messages

  • Unable to extend from object Application Module

    Hi All,
    oracle.apps.icx.por.reqmgmt.server.ReqMgmtAM has an invalid View Instance AllReqsVO.
    In 11i there were customizations in iproc in which the ReqMgmtAM has been extended and some methods have been coded .Now I am working on porting the changes to R12 instance and wanted to redo the changes R 12.1.2 jdeveloper version 10.1.3.3.0.
    The extended AM in R11 has two overriden methods getGroupVOName, bindSummaryQueryInnerWhereParams to call two extended VO objects .
    Now in R12 Jdeveloper when I am trying to extend the ReqMgmtAM it does not allow me mentioning oracle.apps.icx.por.reqmgmt.server.ReqMgmtAM has an invalid View Instance AllReqsVO.
    What should I do ? Please advise .
    The changes is to have a poplist instead of MyRequisitions and choosing MyRequisitions or Mylocation requsitions will show all the requisitions belonging to that Deliver to location ...and user should be able to go the requisition details page and should be able to copy to cart and perform actions as it is .
    --Chandra                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    hi
    is this ReqMgmtAM a root AM ,if it is so, extension of root Am may cause so many problems ,if u provide your requirement details ,we can go for some alternate solution also .
    thanx
    Pratap

  • Unable to Extend Vanilla AM

    I'm a newby to the OAF world. Itook a class based on 11.5.10 version of jdev but now trying to do a R12 customization. Of course the tools are not the same...
    I've copied the $JAVA_TOP/oracle/apps folder to myclasses
    I've exported the page I want to extend
    Trying to create a new AM while extending the vanilla AM. at first attempt the vanilla AM is not available to extend so I've copied the AM.xml file under myprojects subfolders. Now it's an option to extend it. However, when I attempt it, I get this type of error
    "Unable to Extend from object... Invalid View instance..."
    How do I get around these errors? I'm totally stuck.
    thx

    user593515,
    Yes, it is always advisable to use extension, personalization instead of recoding the whole thing, but there are some limitations with extension, personalization. What Sumit was pointing to is the fact that OAF doesn't support substituting a Root AM. But again that doesn't stop you from moving ahead, there are workarounds to get the things done staying within the framework standards.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Reading from other object

    Hi Guys,
    I dont know whether am following the correct way , I have a scenerio where I have to show in the report Blocking reasons . I have a field from DS Payment Block Key which is 0PMNT_BLOCK in BI. I have 7 Blocking reasons in one table called BSEG and I have enhanced my 0FI_AP_4 DS to include this 7 fields and mapped to 7 BI Objects 0BLCKRSN_PR for price 0BLCKRSN_QL for quality....Now bringing these fileds from BSEG effecting performance as each time the exit is calling. I do have a Text data source (0PMNT_BLOCK_TEXT) which is having same data as I need...So in order to get this Blocking reasons in to my report without enahcing from BSEG table Iam trying to read it from master data . but its not allowing me to do that....When I say read from master data for one of the info object 0BLCKRSN_PR and press F4 its showing no info object available for reading of master data....Can any one tell me why its showing this error...I do have a Master data object 0PMNT_BLOCK which is having the values A B D H M P , so I want to read the above object 0BLCKRSN_PR from this Object ...as P is for Price and so on....
    Do I need to take the seven info objects as attributes of 0PMNT_BLOCK ?
    If so , I didnt find a DS for attributes in ECC , I have only Text DS 0PMNT_BLOCK_TEXT....
    Please advice me what I need to do for this...Also please shoot me a reply If you ahve any more questions....

    the join produces more rows then the sum of it's parts (e.g. 154). For example:
    select owner, name
    from all_source
    where upper(text) like '%BINARY_INTEGER%'
    633 rows selected.
    select owner, type
    from all_source
    where upper(text) like '%PLS_INTEGER%'
    926 rows selected.
    select ds1.owner, ds1.name, ds2.type
    from all_source ds1 inner join all_source ds2 on (ds1.owner = ds2.owner and ds1.name = ds2.name and ds1.type = ds2.type)
    where upper(ds1.text) like '%BINARY_INTEGER%'
    and upper(ds2.text) like '%PLS_INTEGER%'
    5710 rows selected.
    select owner, count(name) as name_cnt
    from all_source
    where upper(text) like '%BINARY_INTEGER%'
    group by owner
    OWNER NAME_CNT
    SYS 577
    WWW 56
    2 rows selected.
    select owner, count(type)
    from all_source
    where upper(text) like '%PLS_INTEGER%'
    group by owner
    OWNER COUNT(TYPE)
    SYS 909
    WWW 17
    2 rows selected.
    this could be a solution then:
    select ds1.owner, ds1.name_cnt, ds2.type_cnt
    from (select owner, count(name) as name_cnt
    from all_source
    where upper(text) like '%BINARY_INTEGER%'
    group by owner) ds1 inner join (select owner, count(type) as type_cnt
    from all_source
    where upper(text) like '%PLS_INTEGER%'
    group by owner) ds2 on (ds1.owner = ds2.owner)
    OWNER NAME_CNT TYPE_CNT
    SYS 577 909
    WWW 56 17
    2 rows selected.

  • Windows server 2008 R2 File& Folder Permissions; Ghost Permissions From "Parent Object" Assigned to Folder Owner

    Windows 2008 R2 file server: Subfolders of a particular folder have an account that has Full Control permission that are listed as inherited. That account has no permissions in the parent folder. It was, however the account that was used to copy the folders
    and their contents in there from another source and was the owner of the folder.
    In Advanced Permissions, it shows them as inherited from "Parent Object" as opposed to the folder name of the parent folder (there are some of these.) (The parent folder of the place where the problem occurs does not inherit from _its_ parent)
    I removed it as owner and yet the permissions remained. (as displayed either through the GUI or with ICACLS.)
    If I make _any_ edit in Advanced Permissions, the 'ghost' permissions then go away (e.g. add my account with full control - I'm domain admin, so have that anyway) This step seems like it should be unnecessary, but it is required in this situation.
    I've done this to 5 of about 20 subfolders and it is consistent. Folders which did not have the 'problem account' as their owner did not exhibit this characteristic.
    This affects the files within the subfolders as well.
    Oddly, adding an owner to a folder has the same effect and required the same edit before the permissions are seen. This was tested on a different drive on the same server.
    Is this an anomaly, a bug, or expected performance?

    Hi,
    Do you mean that there is an account that has Full Control permission that are listed as inherited but it doesn’t appear in the parent NFS permissions? If so, please try to uncheck the "Include inheritable permissions from this object's parent" checkbox,
    clicking Apply.
    There is a similar thread, please go through it to help troubleshoot this issue:
    NTFS: I have a user’s that's inherited from parent folder but it doesn’t appear in the Parent ACL
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/6061af36-4d44-4de8-8139-d71f06d59a2c/ntfs-i-have-a-users-thats-inherited-from-parent-folder-but-it-doesnt-appear-in-the-parent-acl?forum=winserversecurity
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Problems starting tcode from swo1-object via gos (so_sendobj)

    Hi,
    working with gos around some swo1-object, i got the problem to start a transaction which is called from an object method: the transaction starts but the wished details of that item do not appear as expected.
    When I start the test environment within tcode SWO1, and at first, I create an instance from this object giving it the right key (for the wished item) then i succeed in starting the bespoken transaction from within that method showing me the details for that item.
    In the last days, I have read and learned a lot about the possibilities and interdependences of the gos mechanism using many of the hints and advices which were given here in the forum in the past. But I'am not able to achieve the wished effect via gos (send object with note) from within our application.
    My guess, we need to start an instance of the object before we can show details for the wished item. In the normal case, the application shows at the left windows with containers/trees for search filters and items and within the main window on the right the details for that item. Starting this transaction a popup-window appears (showing the standard filter) where you can give the wished item no.
    As I remarked, starting all these things from within the swo1 environment everything is functioning as expected...
    Is there anybody who has made a similar experience and can give me some advice what we have to do to succeed in?? Is there any function module of kind SWU..., SWE... SWO... or something else which is to be called in front of that task???
    I forgot to mention that within our application, there is the correct? built up of the gos-object via class cl_gos_manager constructing the needed object and the needed key, so when calling the gos-action, the bypassed sap user finds the link in the inbound position and will be directed to the correct transaction with the side effects described before.
    Wish you all together a happy new year.
    Kind regards
    Christian

    My freind  ,
    in the   Bussiness Objects  migatration there is  no select-options  like   
    sending  range of data  or the multiple selections.
    for this we need separate   loop structure   where in we can send the multiple   data  and everytime it calls the  BAPI Obect  evertime  individaully ,
    if you want the  you have to  define  one  new   BOR  object  (Custom bapi)...then  rignt  one  function module for   select-options and  attach it to  you method  in the BAPI   .
    So that   your  BAPI calls  in the SAP  function Module   for  range of data .
    Reward  points if it is  usefull ....
    Girish

  • Unable to extend License of MiniSAP 4.6D ABAP Objects by Kruger & keller

    Hello people
    Unable to extend License of MiniSAP 4.6D ABAP Objects by Kruger & keller
    I am not able to execute the instn mentioned in the Help file also.
    Please suggest.
    Also How do i execute SAPLICENSE.exe -get.
    Please Help.
    Regards
    Vinay

    First up you need MBS up and running. So start the database and MBS system.
    Now you have a choice of methods to do this, from the OS or within SAP.
    Within SAP is easier; logon to SAP with user ID SAP* (password 'pass') goto transaction SLICENSE.
    From the OS; Start a new DOS window (run -> cmd), change to the MBS directory (c:\local\..>CD c:\mbs), execute the environment variables (c:\mbs>dbenv.cmd), now run the saplicense program (c:\mbs>SAPlicense.exe -get).
    When you get the new license use the appropiate method and flags.

  • Unable to update this object because the following attributes associated with this object have values that may already be associated with another object in your local directory services

    Getting this error from DirSync
    Unable to update this object because the following attributes associated with this object have values that may already be associated with another object in your local directory services: [UserPrincipalName
    [email protected];].  Correct or remove the duplicate values in your local directory.  Please refer to
    http://support.microsoft.com/kb/2647098 for more information on identifying objects with duplicate attribute values.
    Quick eyeball and couldn't see the cause in the user account so used the script here:
    http://gallery.technet.microsoft.com/office/Fix-Duplicate-User-d92215ef
    And got these outputs:
    PS C:\Windows\System32\WindowsPowerShell\v1.0> Export-OSCADUserPrincipalName -UserPrincipalName "[email protected]" -Path .\outputs.csv
    WARNING: Cannot find objects with specified duplicate user principal name
    [email protected]
    Found 0 user(s) with duplicate user principal name.
    Where to from here?
    Richard P

    Hi,
    Did you talk about the Microsoft Azure Active Directory Sync tool ?
    If yes, this issue occurs if one or more of the following conditions are true:
    An object in the on-premises Active Directory has an SMTP address that's the same as the SMTP address of the object that's reporting the problem.
    An object in the on-premises Active Directory has a mail attribute that's identical to the object that's reporting the problem.
    An object already exists in your organizational account and has the same SMTP address or mail attribute as the object in the on-premises Active Directory
    More detail information, please refer to:
    http://support.microsoft.com/kb/2520976/en-us
    [Troubleshooting] Unable to update this object because the following attributes associated with this object
    http://blogs.technet.com/b/aadsyncsupport/archive/2014/05/20/troubleshooting-unable-to-update-this-object-because-the-following-attributes-associated-with-this-object.aspx
    Regards.
    Vivian Wang

  • Unable to create a Driver object from driver with Media type string CTC PHO

    Hi All,
    I am trying to develop a siebel cti adapter for avaya.
    I have loaded a custom dll into siebel server but it is throwing error "SBL-CSR-00500: Unable to create a Driver object from driver C:\Mydriver\cti.dll with Media-Type-String CTC Phone ".
    It has been long time without any progress.
    Please help
    Thanks
    Nishant

    Hi tomhowell,
    According to your description, my understanding is that you got an error when you created a site from a custom site template after migrading SharePoint 2010 to your server.
    Did you have the original solution file of the site template? Please re-deploy the solution to your SharePoint site, then create a site from the new site template, compare the result.
    Also use  SPDisposeCheck to indentify the memory leak:
    http://archive.msdn.microsoft.com/SPDisposeCheck
    http://www.fewlines4biju.com/2012/11/detected-use-of-sprequest-for.html
    Here are some similar posts for your reference:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/3a25eb86-8415-4053-b319-9dd84a1fd71f/detected-use-of-sprequest-for-previously-closed-spweb-object-please-close-spweb-objects-when-you?forum=sharepointdevelopmentprevious
    http://social.msdn.microsoft.com/Forums/en-US/50ce964f-94a6-4fda-abc0-caa34e7111f1/error-detected-use-of-sprequest-for-previously-closed-spweb-object-occurs-when-new-site-gallery
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • This AirPort base station was unable to extend the wireless network.

    I have an AirPort Extreme in the lounge connected to BT infinity.
    I also have an airport express in the kitchen connected to a stereo system.
    I have had this set up for around 12 months.
    The airport express will not extend the wireless network.
    I reset it, restart, factory reset etc and it will work fine for around 3 days, then I get the same error message saying
    This AirPort base station was unable to extend the wireless network. Make sure the wireless network you’re trying to extend was set up and is working correctly, that you entered a matching wireless network password into this device, and that this device is in range of the wireless network.
    The express is situated easily within range of the extreme. And the airplay between those two, my iMac and two apple tv's works pretty much as it should.
    Can someone please shed some light on this?
    Maybe I have it in a wrong setting or summut....

    G Beach wrote:
    I am also experiencing a recent failure in my Airport devices no longer extending my wireless network. 
    My Aiport Express and second Airport Extreme were extending my wireless network for more than a year
    The only change that has taken place lately is that the firmware for both devices was upgraded to 7.6.4, however the upgrade was only in response to trying to resolve this problem.  Needless to say, the firmware upgrade did not resolve anything.
    If I didn't know better, I'd have thought I wrote the above. 
    I have a TC from a few years ago (last one before the tower, I think), plus the older AEBS that it replaced extending the network, plus a 1-year-old Express also extending. I had upgraded them all to 7.6.3/4 when it came out, but reverted them all to 7.6.1 when everything went crapways (others having the same issues of the LAN regularly croaking), and didn't bother upgrading again since. 
    Today I just tried 7.6.4 on all of them, and it seemed OK at first with green lights all around in Airport Utility.  Then I made one change, which was to enable 5Ghz on the main AEBS/TC only (the express doesn't need it, and the older AEBS can't do it).
    The latter two started flasing amber and giving the "unable to extend wireless network" error message.
    So I'm wondering if you are similarly using 5Ghz?

  • I have to re-install acrobat standard 9 becaus of 'unable to extend license procedure (148:3)'. Where can I download? Or better to upgrade to XI (what is the price and how to do this)

    I have to re-install acrobat standard 9 becaus of 'unable to extend license procedure (148:3)'. Where can I download? Or better to upgrade to XI (what is the price and how to do this)

    Hi riffpizcy,
    Error 148:3 is a licensing error.
    Try following the steps mentioned in the KB: Error "Licensing has stopped working" | Windows
    You can download Acrobat 9 Std. from: https://files.acrobat.com/a/preview/8d640488-4a92-4f7d-b50b-d8eb7f96bff8
    You can upgrade from Acrobat 9 to Acrobat 11 Pro at $199 USD
    Please refer: Buying guide | Adobe Acrobat XI Pro  for more information.
    Regards,
    Rave

  • Everytime I turn on my computer running on Windows XP, a message appears from AppleSynchNotifier.exe-Unable to locate component - "this application has failed to start because CoreFoundation .dll was not found," Reinstalling did not fix problem.

    Everytime I turn on my computer running on Windows XP, a message appears from AppleSynchNotifier.exe - Unable to Locate Component -
    "This application has failed to start because CoreFoundation.dll was not found.  Re-installing the application may fix this problem.
    I uninstalled and re-installed itunes and the message still appears.
    How do I fix this??
    Thank you

    With that one, first try uninstalling and reinstalling your MobileMe Control Panel for Windows, robin. Does that make the error go away?

  • Unable to retrieve tables from this connection

    I have been using Dreamweaver for over 5 years. I have been
    using an Access database and ASP the entire time. I am using a
    Windows 2000 server for the database and web site. I have used
    every verson of Dreamweaver since Ultra Dev. When I bought verson 8
    and upgraded to 8.0.2, I began getting the following message when I
    try to edit or create a recordset.
    "Unable to retrieve tables from this connection, click on the
    'Define...' button to test this connection."
    I don't know what to do. Is this a widespread problem? Is it
    a Windows problem? Is it a Dreamweaver problem? Is it a network
    problem?
    Please HELP!

    Did you ever get an answer for this ?
    I am having the same issue but using XP professional.

  • Since upgrading to v 4.01 I am unable to print from a .pdf opened in the browser. How can I fix this?

    Since upgrading to v 4.01 I am unable to print from a .pdf opened in the browser. How can I fix this?
    I can save the page, open in Adobe Reader and print. When in the browser the File - Print command does nothing. Printer screen does not open.
    Windows XP, all updates installed.

    Hi,
    One thing to slow it down: low ink. Please check ink cartridges and replace if required.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Since the last update I have been unable to print from Firefox. No problem printing from Safari or any other program. I've seen a few responses to this problem but only to people running Windows. I'm on a Mac running v. 10.5.8

    Since the last update I have been unable to print from Firefox. No problem printing from Safari or any other program. I've seen a few responses to this problem but only to people running Windows. I'm on a Mac running v. 10.5.8.

    Also when I click on the link in my email to activate my account (in the hopes that a solve will be emailed to me) I get this message -
    "Something is wrong
    We could not activate your account. Please make sure that you have clicked the correct link in your email or typed in the correct address."
    Same message if I cut and paste the link.

Maybe you are looking for

  • Excise Duty not capturing in invoice

    Dear all, All the configuration have been maintained for Excise duty, while doing PO the excise duty is capturing even doing MIGO and excise captured but during Invoice (MIRO) the excise is not capturing. Regards, Raziq

  • How do I turn off OS notifications in upper right corner

    How do I turn off the little banner notifications for system updates, it's driving me insane, it pops out every five minutes. In Notifications in System Preferences there is nothing there for the OS, only various specific applications. Thank you.

  • Invisible text in PDFs

    In the last few months, I haven't been able to read many PDFs using the Apple engine (Preview, Safari, etc). Here's an example (I just searched google for PDFs and this was the first affected hit). On the first page I can read black text in the cente

  • File Uploader Java Applet cannot be run

    I have a website that I need to upload PDFs to, but since ugrading to Lion, I cannot do it any more.  I have downloaded the separte Java app, but it still does not work. This is the error message I get: File Uploader Java Applet cannot be run. Make s

  • CS4 - CS5 Upgrade Installation Question

    I wanted to know if I had to upgrade pre-existing files of CS4 Design Standard ->CS5 Design Standard or if I can upgrade on a fresh install of CS5 Design Standard from the upgrade disks. Thanks