AM extension:Problem in Lov.

Hi Experts,
I did an extension for the Main AM of the page..After get extended except Lov's Everthing is working fine.
Please let me know whats the problem for lov's after extend the AM.
is there any solution to resolve this.
Thanks
Bharat Hegde

Bharat,
If you have done the .jpx import you have to remove the VO substitution
Can be done in two ways,
1) replace the VO path with your VO
begin
jdr_utils.listCustomizations('/oracle/apps/eam/requests/server/RequestResultsVO');
end;
begin
jdr_utils.printDocument('the above qry output');
end;
Which will display your substitution VO details,this is to confirm
begin
jdr_utils.deleteDocument('<enter your VO with customization path, make sure you are not enteriing the standard VO>');
end;
do a commit;
After you run the delete script , Run the above listcustomization script to confirm ur subs is deleted.
2) And you can try via
Functionalional Administrator(responsibility) -> Personalization->Import/Export -> Personalization Repository
Query for the Document Path /oracle/apps/eam/requests/server/
You should see ur custom ,delete from there.
Thanks.
With Regards,
Kali.
OSSi.

Similar Messages

  • CurrentUISkin  problem with LOVs

    Hello JheadStart Team
    I'm using user selected skin by using menuAdminService and setting adf-faces-config to
    <skin-family>#{jhsDynamicMenu.currentUISkin}</skin-family>
    but i have problem with LOV's:
    Error getting property 'currentUISkin' from bean of type oracle.jheadstart.controller.jsf.bean.DynamicMenuBean: java.lang.RuntimeException: Cannot find JhsModelService, Binding container UsersPageDef data control data provider is null
    Kind regrads

    I was able to reproduce the problem. We will provide a fix in the next patch release.
    For now, you can apply the fix yourself as follows:
    - create a subclass of oracle.jheadstart.controller.jsf.bean.DynamicMenuBean
    - Add member variable to this class:
    private String myCurrentUISkin;
    - Override method setCurrentUISkin as follows:
    public void setCurrentUISkin(String currentUISkin)
    this.myCurrentUISkin = currentUISkin;
    - Override method getCurrentUISkin() as follows:
    public String getCurrentUISkin()
    try
    if (JhsModelServiceProvider.getInstance().getJhsModelService() !=null)
    setCurrentUISkin((String) getCurrentModule().getAttribute(SKIN_ATTRIBUTE_NAME));
    catch (Exception e)
    // do nothing, return "previous" currentUISkin;
    return this.myCurrentUISkin;
    - Make a custom template for JhsCommonBeans.vm. In this template replace oracle.jheadstart.controller.jsf.bean.DynamicMenuBean with your own fully qualified class name
    - Set the JHS_COMMON_BEANS template key at service level to your custom template
    - Generate again.
    Steven Davelaar,
    JHeadstart Team.

  • Console Extension Problem

    It seems like exception occurs due to WLS console extension problem. I
    captured the errors and attaching it here.
    The application is working fine on WLS 8.1, the exception occurs only when i deploy
    the application on WLS 7.0. The application components are extending administration
    console and displaying there. During this time, it is trying to invoke servlet(ServletStupImpl)
    and failing over there.
    Please check the attached file and reply me ASAP.
    Regards
    Senthil
    [Console Extension error.txt]

    What is the the platform the server is running on, and what browser you are using when the problem occurs?
    Are there any exceptions in the Java console for the applet?

  • I have a virtual keyboard but it won't sync with my iPad or iphone4 is there a solution to this problem really love my iPad

    I have a virtual keyboard but it won't sync with my iPad or iphone4 is there a solution to this problem really love my iPad
    &amp; iPhone but I want to use my virtual keyboard :( help please ,,

    By virtual keyboard do you mean a Bluetooth keyboard?
    With the iPad, make sure Bluetooth is turned on, Settings > General > Bluetooth - ON
    Turn the keyboard on and see if the iPad recognizes it and pairs.

  • Problems with LOV'S in Web

    Hi,
    I have a problem with LOV'S in Web. I've Forms Server in two servers. User's work with them.
    When I push the LOV'S keys, the session is killed.
    Please Help Me
    Thaks

    You need to break the problem down. Do you get the same problem with a one field Forms launching and LOV?
    1) What key did you use?
    2) What version of Forms
    3) What OS?
    4) Did you try on another OS?
    5) Does it work client server?
    1) I use Ctrl + L
    2) Forms Deleveloper 6i Release 2
    3) Windows 2000 server
    4) No
    5) Work OK
    Why the session is killed ????
    Thanks

  • SBH52 Galaxy s4 find phone smart extension problem

    I have just bought SBH52 and i love it But i have a problem, ı am using samsung galaxy s4 (i9500) and there is no connection problem also  i can use other extensions like messaging, email, twitter but i can't use "find phone" extension. I am installing it but can't see it in my aplications tab in smart connect. So am doing something wrong or just extension bug?

    Hi and welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    Unfortunately, it seems like there is some issue with the find phone extension and SBH52 at the moment. 
    What are your thoughts about this forum? Let us know by doing this short survey.

  • Facelets and jsf-extensions problem.

    I'm fairly certain I've run into a problem between facelets and jsf-extensions. I'm working with JSF 1.2 RI, Woodstock, Facelets 1.1.13, on Tomcat 6.
    When trying to get Woodstock autoValidation to work I get a javascript error the "I has no properties". The error occurs in the com_sun_faces_ajax.js file in the jsf-extensions-dynamic-faces-0.1.jar (I've used both the RC4 and a build today ,10/18/07 from source with the same results). Here is the code snippet where it happens (with my comment).
    var I = G.getElementsByTagName("components")[0];
    var C = I.getElementsByTagName("render");
    for(var F = 0; F < C.length; F++) {
    In the second line there it looks like the variable I is null, but based on the post response below I don't know why.
    The response from the post looks like this:
    <partial-response><components><render id="PayableForm:vendorGci"><markup><![CDATA[{"valid":true,"id":"PayableForm:vendorGci"}]]></markup></render></components>
    However the server side code (validation method) never gets executed. I'm willing to do some digging and debug work, but I'd need to be pointed in the right direction.
    The following is more potentially useful code snippets.
    Here is the textField code:
    <w:form id="PayableForm">
    <w:textField style="display:none;" />
    <w:message for="vendorGci" />
    <w:label id="vendorGciLabel" for="vendorGci" text="Vendor: " />
    <w:textField id="vendorGci" autoValidate="true"
    text="${vendorBean.searchGci}" maxlength="8" required="true"
    validatorExpression="#{ vendorBean.validateVendor}" />
    Here is the javascript in the page (the init function is called from the body: onLoad="setTimeout('init();', 0);" , this does happen):
    <w:script type="text/javascript">
    function VendorListener(){
    function VendorNotify(props){
    alert("VendorNotify called!"); <--------------- I never see this alert message
    if ( props.id != "PayableForm:vendorGci") { return; }
    var field = document.getElementById("PayableForm:vendorGciLabel");
    field.setProps({
    valid: props.valid
    VendorListener.prototype.notify = VendorNotify;
    function initAccountRows(){
    var table = document.getElementById("PayableForm:vendorAccountTable");
    table.initAllRows();
    function init(){
    initAccountRows();
    var listener = new VendorListener();
    dojo.subscribe(
    webui.suntheme.widget.textField.event.validation.endTopic ,
    listener, listener.notify);
    Here is the validator method. It currently doesn't do anything, just trying to get something to work. I never see the output, and I never hit the breakpoint in the method.
    public void validateVendor(FacesContext context, UIComponent comp, Object value){
    System.out.println("**********************************");
    System.out.println("validateVendor called");
    System.out.println(value);
    System.out.println("**********************************");
    }

    Actually I don't need a global variable. I need to refer in my included template the actual backing bean used in the current page. As all my backing bean extends a abstract class I could bind my component to a property of the current backing bean, no matters which one. Just like a polymorphic call but without the parameter. Let's imagine I could get this object of the facesContext object I would be able to do:
    <rich:datascroller renderIfSinglePage="false" align="right" for="listagem" maxPages="12" fastStep="10"
    pageIndexVar="pageIndex" pagesVar="pages" stepControls="show" fastControls="hide" boundaryControls="show"
    inactiveStyleClass="paginacaoInativa" selectedStyleClass="paginacaoSelecionada"
    styleClass="paginacao" tableStyleClass="paginacaoTabela"
    binding="#{facesContext.currentBackingbean.formDataScroller}" id="paginacao">
    Instead of pass the backing bean to the ui:param of this template... Dou you get the point?

  • [Solved] Problem with LOV and 'enter query' mode

    Hi all,
    I'm kind of new to Forms and I'm having some problems that I'm not being able to resolve. I already search it on the net, but nothing relevant came up. If anyone could help me I appreciated it.
    In my form I have some fields, and in one of them I have a LOV, and almost everything works fine. I inserted data, changed it, deleted it and all it's ok.
    But when I change to 'enter query' mode, when I try to search for data on the LOV field it ignores what I write.
    That is, for it, it's the same if I make F11 -> write 'aaaa' -> ctrl + F11 or if I make F11 -> '%' -> ctrl + F11.
    It behaves the same way, shows me all the records.
    Probably I'm missing something basic, but I'm not getting it...
    Thanks,
    Ana

    when you create a lov by wizard the lov and record group have always the same name..
    the problem is that the item is NOT based in the tabe.
    what kind of query do you execute if you choose something from a love which is not based on the db?
    i mean, this item has no influence on the query of the table, so whatever you choose it's like a "select * from table"
    i hope i was clear

  • A problem with LOV and my query. Help to solve, please...

    Hello!
    Here is a query:
    SELECT FULLNAME||', '||(SELECT NAMEOFGROUP||', '||(SELECT CITY FROM CITY WHERE PRKEY=TLL.CITY) FROM GROUPS TLL WHERE PRKEY=TL.GROUPOF) t ,PRKEY r FROM MINEUSERS TL
    In SQL DEVELOPER it works fine. But in APEX - when I try to save my "SELECT LIST" - it falls with error - "If your query contains an in-line query, the first FROM clause in the SQL statement must not belong to the in-line query."
    How can I reassemble my query to fix this problem - I have no idea... :(
    Thanks

    You may create a pipelined function returning two values, display and return, to return
    the result from your query. After that, your LOV should work. See example here:
    http://htmldb.oracle.com/pls/otn/f?p=31517:146
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Problem with lovs in viewobject instances

    Hi,
    Working with Jdev11.1.1.16 ,
    Referring to  forum : Problem with Two VO's from same EO with different where clause
    I was also facing the same issue with static where condition ,using this recommended approach the issue is solved .
    The recommended approach is working fine for fetching data .
    I have create one viewObject with two viewcriteria and created two instances of viewobject in datamodel . In datamodel i have added viewcriteria too.
    But in my case, i need to populate different lovs on same attributes on both the tables (instances of same view object).
    I have added two lovs to the attribute and switch condition based on other attribute.
    While fetching, the data is coming correct and lovs are also correct but while clicking on createinsert lovs are not cuming properly .

    Hi,
    I would suggest that you post relevant pieces of code here - so that it is easier to help you.
    Just a thought:
    Please note that the event handlers may be called again while you are processing another event (there are at least some cases when this is happeneing) - this might lead to "confusing" forms.
    Regards,
    Frank

  • JAX RPC extension: Problem with document/literal and MyType[]

    Hi,
    I have installed the JAX RPC extension and want to generate a stub from my WSDL file. The WSDL describes a document/literal binding.
    Problem:
    A webservice server method like:
    public wineshop.model.common.SimpleProducer[] getSimpleProducerList() throws RemoteException;
    is translated into a stub method like:
    public UnknownType getSimpleProducerList() throws Exception {..}
    Is an array of own types with the binding style "document/literal" not supported in JAX RPC 1.4 or is it just a bug?
    The WSDL file is generated by JAX RPC 1.4.
    I have installed JWSDP-1.5 and generated a stub with wscompile from the WSDL file. The generated stub has the correct method return type:
    public wineshop.ws.client.SimpleProducer[] getSimpleProducerList()
    throws java.rmi.RemoteException
    It there a workaround like replacing some JDev JARs with JWSDP-1.5 to solve the problem?
    Any hints are welcome.
    Thanks Markus

    repost.....

  • ACE20 and TLSv1.0 extensions problem

    Hi,
    I have a problem with an ACE20 running software version A2(2.3) [build 3.0(0)A2(2.3)].
    We have a simple load-balancing arrangement for two Apache webservers. All we do is pass HTTP and HTTPS traffic through to one of two servers. we don't do SSL termination or initiation on the ACE - just passthrough.
    We now have a requirement to support connections that only use TLSv1.0 with no fallback to SSLv3. If I use IE8 the connection works. If I use IE9 or FF19 then the connection fails. I've traced this to the use of TLS extensions in the ClientHello packet - which came after the TLSv1.0 RFC. IE8 doesn't send extensions whereas the other browsers do.  I can replicate the problem with the OpenSSL s_client application. What surprises me is that the ACE checks the structure of the TLS negotiation even though I'm not asking it to make decisions about it. I can see why this would be done as a security feature if the ACE implemented a strict RFC2246-compliant server - the extensions having bee added post-RFC.
    Is there any way to tell the ACE to forward SSL packets and not worry too much about the contents? I've checked all the Release notes and can't find any relevant caveats.
    Thank you
    Cathy

    Hi Ajay,
    Disabling normalization made no difference. I thought it might help, but I think it only looks at the gross structure of the packets and doesn't worry about RFC2246 compliance.
    The relevant parts of the configuration are shown below:
    rserver host web-web1
      ip address a.b.c.d
      inservice
    rserver host web-web2
      ip address a.b.c.e
      inservice
    serverfarm host FARM-web2
      rserver web-web1
        inservice
      rserver web-web2
        inservice
    sticky ip-netmask 255.255.255.255 address source FARM-web2-Sticky
      timeout 99
      replicate sticky
      serverfarm FARM-web2 backup FARM-sorry
    class-map match-any L4VIPCLASS
      2 match virtual-address x.y.z.t tcp eq www
      3 match virtual-address x.y.z.t tcp eq https
      6 match virtual-address x.y.z.t tcp eq 81
    policy-map type loadbalance first-match LB-POLICY
      class class-default
        sticky-serverfarm FARM-web2-Sticky
    policy-map multi-match L4POLICY
      class L4VIPCLASS
        loadbalance vip inservice
        loadbalance policy LB-POLICY
        loadbalance vip icmp-reply active
        loadbalance vip advertise
    service-policy input L4POLICY
    As you see, the configuration is about as simple as it can be.
    Kind Regards
    Cathy

  • JSP Tag extensions problem

    Hi there,In WLS 6.0 i am encountering a problem in using a JSP expression as a value to a custom tag's attribute. I've specified RTEXPRAL to be TRUE in the TLD. But still the tag is not being evaluated at all. But if i repalce the JSP expression with a hard coded value then everything seems to work perfectly fine. Is it that i have to enclose the JSP expression within double or single quotes?
              

    <%@ taglib uri="lib/esjsp.jar" prefix="es" %>
    <%@ taglib uri="pz.tld" prefix="pz" %>
    <%@ taglib uri="cm.tld" prefix="cm" %>The .tld files are the Tag Library Descriptors for JSP 1.1 tags. The .jar file
    is for a "pre-JSP1.1" Weblogic proprietary tag library extension. Weblogic
    Server looks for the older taglib jar files under the lib directory that is
    relative to the directory where the weblogic.properties file is located. If you
    start your Weblogic Commerce Server from a directory other than your default
    directory, then copy the following jar files to a lib directory under that new
    directory:
    esportal.jar
    pt_admin.jar
    esjsp.jar
    um_tags.jar
    wljsp.jar
    This will be fixed in a future release.
    Ture Hoefner
    BEA Systems, Inc.
    1655 Walnut Street; suite 200
    Boulder, CO 80302
    www.beasys.com

  • Create pdf chrome extension problems

    My os is Win 8.1
    My product is Acrobat XI with all current updates as of 11-25-2013
    I use the lastest version of Chrome browser
    I have used the pdf extension on the browser at least 7 times.
    1st time nothing happened
    2nd time it worked perfectly
    3rd through 6th time it did nothing what soever.
    I went into Chrome and looked at the settings. It was enabled.
    I rebooted my computer and tried a 7th time which resulted in nothing happening.
    I openned Chrome and deleted this extension thinking I would browse Chrome extensions and re install.
    I was not able to find this extension and started reading in the Acrobat forums.
    I did as suggested and closed Chrome and open Acrobat and click repair.
    This resulted in no change what so ever. I have also noticed that the disscussions I read the folks with
    this same issue have not been able to resolve the problem.
    I believe in Acrobat and enjoy the use of it. This chrome browser extension function was great the one time it worked for me.
    I am open for help....now that I can't even make the extension show up on my brower again.
    Thanks,
    Jerry

    Hi Jerry,
    Would you mind emailing me directly with your info? [email protected]
    Kindest regards, Stacy

  • Administration Console Extension problem with 8.1.5 upgrade

    I have a module of code that is an extension of the Administration Console. When I deploy the .ear file, I can see a yellow folder/node displayed in the Weblogic (8.1.3) console.
    This has been working for a couple of years until we recently upgraded to Weblogic 8.1.5 server. Even though the server log says that .ear file has been deployed successfully, the yellow folder/node does not appear in the Weblogic console.
    Any one know what may caused this problem?
    Thank you!

    From $ORACLE_HOME/bin enter the
    following:
    $ORACLE_HOME/bin/oerr ORA 01034 This will give you more info on your
    problem.

Maybe you are looking for

  • Acrobat XI unstable on Win7 and Win8

    Anyone else having trouble with creating/appending a webpage from browser to a PDF. Typical problems: firefox crashes during creation Creation popup window keeps running with no progress Error popups "DDE unable to communicate with Acrobat" In abilit

  • User-defined field limit

    Hi All, Is there a limit on the number of user-defined fields? In SBO 2005 PL03 I cannot create more than 30 UDFs on the BP table. I get the following error: WTR1 Error(1) The record limit of 8060 is not close to being reached. Thanks in advance, Ade

  • Updation of DAX in SSAS Tabular Model

    Hi All, I have a SSAS tabular model which has around 42 Dimension table and 10 Fact table each containing some thousands of record.when I am writing some DAX on a FACT to get some measure ,its taking 10-15 minutes time to update one DAX. I have to wr

  • Can't activate Parental Controls

    Hi. Every time I try to activate Parental Controls is fails. From "My Extras", I select the "Get stared" from the BT Parental Controls item, which takes me the a BT Parental Controls page. From that page, I can click on "Continue to select a filter l

  • How can I change "advanced editor" to default option for replies?

    .