Directory, Document

Hi,
I developp HTML 5 application. I've several questions about Restful web services SDK
A. If I want to obtain all documents of a specific directory, I have to request:
http://<serverName>:6405/biprws/raylight/vx/documents/
the response contains the folderId of each document but not the name, so I have to request.
http://<serverName>:6405/biprws/raylight/vx/documents/documentId
And after filter documents of the specific directory I want...
Do you have an other solution to obtain all documents of a specific directory with 1 request?
B. I don't understand why I only obtain documents of "WebIntelligence Samples" directory... why not in others directories?
C. Some documents are in "Unused" state with
http://<serverName>:6405/biprws/raylight/vx/documents/documentId
I looked for change this state but I don't find how.... The Restful normally load documents, but I can know why and how...
Best regards
Yannick

Hi Yannick,
A) To get a list of objects within a directory, use the following request:
      GET:    /biprws/infostore/<folderId>/children
If you want to limit the request to webi documents, then use:
     GET:    /biprws/infostore/<folderId>/children?type=Webi
B) by default, you will return the first ten webi documents with this request:
     GET: /biprws/raylight/v1/documents
you can change the amount of documents returned or page through using   ?limit and ?offset parameters
     GET:   /biprws/raylight/v1/documents?limit=50   will return a maximum of 50 documents
     GET:    /biprws/raylight/v1/documents?limit=10&offset=2  will return the second page of documents (11th to 20th documents)
C)  the webi document can have 3 states
    Unused, if the document has not been loaded.
    Original, if the document has been loaded but not modified
    Modified, if the user sent requests which altered the state of the document
so the unused state you mentioned means that you've requested information about the document (ie the name, description etc.) but you have not loaded the document with the Rest APIs.
-Dan

