General procedure on copying folder from PCD

Hello All,
Whats the correct method for copying folder, iviews etc.
I have just imported the latest version of ESS and MSS.  And am going to copy the folder using a delta link.
Do I then have to change the ID of the object and the object prefix?
If this is the case does it have to be done for all folder, iviews, pages etc?  Or can I just leave them as the same name as the version i copied it from?
Thanks,
Nick.

Hi Nick,
I am sorry it took so long. I did a little research and apparently there really is no official recommendation right now.
The settings for homepage customizing in the backend are only supposed to be examples / templates, so I guess you could say that the recommendation is still to copy the business packages in the portal via content mirroring to your namespace. The problem with that is -- like you said -- that you have to adjust all the settings in the backend for this.
In my opinion the best way right now is to leave the PCD structure as it is and use the "examples" from the backend. Only if you intend to create your very own structure would it be reasonable to use the content mirroring and adjust all the links -- but this is only my opinion.
Regards,
Holger.

Similar Messages

  • Copy folder from flashdrive

    How do I copy a folder from a flashdrive using Windows 7?

    Several ways but the easiest - open the USB flash drive in Computer and then find the folder that is desired.  Right click on the folder and select "copy" from the popup menu.  Right click wherever you wish to drop the folder and click "paste".
    {---------- Please click the "Thumbs Up" to say thanks for helping.
    Please click "Accept As Solution" if my help has solved your problem. ----------}
    This is a user supported forum. I am a volunteer and I do not work for HP.

  • Copy Folder from vi.lib from 2012 to 2013

    Hi!
    I'm trying to transition to LabVIEW 2013 and install a set of drivers that only support LabVIEW 2012.  Still, I'd like to see if I can get them working in LabVIEW 2013.  The drivers are the ULx drivers from Measurement Computing.  The installer will only install them in my LabVIEW 2012 vi.lib folder.
    So the simple approach of just copying the ULx folder from LabVIEW 2012\vi.lib\ to LabVIEW2013\vi.lib\.  This didn't properly setup the Functions palette and the polymorphic VIs that are included in the driver set are all broken.
    Any tips for doing this?  Thanks!
    -Nickerbocker

    It may be looking for the .mnu file.  Make sure it is in the right place in the 2013 folders.  Reload LabVIEW.
    If you want to load the pallette manually you can do the following.
    1.  In LabVIEW, go to Tools>>Advanced>>Edit Palette Set...
    2.  The controls palette and functions palette will both be displayed in an editable mode.  Navigate to the location where you expect the palette to be, right click and select Insert>>Subpalette...
    3.  Select Link to an existing palette file (.mnu).  Select the .mnu file for that palette and click ok.  That should do it.
    You also have option to select Insert>>VI(s)... if you have trouble locating the .mnu file, but if you do it this way you won't get the same palette look.
    www.movimed.com - Custom Imaging Solutions

  • How to determin the pricing procedure in copy control from invoice to so

    Hi,
    I have a request to create a sales order reference to a invoice. But in SPRO pricing procedure determination,i config different pricing procedure. 
    e.g. invoice ---procedure A
           sales order-----procedure B
    when i create the sales order , the procedure is A which is copied from invoice ,but i hope the procedure is B.
    how should i config the copy control. I have tried the B and C in pricing type of copy control.
    Thanks

    HI
    Try to maintain Different Document pricing procedure in Sale Document type and Billing type
    and also maintain settings in OVKK and test the cycle
    check and revert
    Regards,
    Prasanna

  • Copy folder from jar into temp directory

    There are some files inside the folder folder kept in the jar file, which I am copying one by one to temp directory as shown in my below code. Could someone please tell me how do I use a loop to copy all the files from the folder folder to temp directory
    String path = System.getProperty("java.io.tmpdir");
    File dir = new File(path+"\\folder"); 
    dir.mkdirs();
    InputStream is1=Main.class.getClass().getResourceAsStream("/input/folder/file1.txt");
    try
         File.createTempFile("file1", ".txt",dir.getCanonicalFile());       
    catch (IOException e)
         e.printStackTrace();
    File dstfile1=new File(dir,"\\file1.txt");
    dstfile1.deleteOnExit();
    FileOutputStream fos1 = new FileOutputStream(dstfile1);
    int b1;
    while((b1 = is1.read()) != -1)
         fos1.write(b1);
    fos1.close(); 
    InputStream is2=Main.class.getClass().getResourceAsStream("/input/folder/file2.txt");
    try
         File.createTempFile("file2", ".txt",dir.getCanonicalFile());       
    catch (IOException e)
         e.printStackTrace();
    File dstfile2=new File(dir,"\\file2.txt");
    dstfile1.deleteOnExit();
    FileOutputStream fos2 = new FileOutputStream(dstfile2);
    int b2;
    while((b2 = is2.read()) != -1)
         fos2.write(b2);
    fos2.close();

    Yes there is! Use ZipFile!!!
          * Copies an entire folder out of a jar to a physical location. 
            private static void copyJarFolder(String jarName, String folderName) {
              try {
                   ZipFile z = new ZipFile(jarName);
                   Enumeration entries = z.entries();
                   while (entries.hasMoreElements()) {
                        ZipEntry entry = (ZipEntry)entries.nextElement();
                        if (entry.getName().contains(folderName)) {
                             File f = new File(entry.getName());
                             if (entry.isDirectory()) {
                                  f.mkdir();
                             else if (!f.exists()) {
                                  if (copyFromJar(entry.getName(), entry.getName())) {
                                       System.out.println("Copied: " + entry.getName());
              catch (IOException e) {
                   e.printStackTrace();
          * Copies a file out of the jar to a physical location. 
          *    Doesn't need to be private, uses a resource stream, so may have
          *    security errors if ran from webstart application
         public static boolean copyFromJar(String sResource, File fDest) {
              if (sResource == null || fDest == null) return false;
              InputStream sIn = null;
              OutputStream sOut = null;
              File sFile = null;
              try {
                   fDest.getParentFile().mkdirs();
                   sFile = new File(sResource);
              catch(Exception e) {}
              try {
                   int nLen = 0;
                   sIn = /***YOURCLASSNAME***/.class.getResourceAsStream(sResource);
                   if (sIn == null)
                        throw new IOException("Error copying from jar")  +
                             "(" + sResource + " to " + fDest.getPath() + ")");
                   sOut = new FileOutputStream(fDest);
                   byte[] bBuffer = new byte[1024];
                   while ((nLen = sIn.read(bBuffer)) > 0)
                        sOut.write(bBuffer, 0, nLen);
                   sOut.flush();
              catch(IOException ex) {
                   ex.printStackTrace();
              finally {
                   try {
                        if (sIn != null)
                             sIn.close();
                        if (sOut != null)
                             sOut.close();
                   catch (IOException eError) {
                        eError.printStackTrace();
              return fDest.exists();
         }-Tres
    Edited by: FBL on Oct 5, 2007 6:59 AM

  • Copy folder from server to remote

    Im trying to run an rsync command which copies a backup of a server services folder using a remote computer. The backup folder of services resides on the main system disk.
    AR-ADL-MBP1-John:~ john$ sudo rsync -va -e --delete ssh [email protected]:/Volumes/Server\ HD_mail/Data\ Store\ Backups /Volumes/ARINA\ temp
    errors out with
    building file list ... rsync: link_stat "/Users/john/ssh" failed: No such file or directory (2)
    rsync: link_stat "/Users/john/[email protected]/Volumes/Server HD_mail/Data Store Backups" failed: No such file or directory (2)
    I've also tried to open the server in finder and run the rsync without ssh. This works for non system disks but get permissions errors on this system disk
    rsync: readdir("/Volumes/Server HD_mail/Data Store Backups/M-W-F/Data_Stores/mail/259F2CAC-D0EB-4348-B85F-1257F8242E87"): Permission denied (13)
    thanks

    I ran
    AR-ADL-MBP1-John:~ john$ rsync -avz -e ssh [email protected]:/Volumes/Server\ HD_mail/Data\ Store\ Backups /Volumes/ARINA\ temp
    Password:
    to get
    receiving file list ... rsync: link_stat "/Volumes/Server" failed: No such file or directory (2)
    rsync: link_stat "/private/var/root/HD_mail/Data" failed: No such file or directory (2)
    rsync: link_stat "/private/var/root/Store" failed: No such file or directory (2)
    rsync: link_stat "/private/var/root/Backups" failed: No such file or directory (2)
    Also I need the ownership to remain the same as I wish the resultant folder to be able to transfer the services data to a new server. (yet to be built). Having the same users and groups on the local machine is a problems as ther are many mail and system users in the services data.
    I wasnt sure how to enable root in ssh but added 'all services managers' in the sharing pane ( root wasnt an option)
    Thanks for the help

  • Copying folders from external hd to mac pro desktop very slow

    Hi everyone,
    I have been experience very slow download times when copying folder from my Lacie 30GB External HD to the desktop of my Mac Pro. For instances, it took 19 minutes to down load a folder with 300MB of contents to my desktop. The Lacie is "Mac OS Extended (Journaled)" I ran Disk Utility on it and "the volume appears to be ok".
    Any ideas on what is going down?
    Thanks...Stan

    I would troubleshoot or dump the LaCie in favor of something else.
    LaCie have been trouble enough in the past with FW ports, power adapters, shorting of cables, running very slow when connected off PCIe SATA using USB/eSATA cases.
    But you never say if this is a FW800 case, or what interface, that is so slow. Resetting FW ports is a troubleshooting trick designed just for LaCie cases. Along with swapping cables and power adapter.
    I would give all your drives a shot of Alsoft Disk Warrior to insure that the directory and file system are okay. And look at the hardware test in DW output for spare blocks vanishing on the drive.
    Using SATA drive, case, and controller of course should be fast and done in seconds, not minutes.
    http://www.macsales.com/firewire

  • I have a new pc. If I copy the Itunes folder from my old pc onto my new one in the music folder will I be able to sync just as if it were the old one? This is from a Widows Vista machine to Windows 7.

    If I copy the Itunes folder from my old pc onto my new one in the music folder will I be able to sync just as if it were the old one? This is from a Widows Vista machine to Windows 7.

    I suspect design rather than a bug, it's too useful. The behaviour seems to have been consistent for quite a long time on both Windows and Mac machines...
    Here are the typical layouts for the iTunes folders:
    In the layout above right, with the media folder (everything in the red box) inside the library folder, the library will be portable. A portable library can be moved from one path to another, or even between Windows & Mac computers, without breaking the links between the library and the media, and being self-contained is much easier to backup (You do backup, don't you?). Anything that isn't stored inside the media folder must stay put or be restored to precisely the same path on a new machine or iTunes won't know where to find it. Within the media folder the relative paths from the library to the media remain unchanged and iTunes can cope even when the absolute paths are updated.
    Should your library not be in the usual layout I've written some general posts on how to make a split library portable or I can give specific instructions on request.
    tt2

  • I'm trying to copy music from my PC to itunes. I open itunes, go to 'file', go to 'add folder to library', select the folder and nothing happens. What am I doing wrong?

    I'm trying to copy music from my PC to itunes. I open itunes, go to 'file', go to 'add folder to library', select the folder and nothing happens. What am I doing wrong?

    Hello there, gleab.
    The following Knowledge Base article reviews the ways to import content into iTunes:
    Adding music and other content to iTunes
    http://support.apple.com/kb/ht1473
    Also keep in mind which formats can be added:
    You can add audio files that are in AAC, MP3, WAV, AIFF, Apple Lossless, or Audible.com (.aa) format. If you have unprotected WMA content, iTunes for Windows can convert these files to one of these formats.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Why when  i copy files from downloads to a new folder,then i delete them from the downloads i will loose the file?

    tell me please when i copy files from downloads  it will be a new file with new capacity? i mean if a file is 2 mb, when i copy it it will be new 2mb ?

    If you copy it to another folder, e.g., Documents, and you can see it in the Downloads folder then you now have two copies of the file. If you delete one copy, the other stays intact. If you keep both, there is no harm, although the amount of disk space used is twice as big as when you only keep one copy.

  • Windows 2008 : How to Restrict Users to Copy file from Shared Folder

    Hello All,
    I need to Restrict Users to Copy file from Shared Folder. Please let me know is there any method to achieve this requirement.

    If user have Read permission, they can copy it. So actually you cannot restrict user from copy your files if they could read/edit.
    Some programs could help restrict users from edit/modify/copy the content of their files such as Office files, PDF files etc as Oscar said above.
    TechNet Subscriber Support in forum |If you have any feedback on our support, please contact [email protected]

  • OSB : How can we copy  actions from one project folder to other projects?

    How can we copy actions from one project folder to other projects in OSB?
    For eg:
    I have a service call out action in Project1/proxySer1
    I want to copy this to Project2/proxySer2.
    Espicially, in our case error handling callout is common to all of our projects and we should be able to copy from one to another.
    Edited by: user10367892 on Aug 20, 2009 12:28 PM

    Thank you for the reply.
    It was my fault. I was on two different servers, while i was doing this and so didn't work. But copy /past action works as you suggested.
    Can I select multiple actions from one stage and paste to different proxy service? I have too many options to copy/paste and hence I have this question.
    Is there any other way of copying all selected actions in one stage to another, but not the complete stage itselft?

  • PSE12 Organizer - can you copy photo from one folder to another and import copy into Organizer and still have original in other folder

    I have been using folders to organize all my pictures and I will copy photos from folder to folder, often having them in 2 or 3 folders based on use.  I tried to copy a photo in Organizer PSE12 from one folder to another and you can only move it, that means I can only have one copy of the photo.  That is fine if I am using tags and want to search for it, but I want to have mult copies in mult folders. Organizer will recognize that it is there but it won't import it into the new folder. Until I move it, it stays in the original folder.  I can drag it out of Organizer and drop (copy) it into a new folder fine, but it won't show in organizer in the new folder.  Is there any way to copy and have multiple copies show up in multiple folders?

    Hi,
    The organizer works on the principle of not having multiple copies of the same photo.
    If you have multiple copies spread in different folders, then making changes to one doesn't affect the others. The use of tags and albums are there to give different views of your photos.
    You can't have multiple copies with exactly the same name even if they are in different folders. You could select a photo and duplicate it (File -> Duplicate) and then move the copy into a different folder but the name will be different.
    If you want different folders for a specific reason, it is possible to use albums to collect the group of photos and then export them to a new folder outside of the organizer. You can also rename on export which is useful if you want to arrange the photos in a specific order.
    Hope that helps a bit.
    Brian

  • Can i copy songs from my ipod to a folder in my pc?

    I want to copy songs from my ipod to a folder in my pc but when i attempt to copy, the paste is not active

    See this wonderful guide from another forum member turingtest2 on how to extract content from your iPod back onto your PC/Mac and into iTunes.
    Recovering your iTunes library from your iPod or iOS device
    B-rock

  • I imported my itunes folder from an external drive on a freshly wiped computer. My playlists and ratings did not copy over. how can I fix this?

    i imported my itunes library from a backup drive after i reinstalled windows on my machineby copying the itunes folder from the backup to the my music folder on my c drive. when i opened itunes and imported the library the playlists and ratings were missing. Is this normal itunes behavior? hoow can i fix this?

    Did your backup include the iTunes Library.itl file that is the core of an iTunes Library, and if so have you restored it either to the default library location for your profile, or to another folder and then redirected iTunes to look to that folder for a library? Normally all you need do is backup the entire iTunes folder from the old profile's Music folder, then restore the iTunes folder into the new profile's Music folder.
    tt2

Maybe you are looking for

  • Why Do I Need a Credit Card to Show Artwork from CD's That I Own Legally?

    In Windows Media Player the album artwork shows up right away, but with itunes they tell me I need and account, and that account needs a credit card, why? I do not plan to buy anything from apple as I merely want to use what I own legally, I want the

  • Can log into Yosemite server (4.0) VPN service with a Mavericks client, but not Yosemite client

    Sever Info: Yosemite Server 4.0 running on a late 2009 Mac Mini with 8 GB RAM with vpnd service enabled The server was upgraded to Yosemite - not clean install - this may not matter (see below) Airport extreme router with standard VPN UDP ports for L

  • How can I use a manually created help file

    Is it possible to use a manually crated help file *.hlp (microsoft help file) in a oracle forms application. I want to open the help file from in my help menu. How can I do that?? Joury

  • Function call in SAP GUI with errors

    Dear All,              When i am calling FM of Comports using OLE Integration i got " Function call in SAP GUI with errors" error now my front end version is 6.40. how to solved this problem. In my Function Module i am creating object like this CREAT

  • Trial/download Oracle OSM 6.2 available anywhere?

    I've searched both OTN and the web for anything downloadable (either OSM 6.2 or Metasolv M6, whom appear to be the same thing). Nothing. Does anyone know where I should turn to, to obtain anything more tangible than press releases? Rgds, Johan Stigaa