Cascaded LOV do not work in derived universe

Hi all,
Can ay body help me on this.
Cascaded LOV do not work in derived universe. The same cascaded LOV works                                                          
well in component / core universe. 
For Example:
say object state is generated as Cascaded LOV's with city. in core universe. when you create a webi report based on the core uiverse and drag the object state it Cascaded LOV's are generated.
now say you create aother universe as derived with the same universe as core universe. Now create a webi report based on derived universe try to drag the state object the cascaded LOV's do not get displayed.
Note:we have not included any object of the core in the derived universe.
Any help would be appreciated.
Thanks,
Florencio.

Hi Joe,
Thank you for your reply. Actually this is not a migrated derived universed. Yes it is the case with migrated reports from R2 to R3.1 till FP 1.3. But it is resoved in Fixpack 1.4 and above.
In addition it is also a issue in Plain R3.1 with even sample universes that is e-fashion. it is resolved in FP 1.4.
Thanks Again!!!!
Florencio.

Similar Messages

  • Cascading LOV does not work when setting the value of the parent LOV with DA

    Hello All,
    Using APEX 4.2.2.
    I have tow LOVs
    Parent LOV item is: P50_TYPE
    Child LOV item is :  P50_PROJECT_ID
    In other words in the attributes of the item P50_PROJECT_ID we have :
    > Cascading LOV Parent Item(s): P50_TYPE
    > Page Items to Submit: P50_TYPE
    > List of values definition: something similar to:
    Select * from mytable where type = :P50_TYPE
    I use DA that execute JS code to set the value of the P50_TYPE item
    something similar to:
    > $('#P50_TYPE').val(2);
    Having done this, the P50_PROJECT_ID item does not get refreshed, when the value of P50_TYPE is changed. Namely, P50_PROJECT_ID remains empty, unless end user manually changes the value of P50_TYPE.
    Any help please ?
    Regards,

    Thanks Scott,
    By the way, I remember reading a thread posted by you about  Sumneva Drag & Drop Report Region plugin that was answered by Tom . But, I cannot find this plugin anywhere. Does not it supported in APEX 4.2 ? Is there any alternative out there ?
    If you use it, and it works find with you, can you please send it to me on [email protected] ?
    Regards,
    Fateh

  • Cascading prompts are not working after UNX conversion.

    Hi,
    We have converted universe to UNX format, but after conversion the cascading prompts are not working. Following is the one of the example of the cascading prompt which is having issue:
    We have cascading object named u201CGroup - Deviceu201D as below:
    CONCAT(CONCAT(@select(Performance Management\Group\Group Name),' - '),@select(Performance Management\Device\Device Name))
    In the SQL Assistance windows, validate button properly validates this object.
    Based on the above object, we have filter named u201CEnter/Select Group u2013 Deviceu201D with following definition:
    @select(Performance Management\Performance Reporting Objects\Performance Custom Dimensions\Group - Device) In  @prompt('Enter/Select Device Names','A','Performance Management\Performance Reporting Objects\Performance Custom Dimensions\Group - Device',Multi,Free,Not_Persistent)
    When I click on the validate button for this filter, it doesnu2019t says whether the expression invalid or valid. It does not return anything. I checked the error log windows of IDT and it shows below error once we validate the above filter:
    Message: Unhandled event loop exception
    java.util.ConcurrentModificationException
         at java.util.AbstractList$Itr.checkForComodification(AbstractList.java:372)
         at java.util.AbstractList$Itr.next(AbstractList.java:343)
         at com.businessobjects.semanticlayer.qt.internal.ParseExpressionServiceImpl.getScriptWithAnswers(ParseExpressionServiceImpl.java:753)
         at com.businessobjects.semanticlayer.qt.internal.ParseExpressionServiceImpl.getGeneratedScript(ParseExpressionServiceImpl.java:695)
         at com.businessobjects.semanticlayer.qt.internal.ParseExpressionServiceImpl.getGeneratedScript(ParseExpressionServiceImpl.java:673)
         at com.businessobjects.semanticlayer.qt.internal.ParseExpressionServiceImpl.getObjectSQLCombinations(ParseExpressionServiceImpl.java:369)
         at com.businessobjects.semanticlayer.qt.internal.ParseExpressionServiceImpl.getWhereParseSQL(ParseExpressionServiceImpl.java:298)
         at com.businessobjects.bimodeler.universe.panes.properties.ExpressionParserSQLBindings.parseExpression(ExpressionParserSQLBindings.java:58)
         at com.businessobjects.bimodeler.shared.dialogs.expression.ExpressionEditorComposite$7.widgetSelected(ExpressionEditorComposite.java:330)
    This problem is for all the cascading prompts, and only single level prompts are working after conversion to UNX.
    Can anyone please help on this? Am I missing any manual changes which are mandatory after UNX conversion for this to work.
    Thanks,
    Nilesh

    Hi Henry,
    Thanks for your reply. Yes I have raised SAP ticket for this.
    We are at BI 4.0 SP2 Patch 12.
    This problem is for all the cascading prompts which created using objects which are having u201CLOV based on Query Panelu201D, it doesnu2019t return the results, when I edit the LOV > edit the query and then click refresh to see the data, the refresh button does not appear.
    So I tried creating u201CLOV based on a custom hierarchyu201D as indicated in SAP note u2013 1666504 but it also doesnu2019t work. I used the object (that uses the LOV based on a custom hierarchy) to create the new cascading prompt, when I used this prompt in WEBI report, it only displays prompts for first value and not the second based on first input.
    I searched SAP KB and found this note u2013 u201C1620378 - Cascading (nested) prompts are not working for Web Intelligence reports in BI 4u201D which describes bug related to cascading prompts in unv as well as unx. But I am not sure if itu2019s the same which I am getting.
    Thanks,
    Nilesh

  • Cascading Select Lists - Not Working for me

    I am trying to implement Denes Kubicek's Ajax Cascading Select List solution.
    http://apex.oracle.com/pls/otn/f?p=31517:119
    But it is not working for me.
    I'm a newbie to APEX and checked the forum for advice on cascading select lists. I saw the thread for
    "Cascading Select Lists - Not Working" posted by sue and the replies by Varad Acharya, but I'm still
    having issues of not seeing the alerts, not able to run the pl/sql process in SQL Workshop, and not
    getting the expected results.
    I have a list of countries (US - USA, CA - CANADA, etc.) and a list of states for each country. When a
    user selects a country I would like to show the list of states within that country.
    This is what I've done so far:
    Defined an application process:
    Process Point: On Demand: Run ... by a page process.
    Name: CASCADING_SELECT_LIST1
    Process Text:
    BEGIN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<select>');
    HTP.prn ('<option value="' || 99 || '">' || '- All States -'
    || '</option>'
    FOR c IN (SELECT state_code || ' - ' || state_desc d, state_code r
    FROM tbk_state
    WHERE country_code = :cascading_selectlist_item_1)
    LOOP
    HTP.prn ('<option value="' || c.r || '">' || c.d || '</option>');
    END LOOP;
    HTP.prn ('</select>');
    END;
    defined and application item:
    Name: CASCADING_SELECTLIST_ITEM_1
    Build Option: - No Build Option -
    Created a 'Form on a table with report' as follows:
    Page 5: Report on TBK_HARDWARE_LOCATION
    Page 6: Form on TBK_HARDWARE_LOCATION
    in HTML Header of the page attributes for 'Form on TBK_HARDWARE_LOCATION' I have:
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='"DELETE_CONFIRM_MSG"';
    //-->
    </script>
    <script>
    function get_select_list_xml1(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    alert ('Dept no=' + pThis.value);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST1',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    // gReturn = get.get();
    alert('Enames=' + gReturn);
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue)
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    On Page 6: 'Form on TBK_HARDWARE_LOCATION' I have the following items (plus some others):
    Name: P6_COUNTRY_CODE
    Display as: Select List
    HTML Form Element Attributes: onchange="get_select_list_xml1(this,'P6_STATE_CODE');"
    Source Used: Only when current value in session state is null
    Source Type: Database Column
    maintain session state: Per session
    Source value or expression: COUNTRY_CODE
    Named LOV: LIST OF COUNTRIES
    Name: P6_STATE_CODE
    Display as: Select List
    Source Used: Only when current value in session state is null
    Source Type: Database Column
    maintain session state: Per session
    Source value or expression: STATE_CODE
    Named LOV: - Select named LOV -
    List of Values definition:
         select state_code || ' - ' || state_desc d, state_code r
         from tbk_state
         where country_code = :P6_COUNTRY_CODE
         order by 1
    LIST OF COUNTRIES is defined as:
    select country_code || ' - ' || country_desc d, country_code r
    from tbk_country
    order by 1
    Now to the problem:
    I run page 5 (the report) to see the list of locations and then I try to edit a record (page 6). When I
    try to select a different country I get the following error (on IE):
    "Problems with this web page might prevent it from being displayed properly or functioning properly.
    In the future, you can display this message by double-clicking the warning icon displayed in the status
    bar.
    Line: 17
    Char: 5
    Error: Object expected
    Code: 0
    URL: http//cmrac4.cm.timeinc.com:7777/pls/htmldb/f?
    p=114:6:1413254636072443110::::P6_HARDWARE_LOCATION_ID:2
    I don't see any of the alert messages.
    I also tried to run the application process code in the SQL - Command Processor (I replaced
    :cascading_selectlist_item_1 with 'CA' or 'US') and got the following:
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh
    button, or try again later.
    Only one top level element is allowed in an XML document. Error processing resource
    'http://cmrac4.cm.timeinc.com:7777/pls/...
    <select><option value="99">- All States -</option><option value="X1">X1 - X1</option><optio...
    Can someone help me please?

    Varad,
    First, thank you for taking the time to try to help me with this problem.
    When I view the page's source code (here are the first few lines):
    <html lang="en-us">
    <head>
    <script src="/i/javascript/core.js" type="text/javascript"></script>
    <link rel="stylesheet" href="/i/css/core.css" type="text/css" />
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='Would you like to perform this delete action?';
    //-->
    </script>
    <script>
    function get_select_list_xml1(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    //alert ('Dept no=' + pThis.value);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST1',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    // gReturn = get.get();
    //alert('Enames=' + gReturn);
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue);
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    It looks like line 17 is:
    var l_Select = html_GetElement(pSelect);
    I'm still not sure why I'm getting this error and why it's not working?
    Thanks,
    Eti

  • Multi-select LOV does not work in forms

    the multi select LOV does not work in the form.
    the LOV works individually but in the form it does not work. it does not allow multiple selection from the list.
    is there a workaround for this or is this a bug ...?
    any ideas ...?
    thanx a lot.
    null

    Right, we cannot store more than one value in a single column in a table :), we were getting a lot of requests to support multiple select LOVs but requirements were contradictory if not mutually exclusive.
    The only sense it makes is when used together with user-defined object types (nested tables for example) but the current [application building]infrastructure we have does not support this. However, we are looking into this and this feature maybe implemented in a future release.

  • LOV Cache not working properly

    Hello Community,
    We are currently with BO Edge 3.1 SP 2 latest FP.
    I am expierencing that the LOV Cache is not working as expected::
    1. I am using InfoView in Edit-Mode or Webi Rich Client. If I execute the report, the prompt for the QueryFilter is taking ages to load. This is caused by the fact the each and every Dimension is loaded from BW - no Cache used.
    2. I am using InfoView in View-Mode and the prompt for the QueryFilter is taking like 5 Seconds. No connection to BW for every dimension - only on demand by pressing the refresh button of the filter dimension.
    When we were on 3.1 SP1 the system was working as expected (2.) regardless the mode of the tool we were using.
    Anyone got an idea how to avoid the loading of the data from BW  or to activate the cache in design mode ?
    Regards,
    Andreas

    The delegate search option on the list of values properties presents the user with an empty list of values at query run time. The user enters search criteria to limit the number of values returned in the list of values.
    To activate the delegated search option for a list of values, edit the list of values properties on the object properties page of the object to which the list of values applies.
    Note: The delegated search is not supported for cascading lists of values.
    This is what you are looking for??
    Thank You!!

  • IPhone (3,3G,4) does not work with Apple Universal Dock.

    I have a 3rd generation iPod Touch that has been upgraded to iOS 4. My iPod Touch will no longer sync via the Apple Universal Dock. Also, my new iPhone 4 also will not sync via the Apple Universal Dock.

    Trust a geek not to give up. I decided to get to the bottom of the "iOS device does not work with the Apple Universal Dock" problem. I noticed that the iPhone 4 and iPad came with slightly different USB-Dock adapter cables. I wondered if that might be the issue. My Apple Universal Dock was connected to my Mac via the original dock adapter cables which are slightly larger. I connected the newer cables between the Mac and the Apple Universal Dock and .... voila! Both the iPod Touch with iOS 4 and the iPhone can now connect via the Apple Universal Dock. Apple changed something in the way the adapter cables function.
    Of course I still have the problem with the car head unit dock adapter ... Sigh. I'll have to call Best Buy ( uughh! ) and find out if they'll do the update for me. The were the vendor authorized installer.

  • Dependant LOV is not working sometimes???

    Hi Everyone,
    i have created one dependant LOV. Lov1(Dept) and Lov2(Eno).
    When i select any dept from first LOV it will trigger one OnChange() Event and there i am taking the dept name passing to the Employee table to filter corresponding ENOs in Lov2.
    It works sometimes fine but sometimes it shows blank records in Lov2 but in backed Lov2 is having records.
    what can be the issue?
    Thanks.

    Kumar,
    mention your jdev version and teck stack always before asking any query.
    what do you mean by 'sometimes' it is not working? in which case it's not working? when you are getting blank values in you dependent lov, have you checked that the query (for the dependent lov) is returning any record?
    ~Abhijit

  • HTMLDB 1.6 Popup LOV navigation not working

    Hi all,
    I've recently migrated from 1.5 to 1.6.
    The pop-up LOV's navigation buttons (ie: Next) do not work. I click them but nothing happens. Any ideas?
    This happens regardless of the query used...
    Thanks...

    Thanks! That did solve the problem;
    The problem resides in the Popup LOV template. Under the field "Next button text" the default value is Next &gt(ampersandgt) <-- substitution is occuring on the screen);
    And "Prev Button text" value is &lt(ampersandlt); Previous
    If you remove the "&lt" or "&gt" from each of these the pagination works properly.
    I decided to look into a different template, my template was Template 3, business look. I checked out Template 9 and it used a different value "< Previous" I pasted this into my template and it worked. Looks like the "& gt or lt substitution " conflicts here...

  • OKB9 does not work to derive a Profit Center from Document splitting

    Hi GL Gurus,
    I am trying receive customer payment with payment difference. Original invoice has two Profit centers so Customer line items have these 2 PCs derived by Doc splitting. I have defined Document splitting characteristic as Profit Center in General Ledger and In Controlling as Cost center. While posting Customer payment with payment difference , It gives me error that CO object does not exist. I have done OKB9 assignement to the above 2 profit centers but it still does not derive a Cost center.
    Do you know how to resolve this error?
    Thanks in Advance!

    I have done OBXL and then OKB9. In OKB9 you have feature as "Mandatory fields for detailed account assignments.Field for specifying detailed account assignments." Here you can define for a Cost element/by Profit center assignment and then to a Cost Center. This works when you have a Cost element/Profit Center combination. But the situation above it does not read the PC derived in Customer line item.
    The issue is OKB9 does not Read the Profit Center when it is derived by Document splitting/Inheritance.
    Is there a solution to do this?

  • Binding a variable to an LOV query, not working... Urgent!

    Hi,
    Based on a column value(which gets populated at runtime), in a table, the LOV query for another column in the same table, should be restricted with this value.
    1. My LOV is based on a VO.
    Lov query is
    SELECT ped.full_name as employee_name,
    ped.employee_number as employee_number
    FROM p_employee_details ped
    WHERE ped.value = 'Y' and ped.work in (:1, 'Both')
    2. For binding the variable, I have a method in VOImpl of the LOV.
    public void initQuery(String p_param)
    setWhereClauseParams(null);
    setWhereClauseParam(0,p_param);
    3. This method is called in the LOVAMImpl
    public void initializeVO(String p_param)
    LovVOImpl lovVO = (LovVOImpl)getLovVO1();
    lovVO.initQuery(p_param);
    4. In the CO for the LOV RN, the LOVAMimpl Method defined in step 3 is called.
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModule lov_am = (OAApplicationModule) pageContext.getApplicationModule(webBean);
    Dictionary lov_dict = pageContext.getLovCriteriaItems();
    String lov_criteria = (String) lov_dict.get("work");
    Serializable lov_params[] = {lov_criteria};
    lov_am.invokeMethod("initializeVO",lov_params);
    Here "work" is the column in the table whose value is needed for binding the lov query
    But i am still getting an error saying not all variables bound.:
    Developer Mode Exception : Lov Input should by default be the queryable criteria and Result.
    I don't know what else to do.
    Thanks in advance

    HI,
    Here the code giving on starting of the thread will work,only problem is lov mapping over here which was same as mine , u have to create one more lov mapping which will have criterial item same as the field on which lov is based.
    Thanks

  • HT3765 - Cascading Softwareupdate Server not working!?

    Following HT3765 (OS X Server: How to cascade Software Update Servers from a Central Software Update Server) I am not able to get this to work. The secondary Software Update Server are still contacting Apple's Infrastructure. Did anyone get this to work?

    works in 10.8 like a charm.

  • IPad not working on my University's 802.1X WiFi network?

    My University uses an 802.1X authentication protocol to connect to our wireless network, and for some reason it doesn't seem to work on my iPad. To connect I use the same configuration profile that I use on my iPhone (where it works perfectly).
    I find it extremely odd that it works on the iPhone and not the iPad. This is making my iPad almost unusable at school, which kinda ***... I guess that's what you get for being an early adopter...
    Btw: wel also have an "open" network where you connect and then the login screen pops up (which is where you then input your student login info, and it then goes away) however my iPad always hangs when submitting this information (this doesn't happen on my iPhone).

    I have the same problem with my ipad I travel extensively and all Hyatt and Hilton's it is broken as well as CTM wireless. Hyatt uses InterTouch and Hilton uses Docomo. If Im lucky and the Ipad happens to get an address and refresh a page before the 'connecting' screen it will work fine. Otherwise after the login page its like it never submits the request back to the server or if it does it will take about 5+ minutes.

  • Cascade=CascadeType.ALL not working

    Hi. I am using jpa and oracle database. My code is as follows:
    SQL
    CREATE TABLE rbv.address ( addressId number(11) NOT NULL primary key, postcode varchar2(100));
    CREATE TABLE rbv.person ( personId number(11) NOT NULL primary key, name varchar2(100), addressId number(11) NOT NULL REFERENCES rbv.address);
    Persistence
    Set<Person> persons = new HashSet<Person>();     for (String name :personRequest.getName()){     Person person = new Person(name);     persons.add(person);     }     Address address = new Address(addressRequest.getPostcode(),persons);     em.persist(address);
    Address.java
    package com.ao.persistenceservice.domainobjects; import java.util.HashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; /** * Address generated by hbm2java */ @Entity @Table(name="rbv.ADDRESS" ) public class Address  implements java.io.Serializable {     private long addressid;     private String postcode;     private Set<Person> persons = new HashSet<Person>(0);     public Address() {     }     public Address(String postcode,Set<Person> persons) {       this.postcode = postcode;     }       @Id     @GeneratedValue(generator = "AddressSeq",             strategy = GenerationType.SEQUENCE)             @SequenceGenerator(name = "AddressSeq",                                 sequenceName = "seq_address_id",                                 allocationSize = 1)     @Column(name="ADDRESSID", unique=true, nullable=false, precision=11, scale=0)     public long getAddressid() {         return this.addressid;     }         public void setAddressid(long addressid) {         this.addressid = addressid;     }         @Column(name="POSTCODE", length=100)     public String getPostcode() {         return this.postcode;     }         public void setPostcode(String postcode) {         this.postcode = postcode;     } // cascade indicates that when we persist, remove, refresh or merge this // entity all the entities held in this field would be persist, remove, // delete or update. @OneToMany(fetch=FetchType.EAGER, cascade=CascadeType.ALL) @JoinColumn(name="ADDRESSID")     public Set<Person> getPersons() {         return this.persons;     }         public void setPersons(Set<Person> persons) {         this.persons = persons;     } }
    Person.java
    package com.ao.persistenceservice.domainobjects; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; /** * Person generated by hbm2java */ @Entity @Table(name="rbv.PERSON" ) public class Person  implements java.io.Serializable {     // Fields        private long personid;     private String name;     // Constructors     /** default constructor */     public Person() {     }         /** full constructor */     public Person(String name) {       this.name = name;     }       // Property accessors     @Id     @GeneratedValue(generator = "PersonSeq",             strategy = GenerationType.SEQUENCE)             @SequenceGenerator(name = "PersonSeq",                                 sequenceName = "seq_person_id",                                 allocationSize = 1)     @Column(name="PERSONID", unique=true, nullable=false, insertable=true, updatable=true, precision=11, scale=0)     public long getPersonid() {         return this.personid;     }         public void setPersonid(long personid) {         this.personid = personid;     }         @Column(name="NAME", unique=false, nullable=true, insertable=true, updatable=true, length=100)     public String getName() {         return this.name;     }         public void setName(String name) {         this.name = name;     } }
    Only my address table is being populated. In debug mode I have made sure the person objects are present.

    Thank you! You saved my life. After removing @MappedSuperClass, all is well.
    The entity manager is now saving my CreditCardPaymentMethod objects as CreditCardPaymentMethod classes instead of AbstractPaymentMethod classes.

  • Linksys E3000 cascaded, VoiP router not working

    I have a Linksys E3000 router, with a Linksys SPA2012 VoIP router connected to it.  I can't get the voice to work.  The configuration is:
    cable modem => cisco870 => Linksys E3000 => Linksys SPA2102
    (the Linksys E3000 is connected to cisco871 via Internet port)
    Everything works fine (ethernet, wireless) for all devices connected to cisco871 and E3000, EXCEPT for the VoIP phone.  Is there a special configuration I need on the SPA2101 to get this to work?
    Thanks in advance!

    These products are being handled by the Cisco Small Business Support Community. (URL: https://supportforums.cisco.com/community/netpro/small-business)

Maybe you are looking for