Moving masters and their versions between libraries?

Is it possible to move masters and their versions between libraries?

the best and easiest way (that i have found) is to create a new project and put the masters and versions in there ... use export project to "extract" and then import the project in the different library ...
this is if you only want to move one or two masters/versions, if you want the whole project disregard creating the new one and moving images ...

Similar Messages

  • To fetch details of services deployed and their version number

    We have an EM environment where in we have deployed composite applications. We have several partitions running with number of services deployed in them. We want to fetch the details of the services deployed and their versions in each partition from a file if it stored in a file or from a table if it is stored in table. We are not sure if these details are stored in a file or table. Instead of fetching manually from console everytime, We want it be retrieved in a file or table which will help us control versions of services deployed. Please help regarding this.

    Using ant -f ant-sca-mgmt.xml listCompositesInPartition, We can get the details of the composites deployed in a particular partition.

  • Please help with restoring different apps and their data between 2 iPads

    I just bought a new iPad Air 2 . I currently have 2 iPads, 1st gen and iPad 2nd, each with its own set of apps and their data. I backed up each older iPad manually as  a full backup. I created a separate library for one of them when doing this. Now I want to transfer iPad 1st gen apps and data to iPad 2nd, so I reset iPad 2nd to factory and then restored from the manual back up of the iPad 1st gen and it seems to work fine. Before that I had backed up iPad 2nd's current data. So now I now I want to transfer the iPad 2nd apps and data to the new iPad Air. I selected the backup by the time stamp that I had backed up iPad 2nd. I didn't know how to rename each iPad to something unique. It restored from backup, but it's all the apps and data from my iPad 1st gen backup, not iPad 2nd.
    I'm utterly confused. Even when I have the separate iTunes library open it shows all the manual backups I performed, so it's not truly a separate library. Do I need to manually install/remove the various apps on the newer iPad?

    If you only have 1 file per quarter, one obvious thing to do would be to edit out the time in between plays, the time-outs, and the like. That is easily done in iMovie.
    Having said that, importing (and exporting) in high definition takes time, and your times do not seem unreasonable.
    Message was edited by: AppleMan1958

  • Moving buttons and their listeners to separate classes

    Hi
    I am trying to move out buttons and their listeners to separate classes, but when I do so, the program stops working. When I click on the button they dont react, probably the listeners doesent listens as the action performe prints out testprints.
    In other words, I have huge troubles with do my gui object oriented. I doesent seem to be able to move out relevant listener methods and their components to separate classes.
    Here is the code for one add button that I have tried to write in a separate class:
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.sql.SQLException;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import javax.swing.JButton;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import se.cs.DB.DBMovie;
    import se.cs.inputvalidation.PatternsMovie;
    import se.cs.main.Main;
    import se.cs.main.MessageArea;
    public class ButtonAddMovie {
         private DBMovie init = new DBMovie();
         private ComboBoxesMovie comboBoxesMovie = new ComboBoxesMovie();
         private TextFieldsMovie textFieldsMovie = new TextFieldsMovie();
         private PatternsMovie patternsMovie = new PatternsMovie();
         private MessageArea messageArea = new MessageArea();
         private Pattern patternYear;
         private Pattern patternSection;
         private Pattern patternExFields;
         private Matcher matcherYear;
         private Matcher matcherSection;
         private Matcher matcherTotalEx;
         private Matcher matcherExIn;
         private Matcher matcherExOut;
         private String genreString;
         // Initializes the button components
         private JButton addButton = new JButton("Add");
         public ButtonAddMovie() {
              listener();
         public void listener() {
              addButton.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        addButton(e);
         public void addButton(ActionEvent e) {
              genreString = comboBoxesMovie.convertGenreIndex();
              regex();
         public void regex() {
              patternYear = Pattern.compile(patternsMovie.getYEAR_FIELD());
              patternSection = Pattern.compile(patternsMovie.getSECTION_FIELD());
              patternExFields = Pattern.compile(patternsMovie.getExFields());
              matcherYear = patternYear.matcher(textFieldsMovie.getTextYear());
              matcherSection = patternSection.matcher(textFieldsMovie.getTextYear());
              matcherTotalEx = patternExFields.matcher(textFieldsMovie
                        .getTextTotalEx());
              matcherExIn = patternExFields.matcher(textFieldsMovie.getTextExIn());
              matcherExOut = patternExFields.matcher(textFieldsMovie.getTextExOut());
              if (matcherYear.matches() && matcherSection.matches()
                        && matcherTotalEx.matches() && matcherExIn.matches()
                        && matcherExOut.matches()) {
                   messageArea.getMessageArea().setText("");
                   callInsertStatement();
                   JOptionPane.showMessageDialog(null, this.messageDialog(),
                             "Movie added", JOptionPane.INFORMATION_MESSAGE);
              else if (!matcherYear.matches()) {
                   messageArea.getMessageArea().setText(
                             "The input for year field does not match.\n"
                                       + "You have to enter 4 digits.");
              else if (!matcherSection.matches()) {
                   messageArea.getMessageArea().setText(
                             "The input for section field does not match.\n"
                                       + "You have to enter 1-4 digits.");
              else if (!matcherTotalEx.matches()) {
                   messageArea.getMessageArea().setText(
                             "The input for total ex field does not match.\n"
                                       + "You have to enter 1.");
              else if (!matcherExIn.matches()) {
                   messageArea.getMessageArea().setText(
                             "The input for ex in does not match.\n"
                                       + "You have to enter 1 digit.");
              else if (!matcherExOut.matches()) {
                   messageArea.getMessageArea().setText(
                             "The input  for ex out does not match.\n"
                                       + "You have to enter 1 digits.");
         public void callInsertStatement() {
              try {
                   init.insertStatement(textFieldsMovie.getTextTitle(),
                             textFieldsMovie.getTextYear(), genreString, comboBoxesMovie
                                       .convertGradeIndex(), textFieldsMovie
                                       .getTextSection(),
                             textFieldsMovie.getTextTotalEx(), textFieldsMovie
                                       .getTextExIn(), textFieldsMovie.getTextExOut());
              } catch (SQLException ex) {
                   ex.printStackTrace();
         public String messageDialog() {
              int grade = comboBoxesMovie.getGradeBox().getSelectedIndex() + 1;
              String title = textFieldsMovie.getTitleField().getText();
              String year = textFieldsMovie.getYearField().getText();
              String section = textFieldsMovie.getSectionField().getText();
              String totalEx = textFieldsMovie.getTotalExField().getText();
              String exIn = textFieldsMovie.getExInField().getText();
              String exOut = textFieldsMovie.getExOutField().getText();
              return "\n" + "Title: " + title + "\n" + "Year: " + year + "\n"
                        + "Genre: " + comboBoxesMovie.convertGenreIndex() + "\n"
                        + "Grade: " + grade + "\n" + "Section: " + section + "\n"
                        + "Total ex.: " + totalEx + "\n" + "Ex. in: " + exIn + "\n"
                        + "Ex. out: " + exOut + "\n";
          * Gets the addButton
          * @return addButton
         public JButton getAddButton() {
              return addButton;
         }

    I said "don't" cross-post and that the discussion has already been started in the "New To Java" forum.
    If you have two discussions going on then people waste time answering because they don't know what has already been suggested.

  • How to export and import albums between libraries in AP2

    In AP2, I transfer projects from my travel library to the home master library by exporting each project and then importing it into the master library. All objects created within a project will transfer over.
    However, I'm not sure how to export and then import objects that are "outside" of specific projects, for example, an album or smart album that pulls from multiple projects.
    Can anyone tell me how to transfer these sorts of objects between two libraries?
    Thanks

    Ian,
    So, in other words, you're saying that it's not possible to export directly objects (like smart albums) that reside outside of projects?
    I know, for example, you can "export" anything created inside a folder by dragging and dropping the folder to another library; but you then have to rebuild the library to get the new folder and its contents to be recognized. For my library, this takes too much time to do.

  • Moving Images and All Data between 2 Connected Macs via LR 3?

    I have an older MBP 17" and a couple year old Mac Pro, both running OS 10.5.8, which are sitting next to each other and I can transfer data wirelessly.  Both running Lightroom 3.4.1.
    I have about a year of photos in Lightroom on my MBP and I'd like to be able to open up Lightroom on the Mac Pro and transfer or otherwise Import those photos, metadata, and the various versions of the photos I've tweaked.
    What is the best way to do this?  Do I choose Import in Lightroom on my Mac Pro or is there another procedure that might avoid whatever pitfalls exist with that method?  I've wanted to do this for quite some time but am afraid of screwing something up and losinig valuable images.
    I'd appreciate hearing from people who have successfully accomplished it.
    Thanks,
    Greg

    Fuji F30 just came to the market. The correct driver for that camera may be missing in 10.3.9. which is probably older than the F30. In case you have Adobe Photoshop or Photoshop Elements, you could download the latest update and probably have the F30 supported in that way (?). The same thing could help with reading the card correctly. This is my experience with other digital cameras.

  • Difference between mastered for iTunes and previous versions?

    Is there a noticeable difference between Mastered for iTunes albums and any previous versions? I purchased Bon Jovi's "Have A Nice Day (Special Edition)", and now it has been replaced with a Mastered for iTunes version. Is there any value or noticeable difference if I were to purchase the new version?

    One of the inexpensive compilation downloads I purchased on iTunes was terrible, I'd much rather listen to the original mix of " I had too much to dream last night" than the remaster, which destroyed the song completely.
    Well, there is really no way to improve on the sound of The Electric Prunes coming over an AM transistor radio!
    I guess I'm suspicious of iTunes files in general. I am a dying breed, using separate amps and pre-amps and real speakers as well as Ultimate Ear earbuds and a great car system. The cuts that are engineered for iTunes are mixed for lo-fidelity appliances and just don't sound that good.
    There are online download stores that cater to a more audiophile crowd.  Check out HD Tracks.

  • I have several projects in Aperture that have lost their masters and cannot be printed, moved, adjusted or otherwise use. Is there a way to at least print them?

    Is there a way to at least print them?

    If you have truly lost the masters and have no possibility of finding them you can drag the previews out of the Aperture browser. Depending on how you have your preview settings you should get decent images.

  • How do you move events and projects between Libraries in iMove 10

    I am running OSX 10.9.5 (Mavericks) & iMovie 10.0.5.
    I am trying to free up space on my internal 1TB hard drive and want to archive events and completed projects onto an external hard drive, which has a second iMove v10 Library on.  Under V9 of iMovie this function was easy, but I am struggling under V10.
    What is the correct way to move events between libraries in iMovie. 
    When I attach the external drive containing my second iMovie Library, open it I can see all existing events stored (by move) under version 9 of iMovie.
    Reading the Help (extract below) for this function it implies highlight the Event to move & then drag & drop into the second Library.
    Shift+CMD with drag and drop onto the second library at the library name level will move Events that are not tied to a project, but for completed projects (Finalized under V9 or shared for example with iTunes in V10) it seems these can not be moved, the above function only copies them to the second library.
    I have tried all different combinations of the Fn, Ctrl, Option CMD keys etc with and without SHIFT and the ones that work for this function only copy the event. I can not seem to get an event moved once attached to a project. File - Move Event will also move Events not tied to a completed project.
    I have also tried copy to a second Library & then to delete the original events.  Again it appears you can not delete events tied to a Project.
    What I have also not been able to find is how to move a finalised Project to another Library and then see if events attached to that project would then move.
    I have been able to move Events not tied to a Project to the second Library, then create a new project within this Library.  This helps with all new projects & future import of Events. But does not help me free up current space by archiving.
    Extract from help
    Copy or move projects, events, or clips between libraries or storage devices
             Connect a storage device that contains the target library to your Mac, or copy the target library to your Mac.
             Choose File > Open Library, and choose an option from the submenu.You can choose from recently opened libraries, locate an existing library on your Mac, or create a new library.The selected library is opened in the Libraries list, with the first event selected and its contents displayed in the browser.
             In the Libraries list, select the event that contains the item you want to move or copy.
             In the browser, select the item you want to move or copy.Tip:  To select multiple clips or projects in the same library, hold down the Command key as you click the items you want to select, or drag a selection rectangle around the items.
             Do one of the following:
    To move items between events or libraries: Drag the clip or project to another event or library.
    To copy items between events or libraries: Option-drag the clip or project to another event or library by first starting to drag and then holding down the Option key as you drag.
    Would appreciate any help on this matter.
    Thanks
    Colroy

    Further to my original post below; I have done further analysis and it seams that if you have events tied to a project (mine are all finalised) you can not move events between Libraries.  However, events that are not tied to a project can be moved. Either by Shift CMD or by using File- Move event.
    What I have not been able to find is how to move a finalised Project to another Library and then see if events attached to that project would then move.
    Copy works for events attached to a project. I have also tried copy to a second Library & then to delete the original events.  Again it appears you can not delete events tied to a Project.
    Does anyone know how to archive (move) Projects and/or events in iMovie 10.0.05 under Mavericks 10.9.5 to a second library on an external drive.
    Thanks
    Colroy

  • Fatal error C1900: Il mismatch between 'P1' version '20080116' and 'P2' version '20070207'

    Hi all,
    I have a Team Foundation Build Agent that has Visual Studio Team System 2008 Test Edition installed. One of the solutions that I compile with that Build Agent gives me the following errors:
      VCBUILD : fatal error C1047: The object or library file '.\bin\Release\main.obj' was created with an older compiler than other objects; rebuild old objects and libraries
      LINK : fatal error LNK1257: code generation failed
      VCBUILD : fatal error C1900: Il mismatch between 'P1' version '20080116' and 'P2' version '20070207'
      LINK : fatal error LNK1257: code generation failed
    I've searched online and found that other people have experienced the same problem:
    http://software.intel.com/en-us/forums/intel-c-compiler/topic/62516/
    http://nuicode.com/issues/266
    In the second posting one states "I had the same Error! After installing Service Pack1 for VS2008 it worked!". Thats great for him but I don't see any such update for the Test Edition of Visual Studio Team System 2008 - Test Edition.
    What can I do to get rid of that problem?
    Thanks!

    Hello ACKH
    I once handled a similar case in newsgroups. That case exhibit a almost same symptom. Please check out my summary below:
    Problem
    In that case, the customer has a DLL project that you had built on a machine where VS 2008 SP1 was installed. You then attempted to rebuild that project on a machine without SP1, and got a fatal compiler error C1900 “IL mismatch between ‘P1’ version ‘20080116’ and ‘P2’ version ‘20070207’”, and then LNK1257 “Code generation failed”. He found that rebuilding your static library alleviated the errors, but cannot accept this as a workaround because your clients will not have the ability to rebuild the libraries you distribute before they use them.
    Cause
    You had built the static library with the /GL (Whole Program Optimization) compiler switch, which requires Link Time Code Generation (/LTCG) when the static library is subsequently linked. These features require that all linked modules be built by the same version of the compiler. In fact, if precompiled headers are used, the same machine must build and link all the involved object code. Therefore, it is highly recommended that static libraries not be built with the /GL switch, since their intended use is quite frequently to support reuse by others.
    Solution
    You rebuilt the static library on your VS2008 SP1 machine without the /GL switch, and you no longer encounter this problem.
    Please let me know if this info is helpful to you or not.
    Regards,
    Jialiang Ge
    MSDN Subscriber Support in Forum
    If you have any feedback of our support, please contact [email protected]
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
    Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.

  • OSB gives confusing volume information when moving tapes between libraries

    Hi,
    We have an SL500 tape library as our main backup device. We also added an SL24 to the OSB domain for testing prior to installation elsewhere. We have an RMAN-FULL-MF media family, which at some point in the past had unexpired media in both libraries.
    As part of the process of decommissioning the SL24 prior to shipment, I unloaded the volumes from the SL24 and imported them into the SL500. However, I may not have run the necessary OSB commands, such that OSB has up-to-date information as to where the physical media is located.
    Our DBA has tried to delete some old database backups, and this has failed because the backup pieces cannot be found. However, we have a volume in the SL500, RMAN-FULL-MF-000007 which appear to contains the backup pieces (see 'lspiece' output below), but OSB thinks the volume is still in the SL24.
    When I do an inventory of the SL500 I get:
    lsvol -L SL500
    Inventory of library SL500:
    in 1: volume OSB-CATALOG-MF-000085, barcode 000001, 408693760 kb remaining, expires 2008/10/02.07:01
    in 2: volume CLIENTS-INCR-MF-000042, barcode 000000, 405070848 kb remaining, expires 2008/10/14.03:01
    in 3: unlabeled, barcode 000002
    in 4: volume RMAN-ARCH-MF-000006, barcode 000003, 387257344 kb remaining, content manages reuse
    in 5: volume RMAN-ARCH-MF-000003, barcode 000004, 358014976 kb remaining, content manages reuse
    in 6: volume RMAN-FULL-MF-000005, barcode 000005, 353155072 kb remaining, content manages reuse
    in 7: volume OSB-CATALOG-MF-000087, barcode 000006, 408693760 kb remaining, expires 2008/10/04.07:01
    in 8: volume RMAN-FULL-MF-000006, barcode 000007, 361881600 kb remaining, content manages reuse
    in 9: volume CLIENTS-INCR-MF-000044, barcode 000010, 407601152 kb remaining, expires 2008/10/20.02:02
    in 10: volume OSB-CATALOG-MF-000084, barcode 000011, 408794112 kb remaining, expired
    in 11: volume CLIENTS-INCR-MF-000039, barcode 000012, 406033408 kb remaining, expires 2008/10/10.03:02
    in 12: volume CLIENTS-INCR-MF-000036, barcode 000013, 405890048 kb remaining, expires 2008/10/03.03:02
    in 13: volume OSB-CATALOG-MF-000086, barcode 000014, 408708096 kb remaining, expires 2008/10/03.07:02
    in 14: volume CLIENTS-INCR-MF-000038, barcode 000009, 407687168 kb remaining, expires 2008/10/04.04:04
    in 15: volume CLIENTS-INCR-MF-000043, barcode 000008, 407586816 kb remaining, expires 2008/10/17.03:03
    in 16: volume CLIENTS-INCR-MF-000037, barcode 000015, 409627648 kb remaining, expires 2008/10/03.03:02
    in 17: volume CLIENTS-FULL-MF-000028, barcode 000016, 337067008 kb remaining, expires 2008/10/05.04:18
    in 18: volume CLIENTS-FULL-MF-000029, barcode 000017, 318909440 kb remaining, expires 2008/10/05.05:08
    in 19: volume CLIENTS-INCR-MF-000041, barcode 000018, 408406016 kb remaining, expires 2008/10/11.05:09
    in 20: unlabeled, barcode 000019
    in 21: volume CLIENTS-FULL-MF-000031, barcode 000020, 312597504 kb remaining, expires 2008/10/12.05:04
    in 22: volume CLIENTS-FULL-MF-000033, barcode 000021, 389140480 kb remaining, expires 2008/10/19.05:08
    in 23: volume CLIENTS-FULL-MF-000034, barcode 000022, 392922112 kb remaining, expires 2008/10/19.05:08
    in 24: volume CLIENTS-INCR-MF-000035, barcode 000023, 409815040 kb remaining, expires 2008/10/02.05:06
    in 25: volume CLIENTS-FULL-MF-000032, barcode 000024, 356518912 kb remaining, expires 2008/10/19.02:02
    in 26: volume CLIENTS-INCR-MF-000040, barcode 000025, 409699328 kb remaining, expires 2008/10/11.04:04
    in 27: volume CLIENTS-FULL-MF-000030, barcode 000026, 375496704 kb remaining, expires 2008/10/12.04:18
    in 28: volume CLIENTS-INCR-MF-000034, barcode 000027, 408218624 kb remaining, expired
    in 29: unlabeled, barcode 000028
    in 30: unlabeled, barcode 000029
    in 31: volume RMAN-ARCH-MF-000004, barcode 000056, content manages reuse
    in 32: unlabeled, barcode 000059
    in 33: volume RMAN-ARCH-MF-000005, barcode 000055, content manages reuse
    in 34: volume RMAN-FULL-MF-000007, barcode 000057, content manages reuse
    in 35: unlabeled, barcode 000058
    in 49: unlabeled, barcode CLNU00
    in 50: unlabeled, barcode CLNU01
    This shows the relevant volume. However, when I do an 'lsvol' by media family, I get:
    lsvol -f RMAN-FULL-MF
    VOID OOID Seq Volume ID Barcode Family Created Attributes
    166 166 1 RMAN-FULL-MF-000005 000005 RMAN-FULL-MF 07/06.03:20 never closes; content manages reuse
    167 167 1 RMAN-FULL-MF-000006 000007 RMAN-FULL-MF 07/06.03:23 never closes; content manages reuse
    324 324 1 RMAN-FULL-MF-000007 000057 RMAN-FULL-MF 08/31.02:27 never closes; content manages reuse
    288 288 1 RMAN-FULL-MF-000007 000057L3 RMAN-FULL-MF 08/31.02:27 never closes; content manages reuse
    The volume RMAN-FULL-MF-000007 appears twice! The long version of this command gives:
    lsvol -lf RMAN-FULL-MF
    Volume OID: 166
    Volume ID: RMAN-FULL-MF-000005
    Barcode: 000005
    Volume sequence: 1
    Media family: RMAN-FULL-MF
    Current location: SL500
    Label host: ldvbspa01
    Created: 2008/07/06.03:20
    Closes: never
    Expires: never; content manages reuse
    Space remaining: 336.8 GB
    Original OID: 166
    Volume OID: 167
    Volume ID: RMAN-FULL-MF-000006
    Barcode: 000007
    Volume sequence: 1
    Media family: RMAN-FULL-MF
    Current location: SL500
    Label host: ldvbspa01
    Created: 2008/07/06.03:23
    Closes: never
    Expires: never; content manages reuse
    Space remaining: 345.1 GB
    Original OID: 167
    Volume OID: 324
    Volume ID: RMAN-FULL-MF-000007
    Barcode: 000057
    Volume sequence: 1
    Media family: RMAN-FULL-MF
    Current location: SL500
    Label host: ldvbsm01
    Created: 2008/08/31.02:27
    Closes: never
    Expires: never; content manages reuse
    Original OID: 324
    Volume OID: 288
    Volume ID: RMAN-FULL-MF-000007
    Barcode: 000057L3
    Volume sequence: 1
    Media family: RMAN-FULL-MF
    Label host: ldvbsm01
    Created: 2008/08/31.02:27
    Closes: never
    Expires: never; content manages reuse
    Space remaining: 390.1 GB
    Original OID: 288
    I ran the 'lspiece' command to get information about the specific backup pieces in question and I get:
    lspiece -l -S 7ujpclm8_1_2
    Error: can't read location SL24(DELETED) - UUID not found
    Warning: can't obtain section and volume data for piece OID 2058 - UUID not found
    Backup piece OID: 2058
    Database: ukldmoms
    Database ID: 3307807331
    Content: full
    Copy number: 0
    Created: 2008/08/31.02:27
    Host: ldvbsm01
    Piece name: 7ujpclm8_1_2
    BSOID: 3378
    Volume ID: RMAN-FULL-MF-000007
    File: 1
    Sect: 1
    lspiece -l -S 7vjpcn5b_1_2
    Error: can't read location SL24(DELETED) - UUID not found
    Warning: can't obtain section and volume data for piece OID 2059 - UUID not found
    Backup piece OID: 2059
    Database: ukldmoms
    Database ID: 3307807331
    Content: full
    Copy number: 0
    Created: 2008/08/31.02:31
    Host: ldvbsm01
    Piece name: 7vjpcn5b_1_2
    BSOID: 3379
    Volume ID: RMAN-FULL-MF-000007
    File: 2
    Sect: 1
    This appears to indicate that OSB still thinks the volume is in the SL24, which has now been removed from the domain.
    Does anyone know what I can do to get OSB to recognise that the volume is now in the SL500? Do I need to run the 'obtar' command with the -G option to re-catalogue the tape?
    Ultimately I like to see some documentation on how to transfer tapes between libraries in the same domain, and also between domains, with specifc commands to run.
    Thanks.

    Hi,
    Not quite as straightforward as you suggest, but we have made progress.
    The volume has to have a rotation policy before the 'chvol' command will run, which seems logical. So I created a policy for movement of tapes between the SL24 and SL500, and created and ran the media movement job. However, I then tried to remove the rotation policy, but could not because it was associated with the volume just moved.
    I then tried a 'chvol -R "" RMAN-FULL-MF-000007' which returned an error:
    "Error: can't relocate volume RMAN-FULL-MF-000007, volume has no rotation policy"
    Which was the effect I wanted really - the removal of the association of the volume with the policy. I was then able to remove the rotation policy.
    Also, 'lsvol -f RMAN-FULL-MF' still shows this volume listed twice.
    The upshot of all this is that OSB now appears to show the volume in the right location and our DBA was able to delete the obsolete backups via RMAN.

  • Moving photos between libraries

    I take lots of photos, and, with previous incarnations of iPhoto, this was a bit of a problem. To get around it, I created multiple users on my computer, each with a themed library (family, travel, hobbies, etc.)
    With iPhoto 6 I can have much larger libraries, and multiple libraries for a single user. I have migrated my libraries (via an external hard drive) back to my main user, and open them as needed without a problem.
    Is there any way to move photos (original and modified, as a package) from one library to another? Or to merge libraries?
    I can export and then import from one to another, but I lose the original. Or I can burn to a disc, and then import, but this is time consuming and wasteful of discs.
    Any other suggestions?

    luba:
    Yes there is. The paid version of iPhoto Library Manager will let you move photos between libraries along with the originals, keywords, etc. It's about the only way to do it.
    With iPhoto's new alias mode there is a way to have several users use the same set of source files but each have their own edits, etc. You would place the source files in the Shared library and everyone use them as their source files. FWIW I've created some Tutorials to assist users covert from a conventional library to an alias based system.

  • Difference between SAP-CRM 2007 UI and previous version UI.

    hi,
    anyone knows the differences difference between SAP-CRM 2007 UI and previous version UI.
    anykind of links or files are helpful.
    regards.
    raman.

    Hi,
    actually quite a late response and I think all the rather technically focuses comments have already been given, incl. the link to a really good slide deck, that explains all the technical architecture details on what exactly we did.
    From an end user perspective some other statements on what we did:
    (1) From an information architecture and visualization perspective we acted based on feedback from our customers in the last years, which led to some restructuring of the screen, e.g. moving the navigation bar from the top area of the screen (horizontal) to the left hand side --> sounds simple but users tend to have problem seeing thing at the top of the screen. We also decided to arrange the information for e.g. an account or an opportunity not in a tab oriented format. Again usability tests in CRM had shown that users often find it hard to see and understand that tabs contain additional information. We now show the details in assignment blocks below the header information in a scrollable format. Vertical scrolling is a behavior of a screen that most users know from their internet experience. Those are just two exampels of what we did in this area
    (2) We also have put a large focus on well known web behaviors, like drag & drop and personalization in general, knowing that on the one hand side, no matter what standard UI we deliver, users tend to adapt it exactly based on their needs and wishes. So you will find really easy to understand personalization options everywhere in the new CRM Web Client UI. To achieve this we used lots of web 2.0 techologies that enable especially these easy interactive capabilitites.
    (3) Finally, and this relates directly to the arguments mentioned in (2) we focused as well on really easy UI configuration. Again, in every customer project user interface changes are made, to adapt the SAP default to the customers needs. here we invested a lot to make the 60-80% most common UI changes done in projects as easy as possible, that even non-technical people can generally do it (like Power users).
    Hope this clarifies some arguments what from the users point of view has been done and what the advantages are.
    When you follow the same link as mentioned by Nadine above, you can also find a presentation UI Concept, which explains all the details rather from a users perspective.
    Best regards and enjoy the new UI ..and every feedback is very much welcome, only with your feedback we can improve the solution even more.
    Ingo

  • Exporting masters and versions

    I am trying to export photos from Aperture to an external drive just as jpegs and raws, not as library. So first I exported versions, now I am exporting masters and trying to put them to the same folders (to keep all versions of the same photo together) and it turns out that Aperture gave the same names to masters and versions which makes it impossible to save them to the same folder. Any advice here?...

    JaneTsv wrote:
    By the way - Aperture creates thousand os versions for the same photo. Is there a way to delete duplicates after exporting (it gives them different names)?
    ?!? No it doesn't. Where are these thousands of Versions coming from? Are they from 'create new versions when making adjustments' which you can turn off? Are new Versions appearing when you export? This statement doesn't make sense.
    JaneTsv wrote:
    I see... Looks like apple did their best to keep people from moving from Aperture to other programs...
    Step 1. Select all Versions in the Library.
    Step 2. Export Versions using a Project Name subfolder format.
    Step 3. Export Masters using a Project Name subfolder format.
    There is no step 4. That's all there is to it.
    You end up with a Finder folder for each Project, containing both the Master files, plus Versions in whatever file format you chose.
    If you're having huge problems with lots of duplicate Masters from Aperture exporting a copy for each Version, it's still only a three step process:
    Step 1. Select all Versions in the Library.
    Step 2. File>Relocate Masters... using the Project Name subfolder format. This will move all the Masters out of the Library package and into a regular folder structure.
    Step 3. Export Versions using a Project Name subfolder format into the same top-level folder.
    Again, no step 4, you're done.
    Ian

  • Difference between ECC 6.0 and earlier versions

    Hi,
    one of the difference between ECC 6.0 and earlier versions is that instead 'WS_UPLOAD'  and 'WS_DOWNLOAD' in ECC we should use 'GUI_UPLOAD' and 'GUI_DOWNLOAD'  respectively.
    (of course SPDD and SPRO tcodes is known by everone i suppose)
    Similarly can u all put down some differences here, atleast one entry by each, I think we can make a good docu. I have searched the net for the differences but could not get much, so by each of us contributing one each, it would become good docu..for all of us.
    Thanx in advance

    Unicode Errors Encountered and their Solutions
    E1. In u201CTEXT MODEu201D the u201CENCODINGu201D addition must be specified.
         Error:
         OPEN DATASET FILE FOR OUTPUT IN TEXT MODE.
         Solution:
         OPEN DATASET FILE FOR OUTPUT IN LEGACY TEXT MODE.
    E2. In Unicode, DESCRIBE DISTANCE can only be used with the IN BYTE MODE  or  IN
          CHARACTER MODE  addition.
         Error:
         DESCRIBE DISTANCE  BETWEEN T_KOMK AND T_KOMK-HIEBO01 INTO BPOS.
         Solution:
    DESCRIBE DISTANCE  BETWEEN T_KOMK AND T_KOMK-HIENR01 INTO BPOS
    IN CHARACTER MODE.
    E3. u201CUSR02-UFLAGu201D must be a byte-type field (Typ X or XSTRING )
         Error:
         IF USR02-UFLAG O YULOCK.
         Solution:  Since the data type of USR02-UFLAG is type INT and is compared with data type
                    X u2013 Hence the error. So we  define a new variable ZULOCK and assign the
                    value of USR02-UFLAG to ZULOCK.
                  New variable             
                  DATA: ZULOCK(1) TYPE X.   "APBRP00
                  Assign value               
                                ZULOCK = USR02-UFLAG.
            Compare -
                   IF ZULOCK = YULOCK.   u201Creplace IF USR02-UFLAG O YULOCK.
    E4.  HT cannot be converted to a Character type field
    Error :
    WRITE ht TO t_data+10(2).
    Solution : Since the data type of ht is a type u2018Xu2019 and the data is been transfer to
             t_data which has a data type u2018Cu2019. value of one data type cannot be copy to
             another data type where one of them is type string .Hence the error occur,
             so the data type of ht is been change to Type u2018Cu2019
         OR
               A Tab ( value 09 ) is introduced as part of the row. The value 09 is not converted in Unicode environment. Instead we need to use class
         Error:
              DATA: BEGIN OF ht,
                   x(1) TYPE x VALUE '09',
              END OF ht.
         Solution:
                  Define Class after the Tables definition.
                       CLASS cl_abap_char_utilities DEFINITION LOAD.
                  Data Defination :  Comment internal table HT and define a variable HT type C.
           *   Insert + APRIA00 05/02/2007 Unicode project
           *   DATA: BEGIN OF ht,
         *         x(1) TYPE x VALUE '09'
           *   END OF ht.
         *   Insert - APRIA00 05/02/2007 Unicode project
           DATA HT type C.
           Before using HT assign Horizontal tab.
                     Ht = CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.  
    E5.  In Unicode programs the u201C#u201D cannot appear in names, as it is does here in the name    u201C#LINESu201D
         Error :
         #LINES                 TYPE I,
         Solution : Since the # is used in the start of name, it is not allowed. We need to
                  remove it. 
         Solution for the above
         V_LINES                 TYPE I,
    E6. In u201CTEXT MODEu201D the u201CENCODINGu201D addition must be specified as well as the addition was required FOR OUTPUT,FOR INPUT, FOR APPENDING OR FOR UPDATE was expected.
         Error:
         OPEN DATASET PATH_NAME IN TEXT MODE.
         Solution:
         Download =     OPEN DATASET PATH_NAME FOR OUTPUT IN LEGACY TEXT MODE.
         Upload        =  OPEN DATASET AUSZUG-FILE IN TEXT MODE FOR INPUT ENCODING DEFAULT.
    E7. u201CTABu201D must be a character-type data object( data type C,N, D, T or String). Field string)    
         Error:
                data: begin of tab,                   "Excel Parameter Split at TAB
            t type x value '09',          "Tabulator
           end of tab.
                concatenate 'Material' 'Package Status'
                    into z_download-line separated by tab.
                ( In the above command  the two field are to be separated with a horizontal Tab. The earlier      way of assigning the tab value u201809u2019 will not work in Unicode environment.
         Solution:
         Define a  class just after the Table defination.
              CLASS cl_abap_char_utilities DEFINITION LOAD.
                Define  variable Tab as shown below :
              Data : TAB           TYPE C.
         Before the concatenate statement assign the value of Tab using pre-defined attributes.
              TAB = CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
    E8. Upload/Ws_Upload and Download/Ws_Download are obsolete, since they are not Unicode-
          enabled; use the class cl_gui_frontend_services     
         Error-1:  Function WS_DOWNLOAD is obsolete in Unicode environment.
                call function 'WS_DOWNLOAD'
                     exporting
                          filename = zfilename
                     tables
                          data_tab = z_download.
         Solutions-1: Instead of WS_DOWNLOAD use  GUI_DOWNLOAD.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
    *   BIN_FILESIZE                  =
        FILENAME                      = zfilename
      TABLES
        DATA_TAB                      = z_download.
    E9.  The "/" character is reserved for identification of namespaces. It must be entered twice.
            The name  of a namespace must be at least 3 characters long.
         Error :      
                     U/N(3)        TYPE C,  "U/N    --> ERSETZT DURCH SPACE
         Solution :
         * Special character can not be used to define a data variable
         *      U/N(3)        TYPE C,  "U/N    --> ERSETZT DURCH SPACE
                  U_N(3)        TYPE C,  "U/N    --> ERSETZT DURCH SPACE
         * Insert - APSUS02 07/02/2007 Unicode Project
    E10.  "LP_TAB" and "CS_TAB" are not mutually convertible. In Unicode programs,
             "LP_TAB" must have the same structure layout as "CS_TAB", independent of the length
             of a Unicode character.
         Error : This error is encountered when data from one internal table is copied to another
                             internal table which different structure. In this case its LP_TAB & CS_TAB.
                     LP_TAB[] = CS_TAB[].
         Solution :
              * Replace + APSUS02 07/02/2007  Unicode Project
    *   LP_TAB[] = CS_TAB[].
                  move-corresponding CS_TAB to LP_TAB.
              * Replace + APSUS02 07/02/2007  Unicode Project
    E11.  Could not specify the access range automatically. This means that you need a RANGE
              addition.          
         Error :  Range need to be specified as an addition to the command.
                DO 4 TIMES VARYING HELP_CHAR FROM ABCD(1) NEXT ABCD+1(1).
               Solution : 
                DO 4 TIMES VARYING HELP_CHAR FROM ABCD(1) NEXT ABCD+1(1)
              * Insert + APSUS02 07/02/2007  Unicode Project.
                                                          RANGE ABCD+0(4).
    * Insert - APSUS02 07/02/2007  Unicode Project.
    E12 .  Processing Terminated Error code: Error in opening /
                                              Path not found when downloading to Unix directory.
         Error : PARAMETER: outfile(92) DEFAULT
                  '/CP/interface/NPP/data/MX/cbslaprcpts'
                        LOWER CASE,
                   kmxmstrd AS CHECKBOX.
                This error is encountered when the path is missing. The above path is related to CCP.
         Solution:  For testing purpose comment the original path and replace it with
                                     /CP/interface/CCD/Unicode_test/ 
    E13.    Upload/Ws_Upload and Download/Ws_Download are obsolete, since they are not                                                                       Unicode- enabled; use the class cl_gui_frontend_services
         Error: Function WS_UPLOAD is obsolete in Unicode environment. (During UCCHECK)
                   Call function 'WS_UPLOAD'
           Exporting
                Filename                = zfilename
                Filetype                = u2018DATu2019
           Tables
                data_tab                = z_upload
           Exceptions
                Conversion_error        = 1
                file_open_error         = 2
                file_read_error         = 3
                invalid_table_width     = 4
                invalid_type            = 5
                no_batch                = 6
                unknown_error           = 7
                gui_refuse_filetransfer = 8
                others                  = 9.
         Solution: Instead of WS_UPLOAD use TEXT_CONVERT_XLS_TO_SAP. Do not use temporary file put the file name as it is.
    1) First define a type pool and a variable of type truxs_t_text_data.
    TYPE-POOLS: truxs.
    DATA: it_raw TYPE truxs_t_text_data.
         2) Use this it_raw in the function module in parameter i_tab_raw_data. Put file name and the internal table in the function module.
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
    *     I_FIELD_SEPERATOR        =
    *      i_line_header            =  ' '
          i_tab_raw_data           =  it_raw       " WORK TABLE
          i_filename               =  zfilename
        TABLES
          i_tab_converted_data     = z_upload[]    "ACTUAL DATA
       EXCEPTIONS
          conversion_failed        = 1
          OTHERS                   = 2.
         Comment u201Ci_line headeru201D. It takes the first/ header line of the file which is to be uploaded.
    Put  square brackets after internal table as shown above.
    E14.    CURSORHOLD may not be converted into a number.
         Error:  GET CURSOR LINE CURSORHOLD VALUE CURSOR_HOLD.
         Solution: In the declaration part of CURSORHOLD, one field is of u2018Pu2019 type and one field is of u2018Iu2019 type, which is not allowed in Unicode environment.So change the the type of it to NUMC.  

Maybe you are looking for

  • Receiver File Adapter Module processor issue

    Hello all, I have deployed (using SDM) a specific module for one of my file communication channel. In MDT, I have the following error : Exceptions survenues pour Adapter Framework : Object not found in lookup of Module0001 La diffusion du message ver

  • Transfer iTunes to new Mac from Time Machine, then sync with iPhone

    Hi everyone, I just sold my old Macbook (everything was backed up with Time Machine) and bought a new Macbook Pro. Now I want to copy the iTunes library back. The problem is, even if I copy all the music, video, apps, iTunes U... from Music/iTunes/iT

  • Triggering of Workflow for park documents based on Document type.

    Hi, I have activated workflow for park documents but it is triggering for all document types. Client dont want workflow for Customer park documents. I assigned SA document only in "release approval path" but it is triggering for all document types. P

  • EM DB Control, how to install after DB creation

    Hi all, I installed Oracle Database 10g R2 (software only) on Win XP machine. Then I created a database using DBCA without EM Database control. How can I install the EM Database control now? Thanks in advance.

  • ECATT problem with NRIV table

    Hi, We have to do an ecatt sript to create a new range number. This range number is created by a BC set that is working fine. In the ecatt script, we call the BC set with the BCSET command, and maped it with some parameters. When we test the script,