Cannot dispaly the owner of gift list

Hi i am experiencing some issues with an application in Java EE5, i develop with JPA, JSF in Netbean6.5.1 , i use Postgresql 8.4.1 and Glasfish
I take a part of my RDBMS with 3 tables Customer, ListCadeaux and Staus(of customer). A Customer can be owner or beneficiary(profitable)
entity Customer
@Entity
@Table(name = "t_customer")
public class Customer implements Comparable, Serializable {//Comparable,  
    @Id
    @GeneratedValue(strategy = GenerationType.SEQUENCE)
    private Long cust_id;
    @OneToOne
    @JoinColumn(name = "add_id", nullable = true)
    private Address address = new Address();
    @ManyToMany(mappedBy = "customers", cascade = CascadeType.PERSIST)
    @JoinTable(name = "t_cust_list",
    joinColumns = {
        @JoinColumn(name = "cust_id")},
    inverseJoinColumns = {
        @JoinColumn(name = "list_id")})
    private List<ListCadeaux> listscadeaux = new ArrayList<ListCadeaux>();
//getters and setters
}entity ListCadeaux
@Entity
@Table(name = "t_list")
public class ListCadeaux implements Serializable, Comparable {
    @Id
    @GeneratedValue(strategy = GenerationType.SEQUENCE)
    private Long list_id;
    @ManyToOne
    @JoinColumn(name = "list_type_id")
    private Type type = new Type();
    @ManyToMany
    private List<Customer> customers;
//getters ans settersFirst question is it correct to represent the jointable like this?
@Entity
@Table(name = "t_cust_list")
public class CustList implements Comparable, Serializable {
    @Id
    @GeneratedValue(strategy = GenerationType.SEQUENCE)
    private Long cust_list_id;
    @ManyToOne
    @JoinColumn(name = "cust_id")
    private Customer customer = new Customer();
    @ManyToOne
    @JoinColumn(name = "list_id")
    private ListCadeaux list_cadeaux = new ListCadeaux();
    @OneToOne
    @JoinColumn(name = "status_id")
    private Status status = new Status();
//getters and settersand the entity Status
@Entity
@Table(name = "t_status")
public class Status implements Comparable, Serializable {
    @Id
    @GeneratedValue(strategy = GenerationType.SEQUENCE)
    private Long status_id;
    @Column(name = "status_name")
    private String name;
}I would like to display all ListCadeaux with the data in relation but i cannot dispaly customers data can some one help
Thanks

and the jsp
<f:view>
    <html>
        <head>
            <title>               
            </title>
        </head>
        <body>
            <h1><h:outputText value="#{msgs.windowSearchListTitle}" /></h1>
            <h:form>
                <table>
                    <%-- <tr>
                        <td><h:outputText value="#{msgs.first_name}" /></td>
                        <td><h:inputText value="#{list.listRech.customers.class.customer.first_name}" /></td>
                    </tr                 
                    <tr>
                        <td><h:outputText value="#{msgs.last_name}" /></td>
                        <td><h:inputText value="#{list.custListRech.customer.last_name}" /></td>
                    </tr>
                    --%>
                    <tr>
                        <td><h:outputText value="#{msgs.status}" /></td>
                        <td><h:inputText value="#{list.listRech.status}" /></td>
                    </tr>
                    <tr>
                        <td><h:outputText value="#{msgs.type}" /></td>
                        <td>
                            <h:selectOneMenu value="#{list.listRech.type.type_id}">
                                <f:selectItems value="#{list.allTypes}"/>
                            </h:selectOneMenu>
                        </td>
                    </tr>
                    <tr>
                        <td><h:commandButton value="#{msgs.Rech}" action="#{list.doFindLists}" /></td>
                    </tr>
                </table>
            </h:form>
            <h:form>
                <h:dataTable value="#{list.list_s_cadeaux}"
                             var="listRow">
                    <f:facet name="caption">
                        <h:outputText value="#{msgs.windowShowLists}"/>
                    </f:facet>
                   <%--<h:column footerClass="columnFooter">
                        <f:facet name="header">
                            <h:outputText value="#{msgs.first_name}" />
                        </f:facet>
                        <h:outputText value="#{listRow.customers.class.first_name}" />
                        <f:facet name="footer">
                            <h:outputText value="#{msgs.first_name}" />
                        </f:facet>
                    </h:column>
                    <%-- <h:column footerClass="columnFooter">
                        <f:facet name="header">
                            <h:outputText value="#{msgs.last_name}" />
                        </f:facet>
                        <h:outputText value="#{listRow.customers.class.last_name}" />
                        <f:facet name="footer">
                            <h:outputText value="#{msgs.last_name}" />
                        </f:facet>
                    </h:column>--%>
                    <h:column footerClass="columnFooter">
                        <f:facet name="header">
                            <h:outputText value="#{msgs.status}" />
                        </f:facet>
                        <h:commandLink action="#{list.doFindList}"
                                       value="#{listRow.status}">
                            <f:param name="list_id" value="#{listRow.list_id}" />
                        </h:commandLink>
                        <%--<h:outputText value="#{listRow.status}" />--%>
                        <f:facet name="footer">
                            <h:outputText value="#{msgs.status}" />
                        </f:facet>
                    </h:column>                                     
                    <h:column footerClass="columnFooter">
                        <f:facet name="header">
                            <h:outputText value="#{msgs.event_date}" />
                        </f:facet>
                        <h:outputText value="#{listRow.event_date}" />
                        <f:facet name="footer">
                            <h:outputText value="#{msgs.event_date}" />
                        </f:facet>
                    </h:column>
                    <h:column footerClass="columnFooter">
                        <f:facet name="header">
                            <h:outputText value="#{msgs.type}" />
                        </f:facet>
                        <h:outputText value="#{listRow.type.type_name}"/>
                        <f:facet name="footer">
                            <h:outputText value="#{msgs.type}" />
                        </f:facet>
                    </h:column>
                </h:dataTable>
            </h:form>
            <h:form title="Detail">
                <table>
                    <tr>
                        <td><h:outputText value="#{msgs.first_name}" /></td>
                        <td><h:inputText value="#{list.custlist.customer.first_name}" /></td>
                    </tr>
                    <tr>
                        <td><h:outputText value="#{msgs.status}" /></td>
                        <td><h:inputText value="#{list.listDetail.status}" /></td>
                    </tr>                  
                    <tr>
                        <td><h:outputText value="#{msgs.event_date}" /></td>
                        <td>
                            <h:inputText value="#{list.listDetail.event_date}" >
                                <f:convertDateTime pattern="dd/MM/yyyy" />
                            </h:inputText>
                        </td>
                    </tr>
                    <tr>
                        <td><h:outputText value="#{msgs.type}" /></td>
                        <td>
                            <h:selectOneMenu value="#{list.listDetail.type.type_id}">
                                <f:selectItems value="#{list.allTypes}"/>
                            </h:selectOneMenu>
                        </td>
                    </tr>
                    <tr>
                        <td><h:commandButton value="#{msgs.Sauve}" action="#{list.doSave}" /></td>
                    </tr>
                </table>
            </h:form>
        </body>
    </html>
</f:view>

Similar Messages