Similar Messages

  • Upgrading Knowledge Directory Documents from v5 to v6

    Hey,
    I am trying to migrate the knowledge directory from a v6 install to v6. The import process is successful but I am unable to launch any of the documents.
    The cards appear in the KD, the files are in the ptupload folder.
    When I try to launch the document I get the following:
    "Directory Listing For /" with no files displayed.
    It is running on Apache 5.0.28.
    Does anybody have any ideas??
    Any help would be grately appreciated.
    Thanks in advance,
    Anil

    Check the dr.xml in your ptupload config settings(doc rep path till the Glue) also check the config settings for your ptdr (file paths for the ptupload in the dr-server.xml or something like that)
    The paths should be correct. after anychanges and restarting apache, try uploading a doc and see if you can see the corresponding .ACT files probably your ptupload could still be pointing to old doc rep.

  • Delete document cards from Knowlede Directory

    Hi,
    I am trying to delete a card from the knowledge directory (document folder) but nothing happens (ie. the card is supposed to get deleted) when I run the following code:
    IPTQueryResult qrCards = Folder.QueryCards(PTPROPIDS.PT_PROPID_OBJECTID, true, PT_PROPIDS.PT_PROPID_OBJECTID, 0, -1, null);
    for (int i = 0; i < qrCards.RowCount(); i++)
    int objectId = qrCards.ItemAsInt(i, PT_PROPIDS.PT_PROPID_OBJECTID);
    Object[] status = iptSession.GetCatalog().DeleteCards(objectId);
    for (int y=0;y < status.length; y++)
    MessageBox.Show("status: " + status[y]);
    status returned: -2147024891
    Am I missing something?
    Thanks in advance.
    Edited by: user13371320 on Jan 2, 2011 10:50 PM

    If you're connecting to a portal instance with the Portal Server API (as it appears you are), then you should probably be selecting the Portal component in PTSpy. You can tell from the startup which component to select, as it will say something like:
    OpenLog: verposity level = 2
    OpenLog: Registered application name: ConfigInitialization (local machine only)
    OpenLog: Registered application name: portal.[machinename].Administrator (local machine only)
    The last application name is what you'd use. Make sure you are recording on the machine running the custom app.
    Since you can see it in both browse and edit mode, we know that the search index and the database both know of the card, so it can't be that it thinks the card is missing. At this point, you'd have to go through the PTSpy recorded when you run your app. You should start it right before you initiate the delete, and shut it off after the PTSpy stops recording new lines. You might be able to search for the error code, otherwise you'd have to go line by line to find something related to permissions, though other types of errors (not found, network access problems) might return the access denied message.
    -Mike Headley, WCI Developer Support

  • How to get the Version History of a stored document?

    Hi,
    I am trying to store and retrieve the content using Content Services features of ADEP 10.0.
    I am able to store and retrieve content where as I am not able to get the version of the document. I am trying to store same or different document, but I donot get the version history or version label. Please guide me how I can get  the version of a stored document.
    Also, please advise me if there are simple alternative to do the same in ADEP10.
    Please see below my sample code below:
    package test.sample;
    import java.io.File;
    import java.util.*;
    import com.adobe.idp.Document;
    import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
    import com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
    import com.adobe.livecycle.contentservices.client.CRCResult;
    import com.adobe.livecycle.contentservices.client.impl.DocumentManagementServiceClientImpl;
    import com.adobe.livecycle.contentservices.client.impl.UpdateVersionType;
    public class AddContent {
        public static void main(String[] args) {
            try{
                //Set connection properties required to invoke Document Services in EJB mode                                
                Properties connectionProps = new Properties();
                connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_EJB_ENDPOINT, "jnp://localhost:1099");
                connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,Service ClientFactoryProperties.DSC_EJB_PROTOCOL);          
                connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
                connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
                connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
                //Create a ServiceClientFactory object
                ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
                //Create a DocumentManagementServiceClientImpl object
                DocumentManagementServiceClientImpl    docManager = new DocumentManagementServiceClientImpl(myFactory);
                //Specify the store and node name
                String storeName ="SpacesStore"; 
                String nodeName = "/Company Home/Test Directory";
                //Retrieve the document to store in /Company Home/Test Directory
                Document contentA =  new Document(new File("C://Adobe/New files/Data-A.pdf"), false);
                Document contentB =  new Document(new File("C://Adobe/New files/Data-B.txt"), false);
                Document contentC =  new Document(new File("C://Adobe/New files/Data-C.xlsx"), false);
                //Create a MAP instance to store attributes
                Map<String,Object> inputs = new HashMap<String,Object>();
                //Specify attributes that belong to the new content
                String creator = "{http://www.alfresco.org/model/content/1.0}creator";
                String description = "{http://www.alfresco.org/model/content/1.0}description"; 
                inputs.put(creator,"Veeraganteppa Sajjan");
                inputs.put(description,"A sample application form");
                //Store MortgageForm.pdf in /Company Home/Test Directory
                CRCResult resultA = docManager.storeContent(storeName, 
                         nodeName,
                        "dataA.pdf",
                        "{http://www.alfresco.org/model/content/1.0}content", 
                        contentA,
                        "UTF-8",
                        UpdateVersionType.INCREMENT_MAJOR_VERSION,
                        null,
                        inputs); 
                CRCResult resultB = docManager.storeContent(storeName, 
                        nodeName,
                       "dataB.pdf",
                       "{http://www.alfresco.org/model/content/1.0}content", 
                       contentB,
                       "UTF-8",
                       UpdateVersionType.INCREMENT_MAJOR_VERSION,
                       null,
                       inputs);
                CRCResult resultC = docManager.storeContent(storeName, 
                        nodeName,
                       "dataC",
                       "{http://www.alfresco.org/model/content/1.0}content", 
                       contentC,
                       "UTF-8",
                       UpdateVersionType.INCREMENT_MAJOR_VERSION,
                       null,
                       inputs);
                //Get the identifier value of the new resource
                String idA = resultA.getNodeUuid();
                String idB = resultB.getNodeUuid();
                String idC = resultC.getNodeUuid();
                System.out.println("A -The identifier value of the new content is "+idA);
                System.out.println("B - The identifier value of the new content is "+idB);
                System.out.println("C - The identifier value of the new content is "+idC);
               System.out.println("A - The Browse Link is "+resultA.getBrowseLink());
                System.out.println("B - The Browse Link is "+resultB.getBrowseLink());
                System.out.println("C - The Browse Link is "+resultC.getBrowseLink());
              System.out.println("A-The Version Label is "+resultA.getVersionLabel());
              System.out.println("B-The Version Label is "+resultB.getVersionLabel());
              System.out.println("C-The Version Label is "+resultC.getVersionLabel());
              System.out.println("The Version History is "+docManager.getVersionHistory(storeName,nodeName, true));
        }catch(Exception e)
            e.printStackTrace();
    Message was edited by: V B Sajjan

    Sorry I did not attach the output and errors. Please find the same below.
    A -The identifier value of the new content is f5427f5b-c7c1-4c3c-b959-cb84e4e49a13
    B - The identifier value of the new content is b237d22c-5ff5-4628-a83a-23f5e49ae48e
    C - The identifier value of the new content is 34a9992c-3705-4488-bb55-6dd7ddfa0517
    A - The Browse Link is http://localhost:8080/contentspace/wcs/api/node/content/workspace/SpacesStore/f5427f5b-c7c 1-4c3c-b959-cb84e4e49a13/dataA.pdf
    B - The Browse Link is http://localhost:8080/contentspace/wcs/api/node/content/workspace/SpacesStore/b237d22c-5ff 5-4628-a83a-23f5e49ae48e/dataB.pdf
    C - The Browse Link is http://localhost:8080/contentspace/wcs/api/node/content/workspace/SpacesStore/34a9992c-370 5-4488-bb55-6dd7ddfa0517/dataC
    A-The Version Label is null
    B-The Version Label is null
    C-The Version Label is null
    ALC-CSV-30015-000: com.adobe.livecycle.contentservices.client.exceptions.CSInvocationException: ALC-CSV-030-015-The node [/Company Home/Test Directory] is not versioned.
    at com.adobe.contentservices.webscripts.impl.AbstractContentManager.doGetVersionHistory(Abst ractContentManager.java:1362)
    at com.adobe.contentservices.webscripts.impl.ContentManagerImpl.executeParams(ContentManager Impl.java:198)
    at com.adobe.contentservices.webscripts.impl.CSRetryingTransactionCallback.execute(CSRetryin gTransactionCallback.java:45)
    at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction(RetryingTransacti onHelper.java:326)
    at com.adobe.contentservices.webscripts.impl.ContentManagerImpl.execute(ContentManagerImpl.j ava:114)
    at org.alfresco.repo.web.scripts.RepositoryContainer$2.execute(RepositoryContainer.java:333)
    at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction(RetryingTransacti onHelper.java:326)
    at org.alfresco.repo.web.scripts.RepositoryContainer.transactionedExecute(RepositoryContaine r.java:386)
    at org.alfresco.repo.web.scripts.RepositoryContainer.transactionedExecuteAs(RepositoryContai ner.java:404)
    at org.alfresco.repo.web.scripts.RepositoryContainer.executeScript(RepositoryContainer.java: 246)
    at org.alfresco.web.scripts.AbstractRuntime.executeScript(AbstractRuntime.java:294)
    at org.alfresco.web.scripts.AbstractRuntime.executeScript(AbstractRuntime.java:172)
    at org.alfresco.web.scripts.servlet.WebScriptServlet.service(WebScriptServlet.java:122)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at com.adobe.idp.um.auth.filter.CSRFFilter.doFilter(CSRFFilter.java:86)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.ja va:183)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:95)
    at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEs tablishmentValve.java:126)
    at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEst ablishmentValve.java:70)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java: 158)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.ja va:598)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:451)
    at java.lang.Thread.run(Thread.java:662)

  • How to create a new directory?

    Hi!
    I want to export each Layer to a png file in a directory named like the file.
    That directory is not exisiting.
    var document = app.activeDocument;
    folder = document.fullName+"-png";
    var file = new File(folder+"/"+layer.name+".png");
    document.exportFile(file,ExportType.PNG24,options);
    leads into an error that "documentname-png/" is not found.
    How do I create the directory 'document.fullName+"-png"'

    Thanks, that was exactly what I searched for.
    (I use a folder to go around the 31 character file length warning:
    http://www.electrictoolbox.com/change-adobe-photoshop-filename-compatibility-options/
    "Some names of the files being saved will be truncate to 31 characters for compatibility with Macintosh browsers.")

  • Link to a document in KM

    Hi everybody,
    I have a list of documents posted in KM directory /documents and I would like that a user can link to this document.
    Does anybody know how to do this?
    It is part of a Portal application written in java.
    Thank you
    Regards
    Wouter

    Hi Wouter,
    You might want to check the following approaches depending on how your application can enable:
    - <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/51/ea9442bf2d1031e10000000a1550b0/frameset.htm">Setting Links in Documents To Objects in KM Folders</a>
    - Use WebDAV as the protocol to access to your KM documents (each document URL can be found under "Details"/"Access Links" menu item). Either mount the folder as webfolder on the user local system (for instance using IE "open" and "open as web folder"), or use the SAP 'Portal Drive' to access the documents.
    Hope this helps.
    Regards,
    Joseph

  • Files in Document folder disappear

    Started my computer this evening only to find that the folder “Documents” in Finder was empty. When I closed down yesterday there were documents and subdirectories in it. Using “Word” or “XL” I can open the documents which supports that they are not lost. When I try to save an open document back to the directory “Documents” I get a message advising that the file (document) already exits. 
    When I search for a known document in Spotlight the properties state that it is located in the “Documents” folder
    Why can’t I see the contents of the “Documents” folder in “Finder”

    Do a backup.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library. Then go to Preferences/com.apple.finder.plist.  Move the .plist to your desktop.
    Re-launch Finder by restarting the computer and test. If it works okay, delete the plist from the desktop.
    If the same, return the .plist to where you got it  from, overwriting the newer one.
    Thanks to leonie for some information contained in this. 

  • Documents Portlet View

    We're trying to find (or create) a portlet to replace the My Documents and Community Documents portlets.  Out-of-the-box, the portlets display files in a linear fashion, so you can't tell which documents reside in which folder.  IMO, this isn't very functional.
    You can go to "Manage Documents" and that DOES display folders/subfolders, but not from the portlet view. We would like the portlet to display a file-hierarchy, with the ability to "drill-down" into the files, to see the documents that exist in the folder.  Has anybody created anything like this?  Any help would be greatly appreciated.
    - Herbie Wilson
    Port of Seattle

    Hi Herbie,
    A few tools directions to point you in. Take a look at the PTOpener gateway tag which is documented in the Enterprise Web Development Guide. That allows you to open a tree control selector for many Plumtree objects, including folder/documents from the knowledge directory.
    You'd also be happy to know in the EDK v5.0.2 release, which will be available in February with the portal v5.0.2, the EDK's PRC API provides tools to queries, search, and manipulate the knowledge directory.
    A snippet from the new release notes:
    [url[/url][url[/url]New featuresThe following features have been added to the PRC API: ACL (Access Control List) manipulation for Portal Objects.
    Portal Knowledge Directory Document management:
    Document queries with filters.
    Property manipulation.
    Adding/removing Documents from Folders.
    Portal Job management.
    Community Setting manipulation
    PRC Properties for ProfileSource, SavedSearch, Portal Property, and DocumentFolder
    The new PRC Search API has been added for access to the Portal search engine. Search Portal Users, Documents, Folders, and Communities
    Filter searches by search fields: Portal Properties et al

  • Long Documents

    I have a long directory document that I periodically update.
    When I tried to convert this from a Word document to an HTML page,
    Dreamweaver 8 won't let me do it, giving me an error window saying
    that the document would be too long, and that I should cut it into
    multiple pages. Is there any way to bypass this, so I can continue
    to use this long document as one page?

    > Yes. It works and it's much easier.
    I disagree. It works, but it's definitely not easier than
    simply copying
    from Word and pasting into the DW document. *AND* the code
    that results is
    better doing it the latter way, too.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Clancy" <[email protected]> wrote in message
    news:[email protected]..
    > "Michael Hager" <[email protected]>
    wrote:
    >
    >>I've actually never tried importing from Word. I've
    opened Word created
    >>HTML
    >>and they are so full of formatting code that I simply
    took to copy and
    >>pasting
    >>them as text...
    >
    > Yes. It works and it's much easier.
    >
    >> I?ve also never tried putting in so much text that
    DW hiccupped? For
    >> text
    >>that long I usually break it up into several pages
    anyway, just to keep it
    >>organized. I?ve done some articles with 8 or 9 pages.
    That way if a
    >>reader
    >>wants to come back later, they can come back to the
    page (chapter) they
    >>left
    >>off on instead of trying to scroll down a long page.
    >
    > I agreed that this is generally the best way to do it,
    but the alternative
    > is to
    > put anchors every half page or so down the long
    document, and a list of
    > headings
    > at the top (and preferably bottom as well) with links to
    all the anchors.
    > That
    > way you can go to (and bookmark) any heading.
    >
    >
    > [email protected]

  • Can I change Documents (CM Manager) from DB to FSDB or DBFS?

    Hello,
    I have a doubt. Is there a way to change the directory "documents" that is in DB Mode to FSDB or DBFS? The client want to use the documents attached in the directory "Documents" in the file system style.
    Another thing, I want to add in the CM Manager "Documents" a File System Manager that I create called for example "Company".
    With the 2 doubts, are they possible?
    Best Regards.
    Pablo Mortera

    Yes you can change the driectory for DB to FSDB check this
    http://help.sap.com/saphelp_nw04s/helpdata/en/62/468698a8e611d5993600508b6b8b11/frameset.htm

  • Document got deleted and i didn't save

    While I was writing a document on the new Pages, my computer froze and the document got deleted. Is there any way that I can recover the document?

    In the Finder, press shift+command+G. Clear any existing content in the Go to folder content input area.
    Triple-click the following content, copy and paste it into the Go to folder input window. Edit the viking part with your short user name.
    /Users/viking/Library/Containers/
    Once you are in the Containers directory, look for the file named com.apple.iWork.Pages. Right-click on this file and choose Show Package Contents.
    Now, double-click the Data folder. Double-click the Library folder. Double-click the Autosave Information folder. If you find an Unsaved Pages Document in this location, understand that this is the display name, and it has a hidden .pages file extension. Double-click this document, and if you are lucky, it will open in the default version of Pages and you may be able to recover some of the content you thought was lost. If so, immediatey press the option key and choose File > Save As... and name and save the document in your login directory/Documents folder.
    Good luck.

  • Nested styles? Directory listing help

    I have a large directory document that needs to have styles applied to each person
    First Name Last Name <-- Bold Text (char style)
    Job Title   <-- Italics (char style)
    education, school etc 0-4 lines (text body style, regular)
    First Name Last Name <-- Bold Text (char style)
    Job Title   <-- Italics (char style)
    education, school etc 0-4 lines (text body style, regular)
    etc...
    Is there a way to apply these styles without applying character style line by line to each listing entry?
    I am working on a Mac with CS4
    Thanks!

    bumblepop wrote:
    ok, I am confused. I tried doing what was described by the first couple answers, but it still appears that I am having to apply the style to each entry individually.
    The only defining way to see that there is a new entry is that there is a blank return space before each block.
    Blank returns are death to any system like this, and extremely bad typography. You should get rid of them and use space before on the name style, or space after on the last style in the loop. You can apply the styles in a large bolock by selecting the text, then right-click the style name in the panel for the first style and select "Appy style and next style" and the whole block gets styled at once. The styles will rotate automatically if you are typing.
    You can keep all the lines for a single listing together by using the Keep Options in the style definitions. Keep name with next line, then keep all lines together in the second style, but don't require that they be kept with anything else.
    Either Bob or I can't read the original post properly. I see education, etc. listed as (0-4 lines) and that means it can't have it's own paragraph and paragraph style. If it's really 1-4 lines, then a third style is appropriate, and modigy the directions for the Keep Options accordingly.

  • Want to change the default save location- users have networked home dirs

    I am doing some work for a school which is still using iMovie HD because it allows them to save their movie projects wherever they want. The issue is that iMovie 08 and 09 do not allow you to change the location in which they save their movies. Currently all users/students have network home folders, so their home directory, documents, etc all pull across the network. All students are limited to 1GB of space, and the system is an older G4 Server- 2GHz with 1GB of RAM and 2x 500GB hard drives. Since the students can make some large projects transferring that data back and forth can kill the server. Currently they are staying with iMovie HD so they can save it to the local hard drive, and when the student comes back in for class they sit at the same machine- thus giving them access to their stored movie files.
    This summer they plan to upgrade both Xserves, but again internal storage in the Xserve is a joke and in my opinion not planned out properly. Which might require them to use one of the Apple Promise RAID units- major financial burden on a school.
    I wanted to see if there was a way to change the default save location for iMovie 08 or 09 to the local storage rather then the "Home" folder for each user.
    Thanks so much!

    hackths wrote:
    .. The issue is that iMovie 08 and 09 do not allow you to change the location in which they save their movies. ..
    wrong info.
    iM08/09 has a different file concept than iMHD6.
    Both versions allow to store Events (=huge files) 'anywhere' to usb or firewire connected, hfs(+) formatted harddrives. the Project files (=small files) can be de-located from 'internal' drive with vers09, for 08 you have to use a socalled symLink to de-locate Project files.

  • Can I have two identical iTunes Music Folders for my Laptop and my desktop

    I have an iMac Flower Power, 20GB of HD running OSX 10.2.8 as my desktop, 2 users, with an 80GB External HD (Firewire). I also have my new MacBook. Right now all my music and pictures are in my MacBook and I have BUps of everything in my external HD. My problem is that when I'm away, my wife can't listen to our music with the iMac 'cause I have all the files (iTunes is using the Library located at my Laptop). My questions are... Can I have 2 identical iTunes Music Folders, one in the XHD and one in my MacBook? How can I do to have both Folders sycronized so when I add music being away with my Laptop, then when I get back home the "home" Folder gets updated with the new music or viceversa? I have an iPod but I want to have the ability to also change the playlists in my iPod when I'm away. I hope this is not too hard to do.

    This is what I did: First, I backed up my iTunes Music Folders. Then, I disconnected my xternal HD from my iMac and connected it to my MacBook where I had my iTunes Music Folder. Then, I copied the whole iTunes Music Folder to my xternal HD. Then I ejected the xHD from my MacBook, and connected back it to my iMac and restart. When the iMac was up I sent to the trash all the content of the iTunes Folders in my iMac, there is one in the root directory /Documents/iTunes and another in /Users/Home/Music/iTunes. Be aware that you need to "clean" the iTunes Folder which includes the iTunes Music Folder. Then I went to the xHD and copied the iTunes Library file (the data file) to /Users/Home/Music/iTunes Folder in my iMac, then open iTunes. After doing that you should be able to open your iTunes program in your desktop without having your laptop conected to your network. The only thing is that, in order to keep both libraries identical, you have to update podcasts in both computers every day, and import CD's in both computers every time you add one to your library, if you want to have the same thing in both computers. There might be another way to keep them both syncronized but I'm still searching for it. Make sure after you have your iTunes running, to go to Preferences/Advance, and set up you iTunes Music Folder Location exactly where you want it. I hope this help you guys. Let me know if you need clarification in any of this.
    MacBook Black   Mac OS X (10.4.7)   2GHz Intel Core Duo, 1GB RAM

  • Error installing SAP NW 7.01 ABAP trial version /Error 601-Need Expert Help

    Hi
    When I install the trial version, the installation aborts with error 601.
    I know this has been reported before, but I can't find a solution, tried removing all previous entries/components and re-installing a number of times but it always aborts.
    Details below, any help would be greatly appreciated:
    1, 2009 1:28:02 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, An error occurred and product installation failed.  Look at the log file C:\sapdb\NSP\log.txt for details.
    (Nov 11, 2009 1:28:02 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/DOCUME1/SM/LOCALS1/Temp/MaxDBSAPNWPREV.log")
    STACK_TRACE: 22
    ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/DOCUME1/SM/LOCALS1/Temp/MaxDBSAPNWPREV.log")
         at com.sap.installshield.maxdb.maxdb_call_sdbinst.install(maxdb_call_sdbinst.java:193)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.getResultForProductAction(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProduct(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(Unknown Source)
         at com.installshield.wizard.service.AbstractService.invokeImpl(Unknown Source)
         at com.installshield.product.service.product.GenericProductService.installProduct(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installAssembly(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.access$900(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    I did these steps and was able to reinstall without any problems.
    1. Run registry clean tool that came with the packaged software
         \Additional_Tools\RegCleanTool
    2. Then run Uninstall - System/Standalone Engine/Optional Standadlon ......
         This is under the Software Life-Cycle Options-Uninstall
    3. Check if there are any files located in
         \Program Files\sapinst_instdir     -
         delete this directory
         \Documents and Settins\{user}\Local settings\Temp    -
       delete any references to SAP
    The above steps helped me to reinstall the Trial software. 
    Make sure that the system for the install meet the following requirements:
    u2022     Operating System: Windows XP Professional (Service Pack 2) or Windows Server 2003 or Windows Vista
    u2022     Hostname must not exceed 13 characters
    u2022     NTFS-File system
    u2022     Internet Explorer 5.5 or higher or Firefox 1.0 or higher
    u2022     At least 1 GB RAM (2-4 GB recommended)
    u2022     Pagefile size according to your RAM settings.
    u2022     Intel Pentium III/1.1 GHz or higher (or compatible)
    u2022     30 GB hard disk space temporary during installation - 24 GB permanent
            The actual hard disk space required is more than 32GB.  It is best to install the SAP directory on a separate drive if possible. Othewise you have to make sure that the drive where you install SAP has sufficient space for you system and the SAP install.
    u2022     High-resolution monitor (1024x768 or higher, 256 colors)
    u2022     Make sure that no other SAP system is installed on your computer
    u2022     The SAP system requires several ports for communication services. Therefore the file %WINDIR%\system32\drivers\etc\services must not include an entry for the ports 3200, 3600, 3900 and 8000. A possible entry can be excluded by using the hash symbol (#). (Note: The entry sapmsNSP 3600 for dialog instances may not exist, as it is set to 0 in Trial versions).
    u2022     If no DHCP server is available on your network (which dynamically determines the IP address) or your computer is not connected to any network, you need to install the virtual interface adapter MS Loopback Adapter.
    My system configuration:
    Virutal Machine
       Windows Server 2003
       1.7GB RAM
       20GB System Drive
       40GB Data drive (SAP installed here)
        MS Loopback Adapter with address 10.10.0.10 (entry in hosts file 10.10.0.10             localhost)
    Regards,
    Jasper

Maybe you are looking for

  • Payroll data source error in rsa3

    Hi,     I have a requirement that I have to extract payroll data source 0hr_py_01 , But when I check the records in rsa3 tcode , I got the message  0 data records selected. So I gone through different forums , I used the sap notes 672514 & 397208. I

  • Streaming slow on my mac

    When streaming videos and audio on my new macbook pro retina, I experience very long buffering times, especially when viewing HD video on sites like Vimeo or YouTube. Flash Player stops, then more buffering occurs. Is there anything I can do to fix t

  • Java.lang.OutOfMemoryError: PermGen space

    <Oct 25, 2011 12:15:53 AM IST> <Error> <netuix> <BEA-423405> <An exception [java.lang.OutOfMemoryError: PermGen space] w as thrown while rendering the content at [jsp/changemgmt/ChangeManager.jsp]. javax.servlet.ServletException: java.lang.OutOfMemor

  • JavaFX and the Netbeans platform

    Hi, Quick question...does anyone know if there are any plans or ongoing work to port the netbeans platform to JavaFX? Nuwanda

  • Mobilephone validation using regexp_like

    - i try to make a validation when user inputs numbers inside my textbox in my form - when the user press a button it will display an alert if the condition is not true - here is my syntax that i already did but somehow it got error : if :ADMIN1.MOBIL