Transfer collaboration rooms with all content

Hello All,
I am on SP12 EP & KMC.
Need to transfer collaboration rooms with all content of Rooms from DEV to PRD server.
How do we ensure that all memberships, subscriptions, tasks, documents, document metadata, ++ is transferred?
Have seen the link
Collaboration Room Transport
Are there any known issues in this?
Have anyone done this and what all issues can be taken care of.
Please update..
Regards
Suneel Razdan

Hi Suneel,
you can only transport collaboration room templates, unfortunately not the existing rooms :-(!!!!!!!
to transport collaboration templates refer to
How to transport collaboration room parts?
Hope this helps,
Regards,
Uma.

Similar Messages

  • How could I transport package with all content within

    How could I transport package with all content ( I do not get it with se80->"write transport entry") or by entering in se10 in transport request object R3TR DEVC.

    go to SE03
    choose the third item "include objects in a request" by double-clicking
    there you set the first parameter "Package" to your package and execute
    note: you can also deselect the radiobutton "All objects" and set "Selected objects" then you will be able to fine-tune the list of objects

  • Accessing Collaboration Room with Room Link (URL) doesn't work

    hi all
    i'm trying to access a collaboration room by room link (url) but it doesn't work. the room url is: https://www.sportal.ch:443/irj/index.html?NavigationTarget=CollaborationConnector://portal_content/com.sap.ip.collaboration/Rooms/b0ce78ec-3f30-2910-2184-b171271d4d95/workset&NavTargetAsRoot=true
    i have checked the roombackend-properties => they are ok
    i have checked the roles and permissions => they are ok
    what me surprises: when i open a new browser window and type in the mentioned url, our portal-start-page is displayed but in the content area there is no content displaied. i expected, that when i type in the url, then the authentification-dialogue would appear, but it does not.... (does this url only work if i am already logged in the portal??)
    if you have any ideas, how the problem could be solved, please let me know!
    thank you for your help.
    greetings
    flo

    hi ingo
    thank you for the input. i have now solved the problem, perhaps my solution fits for you too. here it is:
    when i use the function "send room-link" the url looks like this:
    https://www.sportal.ch:443/irj/index.html?NavigationTarget=CollaborationConnector://portal_content/com.sap.ip.collaboration/Rooms/9020275c-8348-2810-28a6-a8c1ae60e192/workset&NavTargetAsRoot=true
    with this url i can not access the collaboration room.
    but when i change the url like this:
    https://www.sportal.ch/irj/portal?NavigationTarget=ROLES://portal_content/com.sap.ip.collaboration/Rooms/9020275c-8348-2810-28a6-a8c1ae60e192/workset&NavTargetAsRoot=true
    now i can access the room (with authentification).
    OK, for me the main problem is solved, but can someone perhaps tell me whats the difference between:
    NavigationTarget=CollaborationConnector
    and
    NavigationTarget=ROLES
    thank you for your help!
    greetings
    flo

  • Syncing deletes apps (including Camera+ and Disposable with all content)

    Just connected my iPhone to the laptop and automatic syncic started, as a result of which all my apps, including Camera+ and Hipstamatic Disposable were deleted. Would be worried, but both of them had 1/2 year's worth of pictures. Are they being backed on iCloud too or should i just accept they're gone? So gutted and angry with Apple right now .(

    The built in apps can't be deleted.  If you want them reset back to their original arrangement on your screen, go to Settings>General>Reset>Reset Home Screen Layout.  If your purchased apps are missing, either sync them back to your phone with iTunes or redownload them for free (see http://support.apple.com/kb/HT2519).

  • I want to move the move my photoshop elements photo database from an old pc to a new pc without losing the modified dates and tags created, what is the best way to transfer the database with all the information about the photos

    an old pc to a new one. How to I transfer the database file to save dates that have been modified and tags that have been created

    See:
    Use Backup, Restore to move catalog | Organizer | Elements 6 or later

  • Scale container with all content and scaling mouse events solution.

    That may be useful to someone.
    Glad to see your comments.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    public class ZoomedPanel extends JPanel {
        float scale=2;
        public ZoomedPanel() {
        public void paint(Graphics g) {
            Graphics2D g2d=(Graphics2D)g;
            AffineTransform oldTr=g2d.getTransform();
            g2d.scale(scale,scale);
            super.paint(g);
            g2d.setTransform(oldTr);
        protected void processMouseEvent1(MouseEvent e) {
            int x=(int)(e.getX() * scale);
            int y=(int)(e.getY() * scale);
            MouseEvent ze = new MouseEvent(e.getComponent(), e.getID(), e.getWhen(), e.getModifiers(), x, y, e.getClickCount(), e.isPopupTrigger());
            super.processMouseEvent(ze);
        public Graphics getGraphics() {
            Graphics g=super.getGraphics();
            Graphics2D g2d=(Graphics2D)g;
            g2d.scale(scale,scale);
            return g;
        public static class MyEventQueue extends EventQueue {
            public MyEventQueue() {
            protected void dispatchEvent(AWTEvent event) {
                AWTEvent event2=event;
                if (event instanceof MouseEvent) {
                    if (event.getSource() instanceof Component && event instanceof MouseEvent) {
                        MouseEvent me=(MouseEvent)event2;
                        Component c=(Component)event.getSource();
                        Component cursorComponent=SwingUtilities.getDeepestComponentAt(c, me.getX(), me.getY());
                        ZoomedPanel zContainer=getZoomedPanel(cursorComponent);
                        if (zContainer!=null) {
                            float scale=zContainer.scale;
                            int x=me.getX();
                            Point p=SwingUtilities.convertPoint(zContainer,0,0,(Component)event.getSource());
                            int cX=me.getX()-p.x;
                            x=x-cX+(int)(cX/scale);
                            int y=me.getY();
                            int cY=me.getY()-p.y;
                            y=y-cY+(int)(cY/scale);
                            MouseEvent ze = new MouseEvent(me.getComponent(), me.getID(), me.getWhen(), me.getModifiers(), x, y, me.getClickCount(), me.isPopupTrigger());
                            event2=ze;
                super.dispatchEvent(event2);
        public static ZoomedPanel getZoomedPanel(Component c) {
            if (c ==null) {
                return null;
            else if (c instanceof ZoomedPanel) {
                return (ZoomedPanel)c;
            else {
                return getZoomedPanel(c.getParent());
        public static void main(String[] args) {
            MyEventQueue meq=new MyEventQueue();
            Toolkit.getDefaultToolkit().getSystemEventQueue().push(meq);
            JFrame fr=new JFrame();
            fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            fr.setSize(600,500);
            fr.getContentPane().setLayout(new FlowLayout());
            final ZoomedPanel panel = new ZoomedPanel();
            panel.setLayout(null);
            JButton b=new JButton("Ok");
            b.setBounds(10,10,50,20);
            b.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    System.out.println("here");
            panel.add(b);
            DefaultMutableTreeNode root=new DefaultMutableTreeNode("Root");
            DefaultMutableTreeNode n=new DefaultMutableTreeNode("1");
            root.add(n);
            n=new DefaultMutableTreeNode("2");
            root.add(n);
            n=new DefaultMutableTreeNode("3");
            root.add(n);
            JTree tree=new JTree(new DefaultTreeModel(root));
            tree.setBounds(10,40,60,100);
            panel.add(tree);
            JTextField tf=new JTextField("test");
            tf.setBounds(60,10,50,20);
            panel.add(tf);
            JScrollPane scroll=new JScrollPane(panel);
            scroll.setPreferredSize(new Dimension(400,400));
            fr.getContentPane().add(scroll);
            final JComboBox cbZoom=new JComboBox(new String[] {"0.5","1","2","3"});
            cbZoom.setSelectedItem("2");
            cbZoom.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    float f=Float.parseFloat(cbZoom.getSelectedItem().toString());
                    panel.scale=f;
                    panel.invalidate();
                    panel.validate();
                    panel.repaint();
            fr.getContentPane().add(cbZoom);
            fr.setVisible(true);
    }regards,
    Stas

    Hi,
    really nice work.
    However will it be somehow possible to make the font and icons more precisely painted? You know, I don't want to see "squares".
    However thanks a lot for this code. I think it is useful.
    L.P.

  • Collaboration Room Transport

    Hi All Collaboration Gurus,
    Just needed to know how i could transport Collaboration Rooms from Dev to QA (EP6 SP11).
    Any help would be greatly appreciated.
    Thanks & regards,
    Vibhu

    Hello All,
    I am on SP12 EP & KMC.
    Need to transfer collaboration rooms with all content of Rooms from DEV to PRD server.
    How do we ensure that all memberships, subscriptions, tasks, documents, document metadata, ++ is transferred?
    Have seen the link
    Collaboration Room Transport
    Are there any known issues in this?
    Have anyone done this and what all issues can be taken care of.
    Please update..
    Regards
    Suneel Razdan

  • How to restrict the news creations for members of the collaboration room

    Hi all,
    I have created a Project Room in collaboration and assigned members to that
    room.I need to restrict the room members from creating the news and folders.
    And also only Owner/Admin of the room should be able created the news and
    folders and members should be able view the news and folder
    One more query,i need to remove the room parts which are by default selected
    for that room when select the default templates.
    Can anyone please give me the solution on the above queries.
    It will be very much helpful for me to create collaboration rooms with the
    restricted permissions.
    Thanks in advance.
    PonnusamyP

    Hi Sascha,
        Here I am explaining what is my requirement.
        I have created collaboration room and added room admin and members to the
        room.
        Then in the room maintaince -> I have added the room parts as
         News(private) and the role I have assigned to member.
         When login into portal with the member login and go to the news in the
          collaboration room, member is getting the permissions to add/create news.
          At this point  I want to restrict the members of the collaboration room to view
          the news and only admin of the room should be able to post the news.
          how to go ahead for the above senario.
    Thanks
    Ponnusamy

  • Null links in collaboration room

    Hello,
    I created a collaboration room with the following room parts:
    Project Home
    Documents and Links
    Tasks
    Admin: Room
    Admin: Members and Room Relations
    Team Members
    of these, Admin:Room and Admin:Members and Room Relations are assigned only to Admin members.
    When I create a rrom using this template and enter as Admin, everything is fine. The problem is: whenever I am login with Members role, I am getting 2 null links in place of Admin: Room and Admin: Members and Room Relations.
    I have tried following https://forums.sdn.sap.com/thread.jspa?threadID=1196685 but without any success. I already have these 2 pages permission set for everyone as Read (End user checked).
    I am on EP 7.0 SP16.
    Please help

    Closing for other questions. Had to create new room template for this resolution.

  • Yet Another "All Content Gone" Story (now with v3.0.1!)

    Ever since I purchased my AppleTV (immediately after it was first introduced), it has had the nasty habit of occasionally deleting all content. One day, everything will be there, synced beautifully with iTunes, and then, without warning, I will turn it on and the unit will be empty.
    When I updated to 3.0, everything went fine. I did NOT lose all content. Then, 3.0.1 came out saying it should be installed immediately to prevent the loss of all content. So, I quickly installed it, and of course, when I looked, all my content had been deleted once again.
    I re-synced, which takes about 16 hours for all my content, and thought, "At least with 3.0.1, this may be the last time I have to do this." I used AppleTV to play music and podcasts for the better part of last week, left Friday for a holiday weekend, and then when I return home and turn on AppleTV on Monday, all my content is gone.
    This is so unacceptable, I can barely stand it. Under what standard is it OK to have a computer product that randomly and regularly erases all user data? Especially a system that does not have a backup system of its own?
    One interesting data point is that in the past, when I've lost all data, the AppleTV has still shown as being linked to my laptop (where my iTune library is stored). However, my laptop was unable to see the AppleTV. Well, this time, the AppleTV shows it is not linked to any library whatsoever, AND my laptop is unable to see it.
    So, I've re-established the link and have once again begun the tedious process of waiting a day while the AppleTV and iTunes sync up.
    I have been an Apple customer/fanatic since the Apple ][. The AppleTV is the worst Apple product I have ever owned in terms of reliability. When Steve Jobs said the AppleTV is just a hobby right now, he was right: No regular consumer would put up with this poor behavior.
    If anyone is experiencing the same thing, or has any ideas about preventive measures, please share them.

    I feel your pain David... unfortunately I have no solution for you but only a cry of dissatisfaction myself. I'm in the process of upgrading to a system with a larger hard drive, but until then I was having to constantly backup and delete content from my iTunes library to make room for new stuff. Meanwhile, my Apple TV was sitting there with 125 Gigs of free space! So I thought I could take advantage of the free space by turning off syncing with my capped out hard drive and downloading content straight to Apple TV. But to unsync I find out that I would lose all data on my Apple TV...WTH? Well I guess I can see why they'd do that to prevent abuses, and that I'd have to live with it even though my motives were upright (so I lost season 1 of defyinggravity and a few other shows, I thought my movies were gone too, but they re-appeared). But now, even though I'm not sync'd, iTunes continually tries to transfer my movies and tv shows to my Dell. Every time I turn around my computer's hard drive is full again with transfers that I didn't initiate. I like to have my pictures and music synced but I fear that the only thing left to try is to totally disable all syncing until I get my mac, but if I do, I will lose all data on Apple TV making it a useless decoration. There has got to be a better way to manage digital media. And Apple calling Apple TV a "hobby" is such a copout for not providing the best support for users.

  • Accessing KM Content from Collaboration room & Storing rooms in KM

    Hi all
           We have a scenario. We want to access KM Content from collaboration rooms. Is it possible?
    When we create a Room Template can we change the 'Path to Initially Displayed Folder'  to anything other than  ' /room ' ?
    Our problem is we want all the room parts to be stored inside our KM.
    If anybody knows the answer please help us
    Regards
    Aparnna

    Hi Aparna,
    Your requirement is definitely possible and that's the reason for me to provide the earlier link for configuration.
    Also see this link on  <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/43/4fd9ac6c5c3c40e10000000a422035/frameset.htm">Providing Target Folders for Room Documents</a>
    Here you find information about "Configure Entry Point Providers" and "Prepare the Entry Point with a KM Folder of Your Choice " which would point your rooms to the repository of your choice.
    Hope this helps.
    Regards,
    Venkat.

  • My iTunes got deleted off a (no longer working) computer. Is there a way I can transfer all content from my iPhone onto iTunes on a new computer? I want to update my phone, but do not want to lose any music off it when syncing it.

    My iTunes got deleted off a (no longer working) computer. I have lost all music & data that was on this original itunes. Is there a way I can transfer all content from my iPhone (music & photos) onto iTunes on a new computer? I want to update my iphone (3GS), but do not want to lose any music off it when syncing it. Help please!!

    By design, the iphone will sync itunes content with one computer at a time. Any attempt to sync such content with a second computer will result in ALL itunes content being first erased from your phone & then replaced with the content from the second computer. This is a design feature and cannot be overridden. Because you are using a new computer, your phone will see this computer as a "new" computer. The itunes content sync is one way: computer to phone. If you have photos that were synced to your phone or music ripped on your own that were not backed up, you will first have to extract them from your phone using third party software, before you do anything else, as Apple makes no provision to do so:
    http://www.wideanglesoftware.com/touchcopy/index.php
    Once you've done that, do the following in the order specified:
    1. Disable auto sync when an iPod/iPhone is connected under iTunes>Preferences(under the edit menu if using Windows)>Devices in itunes.
    2. Make sure you have one contact & one event in the supported applications(Address Book & iCal or Outlook, Windows Address Book) on your computer. These entries can be fake, doesn't matter, the important point is that these programs not be empty.
    3. Connect your phone, iTunes running, DO NOT SYNC at this point.
    4. Store>Authorize this computer.
    5. File>Transfer Purchases(To make sure all purchased content on your phone will be in your itunes library).
    6. Right click in the device pane & select reset warnings.
    7. Right click again and select backup.
    8. Right click again & select restore from backup, select the backup you just made. When prompted to create another backup, decline.
    9. This MUST be followed by a sync to restore your itunes content, which you select from the various tabs, You'll get a popup regarding your contacts & calendars asking to merge or replace, select merge.
    You should be good to go.

  • HT1373 I bought an ipod nano 5th gen and it came with 900 songs on it. How can i retain the music before i authorize this unit to my itunes account? It says it will erase all content once I sync with my imac7. Is there anyway to keep the music??? please h

    I bought a used ipod nano 5th gen and it came with 900 songs on it. How can i transfer, sync, and retain the music before i authorize this unit to my itunes account? It says it will erase all content once I sync with my imac7. Is there anyway to keep the music??? please help!!
    Thanks,
    Aaron

    The music does not belong to you.  You have no legal right to it and there is no way to keep it.
    Sorry

  • How can I transfer video taken with my iPhone to my iPad WITHOUT using a computer or iTunes? I'm going to Europe for a month and want to use my iPhone to take pics and video, then come back to the hotel room and use my iPad to edit/store each evening.

    How can I transfer video taken with my iPhone to my iPad WITHOUT using a computer or iTunes? I'm going to Europe for a month and want to use my iPhone to take pics and video, then come back to the hotel room and use my iPad to edit/store each evening. I don't want to use my iPad to take the video...too large/bulky. And I WON'T have a computer with me...I purchased the iPad to take with me so I could use the RDC to my home computer and avoid taking my computer at all. Is this possible?

    here is a cheaper solution than camera kit and a lot easier if you have WIFI available.
    I use the PhotoSync APP (I think its a $1.99) will transfer videos and photos over WIFI to any other IOS device or even PC/MAC. Great app since I like doing video and photos on my IPHONE and transfer to IPAD2 without synching through computer or doing cloud based storage.
    You can even send photos/videos from your MAC/PC to your IOS devices that way too. Makes it so much easier.
    Here is the link;
    http://www.photosync-app.com/

  • Problem with collaboration rooms

    Hi all,
    I have a prolem in collaboration rooms, After i create a room, i will get a link to enter the room. when i click on the link, i am able to enter the room but with an  error saying
    <b>"No connection to groupware server (No logon data found for system lotussystem). Refresh this screen or contact your system administrator if the problem persists"</b>
    Can anyone please help me why the error is??? and also what should be done for this.

    Kavitha,
    Users should be mapped to appropriate systems through a user name and password.
    In your case navigate to USer Management and enter an appropriate Username and password for the system lotussystem through the User mapping tab. The User name and password would be used to logon to the system.
    This should solve the problem.
    Regards
    Nithya

Maybe you are looking for

  • Jumpstart across subnets

    Hello I am having trouble configuring my jet toolkit to boot across subnets. It works fine in the same subnet but when it goes across subnets it seems to lose the default router for the client. {0} ok boot net:dhcp - install Resetting... POST Sequenc

  • Flash Drive not mounting, shows up in sys. prof. and USB Prober

    I have a 4Gig Flash Drive that doesn't mount. It shows up in both SYstem Profiler and USB Prober. Is there any way to "fix" it? I don't need to recover any files - I just want to be able to use it. It used to work, maybe a year ago. Havn't touched it

  • About bdc rec & usage in target prog

    hi guru's, after the bdc recording is done, ihave got it in to a new program. can u give how to proceed further. where to insert the forms & code of this bdc_rec in my target program. please, can u give me a step wise like u did earlier for recording

  • Multiple checkbox are to be checked when selecting one checkbox in formlayo

    Hi, I created the checkbox in apex 4.0, as LOV(list of value), I want to select multiple checkbox at a time ,when by selecting one checkbox among them.......

  • F-53 and payment advice

    Hi all, does any one of you know how i can get a payment advice after i cleared my vendor invoices with transaction F-53. I need to do this as the client wants to issue checks manually. thanks Dave