  • Why SYS cannot be the owner of the recovery catalog

    my question is why? i know SYS cannot be the owner of the recovery catalog as per oracle documentations and books.
    why SYS cannot be the owner of the recovery catalog?

    Hi
    SYS is like root/system admin for the database. It has to distribute jobs according to specific purpose. SYS could have been the owner of RMAN catalog but it does not make sense to keep it with SYS objects as it is easier to find all related catalog tables in a separate schema rather than combing with any other sys/system schema. The choice is logical.
    Regards

  • Cannot replicate the ring cells' value list on a table

    Hi, 
    I am trying to create a variable-size table/matrix of ring cells. The default value list is "0 (x)" and "1(P)", for binary purpose, specified in cell (1,1). When I insert a new row and/or colum on the table, It looks like the inserted cells does not inherit the specified value list "0 (x)" and "1(P)" from cell (1,1).
    I have also tried the following options, but none of them works.
    (1) change the Table Mode (Edit Table -> Control Settings -> Table Mode) to either "row" or "column" from "grid"
    (2) use the parameter "VAL_USE_MASTER_CELL_TYPE" instead of ring type
    (3) search the forum but not clue found
    Please also see the attached snapshot files, which show how the settings are set.
    (1) "snapshots_02_ring_list.jgp": specify the ring value list of cell(1,1)
    (2) "snapshots_03_edit_default_cell_values.jpg": I tried also to specify the default cell values in Control Settings (Edit Table -> Control Settings -> Edit Default Cell Values -> Ring/Combo Box Attributes), but the button "Value List" is greyed out.
    (3) "snapshot_04_cells.jpg": the created/inserted cells do not have the value lists
    Here is the code piece for your information:
    // insert a few rows
    InsertTableRows(panel,PANEL_TABLE_CHKBRD, (iNumOfRowNow+1),iNumOfRowChange, VAL_USE_MASTER_CELL_TYPE);
    // draw the cells
    ProcessDrawEvents();
    // set the active row
    SetCtrlAttribute(panel, PANEL_TABLE_CHKBRD,ATTR_FIRST_VISIBLE_ROW, iNumOfRowNew);
    Thanks.
    Attachments:
    snapshot_02_ring_list.jpg ‏134 KB
    snapshot_03_edit_default_cell_values.jpg ‏159 KB
    snapshot_04_cells.jpg ‏16 KB

