Folder Structure & Object Reuseablity

Hi Everyone,
I am looking for some help with Object reuseablity in BPA modeling tool.
As we know the Application system, Organisational unit, Position should have only one instance in Database and all the Processes models should use occurence copy of them while modeling the Business Processes.
I have made two Folders at same level in Hierarchy
1. Library folders (Containds my reuseable objects like Application system, Organisational unti etc)
2. Processes Folder (contains the business processes)
since last 3 months we have had 3 releases on Processe side so i created 3 folders in Process Folder
1. R-1
2. R-2
3. R-3
in every release we take variant copy of business Processes which has defination copy of non reuseable objects like functions, events, KPI, etc... and occurence copy on reuseable objects like application system, organisational unit etc...
Now the problem is suppose after 10 releases some of our application systems get upgraded and theres some change in Organisational units like number of members etc. If we make this changes to the objects in library we will have changes reflecting every where, from processes of release R-1 to R-10... which we dont want, we want to have changes reflecting only from release R-10.
If, i take variant of library objects along with every release of business process release, the modelers get confuse on exactly which reuseable object he should use... coz with every variant folder of library objects we will have that many defination copies on reuseable objects...
I a trying hard to find a way out, so that i have my processes warehouse intact without confusing my modelers coz of changes in reuseable objects
I hope i will surely get an solution here...
Thanks in Advance
Gaurav Sharma. :-)
Edited by: user7388810 on Apr 17, 2009 6:08 PM
Edited by: GauravSharma on Apr 24, 2009 4:33 PM

It sounds like iPhoto is not the DAM (digital asset management) application for you. You might want to look into other DAMs that can do what you want. The one that comes to mind is Media Expression which I use as my primary app. I then use iPhoto for special projects like books, calendars, etc.
You can find out about the various DAM applications at The DAM Forum. EM gives you total control over the folder structure, lets you rename folder/image files after importing, write metadata to the files and lots more.
OT

