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.

Similar Messages

  • 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

  • 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

  • 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.

  • TS3219 I have an ipad 3 that has wifi and for some reason my youtube, facebook, and app store app are all not working. How do i fix this?!!!

    I have an ipad 3 that has wifi and for some reason my youtube, facebook, and app store app are all not working. How do i fix this?!!!

    Hey there FlamingTurd!
    If you are having issues connecting to the App Store on your phone, there is an article here that can help you troubleshoot this issue a little further:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    We also have an article that deals with troubleshooting apps you have downloaded from the App Store and installed on your computer. That article can be found here:
    iOS: Troubleshooting applications purchased from the App Store
    http://support.apple.com/kb/ts1702
    Finally, if neither of those articles resolve the issue, you may need to restore your iPad:
    iTunes: Restoring iOS software
    http://support.apple.com/kb/ht1414
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • Help! Youcam, Microsoft Word, Excel, Powerpoint and Adobe Reader all not working in U310

    Using a U310 ideapad with Windows 7 bought one year ago - warranty just expired of course!!
    5 days ago I tried to pull up and excel spreadsheet from an e-mail and got an error message that there was not enough memory to do so.
    Afterward, I tried to open word and it simply grayed out with a message box saying it was not working - it would try to fix the problem and then it just disappeared.  The same thing continues to happen.
    I tried to open a PDF with Adobe Reader and it, too, crashed.  I uninstalled it and reinstalled it, stopped it from coming up in protected mode and now it doesn't crash but I cannot edit any pdf with it and the tools box no longer works at all - a small circle spins in it for a couple of seconds, then fades to gray.
    My youcam will not turn on at all - when I click on the youcam icon, the cursor spins for a couple of seconds,then returns to an arrow and the youcam doesn't come on.
    So, after experiencing all these things, I figured I'd try the tried-and-true method of rebooting my laptop.  When the laptop restarted, before allowing me to enter my password, the error message "verifyhost.exe - application error unable to start correctly Oxc000007b" came up.  I x'd out of that, entered password, then 2 other errors came up "lenovoreg.exe" and SACpl.exe
    After working on this for hours, I'm really at a loss as to what it could be.  Does anyone have any idea?   It's unbelievable to me that this has happened on a new laptop that basically just sits on my desk - I don't travel with it and don't do much more than email and word processing on it!  I have no games and very little else even downloaded!  

    Download this, install, update and try to scan your hdd for malware.

  • My BBM and BB Instant messaging all not working on my BB Torch 9800 Even with my Data Plan Activated!

    Device: BB Torch 9800
    Carrier: Globe Telecom (Philippines)
    OS Version: 2949 (v6.0.0.668,Platform 6.6.0.236)
    App free Space: 266.7 MB
    Device Memory free space: 3.5 GB
    Apps Installed:
    AOL IM: 2.5.78
    BBM: 6.1.0.71
    Facebook: 2.0.0.58
    Google Talk: 2.5.125
    My Space: 2.0.0.19
    Twitter: 2.1.0.28
    Windows Messenger: 2.5.125
    Yahoo Messenger: 2.5.125
    BB App World: 3.1.1.21
    Problem: I bought my Torch 9800 on a Blackberry Retailed outlet and inserted my Old Simcard on it . I enrolled on a BB data plan from my carrier (GLOBE's BB Social ON: pls refer from this link to understand better regarding my Carrier's Data plan ) I can access only on my Facebook,My space and Twitter Apps. All other such as BBM, YM,WM,AOL ang GoogleTalk are not working. For BBM: I tried to add a contact as well as my frend tried to add me but i never received the invitation nor did my friend (my friend also has the same Carrier as mine and enrolled on the same package using his BB Bold 9000 OS 5 with BBM 6.1.0.71),another friend also tried to send me BBM invite but never received it. When I tried to log-in on my YM app,it says "service not enabled for this handheld".. I tried to go to the Carrier Customer Service to help me with the settings or something and say that my account is already updated to their BB services and I have already the correct settings. I tried to delete and reinstall the apps..did countless hard resets on my phone..but still the same problem..Can Someone help me plz..

    I'm sorry to say, but I'm having the EXACT same telecom, same plan, same problem. I wonder if the original poster was able to solve his problem. I still can't use my BBM, though the other apps work just fine. :/

  • MY WINDOW 8.1 APP ALL NOT WORKING

    Dear Microsoft
    i just brought my laptop last month..the model is ACER ASPIRE E1-572G with the windows 8.1 inside..on first week after i buy the laptop all function was great...but after a week my apps not working already even Store app also not working..please help me
    to slove it..thansks 

    Hi ALENTHIEN,
    Sorry, I think you post in a wrong forum, and I will move to off-topic.
    I think the suitable forum for you is
    http://answers.microsoft.com/en-us/windows
    --James
    <THE CONTENT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS OR IMPLIED>
    Thanks
    MSDN Community Support
    Please remember to "Mark as Answer" the responses that resolved your issue. It is a common way to recognize those who have helped you, and makes it easier for other visitors to find the resolution later.

  • Chechbox header : deselect all not working

    folks,
    I have a jtable generated from my database. IT has 3 columns . The 3rd column has checkboxes in it. I am implementing a "CHECK ALL"
    checkbox on the header for selection and deselection of checkboxes. the below code works for selection of all boxes.. IT DOES NOT
    WORK WHEN IT IS DESELECTED ? i want to make it work for deselection also
    I call the custom table renderer from main program as follows :
    tc = table.getColumnModel().getColumn(3);
    tc.setHeaderRenderer(new CustomTableCellRenderer1(new MyItemListener(),Name));
    this is item listner in main program for checkbox "check all" present in the table header :
    class MyItemListener implements ItemListener
    public void itemStateChanged(ItemEvent e) {
    Object source = e.getSource();
    if (source instanceof AbstractButton == false) return;
    boolean checked=e.getStateChange() == ItemEvent.SELECTED;
    for(int x = 0, y = table.getRowCount(); x < y; x++)
    table.setValueAt(new Boolean(checked),x,3);
    if (e.getStateChange() == ItemEvent.DESELECTED) // dosent work
    System.out.println("deselect all"); // may b code for deselection
    this is CustomTableCellRenderer1 class below:
    package moxaclient;
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import java.awt.event.*;
    class CustomTableCellRenderer1 extends JCheckBox
    implements TableCellRenderer, MouseListener {
    private static final long serialVersionUID = 1L;
    protected CustomTableCellRenderer1 rendererComponent;
    protected int column;
    String Name;
    private JTable table1;
    Object abc=null;
    protected boolean mousePressed = false;
    public CustomTableCellRenderer1(ItemListener itemListener,String name) {
    rendererComponent = this;
    rendererComponent.addItemListener(itemListener);
    this.Name=name;
    public Component getTableCellRendererComponent(
    JTable table, Object value,
    boolean isSelected, boolean hasFocus, int row, int column) {
    if (table != null) {
    JTableHeader header = table.getTableHeader();
    this.table1=table;
    if (header != null) {
    rendererComponent.setForeground(header.getForegrou nd());
    rendererComponent.setBackground(header.getBackgrou nd());
    rendererComponent.setFont(header.getFont());
    header.addMouseListener(rendererComponent);
    setColumn(column);
    rendererComponent.setText("Check All");
    setBorder(UIManager.getBorder("TableHeader.cellBor der"));
    return rendererComponent;
    protected void setColumn(int column) {
    this.column = column;
    public int getColumn() {
    return column;
    protected void handleClickEvent(MouseEvent e) {
    if (mousePressed) {
    mousePressed=false;
    JTableHeader header = (JTableHeader)(e.getSource());
    JTable tableView = header.getTable();
    TableColumnModel columnModel = tableView.getColumnModel();
    int viewColumn = columnModel.getColumnIndexAtX(e.getX());
    int column = tableView.convertColumnIndexToModel(viewColumn);
    if (viewColumn == this.column && e.getClickCount() == 1 && column != -1) {
    doClick();
    int row=table1.getRowCount();
    if(row!=0)
    for(int i=0;i<=row-1;i++)
    String Sensor =(String) table1.getValueAt(i, column-3); // // when checkbox selectedthis code gets all value present in table and stores in string abc
    Double Value =(Double) table1.getValueAt(i, column-2);
    String Date =(String) table1.getValueAt(i, column-1);
    abc += Sensor+"\t"+Value+"\t"+Name+"\t"+Date+"\t";
    public void mouseClicked(MouseEvent e) {
    handleClickEvent(e);
    ((JTableHeader)e.getSource()).repaint();
    public void mousePressed(MouseEvent e) {
    mousePressed = true;
    public void mouseReleased(MouseEvent e) {
    public void mouseEntered(MouseEvent e) {
    public void mouseExited(MouseEvent e) {
    plzz help.

    please add tags around the code in your posts.
    Dinud123 wrote:
    IT DOES NOT
    WORK WHEN IT IS DESELECTED ? i want to make it work for deselection alsoI don't know any user interface where I would toggle "select all" and "deselect all" via the same control. That may be for a reason.
    So my suggestion is: provide a second button for "deselect all".
    bye
    TPD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Post RH 9 Upgrade Expand All and Collapse All not working.

    After upgrading to RoboHelp 9 from 7 - the Collapse All and Expand All is not working.  I am taking over after attending a RoboHelp 9 Training Class a little over a week ago, so any help would be appreciated.

    Hi,
    What is your output? Where are the show/hide buttons placed: In the topic or in the toolbar? You're using RoboHTML right?
    Did you use any kind of twisties in your RoboHelp 7 project? The show all hide all buttons are controlled by a custom script and I'd like to know which method you are using. (If you know which.) See also http://www.grainge.org/pages/authoring/twisty/twisty.htm
    If you're not sure which method you are using, can you post the HTML of the show/hide all button/link?
    Greet,
    Willam

  • Safari/Youtube/iTunes/App Store All Not Working

    Hello,
    I have an iPhone 3GS and today all of the software that required the use of the internet just stopped working.
    Safari, YouTube, iTunes, and the AppStore all do not work. I click on one of these four icons, it pops up for about five seconds, then it goes right back to the home screen.
    I tried shutting off my phone. Didn't work.
    I tried reconnecting it to iTunes itself. Didn't work.
    I reset my network connections. Didn't work.
    I erased my History, Cache, and Cookies. All that did was make it so that when I click on Safari, my Bookmarks come up. The internet still doesn't work.
    A friend of mine has a theory that these "apps" aren't working because of the snow/rain/ice storm I'm currently in the middle of and that once it blows over, my internet should work again.
    My WiFi and 3G work.
    I'd like to avoid resetting my phone to it's orginal settings if that's possible.
    My most recent update is the 4.2.1 update.
    To any and all who can help or offer some suggestions, thank you very much.

    Sleuth wrote:
    I tried both resetting it by itself and while it was connected to iTunes. It didn't work.
    Thank you for your help though.
    You tried resetting all settings on the device by going to Settings > General > Reset > Reset all settings?
    There is no reset in iTunes, are you stating that you did a restore? If you did a restore, did you restore as a new device or from your backup?
    What you describe sounds like an issue in the settings of your device. If you have not already, restore as a new device.

  • Clear Block All not working

    Hi,
    I have a calculation script that fixes on some sparse dimension members and then runs a Clear Block ALL command.
    This script works in dev environment, but does not work in prod.
    I copied the application from prod to dev and executed the script and data was cleared. But the same script does not work in prod.
    Any help is appreciated.
    Regards

    Hi vs,
    When you fix any dense Member/Dimension then "ClearBlock All" will only clear data not blocks, but in case when you fix sparse dimnesion/Member it will clear all blocks,
    so please recheck you dimensions which you have fixed in FIX Statement.
    Thanks,
    Avneet

  • HT5361 Reply all not working

    Reply All is not working internally.  We have a Mac OS X Verstion 10.9.4, mail version 7.3 on the office computer.  If an email comes in from a client and has all of my colleagues included in the email and I hit Reply All, it does not include my colleagues in the return message.  Why?

    I wonder if they put the combination of addresses in the To: field instead of the CC: field.  That might confuse the Mail application.  You can always copy/paste the addresses to the CC field.  Preferably, you want to use BCC anyway instead of CC, since a virus on one PC could add every member on the CC list to an spam e-mail spoof bot that adds everyone to a big spam e-mail list.  Use View menu to add the BCC field.  BCC= Blind Carbon Copy.

  • Select/Deselect  All not working !!

    Hi Gurus,
    I have searched thru SDN forum, but didn't get any pointers on this.
    I have created 2 custom buttons for select/deselect all on ALV toolbar, thru oops.
    Select/Deselect All are not working for me. Please help me with some pointers.
    I have attributes for customized ALV toolbar buttons, and then checking at user command.
    Many Thanks,
    Madan

    Hi,
    Check the links
    https://wiki.sdn.sap.com/wiki/display/Snippets/TutorialABAPALVThroughOOPS
    Addiing Custom button to ALV Grid Standard tool bar
    https://wiki.sdn.sap.com/wiki/display/Snippets/AsimpleprogramonALV+OOPS
    Regards,
    Amit

  • Installer & software update all not working now along with safari & itunes

    hi all
    I've posted this under the safari beta for mac area (http://discussions.apple.com/thread.jspa?threadID=1148867&tstart=0) as well but as it relates to several issues, i wanted to put it here and see if anyone here at any ideas.
    yesterday i installed the new version of itunes and safari 3 beta. as i was half way through the safari installation i lost my wireless connection and had to then force quit the process. since then, my itunes, safari and software update and installer programs are not working.
    i've tried downloading previous versions of everything but when i go to install them the installer appears and then dissapears just as quickly. on top of that when i click on itunes from the dock, it bounces like it is about to load up and then stops and doesn't. finally, when i go to click on software update from System Preferences, I get an error message "Preferences Error, Could not load Software Update".
    this includes my trying to download and install the mac osx 10.4.10 combined update to 'fix' everything but as mentioned above the installer appears for a second and then dissapears again without doing anything.
    over to you all for any and all help.
    thanks in advance
    AT
    Any help would be greatly appreciated because whilst i am getting by using firefox, my little girls songs are on itunes and i need to get into them (anyone with kids will understand my pain).
    thanks
    AT

    If you downloaded the update from the phone, and using an older version of iTunes, yes that should do it.

Maybe you are looking for