    You cannot inherit the ring values of a cell. This is why the Value List button is dimmed when you edit the default cell values of a column in the UI Editor.
    You can use the InsertTableCellRingItem function to programmatically create the value list of any new cells that you add to the table. Or the InsertTableCellRangeRingItem function, if you want to do the same thing for multiple cells at once.
    By the way, for items that can be inherited (i.e. cell attributes, as Wolfgang put it), inheritance does not happen from one cell to another. Depending on the table mode, inheritance happens from a column's default cell to new cells under that column, or from a row's default cell to new cells on that row, or from the table's default cell to all new cells.
    Luis

  • Sandboxed Code Service: A domain group cannot be the owner of a group

    Hi,
    I am trying to activate a .wsp in the solution gallery. I receive the error below, after clicking 'Activate'. I have checked that the account has the necessary permissions on the site collection. Any ideas?

    http://richardstk.com/2012/01/17/unhandled-exception-was-thrown-by-the-sandboxed-code-wrappers-execute-method-in-the-partial-trust-app-domain/
     In order to resolve the error I opened the sandbox solution web.config file in C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\UserCode\web.config.  I added <httpRuntime requestLengthDiskThreshold = “4096”
    /> to the system.web section of the file according to the information here http://msdn.microsoft.com/en-us/library/e1f13641.aspx
    If this helped you resolve your issue, please mark it Answered

  • Zooming.....don't understand your instructions ans cannot find the menu options you list

    == Issue
    ==
    I have a problem with my bookmarks, cookies, history or settings
    == Description
    ==
    cat walked on computer and zoomed the letters and now they are HUGE.....i am not very computer literate and do not know how to fix this.....i do not understand your instructions.....please help me
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows 7
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    == Plugins installed
    ==
    *-Default Plug-in
    *Shockwave Flash 10.0 r45
    *3.0.50106.0
    *NPWLPG
    *Google Update
    *Adobe PDF Plug-In For Firefox and Netscape

    Reset the page zoom on pages that cause problems: '''View > Zoom > Reset''' (Ctrl+0 (zero); Cmd+0 on Mac)
    See [[Text Zoom]] and [[Page Zoom]] and http://kb.mozillazine.org/Zoom_text_of_web_pages

  • How to see other users gift list in atg

    Hi Guys,
    As Giftlist are public we can see other user giftlists also
    could  you please tell me how to see other users giftlists in atg ?

    There is an example of this in the demo CRS application (Page store.war/giftlists/giftListSerach.jsp)From the docs:
    The /atg/commerce/gifts/GiftlistSearch form handler searches the repository for gift lists. The form handler uses input from the customer, such as owner name, event name, event type and state, to find gift lists published by other customers. It returns a list of gift lists that match the given criteria.
    GiftlistSearch should be session-scoped because multiple pages are typically involved in gathering and displaying information for gift list searching (for example, you might want to maintain a list of results for paging purposes). This form handler uses supporting servlet beans to add the retrieved gift lists to the customer’s profile and to display gift list contents.

  • TS1424 i have a wish list that i would like to purchase i have also download itunes gift card i can see the 25 dollars but i cannot purchase the music from my wishlist

    I have made a wish list and I am unable to complete the purchase, I have a $25 gift card from itunes that was downloaded when I open the account it shows the 25 but I cannot purchase the music from my wishlist can someone help me with this issue. 
    Thank You Cynthia62