Similar Messages

  • How to get the folder structure using Sevlets

    Hi....
    I have to retrieve the directory structure on the server and display it
    to the user. Once the user selects a folder from the tree, the files
    have to load on a different pane. Of course the folder structure could
    change on the server if any folder or file is added. In short, i have
    to get something like the windows file explorer.Also I need to get the path to a particular folder in the server. Is it possible to do
    this with using servlets. If we can do this using
    servlets, how can i retrieve the folder structure and send it to the
    user interface?
    Can somebody help me to do this please.....
    Thanks!

    I need to get the path to a particular folder in the
    server. Is it possible to do
    this with using servlets.You can use:
    String thePath = getServletContext().getRealPath("/WEB-INF/someDir/somefile");
    If we can do this using
    servlets, how can i retrieve the folder structure and
    send it to the
    user interface?You could try using a File object and its method listFiles() or some of its other methods.

  • Is it possible to create a folder structure while using archivelink?

    We work with Archivelink and use SAPERION software/server for storing documents. We created a business object Advertisement. In a custom made application, users can open the GOS on Advertisement and now they have the possibility to select an extension out of a big list of document types like AVI, BMP etc. They doubleclick on a type and then they drag and drop a file from their desktop into the screen and then the file will be saved on saperion server.
    As the lists of document classes linked to the business object is quit big (about 15), we would like to add a folder structure. Now it looks like
    Advertisement
    BMP
    TXT
    AVI
    etc.
    and we would like to have
    Advertisement
    Folder Texts
    TXT
    PDF
    Folder Pictures
    JPG
    TIF
    Is this possible and if yes, how can this be achieved?

    Hi Angelique,
    sorry to tell you, but this is the wrong forum to ask application questions...
    KR Lars

  • I am new to ODI and would like to know the folder structure

    I am new to ODI and would like to know the folder structure
    I am assume it is as follows
    Project -
    -- Models
    ---- and everything else under models

    Almost right, but data models are not within Projects, they may be used across Projects. The objects (Interfaces, Packages and Procedures, plus variables, sequences, user functions) are created within the projects. Also Knowledge Modules are loaded into Projects.

  • What is the best way to explore a hierarchical folder structure?

    Hallo,
    I need to access and navigate a hierarchical folder structure hosted in a MS SQL Server database. In particular there is a root folder containing several folders. Each child-folder contains further nested folders or documents.
    For each item I need to retrieve the folder's (name, path, etc) and the documents (title, author, etc.) details that are retrievable from the DB fields. Afterwards I will use these data to create a semantic web ontology using Jena API.
    My question was about which is the best way to proceed.
    A collegue of mine suggested to use the "WITH" command of SQL Server to create and use a link list to navigate easily the structure, executing just one query rather than several (one for each level of the nested loops). However in this way the solution will work only with the SMQ Server database, while my goal is to achieve a more general solution.
    May someone help me?
    Thank you in advance,
    Francesco

    My goal is to create a documents library ontology achieving, from each element of the hierarchy (folder or document), some data (title, parent, etc.) and use them to "label" the ontology resources.
    I will use a little of both approches in the following way:
    1) I make just ONE query on folder table to get, from each folder, its path (eg. root/fold1/fold2/doc1.pdf), its ID and ParentID and ONE on the Documents table to get the containerID, title, etc.
    2) I create as many Folder objects as the retrieved records and an HashTable, where the KEY = Folder.ParentID value and the VALUE = Vector<Folder>. I add then each object to the Vector relative to the same ParentID. In this way I have an Vector containing all the folders child of the same parent folder and I do the same for an HashTable keeping the documents contained in a specific folder.
    3)I extract from the HashTable the root folder (whose ParentID is always "0" and whose ID is "1") than it is invoked the method appendChild() (see code)
         public static void appendChild(int ID, Resource RES)
              Vector<Folder> currFold = table.get(ID);
              for(int i=0; i<currFold.size(); i++)
                   //Extract the child and crate the relative resource
                   if(table.containsKey(currFold.getID()))
                        appendChild(currFold[i].getID(), Resource newRES);
    In this way I go in depth in the hirarchical structure using a "left most" procedure. I made a test and the output is correct. However, such an approch must be done for about 4 level depth folders (around 30 in total) containing also documents and creating the documents library of a Project. Then I must process around 20 project to achieve for all of them such a documents library representation.
    By the way, I do not have to mantein the HashTable content after I created the docs library ontology. Hence I use just one hashTable for ALL the projects and I flush it after I finish to do the loop for one project in order to save resources.
    My question is: is right my approach or might I improve it in some way?
    Thank you for every suggesion/comment.
    Francesco
    Edited by: paquito81 on May 27, 2008 8:15 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Folder Structure Not Visible under Content Administration

    Hi all,
    We have EP 6.0 SP13.The Folder structure(Both Business objects and Portal Content) under Content Administration and Folder structure under System Administration is not visible.I have logged in as Administrator and the roles assigned were:
    com.sap.pct.crm.crm_default_services
    Administrator
    ContentManager
    eu_role
    super_admin_role
    When i'm trying to access the portal content,<b>Loading...</b>is dispalyed in Content Area for a while and a message <b>'error occured'</b> is displayed in the status bar instead of <b>'Done'</b>.
    I'm also having a problem in Detailed Navigation.Nothing is visible under Detailed Navigation.
    Any Inputs on the above issues would be of great Help.
    Thanks and regards,
    Vijaya Sai.V

    Hi,
    There could be only 2 problems when PCD objects are not being shown.
    1) You don't have the permission to view it. But since you are an administrator, you don't have to worry about it.
    2) The browser is unable to show the PCD objects.
    Now lets look at the solution:
    I had faced the same issues where when I tried to access the portal using IP address, PCD objects will not show. So the solution is to access the portal through its "name" rather than the IP address.
    I guess you would have tried to access the portal by its name, then you had faced an error in browser and so you are trying to access the portal by IP address.
    if this is true, make an entry in the hosts file in your local machine, mapping the IP address to the domain name.
    If you dont know how to do it, please follow the following:
    Goto the following folder in windows
    C:\WINDOWS\system32\drivers\etc\
    You will find a file named hosts. Open it in notepad and give the IP address & domain name of the portal in the format specified there. Save the file. Now if you access the portal using its domain name, you should be able to see the PCD. If you are still not getting it, restart the machine and try once more. It should work.
    If you are using a Linux system, the file can be found under the \etc under the root folder.
    Regards,
    Vijai.
    Message was edited by:
            Vijai Mohan

  • Maintaining folder structure in content server

    Hi,
    There are times when we have a .swf object and associated xml files all in a particular folder structure and we need to maintain that in the content server because there wil be internal references.
    Is there anyway in which we can store the folder structure in UCM and use paths like /images/test.swf instead of the httprelativewebroot url.
    Thanks
    John

    I believe you typed that address into your browser to get that error message right?
    You can use webdav by opeing My Network Places (if on windows) and clicking Add new Place.
    Follow the steps and when it asks for Internet or network address - http://localhost/idc/idcplg/webdav of course replacing "localhost/idc" with your server name and instance name.
    Then you should be able to browse that folder you just setup. It might ask you to log in depending on how you have your security setup.
    Then drag and drop away.
    If you aren't on windows you might want to google connecting to webdav for your operating system.

  • Copy Folder Structure from Explorer into Outlook 2013

    Hi,
    I have just spent approx 3 months designing an Enterprise Classification Scheme, and built a folder structure in Explorer that I want to replicate in Outlook.
    I thought it would have been as simple as copy and pasting from Explorer to an Outlook folder however when I attempt to do so I get the following error:
    "Only files or objects can be attachments. x:\xxxx\xxxxx\xxxxx is a folder structure and cannot be attached."
    Surely there must be a simple way of doing this so I don't have to manually recreate and name 442 folders in Outlook.
    Any advice greatly appreciated.

    I tried the Outlook tool with no luck.  It ran and looked as though it was doing something but no folders were created.
    I did a bit more of a search around and came across a spreadsheet that works perfectly for making folder structures on Network drives.  Anyone up to having a look at the VBA in the  spreadsheet and modifying it to make shared folders in outlook
    2013?
    Sub CreateFolderStructure()
    'Create folder for all vlues in current sheet
    'folders will be created in folder where the excel file was saved
    'folders will be created from first row, first column, until empty row is found
    'Example expected cell structure: (data starting in current sheet, column A, row 1)
    'folder1    subfolder1  subsubfolder1
    'folder2
    'folder3    subfolder3
    '           subfolder4
    'this will result in:
    '<currentpath>\folder1\subfolder1\subsubfolder1
    '<currentpath>\folder2
    '<currentpath>\folder3\subfolder3
    '<currentpath>\folder3\subfolder4
        baseFolder = BrowseForFolder
        If (baseFolder = False) Then
            Exit Sub
        End If
        Set fs = CreateObject("Scripting.FileSystemObject")
        For iRow = 2 To 6500
            pathToCreate = baseFolder
            leafFound = False
            For iColumn = 1 To 6500
                currValue = Trim(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Worksheets(ActiveCell.Worksheet.Name).Cells(iRow, iColumn).Value, ":", "-"), "*", "-"),
    "?", "-"), Chr(34), "-"), "<", "-"), ">", "-"), "|", "-"), "/", "-"), "\", "-"))
                Worksheets(ActiveCell.Worksheet.Name).Cells(iRow, iColumn).Value = currValue
                If (currValue = "" And leafFound) Then
                    Exit For
                ElseIf (currValue = "") Then
                    parentFolder = FindParentFolder(iRow, iColumn)
                    If (parentFolder = False) Then
                        Exit For
                    Else
                        pathToCreate = pathToCreate & "\" & parentFolder
                        If Not (fs.FolderExists(pathToCreate)) Then
                            CreateDirs (pathToCreate)
                        End If
                    End If
                Else
                    leafFound = True
                    pathToCreate = pathToCreate & "\" & currValue
                    If Not (fs.FolderExists(pathToCreate)) Then
                        CreateDirs (pathToCreate)
                    End If
                End If
            Next
            If (leafFound = False) Then
                Exit For
            End If
        Next
    End Sub
    Function FindParentFolder(row, column)
        For iRow = row To 0 Step -1
            currValue = Worksheets(ActiveCell.Worksheet.Name).Cells(iRow, column).Value
            If (currValue <> "") Then
                FindParentFolder = CStr(currValue)
                Exit Function
            ElseIf (column <> 1) Then
                leftValue = Worksheets(ActiveCell.Worksheet.Name).Cells(iRow, column - 1).Value
                If (leftValue <> "") Then
                    FindParentFolder = False
                    Exit Function
                End If
            End If
        Next
    End Function
    Function BrowseForFolder(Optional OpenAt As Variant) As Variant
         'Function purpose:  To Browser for a user selected folder.
         'If the "OpenAt" path is provided, open the browser at that directory
         'NOTE:  If invalid, it will open at the Desktop level
        Dim ShellApp As Object
         'Create a file browser window at the default folder
        Set ShellApp = CreateObject("Shell.Application"). _
        BrowseForFolder(0, "Please choose a folder", 0, OpenAt)
         'Set the folder to that selected.  (On error in case cancelled)
        On Error Resume Next
        BrowseForFolder = ShellApp.self.Path
        On Error GoTo 0
         'Destroy the Shell Application
        Set ShellApp = Nothing
         'Check for invalid or non-entries and send to the Invalid error
         'handler if found
         'Valid selections can begin L: (where L is a letter) or
         '\\ (as in \\servername\sharename.  All others are invalid
        Select Case Mid(BrowseForFolder, 2, 1)
        Case Is = ":"
            If Left(BrowseForFolder, 1) = ":" Then GoTo Invalid
        Case Is = "\"
            If Not Left(BrowseForFolder, 1) = "\" Then GoTo Invalid
        Case Else
            GoTo Invalid
        End Select
        Exit Function
    Invalid:
         'If it was determined that the selection was invalid, set to False
        BrowseForFolder = False
    End Function
    Sub CreateDirs(MyDirName)
    ' This subroutine creates multiple folders like CMD.EXE's internal MD command.
    ' By default VBScript can only create one level of folders at a time (blows
    ' up otherwise!).
    ' Argument:
    ' MyDirName   [string]   folder(s) to be created, single or
    '                        multi level, absolute or relative,
    '                        "d:\folder\subfolder" format or UNC
    ' Written by Todd Reeves
    ' Modified by Rob van der Woude
    ' http://www.robvanderwoude.com
        Dim arrDirs, i, idxFirst, objFSO, strDir, strDirBuild
        ' Create a file system object
        Set objFSO = CreateObject("Scripting.FileSystemObject")
        ' Convert relative to absolute path
        strDir = objFSO.GetAbsolutePathName(MyDirName)
        ' Split a multi level path in its "components"
        arrDirs = Split(strDir, "\")
        ' Check if the absolute path is UNC or not
        If Left(strDir, 2) = "\\" Then
            strDirBuild = "\\" & arrDirs(2) & "\" & arrDirs(3) & "\"
            idxFirst = 4
        Else
            strDirBuild = arrDirs(0) & "\"
            idxFirst = 1
        End If
        ' Check each (sub)folder and create it if it doesn't exist
        For i = idxFirst To UBound(arrDirs)
            strDirBuild = objFSO.BuildPath(strDirBuild, arrDirs(i))
            If Not objFSO.FolderExists(strDirBuild) Then
                objFSO.CreateFolder strDirBuild
            End If
        Next
        ' Release the file system object
        Set objFSO = Nothing
    End Sub

  • Here i am giving u my folder structure

    This is my folder Structure
    1.Ejb1
         -Com package
              --com.insu.InsuranceBean(Session Bean)
              --com.insu.InsuranceHome
              --com.insu.Inurance(Remote)
         -META-INF
              --sun-ejb-jar.xml
              --ejb-jar.xml
         --Ejb1.jar
    2.web
         -WEB-INF
              --sun-web.xml
              --web.xml
              --Classes
              --lib
         --jsps
         --web.war
    3.Application
         --META-INF
              --application.xml
         --App.ear
         --Ejb1.jar
         --web.war
    Here i am deploying App.ear in the sun one Application server. Then i am getting this error
    Error
    Deployment Error -- Error while running ejbc -- Fatal Error from EJB Compiler -- -- Failed to load deployment descriptor for: App cause: I/O error while reading web xml into object representation

    Thanks for responding.
    I have used iPhoto forever and have all my photos categorized in iPhoto's folders and subfolders, organized chronologically by events of my liking: sports, holidays, vacations, etc (through the past 6-7 years). I was peeved when a few updates ago, iPhoto made iPhoto's "Events" the substantial organizational structure, and deleted many of my photos in their "Photos" library. Imported photos seemed to be imported only into iPhoto's "Events" and not in the previous huge umbrella of "Photos", many of my photos disappeared in the "Photos" library, they still existed in "Events (another question). I could still however make my folders and subfolders within iPhoto separate from the "Events" structure which I continued to do. Today, however, I went to upload a bunch of my favorite photos that I had put in a folder in June of my daughter's graduation, I wanted to upload these photos in my mac mobile website but all the photos were gone from that grad folder. They are still in an iPhoto "Event", thus they exist but they have been removed from the folder I created only a month ago. Then I noticed ALL my photos in ALL the folders that I have created through the years are gone, there is only a place holder of where the photo used to be. The folders are still there with the names I gave them.
    I have not done anything to bring them back.
    I don't understand the "managed" library that you mention. I have never had to even think about this.

  • How to develop repository manager with initial folder structure

    Hi 2 all!
    I wonder if it is possible to create new repository programmatically with defined folder structure. I'm interested in solutions when repository manager is works with db or file system. Can you provide any example or tell me where can I define my structure?
    thnx

    Hi Nata!
    Basicly this task consists of two steps:
    1. Deploy a new configuration object for the repository manager
    2. Create the intial folder structure
    Step one is simple. Here is the configuration object of the repository manager for /documents. It's been exported from the KM configuration by using the standard export mechanisms. This can be included into a portal application project in Netweaver Studio.
    documents.co.xml
    <?xml version="1.0"  encoding="UTF-8" ?>
    <!-- file generated by configuration framework Jun 27, 2008 9:16:36 AM -->
    <Configurable configclass="CmRepositoryManager" owner="km.appl.rep.mgr.prjconfig">
    <property name="ro-expiry-time" value="0"></property>
    <property name="fsconttrack" value="true"></property>
    <property name="poolid" value="dbcon_wcmdb_cm"></property>
    <property name="securitymgr.aclcacheid" value="ca_rsrc_acl"></property>
    <property name="localroot"></property>
    <property name="serverfarm" value="false"></property>
    <property name="propertysearchmgr.class" value="com.sapportals.wcm.repository.manager.cm.CmPropertySearchManager"></property>
    <property name="keepVersionHistory" value="false"></property>
    <property name="securitymgr.aclcfg" value="acl_jdbc_rep"></property>
    <property name="versioning.localroot"></property>
    <property name="persistence.mode" value="db"></property>
    <property name="hidden" value="false"></property>
    <property name="fsnosync" value="false"></property>
    <property name="cacheid.versionhistory"></property>
    <property name="prefix" value="/documents"></property>
    <property name="fsContentCacheMaxEntries" value="-1"></property>
    <property name="fsContentCache"></property>
    <property name="name" value="documents"></property>
    <property name="cacheid.content"></property>
    <property name="compressLimit" value="-1"></property>
    <property name="cacheid.foldercontent"></property>
    <property name="cacheid.properties"></property>
    <property name="active" value="true"></property>
    <property name="cacheid.rid"></property>
    <property name="ignorerootdisplayname" value="false"></property>
    <property name="class" value="com.sapportals.wcm.repository.manager.cm.CmRepositoryManager"></property>
    <property name="cclist"></property>
    <property name="intLinksDefaultDynamic" value="true"></property>
    <property name="contentmgr.class" value="com.sapportals.wcm.repository.manager.cm.CmNamespaceAndContentManager"></property>
    <property name="cacheid.documents"></property>
    <property name="versioningmgr.class" value="com.sapportals.wcm.repository.manager.cm.CmVersioningManager"></property>
    <property name="securitymgr.w2kcfg.systemid"></property>
    <property name="lockmgr.class" value="com.sapportals.wcm.repository.manager.cm.CmLockManager"></property>
    <property name="cacheid.locks"></property>
    <property name="securitymgr.class"></property>
    <property name="persistence.db.instance-id" value="documents"></property>
    <property name="cacheid" value="ca_cm"></property>
    <property name="namespacemgr.class" value="com.sapportals.wcm.repository.manager.cm.CmNamespaceAndContentManager"></property>
    <property name="autoversioning" value="false"></property>
    <property name="description"></property>
    <property name="securitymgr.ref" value="AclSecurityManager"></property>
    <property name="fsContentCacheLimit" value="100"></property>
    <property name="propertymgr.class" value="com.sapportals.wcm.repository.manager.cm.CmPropertyManager"></property>
    <property name="services" value="accessstatistic, com.dkv.DKVApprovalAndTranslation, com.dkv.jobtool.repository.JobToolCreationService, comment, discussion, feedback, layout, personalnote, properties, rating, statemngt, subscription, svc_acl, tbp"></property>
    <property name="sendevents" value="true"></property>
    </Configurable>
    This is a DB repository. The config object for a filesystem repository might differ.
    Step 2, the creation of the initial file structure may be done with in two different ways:
    a) Include a Repository Service with your repository, which creates the folder structure on the first access of your repository.
    b) Include a Portal app which has to be called once to create the folder structure.
    For more info about using the API to create km folders take at look at this:
    https://www.sdn.sap.com/irj/sdn/thread?threadID=933638&messageID=5663711#5663711
    Cheers,
      Jürgen

  • ADF11g - integration with OIM -folder structure for OIM configuration files

    Hi All,
    I'm trying to make call to a remote OIM using OIM API, from my ADF backing bean onclick of a button
    on the JSPX page.
    I'm able to compile the page, but the issues I'm facing is that I'm not able to read the configuration details
    specified for OIM connectivity from the OIM configuration files (authwl.conf, xl.policy, xlconfig.xml).
    So do any one know what is going to be the folder structure for these config files (OIM), when we are integrating to
    this API from ADF backing bean.
    Thanks All .
    Thanks & Regards,
    Dharmathej M

    Hi Daniel, thanks for the response but i readed that doc before asking here and that's one of the reasons of my question.
    On the first line of the doc it says *"This appendix includes instructions that describe how to configure WebSphere so that Oracle Identity Manager (OIM) and Oracle Identity Analytics (OIA) can be installed on separate servers."*
    It assumes both products are on different servers and also the creation of an new profile and node for oia.
    WAS_NDS_HOME/AppServer/bin/manageprofiles.sh -create*
    -templatePath WAS_NDS_HOME/AppServer/profileTemplates/managed*
    -profileName oia-managed01 -profilePath WAS_NDS_HOME/profiles/oia-managed01*
    -nodeName oia-managed01-node01 -hostname hostname*
    Integrate the OIA node to the OIM Cell by typing the following command on the OIA Machine:*
    cd OIM_HOME/xellerate/setup; ./xlAddNode.sh oia-managed01 oia-managed01-node01 192.168.21.9 8883 xelsysadm password1*
    Our intention is to use same machines, servers,... oim is using so we don't need to use extra machines or create extra websphere objects.
    Any tips on that?
    Regards.

  • How do I move photos in a Smart Collection and keep folder structure?

    HI there I am on a trial of Lightroom and loving it so far.  One seemingly simple task I would like to try out is moving all my RAW files (which are all mixed up with JPGs and PSDs to a new location and keep the current folder structure.
    Currently I have files strcutured like this: <main disk>\<year>\<month>\<filename>.cr2 and I would like to move these to <different disk>\<year>\<month>\<filename>.cr2
    The Export functions look as if they will put them all in to one big folder?  Any ideas?
    Many thanks in advance.

    There are several approaches to this problem. You could do this via the Folders panel in LR. You can do just about everything in the Folders panel that you can do in Explorer or Finder. Just create folder and drag and drop.
    Another way is to do this outside LR use Explorer (Windows) or FInder (Mac). after you're done then go back into LR and tell LR where to find the moved files. Depending on how many you have this could be a bit tedious.
    Another method is to choose the files you want then Export them as a Catalog. When you do this be sure to include the option to export the negatives. Point the new catalog at you other drive. It will recreate the folder structure during the export. Then remove the images from your present catalog. Don't delete from disk just remove. Now import from catalog and choose the newly exported catalog. This time choose the option to add the files without moving them. Once you are sure everything is back and is fine you can use Explorer or Finder to go into your original file structure and delete the files that were moved to the new drive.  Be careful to only choose the moved files. If you are separating the RAWs out this should be relatively easy.
    I hope that helps!

  • How can I batch move files to the same folder structure in a different location?

    Hi,
    I recently had an issue with my iTunes Library so I used the Organize Library feature to have iTunes organise my library.  What happened was that it put all of my music in a folder called 'Music' on my external hard drive, whereas previously it was not in a folder at all, e.g.
    BEFORE: External Hard Drive / Abba / Greatest Hits / Mama Mia.m4a
    AFTER: External Hard Drive / Music / Abba / Greatest Hits / Mama Mia.m4a
    I don't have any particular issue with the updated folder structure, except that I had copies of the artwork for each album in my album folders, and these weren't moved when the audio files were moved/consolidated/organised.  So I need to find a way of moving all of the artwork to the new folders, e.g.
    External Hard Drive / Abba / Greatest Hits / folder.jpg
    needs to become:
    External Hard Drive / Music / Abba / Greatest Hits / folder.jpg
    I have to do this for 3,000+ albums, and I have multiple artwork files for some albums, so I am hoping that there is a way of doing this using a batch/automated method of some kind, but I haven't been able to turn up anything yet.
    Can someone help with this?
    Thanks,
    Nick

    You can make a smart playlist containing episodes of both series and play from that. Podcasts are linked together by the URL they are served from so merging ongoing series isn't really practical.
    tt2

  • Hi. I am having trouble with the folder structure.

    I import my pictures like probably most Lightroom users.
    They go to:
    Pictures / (Year)  / (Subfolder name crated checking "Into Subfolder" during import)
    Recently, after upgrading to Yosemite, when I import to this structure, Lightroom creates a folder visually outside it. Above, the "01_Sao_Paulo" folder should appear inside 2015 while "12_Atacama" and "12_Hasselblad" under 2014. The right folders were actually created when I check them in Finder.
    And when I try to move the folders under the right folder structure, Lightroom recognizes  that the folder already exists.
    My question two questions are:
    1. How do I make the folders appear correctly under the right folder structure?
    2. How do I make Lightroom stop creating the folders outside the structure on my next imports?
    Thanks for any help.

    Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your iPhoto library database
    LN

  • Using Metadata to generate view as conventional folder structure

    Can Metadata be used to generate a view as the conventional folder drill-down?
    I have a list with metadata for different projects, releases, content type etc and I would like to view them in folder structure with different hierarchies, i.e. using projects--> releases--> content-type as well as release --> projects --> content-type.
    I have asked the same question at : http://stackoverflow.com/questions/22693036/using-metadata-to-view-as-conventional-folder-structure

    Hi,
    If your metadata is based on a hierarchical term set you could use ‘Metadata Navigation’.
    You may have to change your information architecture a bit to accommodate this approach. More info on ‘Metadata Navigation’ here:
    http://office.microsoft.com/en-gb/sharepoint-server-help/configure-metadata-navigation-for-a-list-or-library-HA101820113.aspx
    Hope this helps
    Cheers
    Matt

Maybe you are looking for

  • Export report to PDF with RDC, ASP

    <p>I use asp on windows 2003 server and Crystal reports XI, service pack 3.</p><p>When I export a report to a PDF file, it creates a 0kb file. No error messages are received. The directory allows for writing files. I can manually export a file via th

  • MCE5 etc report incorrect purchase value/quantity

    We have found what we would consider a fault with the logistics information system for MM, such that the MCE5 family of reports will give misleading or incorrect information. The problem arises if you modify an existing PO item.  In our case we were

  • I cant reset my Ipod on Itunes

    I reset my Ipod becuse i couldnt see my ipod in Itunes. Now it says i need to connect to Itunes. It can reset on Itunes but when its done, it says i shall connect to Itunes again, when i do that, the same happend again and again. What can i do ?

  • New Workstation Yielding  Poor Performance . . . What's Wrong?

    My new workstation is performing much worse than expected in the PPBM5 test as compared to other computers with the same or very similar components (i7-930 no O.C., 24GM RAM, P6X58D Premium motherboard, EVGA GTX 470 graphics card and PremPro 5.0.2).

  • How to get attachment opened

    hi everybody, i have to design such that when user presses a button, it should open the attachment concerned to particular purchase requsition ( i.e. attachements available to Purchase requsition service for objects, in me53n transaction. ) how do i