QBE using an LOV ?

Hi,
I have 3 Nav lists that are basically cascading LOV's. ie Select LOV1, then LOV2 and 3 are restricted by what you select in 1, select 2 then you get the results in 3 restricted by what you select in 2.
Now these work fine. However what i want to do now is have a detail table that gets populated depending on what you select in LOV3.
I would have thought this is fairly easy to do but I'm scratching my head a bit ...
This table is a detail of LOV3 really so is there any way I can get adf to do a lot of the work for me ? I tried dragging the nested collection onto the page but it doesnt get populated when I navigate thru the lovs. I then tried creating a valueChangeListener on my 3rd LOV to set viewCriteriaRow on my table adn execute it but that didnt work and whilst I was debugging that I noticed the value in the valuechagelistener that was supposed to be the current value from the 3rd LOV always seemed to be 1 step behind.
Surely this can be done easily as LOVs can be made to be in sync with each other declaratively so why not a detail table ?
cheers

Folks --
Is this question a difficult one?
I'd appreciate even a pointer...
Thanks
Bryan

Similar Messages

  • Using a LOV in an Update page for a QBE Report

    In my QBE Report-based portlet, I have set one of the fields to use a LOV.
    When I go into Customize for the portlet, that field uses the LOV, but when I click on the Update link for a row, the same field does NOT use the LOV.
    How do I make it use the LOV in the Update page?
    Thanks for any help!
    Regards
    Bryan

    Folks --
    Is this question a difficult one?
    I'd appreciate even a pointer...
    Thanks
    Bryan

  • Issue using Super LOV within Skillbuilders Modal page

    Hi,
    I have an app that has an Interactive Report which opens a form using the Skillbuilders Modal page when you click Create button. Within the Modal Page I have a few items that are using the Skillbuilders Super LOV. It all initially works great but when my validations fire and there are any errors displayed, the Super LOVs stop working. So it won't allow user to search using the LOV.
    I have an example here: http://apex.oracle.com/pls/apex/f?p=70422
    Any help would be appreciated.
    Apex 4.2.0, 11g
    thanks,
    Spaa124

    I am using Firefox 17.0.6.
    It works fine in Chrome

  • Error in using named LOV

    Hi !
    I'm using a named LOV in a tabular form and it works fine.
    Trying to use it in a "normal" form gives the error:
    Error in initializing List of Values: ORA-06561: given statement is not supported by package DBMS_SQL Unable to initialize query. Why ? What's wrong ?
    Heinz

    Hi Scott !
    I've simplified the staement in the "List of Value" of the "Shared Components" to:
    select coalesce( initcap(full_name),
                     initcap(name),
                     initcap(coalesce(last_name,'unknown',last_name||' '||first_name))
                   ) ||'  ('||status||')'   as username_d,
           coalesce( initcap(full_name),
                     initcap(name),
                     initcap(coalesce(last_name,'unknown',last_name||' '||first_name))
                   )  as username_r
    from  dart.ca_user
    order by decode(upper(status),'ACTIVE',1,2),1showing the same error.
    When I use the LOV from the shared components I will get the error.
    If I write exactly the same select statement as LOV Query there is no such error.
    Heinz

  • Photo sharing - I used to love the Photo Gallery option in IPhoto.

    Photo sharing - I used to love the Photo Gallery option in IPhoto. That feature was dropped. I find PhotoStream on the iPhone but what to do from my desktop/laptop? I don't like to organize photos on my phone.

    If you have the proper software PhotoStream is available on all of your devices
    http://www.apple.com/support/icloud/
    LN

  • Using a LOV for the Start of a Tree - Pblms using LOV value for Start SQL

    I'm trying out my first APEX Tree using P20 and am having problems with it. The data structure is I have a clients table, an users table, a plans table and a union table (plan_users) that shows which users for a client are working on plans. An user belongs to a client and can be assigned to plans (plan_users).
    client_id (key to clients table and part of the composite key for users, plans and plan_users) is available as an application item which I can reference as :FOCUS_CLIENT_ID.
    I created several LOV's in the Shared Components. The PLANS_LOV returns all plans defined for the :FOCUS_CLIENT_ID. I've referenced this PLANS_LOV in the P20_ROOT_TREE which is setup to display the list of Plans for the Client as a SELECT LIST WITH SUBMIT. That seems to work and I can select the Plan.
    I then modified the SOURCE for the P20_ROOT_TREE to add a select statement to take the PLANS_ID selected in the LOV and use it in a Select to bring up the owner of the plan as the starting user for the tree. This is where I get an error when executing the SOURCE select statement which looks like this:
    select p.user_id id, p.plan_owner_id pid, u.user_lname name, null link
    from plan_users p, users u
    where p.client_id = :FOCUS_PLAN_ID and p.PLAN_ID = :PLANS_LOV
    and p.user_id = p.plan_owner_id
    and u.client_id = :FOCUS_PLAN_ID and u.user_id = p.user_id
    I'm guessing that the problem is what I'm referencing as :PLANS_LOV in the statement below. However I cannot find any information on how to reference the returned value from the PLANS_LOV for Page 20 so I've tried this.
    If this works right, then I want the user to select a PLAN from the LOV box and then see a tree displayed with all USERS hierarchically displayed beneath the Plan Owner. There may be multiple levels of users display under the Plan Owner.
    Here's the DEBUG page error I get. The number 4 is the correct Plan # I want to select Users for. The title on the page is "Available Plans". - Select Plan - is the default Null Value and Test Plan One is the Plan (#4) that I selected.
    Item: P20_TREE_ROOT COMBOBOX_WITH_SUBMIT
    Available Plans
    -Select Plan -Test Plan One
    [javascript:popupURL('f?p=4000:371:1020131294804981::::P371_ID,FB_FLOW_ID,FB_FLOW_PAGE_ID:1096326828951548,101,20');|Edit]Warning: Tree root ID "4" not found.
    0.05: Computation point: AFTER_BOX_BODY 0.05:
    Processing point: AFTER_BOX_BODY
    The query I'm using for populating the rest of the tree after the START is this statement below, but I don't think I'm getting to this point yet.
    select p.user_id id, p.plan_owner_id pid, u.user_lname name, null link, null a1, null a2
    from plan_users p, users u
    where p.client_id = :FOCUS_CLIENT_ID
    and u.client_id = :focus_client_id
    and u.user_id = p.client_id
    order by name
    I haven't been able to find any examples of someone using a LOV as part of the START definition for a Tree. All of the examples I've seen use a fixed value (i.e. 1).
    Anyone have some ideas?
    Thanks!
    Rob

    Hi,
    Try something like:
    select p.user_id id, p.plan_owner_id pid, u.user_lname name, null link, null a1, null a2
    from plan_users p, users u
    where p.client_id = :FOCUS_CLIENT_ID
    and u.client_id = :focus_client_id
    and u.user_id = p.client_id
    START WITH :FIRST_USER_ID
    CONNECT BY PRIOR p.user_id = p.plan_owner_id
    order by name:FIRST_USER_ID should be computed to be the first p.user_id value that matches the filter. Ideally, the p.plan_owner_id value should be null for this user as this user should identify the top of the tree. As an example, the following, using the EMP table, will allow you to display a tree with any manager as the root:
    SELECT
    EMPNO ID,
    ENAME NAME,
    CASE WHEN EMPNO = :P1_EMPNO THEN NULL ELSE MGR END PID,
    null LINK,
    null a1,
    null a2
    FROM EMP
    START WITH EMPNO = :P1_EMPNO
    CONNECT BY PRIOR EMPNO = MGRAndy

  • Error when using named LOV

    This is for Apex 4.0.2.
    I wonder if anybody else has come across this issue: after creating a named LOV in Shared Components and using the LOV on an item, I get this error:
    ORA-20001: Error fetching column value: ORA-20001: Query must begin with SELECT or WITHIt doesn't really matter which item type I choose:
    Display as text (based on LOV)
    Select list (named LOV)
    Popup LOV (named LOV)
    When using popup LOV there is some additional error information:
    Error in init lov: ORA-06561: given statement is not supported by package DBMS_SQL
    p_lov:wwv_flow_security.g_security_group_id:1278218559423697
    wwv_flow_security.g_curr_flow_security_group_id:1278218559423697
    Unable to initialize query.
    etc.However, if I copy-paste the LOV code in the LOV definition on item level (so, not as a named LOV) it works!
    The LOV is simply:
    select rv_meaning d
          ,rv_low_value r
    from   cg_ref_codes
    where  rv_domain = 'F_RC_STATUS'Any ideas?
    Ino
    Forgot to add: I have a lot of named LOV's without problems. It's just when using cg_ref_codes that this occurs (Oracle Designer users will recognize this table :-) )
    But even when using cg_ref_codes, it doesn't happen every time. Some LOV's based on cg_ref_codes do work.
    Edited by: InoL on May 10, 2011 10:33 AM

    I am one step further: I think the problem is that my named LOV was a "Copy and subscribe" from an LOV in my master application. I have deleted and recreated the LOV in the master several times, but that did not help.
    Now, I have created the named LOV in the application itself (not as a copy of the master LOV) and it works. It looks like the copy function in Apex Builder may be the problem.

  • Using Dynamic LOV in Forms

    Hi Everybody,
    I am making forms based on procedures in 9iAS Portal. I am using two parameters for the form. One is Item Code for which I am having a simple LOV with sql statement. Other LOV has a dynamic Sql statement which accepts the Item_code as parameter and displays records containing the item_code. When I run the Lov seperately through navigaror it runs properly but when I used the lov through form and passed the item_code to it, on runtime it says that the lov is based on dynamic sql and unable to show results.
    Can anybody please help me out of this problem.
    Thanks in advance
    Warm Regards
    Vivek Bajaj

    When I tried to compile the following code in Forms, the compiler error I got was Encountered the symbol "STMT_STR" when expecting one of the following: select. However, when I run it in SQLPlus, it creates the function without any errors.
    FUNCTION my_func
    return number
    is
    TYPE DiaryCurTyp IS REF CURSOR;
    cur DiaryCurTyp;
    stmt_str VARCHAR2(200);
    dmonth NUMBER;
    dday NUMBER;
    BEGIN
    stmt_str := 'SELECT dmonth, dday FROM p2_diary
    WHERE dmonth = :1';
    OPEN cur FOR stmt_str USING '12';
    LOOP
    FETCH cur INTO dmonth, dday;
    EXIT WHEN cur%NOTFOUND;
    -- <process data>
    END LOOP;
    CLOSE cur;
    END;

  • IPhoto keeps crashing! - then needs to repair the library. This is happening each time I import photos or even try to go in to an even and delete photos etc. Does anyone have any suggestions? Please it is so frustrating - I used to love iPhoto - now I reg

    iPhoto keeps crashing! - then needs to repair the library. This is happening each time I import photos or even try to go in to an even and delete photos etc. Does anyone have any suggestions? Please it is so frustrating - I used to love iPhoto - now I regret upgrading to Lion

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • Use of LOV versus selectOneChoice components in page navigation.

    We will have several applications that our customers will be able to access. The list of applications is stored in a table. I would like to display the list of applications for the customer to choose which one they want.
    When I use a selectOneChoice, the selected value only has the display string. I cannot find a way to access the value.
    When I try to use an LOV, it wants me to bind it to an Server List Binding. I don't want to use this in another view object, I just want to display it on the page.
    Am I even thinking in the right ballpark? I have the selectOneChoice bound to a view object in my application module, and I thought I would be able to access all the attributes in that view object through the selected item in the selectOneChoice item. However, so far I've only learned how to access the display string.
    I appreciate all help, I've been working hard to learn this ADF stuff, what I've seen is very nice.

    Here is my binding.
    <list IterBinding="WapAvailableSitesViewObj1Iterator"
          ListOperMode="navigation" ListIter="WapAvailableSitesViewObj1Iterator"
          id="WapAvailableSitesViewObj1" DTSupportsMRU="true">
      <AttrNames>
        <Item Value="Selfservicesitemeaning"/>
      </AttrNames>
    </list>Here is my selectOneChoice
    <af:selectOneChoice value="#{bindings.WapAvailableSitesViewObj1.inputValue}"
                        required="#{bindings.WapAvailableSitesViewObj1.hints.mandatory}"
                        shortDesc="#{bindings.WapAvailableSitesViewObj1.hints.tooltip}"
                        id="soc2"
                        binding="#{backingBeanScope.EmployerBean.webAccessPermissions}"
                        label="Site"
                        inlineStyle="text-align:right;" autoSubmit="true"
                        valueChangeListener="#{backingBeanScope.EmployerBean.siteSelectionChanged}">
      <f:selectItems value="#{bindings.WapAvailableSitesViewObj1.items}"
                     id="si2"/>
    </af:selectOneChoice>And here is my change event listener
      public void siteSelectionChanged(ValueChangeEvent valueChangeEvent)
        System.out.println("in change listener");
        this.setValueToEL("#{bindings.WapAvailableSitesViewObj1.inputValue}", valueChangeEvent.getNewValue()); //Updates the model
        System.out.println("\n******** Selected Value: "+resolveExpression("#{bindings.WapAvailableSitesViewObj1.attributeValue}"));
        System.out.println("\n******** Display Value: "+resolveExpression("#{bindings.WapAvailableSitesViewObj1.selectedValue ne ' ' ? bindings.WapAvailableSitesViewObj1.selectedValue.attributeValues[1] : ''}"));
    public Object resolveExpression(String el) {     
        FacesContext facesContext = FacesContext.getCurrentInstance();
        ELContext elContext = facesContext.getELContext();
        ExpressionFactory expressionFactory =  facesContext.getApplication().getExpressionFactory();       
        ValueExpression valueExp = expressionFactory.createValueExpression(elContext,el,Object.class);
        return valueExp.getValue(elContext);
    public void setValueToEL(String el, Object val) {
        FacesContext facesContext = FacesContext.getCurrentInstance();
        ELContext elContext = facesContext.getELContext();
        ExpressionFactory expressionFactory =   facesContext.getApplication().getExpressionFactory();
        ValueExpression exp = expressionFactory.createValueExpression(elContext, el, Object.class);
        exp.setValue(elContext, val);
      }The line that displays the "Selected Value" works fine, and returns the String that is the display value on the selectOneChoice. However, the second line shows the error I provided earlier.
    I am thinking that I am trying to use the component for something it wasn't intended for. I am not using it for a display in a table or form, and every time I try to use a model driven list it wants me to provide a server list.
    Thanks for your help, but since I have this working sufficiently, I am going to leave this question for now.
    Thank you

  • How to use same LOV at two form ?

    Hello experts,
    how can i use same lov at 2 different forms?
    requirement:
    i fetch tw0 column in lov. example empno , department_no
    when i check list at empno text item and select any empno then department no automatically selected in another textbox item and vice - versa.
    Thanks
    Edited by: yash_08031983 on Jun 1, 2011 11:12 PM

    yash_08031983 wrote:
    ok, thanks for suggestions.
    please also tell me can we use a LOV for 2 column If you mean that one LOV and assign to multiple fields in same form. Than yes you can do it. Just create one parameter/global variable and LOV's return property use the name of parameter/global variable. So, in both item's property set the LOV name as you created and write the KEY-LISTVAL trigger for both items as below..
    :PARAMETER.P_VALUE:=NULL;
    LIST_VALUES;
    IF :PARAMETER.P_VALUE IS NOT NULL THEN
      :ITEM_NAME:=:PARAMETER.P_VALUE;
    END IF;-Ammad

  • Serialization error when using Jheadstart LOV's

    I am using Jheadstart 11.1.1.4.26 and JDev 11.1.1.5
    I have 2 applications, One of them uses JHeadstart LOV's and drop downs throught and has no errors. The other application gets a serialization error on the task flow at runtime if I use a JHeadstart LOV. If I use all ADF Model LOV's it is happy.
    I have spent hours comparing the 2 applications looking for what is causing the serialization error on the one app but not the other. I was under the impression that upgrading to the latest jheadstart fixed this problem on the good app. Upgrading has not fixed the other one though.
    Can anyone shed some light on this for me?
    Thanks,
    Jim
    <SessionBasedScopeMap> <writeScopeMap> ADFc: Scope object serialization failed (object not serializable), scope='pageFlowScope[WEB-INF/adfc-config-CgRefCodesDescriptor2.xml#CgRefCodesDescriptor2TaskFlow]', objectKey='jhsLovPopup', objectType='oracle.jheadstart.controller.jsf.bean.UIComponentBinder'.
    <SessionBasedScopeMap> <writeScopeMap>
    java.io.NotSerializableException: oracle.jheadstart.controller.jsf.bean.UIComponentBinder
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1164)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330)
         at oracle.adfinternal.controller.util.Utils.verifySerializable(Utils.java:341)
         at oracle.adfinternal.controller.state.SessionBasedScopeMap.writeScopeMap(SessionBasedScopeMap.java:122)
         at oracle.adfinternal.controller.state.PageFlowScope.writeObject(PageFlowScope.java:156)
         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 java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1469)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1400)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330)
         at java.util.concurrent.ConcurrentHashMap.writeObject(ConcurrentHashMap.java:1247)
         at sun.reflect.GeneratedMethodAccessor249.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1469)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1400)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
         at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1518)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1483)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1400)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
         at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1518)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1483)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1400)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330)
         at java.util.Hashtable.writeObject(Hashtable.java:824)
         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 java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1469)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1400)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330)
         at weblogic.servlet.internal.session.SessionData.writeExternal(SessionData.java:1095)
         at java.io.ObjectOutputStream.writeExternalData(ObjectOutputStream.java:1429)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1398)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330)
         at weblogic.servlet.internal.session.FileSessionContext.sync(FileSessionContext.java:407)
         at weblogic.servlet.internal.ServletRequestImpl$SessionHelper.syncSession(ServletRequestImpl.java:2860)
         at weblogic.servlet.internal.ServletRequestImpl$SessionHelper.syncSession(ServletRequestImpl.java:2835)
         at weblogic.servlet.internal.ServletResponseImpl$1.run(ServletResponseImpl.java:1485)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:1479)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1462)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    <SessionBasedScopeMap> <writeScopeMap> ADFc: Scope object serialization failed (object not serializable), scope='pageFlowScope[WEB-INF/adfc-config-CgRefCodesDescriptor2.xml#CgRefCodesDescriptor2TaskFlow]', objectKey='jhsLovPopup', objectType='oracle.jheadstart.controller.jsf.bean.UIComponentBinder'.
    <SessionBasedScopeMap> <writeScopeMap>
    java.io.NotSerializableException: oracle.jheadstart.controller.jsf.bean.UIComponentBinder
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1164)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330)
         at oracle.adfinternal.controller.util.Utils.verifySerializable(Utils.java:341)
         at oracle.adfinternal.controller.state.SessionBasedScopeMap.writeScopeMap(SessionBasedScopeMap.java:122)
         at oracle.adfinternal.controller.state.PageFlowScope.writeObject(PageFlowScope.java:156)
         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 java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1469)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1400)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330)
         at java.util.concurrent.ConcurrentHashMap.writeObject(ConcurrentHashMap.java:1247)
         at sun.reflect.GeneratedMethodAccessor249.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1469)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1400)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
         at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1518)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1483)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1400)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
         at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1518)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1483)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1400)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330)
         at java.util.Hashtable.writeObject(Hashtable.java:824)
         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 java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1469)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1400)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330)
         at weblogic.servlet.internal.session.SessionData.writeExternal(SessionData.java:1095)
         at java.io.ObjectOutputStream.writeExternalData(ObjectOutputStream.java:1429)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1398)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1158)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:330)
         at weblogic.servlet.internal.session.FileSessionContext.sync(FileSessionContext.java:407)
         at weblogic.servlet.internal.ServletRequestImpl$SessionHelper.syncSession(ServletRequestImpl.java:2860)
         at weblogic.servlet.internal.ServletRequestImpl$SessionHelper.syncSession(ServletRequestImpl.java:2835)
         at weblogic.servlet.internal.ServletResponseImpl$1.run(ServletResponseImpl.java:1485)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.ServletResponseImpl.send(ServletResponseImpl.java:1479)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1462)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    Thanks Stephen, You jarred my memory. It was the weblogic.xml settings. In the application without the serialization error I had commented out some persistence settings. When I did the same with the problem application the serialization error went away.
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <weblogic-web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-web-app http://www.bea.com/ns/weblogic/weblogic-web-app/1.0/weblogic-web-app.xsd" xmlns="http://www.bea.com/ns/weblogic/weblogic-web-app">
    <!--
    If you change this file, make sure to change it's counterpart in src/main/deployment/weblogic.xml
    -->
    <!-- Comment out persistent store to fix serialization problem with JHS Lov's
    <session-descriptor>
    <persistent-store-type>file</persistent-store-type>
    <persistent-store-dir>/tmp</persistent-store-dir>
    </session-descriptor>
    -->
    </weblogic-web-app>

  • Im just so disappointed in apple for this iphone5 im might have to find a new phone like my tablet i use to love apple, im just so disappointed in apple for this iphone5 im might have to find a new phone like my tablet i use to love apple

    Im just so disappointed in apple for this iphone5 im might have to find a new phone like my tablet i use to love apple, im just so disappointed in apple for this iphone5 im might have to find a new phone like my tablet i use to love apple.

    Have you really been even as to decided that to use iphone5  want to do look more like? Is that why your disspointed?

  • I used to love my Best Buy Rewards mastercard

    For probably the last 6 months+ if I made any of what Citibank considered suspicious charges they would freeze my card, turn down all purchases I attempted to make and leave a message on my home answering machine for me to call them.  Some of these suspicious charges were for food purchases at places I go to frequently, Zappos which I shop at a few times a year, etc.  It was embarrassing!  Imagine being in line at the grocery store, department store etc and the cashier telling you your card was declined.  I have been mortified.  I finally called and complained and said this was unacceptable - their solution was to text me on my phone when they had a suspicious charge that had been attempted.  I agreed that would be an improvement.  Fast forward to today.  I wanted to purchase my husband a $2200 gaming laptop from BestBuy.com - which was being shipped to my home address, in my name - and my card was declined. v First I check to make sure the number and expiration are correct  - then I realize it is probably their crazy fraud protection.  A couple minutes later I get a text that if I had attempted this charge I should reply back "1".  I did that and received a message to try again.  The purchase went through and although I was slightly annoyed at being delayed it was something that wasn't terribly inconvenient or embarrassing as it was online.  Meanwhile, my husband gets home from work early today and calls me at work to let me know Citibank had called and needed me to call regarding potential fraud.  I assured him I did not need to call them as I had already texted them.  I then attempt to make another purchase to order flowers for a funeral - again declined!!  I was speaking with the girl on the phone and told her that the credit card company would be sending me a text and then it would go through...  we wait and nothing.  Embarrassed by Citibank once again.  I call Citibank's customer service line and they cannot help me unless I give them a reference code they left on my answering maching at home.  Uggh!!!  Not only did I have to wait for them to answer my call as I was placed on hold, but then I have to call my husband to get this code all so I can have the pleasure of talking to Citibank about why I cannot purchase these flowers.  Evidentally the text is not enough.  Even though i responded that the attempted charge was not fraudulent they still suspended my account after the charge went through.  This is driving me insane!!!!!  Why do they need to get me to tell them via text and also by calling them that the charge is not fraudulent?  I think their process is nuts.  I love having reward $$ to spend, but I think I will have to start using my amazon or Discover card and getting rewards that way as I cannot deal with this level of inconvenience and frustration.  Please Best Buy try to get a more customer focused Bank to administer your accounts!!! 

    Hello User909807,
    After having some close calls with fraudulent purchases on my own bank account, I know how scary it can be to know someone else other than you had your personal information, so it was nice to know my issuing bank was helping keep my identity safe. Having said that, it’s completely understandable why it’d be frustrating to discover you were unable to continue making purchases after confirming your identity via text, and I apologize if this caused any unintentional frustration.
    While I’ll be sure to document your feedback regarding our partnership with Citibank, N.A., please know that they are the issuer of your My Best Buy credit card account. As such, I will be glad to share your concerns with our Citibank contacts so that they may contact you to discuss your account in further detail. Please know you should receive follow-up contact from them within the next 3-5 business days.  
    Respectfully,
    Alex|Social Media Specialist | Best Buy® Corporate
     Private Message

  • How to edit data using a LOV list AND textfield for one Field

    I am trying to edit the templated edit from HTMLDB template when I create a new table. I implemented most of the fields with LOV list like yes/no, joe/bob/john etc. But some fields as many probably have seen have a LOV called "Other" where a person types a different value than the ones available. Can someone tell me how I can accomplish that? Do I need to insert "Other" into LOV and have it be set as the value in the textfield? I am not sure how i can create both LOV list and textfield per category/field i.e. Name.
    Thanks

    Again, I urge you to use HTML DB nomenclature to describe what you've done. For example: "I ran the Form on a Table wizard to create a form" Rather than using the word "template" for everything you describe. "Template" has a specific meaning in HTML DB and it is not what you are referring to.
    You really should invest the time required to accurately phrase your problem. Just like answering questions on this forum requires time, so does formulating your question. It is time well spent and it is effort on your part that the experts on this forum deserve. If you don't put in this effort and instead just post a stream of consciousness, that means the readers of this forum will gloss over your question and ignore it. As a result, you have to ask the question again...and again.
    Having said that, if I understand your question correctly, you should use a popup LOV item. This will allow the user to select from a list but will also allow typing of a non existent option into a text field.
    Sergio

Maybe you are looking for

  • Adobe Photoshop CS6 Extended Could not complete your request because of a program error.

    When starting Photoshop CS6 I get this error message, Adobe Photoshop CS6 Extended  Could not complete your request because of a program error (-- OK --).  This happens on the main screen immediately.  Once I click OK the program seems to be alright.

  • Iphoto glitch with retained masters

    Mavericks 10.9.4 iphoto 9.5.1 I am currently having a mysteriously bulky iphoto even after deleting most my photos. How can I delete the masters of iPhoto without losing my photos in the main iPhoto display library and all their masters and edits. I

  • Unable to Install Photoshop & Premiere Elements 10?

    I downloaded both these products from Adobe.com using serial numbers.   I downloaded the product files using Firefox.   When the files arrived on my PC no installation process began automatically.  One file with a .7z suffix was downloaded for each p

  • How notifications work in Life and work events

    Hi All, We are implementing Life and work events and we are trying to understand how the notifications work. for example we are executing birth/adoption  and in that we are executing address.when we change the address will the standard functionality

  • Update for Nokia Asha 501.

    When will the update for nokia 501 be available. Solved! Go to Solution.