    Just locate the itunes folder on your laptop, then locate media files then music and just click and drag to move the music from the laptop to the S5. Just be sure to move the music to the music folder on your phone and you're good to go. You don't even have to change the file format when you're moving the music over because Galaxy supports the iTunes media files.

  • A friend gave me an older Nano 3rd generation. Can anyone tell me how to delete what is on there and how to get rid of his name. It does not connect to my itunes. I cannot even find the source or the place to restore it as suggested in the owners manual.

    I have a 3rd generation ipod that a friend gave me. I cannot find anything on how to get rid of his name and music on it. This is what the owners manual says:
    "Select ipod nano in the soiurce list and click the summary tab" I cannot find the source or the summary tab on itunes. Can any one help me? I would like to delete everything on it and start over but I am afraid I cannot add anything back on it. I know this is detailed and a lot, but I really need help.

    Restore
    Note: Because Restore erases all of the songs and files on iPod, make sure toback up any files you've saved on the iPod disk. All of your songs, videos, podcasts, audiobooks, and games can be loaded back to your iPod provided that you have them stored in your iTunes Library.
    How to restore your iPod:For Windows:
    1. Make sure you've reinstalled the latest version of iTunes.
    2. Open iTunes, and then connect your iPod to your computer.
    3. After a few moments, it will appear in the source list in iTunes. If the iPod's display doesn't show "Connected" or "Do not disconnect" you may need to put the iPod into disk mode to proceed.
    4. Select your iPod in the source list and you will see information about it appear in the Summary tab of the main iTunes windows.
    5. Click the Restore button. You will be prompted with one or more restore options that may prompt iTunes to automatically download of the latest iPod Software. The 4 possible restore options are:
    Restore Option 1: Restore - Restores with same iPod Software version already on iPod.
    Restore Option 2: Use Same Version - Restores with same iPod Software version already on iPod even though a newer version is available.
    Restore Option 3: Use Newest Version - Restores with the latest iPod Software on your computer.
    Restore Option 4: Restore and Update - Restores with the latest iPod Software on your computer.
    6. A progress bar will appear on the computer screen indicating that the first stage of the restore process has started. When this stage is completed, iTunes will instruct you to leave iPod connected to your computer to complete restore.
    7. During the stage 2 of the restore process, the iPod will show an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remains connected to the computer or iPod Power adapter during this stage. Note: The progress bar may be difficult to see since the backlight on the iPod display may be off.
    8. After stage 2 of the restore process is complete and the iPod is connected to the computer, the iTunes Setup Assistant window will appear asking you to name your iPod and choose your syncing preferences similar to when you connected your iPod for the first time.
    For Mac:
    1. Make sure you've reinstalled the latest version of iTunes.
    2. Open iTunes, and then connect your iPod to your computer.
    3. After a few moments, it will appear in the source list in iTunes. If the iPod's display doesn't show "Connected" or "Do not disconnect" you may need to put the iPod into disk mode to proceed.
    4. Select your iPod in the source list and you will see information about it appear in the Summary tab of the main iTunes windows.
    5. Click the Restore button. You will be prompted with one or more restore options that may prompt iTunes to automatically download of the latest iPod Software. The 4 possible restore options are:
    Restore Option 1: Restore - Restores with same iPod Software version already on iPod.
    Restore Option 2: Use Same Version - Restores with same iPod Software version already on iPod, even though a newer version is available.
    Restore Option 3: Use Newest Version - Restores with latest iPod Software version on your computer.
    Restore Option 4: Restore and Update - Restores with latest iPod Software version on your computer.
    6. A message will appear prompting you to enter an administrator's name and password.
    7. A progress bar will appear on the computer screen indicating that the first stage of the restore process has started. When this stage is completed, iTunes will instruct you to leave iPod connected to your computer to complete restore.
    8. During the stage 2 of the restore process, the iPod will show an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remains connected to the computer or iPod Power adapter during this stage. Note: The progress bar may be difficult to see since the backlight on the iPod display may be off.
    9. After stage 2 of the restore process is complete and the iPod is connected to the computer, the iTunes Setup Assistant window will appear asking you to name your iPod and choose your syncing preferences similar to when you connected your iPod for the first time.
    Source:
    iPod nano (3rd generation) Troubleshooting Assistant
    Message was edited by: michael08081

  • Microsoft Outlook 2010 The delegates settings were not saved correctly. Cannot activate Send-on-behalf-of list. You do not have sufficient permission to perform this operation on this object.

    I am trying to assign delegation to a user and I receive the following message.
    The delegates settings were not saved correctly.  Cannot activate Send-on-behalf-of list.  You do not have sufficient permission to perform this operation on this object.
    We are using 2010 for the server and client.  There are only specific mailboxes that this is happening for after being migrated from Lotus Notes.  The user can use their mailfile fine however it is just the delegation that appears corrupted somehow. 
    I'm not sure how to fix this.  I have checked the access through the security tab in ad and that looks fine.
    Any help would be appreciated.

    I did some more digging and I solved it.
    This would be the solution:
    In Active Directory Users and Computers
    -Click on VIEW
    -Click on ADVANCE FEATURES  (this is important otherwise you won't see
    the complete list in the next steps)
    -Click on the USERS container
    -Find the problem user's account
    -Right mouse the account and click on PROPERTIES
    -Click on the SECURITY tab
    -In the top box, click on the SELF account
    -In the bottom portion of the screen make sure the READ PERSONAL
    INFORMATION  & WRITE PERSONAL INFORMATION  should both be checked for
    ALLOW
    If you can compare the permissions for 'SELF' with another user you probably should set them accordingly to be safe. I noticed that for the user where setting delegates (SOB) did
    not work, more than those 2 permissions were missing.
    Good luck!
    David

  • SharePoint List Form using InfoPath 2010 "Cannot insert the value NULL into column 'tp_DocId', table 'Content_SP_00003.dbo.AllUserData'; column does not allow nulls"

    I am experiencing issue with my SharePoint site , when I am trying to add new Item in List . Error given below :--> 02/03/2015 08:23:36.13 w3wp.exe (0x2E04) 0x07E8 SharePoint Server Logging Correlation Data 9gc5 Verbose Thread change; resetting trace
    level override to 0; resetting correlation to e2e9cddc-cf35-4bf8-b4f3-021dc91642da c66c2c17-faaf-4ff9-a414-303aa4b4726b e2e9cddc-cf35-4bf8-b4f3-021dc91642da 02/03/2015 08:23:36.13 w3wp.exe (0x2E04) 0x07E8 Document Management Server Document Management 52od
    Medium MetadataNavigationContext Page_InitComplete: No XsltListViewWebPart was found on this page[/sites/00003/Lists/PM%20Project%20Status/NewForm.aspx?RootFolder=&IsDlg=1]. Hiding key filters and downgrading tree functionality to legacy ListViewWebPart(v3)
    level for this list. e2e9cddc-cf35-4bf8-b4f3-021dc91642da 02/03/2015 08:23:36.17 w3wp.exe (0x1B94) 0x1A0C SharePoint Server Logging Correlation Data 77a3 Verbose Starting correlation. b4d14aec-5bd4-4fb1-b1e3-589ba337b111 02/03/2015 08:23:36.17 w3wp.exe (0x1B94)
    0x1A0C SharePoint Server Logging Correlation Data 77a3 Verbose Ending correlation. b4d14aec-5bd4-4fb1-b1e3-589ba337b111 02/03/2015 08:23:36.31 w3wp.exe (0x2E04) 0x07E8 SharePoint Foundation Database 880i High System.Data.SqlClient.SqlException: Cannot insert
    the value NULL into column 'tp_DocId', table 'Content_SP_00003.dbo.AllUserData'; column does not allow nulls. INSERT fails. The statement has been terminated. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at
    System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject
    stateObj) at System.Data.SqlClient.SqlDataReader.ConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavi... e2e9cddc-cf35-4bf8-b4f3-021dc91642da 02/03/2015
    08:23:36.31* w3wp.exe (0x2E04) 0x07E8 SharePoint Foundation Database 880i High ...or runBehavior, String resetOptionsString) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream,
    Boolean async) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior,
    RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand
    command, CommandBehavior behavior,

    Are you trying to setup P2P? Could you explain the process you followed completely? By anychance you create the backup and then created the publication?
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • I have bought an iMAC second hand but when updates to purchased (not by me) Apps I cannot download the updates as it is asking for the original owners password. How can I amend this or could I delete the Apps and download new ones in place under my email

    I have bought an iMAC second hand but when updates to purchased (not by me) Apps I cannot download the updates as it is asking for the original owners password. How can I amend this or could I delete the Apps and download new ones in place under my email

    If the machine was upgraded to Lion 10.7.x by the original owner then you bought an illegal license of Lion and also of any other applications that the seller  said came pre-installed, this assumes the seller did not include original install media. In that case you need to contact the seller for the original install DVDs that came with the machine re-install up to Snow Leopard 10.6.8 and then purchase Mountain Lion ($20) and the applications you want or need. If the seller cannot come up with the original install discs then you can buy them from a nominal cost from AppleCare..

  • How can I download a previously downloaded purchase to my iTunes library on my laptop when the listing for the song in my library won't play because it says it cannot locate the file. Yes I have searched my iTunes folders and also done a full windows sear

    How can I download a previously downloaded purchase to my iTunes library on my laptop when the listing for the song in my library won't play because it says it cannot locate the file. Yes I have searched my iTunes folders and also done a full windows search. The track plays on my iPad and my iPhones but will not play on my laptop!?
    It has an "!" To the left of the song title in my library
    My worry is that if I sync my iPad/iPhone then I will lose the track on those also!

    If you cannot find the file on your hard drive then once you delete the current broken entry you should be able to redownload from iTunes in the Cloud. This assumes the item in question qualifies. Note that audiobooks, digital booklets, iTunes LPs & Extras, ringtones, selected movies etc. don't.
    If prompted don't hide the item. You may find that you need to close and then reopen iTunes before it will appear for download.
    tt2

  • When I get an ICS from Outlook that is a multi-day event it populates my iCal as a single day and since I am not the owner I cannot edit the ICS.

    When I get an ICS from Outlook Express (Office is PC based) that is a multi-day event, it populates my iCal as a single day and since I am not the owner I cannot edit the ICS. I have to delete it and send a "decline notice" to the sender and re-enter it so I can put in multiple day events. Help!

    If you are running Tiger, you don't have time machine. 
    You need to get something like SuperDuper! or Carbon Copy Cloner (sorry, I don't have a handy link for CCC but you can Google it to get their site) to make a clone of your drive on the external and then do incremental backups.  The free versions do a lot and you can upgrade to the full-service versions for small change if you need more.  The one time I used SuperDuper! for cloning a volume it worked just fine. 
    (My backup application is the last PPC capable version of Retrospect, which does a credible job, or has over the past ten-twelve years.)

  • Mail landscape view in ipad, cannot suppress the column listing

    I want to use landscape view To read email...but I cannot suppress the column listing my messages. In portrait that column is missing so I can see whole message.
    What do I do?

    There is nothing that you can do. That is a feature of landscape viewing of mail.
    Glor

  • The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

Maybe you are looking for

  • After installing OS Yosemite I have been unable to update iPhoto, It's been 2 days.  All pictures are gone.  Need help.

    I installed OS Yosemite and I got the following message "The Photo Library needs to be upgraded to work with this version of iPhoto. I clicked Updgrade, but it  has been two days and it hasn't been able to upgrade my library and none of my picture ar

  • Error while creating internal order

    Hi, I have defined an Order type for budgeting purpose, so that statistical internal orders be created under that order type. This is required for budget controlling. Now I am not able to create internal order in Ko01. I am getting the below error me

  • Save in Pdf reduce file size

    Hey Guys, I'd need some help as i'm totally confused. My problem: I create a new document in Photoshop with 1200x600px 300dpi dimensions. After editing I want to save in PDF format with the same dimensions. But. The final PDF file is totally small ar

  • ANN: New layer capabilities with Presentation Asst v3 (TimeSavers add-on)

    The Layer Assistant was recently integrated into the Presentation Assistant (v.3), offering the following capabilities: Text/Symbol Layer shortcuts Add the specified string, associated with a layer (with control over font, size and color; horizontal/

  • Update joining two other tables.

    Hi, I have a question on update of one table using two other tables. There are three tables: a_visitors(vis_str, vis_flag), b_hub(vis_str ), c_uv_xref(vis_str, user_str). And a_visitors.vis_flag needs to be updated with '1', '2' or '3'. 1 - if there