Collaboration - Creating rooms and displaying to a specific group

Hi,
I am new to enterprise portals. Can anybody guide me in this context?
I want to create some collaboration rooms which would be specific to groups. Eg. The Students should be able to see rooms specific to their subject. The professionals should be able to view the collaboration specific to subjects that they have selected in their profile. Administrator should be the only user who can create rooms and manage it.
I see about the roles in the book but i am a bit confused.
How do i do that?

Ramachandran Reddy,
Just goign through the forums found the question unanswered. i have done the process what you have asked for.
1)      If you want to create Collaboration Rooms and assigning member's to the room created you should have a role assigned to you i.e. eu_role.
2)      To assign those roles go to User Management and assign to your User or can ask the System Administrator to do it.
3)      After assigning the role you will see New WorkSet assigned to you in the Portal i.e. Home.
4)      In the top Navigational area go to Content Administration. Click it
5)      Go to Collaboration Content. Click it.
6)      On the left side Detailed Navigational area you will find Room Creation link. Click it.
7)      That will open a New view on right side panel where you provide the details to create a Collaboration Room like
             a) Name : Collaboration Room Name
             b) Description : Give some description about the room you are creating
             c) Owner: Generally as you are logged in, so the Owner will be you, but if you want to change the user you can also do it.
            d) Categories: Select any one of the categories.
            e) Template: There are Meeting templates, Project Template & Team template, depending upon the requirement you select the required template.
                You can also create your own template
Process to Create Room Template: On left side navigational area you will find a link "Room Template Administration". Click it.
              I. You will see a New Template tab, click it
              II.      A view is displayed where you need to give the details for the creation of Room template. In the Workset option box choose the option where you want to create the template. Click next.
             III.      Add the role and give the required page permissions. Click next.
             IV.      Incase you want to extent the then you can also extent the template. Here you can select the user's who can use the template you have created.
             f) Choose the Room Type, it can be a Public, Private and Restricted and also in the add the members.
             g)      When you click the Select button a new window is opened, just enter the user's name and add them to the room created. Click next.
8)      A New Collaboration room is created and members are added to them.
9)      Now if you want to send some messages or documents to the member's then go to the Top level Navigational and there you will find Home tab. Click it
10)  Goto the Work in the navigation panel select the room you have created.
11)  Choose the member from the memberlist , now depending upon the requirement send email or instant message to the user.
if you feel the process is useful please reward points.
regards
Anil Dichpally

Similar Messages

  • Why can´t I create projects and tasks into a External Group?

    Why can´t I create projects and tasks into a External Group?

    At this time, it's not possible to collaborate on a Project with External Contributors or add an Externally-Facing group to a Project. This is functionality that we we hope to add at some point in the future.

  • How to create links and display information dynamically depending on search

    hi everybody
    I have a search textbox in which the user has to give the search string like date of birth. For the search string , records will be retrieved from the database. The number of recordds will vary. Only the names of the corresponding person has to be displayed. Each one will have a hyperlink and on clicking the hyperlink the other information like name,address should be displayed.
    I have displayed the names in JSP. How to create a link for each name and display the other details corresponding to same person? The number of records retrieved will vary depending on the date of birth. Thanks in advance.

    Hi,
    what i had done in my project was, getting the collection of results for the search query i.e By giving the date of birth, you will get the matching names as collection and iterate this collection like
    <%
    Collection nameCollection = (Collection) request.getParameter("NameCollection");
    Iterator ite = nameCollection.iterator();
    String name = "";
    for (int i = nameCollection.size(); i > 0; i--)
    name = iterator.next();
    %>
    <A HREF = "http://MyWebSite/destination.jsp?name = <%name%> "><%name%> </a>
    <%}%>
    For the above code, in Href i am using name in two places. one is for display. i hope you dont have any problem in this
    Another one for getting the information about the particular name. use request.getParamter method in the destination Jsp and do one more DB call by using the input parameter.
    Note: This is working only unique Name. otherwise use HashMap for getting the userId and Name. By passing the userId in the backend we can get the information.
    I hope this will helpful to get out of the issue
    Regards
    Balakrishnan.R

  • How do you create a new layer in a specific group layer?

    I'm trying to work within a particular group and every time I click the new layer button or paste a jpg image into the document, the new items appear at the very top of the layers panel and I have to move it down the list and place it in the group I'm working in.  Is it possible to paste an image or create a new layer so that it appears in a specific layer  group?

    Yes, but you need to from your layers palette flyout menu remove the check in front of paste remembers layers.
    Or else the bitmaps in your clipboard have no illustrator layer assigned, therefore Illustrator creates or adds to an existing layer 1.

  • Create, Edit and Display Longtexts

    Hi All,
    I have a question about creating, editing, displaying and deleting longtexts (like sapscript longtexts).
    I am creating a custom transaction (Module pool program) for BUDGET DISTRIBUTION REQUEST where in i need to give the user a provision to enter longtexts for PROJECT OBJECTIVE and JUSTIFICATION.
    What i know is we can save and read the texts using SAVE_TEXT AND READ_TEXT FM's but it needs object id/object name. As we are storing all the data for this transaction in custom tables i dont know how to have this OBJECT NAME/ID.
    How do you do this?
    Please help me out...
    Thanks in advance,
    Vijay

    HI,
        use below code
    REPORT ZTEST102.
    DATA IT_LINES LIKE  TLINE OCCURS 0 WITH HEADER LINE.
    IT_LINES-TDFORMAT = '*'.
    IT_LINES-TDLINE = 'text'.
    APPEND IT_LINES.
    CALL FUNCTION 'CREATE_TEXT'
         EXPORTING
              FID         = 'ST'
              FLANGUAGE   = SY-LANGU
              FNAME       = '09999'
              FOBJECT     = 'TEXT'
            SAVE_DIRECT = 'X'
            FFORMAT     = '*'
         TABLES
              FLINES      = IT_LINES
         EXCEPTIONS
              NO_INIT     = 1
              NO_SAVE     = 2
              OTHERS      = 3.
    FREE IT_LINES.
    CALL FUNCTION 'READ_TEXT'
         EXPORTING
            CLIENT                  = SY-MANDT
              ID                      = 'ST'
              LANGUAGE                = SY-LANGU
              NAME                    = '09999'
              OBJECT                  = 'TEXT'
            ARCHIVE_HANDLE          = 0
       IMPORTING
            HEADER                  =
         TABLES
              LINES                   = IT_LINES
         EXCEPTIONS
              ID                      = 1
              LANGUAGE                = 2
              NAME                    = 3
              NOT_FOUND               = 4
              OBJECT                  = 5
              REFERENCE_CHECK         = 6
              WRONG_ACCESS_TO_ARCHIVE = 7
              OTHERS                  = 8.
    LOOP AT IT_LINES.
    WRITE:/ IT_LINES.
    ENDLOOP.
    <b>text will be stored in table stxh,stxl.</b>
    Regards
    amole

  • Create folder and move files to specific directory in AL11

    My requirement is to create a new folder in one of the existing directories in AL11 and move some files into it.
    I searched the forum and found this solution but it creates folder only in DIR_HOME directory.
    data: unixcom like rlgrap-filename.
    data: begin of tabl occurs 500,
    line(400),
    end of tabl.
    unixcom = 'mkdir mydir'. "command to create dir
    "to execute the unix command
    call 'SYSTEM' id 'COMMAND' field unixcom
    id 'TAB' field tabl[].
    I want the folder to be created in some other directory DIR_INTERFACES .
    Any suggestions are welcome ..

    Get complete path (physical path) using FM FILE_GET_NAME_USING_PATH.
    Default directory is DIR_HOME, hence it creates file in that directory...If you specify complete folder name, it will be created under that path..
    Concatenate mkdir
    space
    <physical path>
    mydir
    into unixcom.

  • Select a Row in a table and display the related in formation

    I have a uix page displaying table "room" ,there are several patients in every room .What I want to do is: Using "SingleSelection" to select a room and display some attributes of this room and the related patients in a table with using another page. How can I do this? Can I do it declaratively?
    room.uix
    <bc4j:table name="viewTable" width="80%"
    alternateText="No rows found">
    <tableSelection>
    <singleSelection selectedIndex="0"
    shortDesc="Select Row"
    text="">
    <contents>
    <submitButton text="Rooms"
    ctrl:event="update"/>
    </contents>
    </singleSelection>
    </tableSelection>
    <bc4j:keyStamp>
    <bc4j:rowKey name="key"/>
    </bc4j:keyStamp>
    <contents>
    <!-- A bc4j:column element is added for each attribute
    in the ViewObject. -->
    <bc4j:column attrName="PacsDemonstrationId">
    <columnHeader>
    <bc4j:sortableHeader/>
    </columnHeader>
    how to then write patients.uix?...
    Thanks
    Yong

    Hi,
    Check the below thread
    [Find the records in Table control    |Reg : Find the records  in Table control]
    in the above thread, you can omit the POPUP_GET_VALUES function module since you have an input field for search purpose
    Hope this serve your purpose
    Cheers
    Ramchander Rao.K

  • How to create Collaboration Rooms and Discussion Forums

    Hi,
    I want to create Collaboration rooms and Discussion Forums for local portal. I am using EP 7.0 SP9. Can any body tell me detailed step by step to create these things?
    Is is possible for local portal or need any configuration or something else?
    I dont know that thing so any body help me in this regard.
    Regards,
    Krishna.

    Hi Krishna,
    Please go through these links:
    Creating Rooms:
    [http://help.sap.com/saphelp_nw04s/helpdata/en/44/5ea05d12334ddfe10000000a1553f7/frameset.htm]
    Discussion Forums:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/44/93780e2d206999e10000000a11466f/frameset.htm
    How to Integrate a Forum into a Collaboration Room (NW7.0):
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/80e5bf16-fe22-2a10-15a2-a613b4bcef1b]
    Hope these links will be helpful for you.
    Regards,
    Ganpati Jha

  • Collaboration Rooms and Document Uploads from Network

    Hi,
    We are starting to use Collaboration Rooms and would like the Documents iview to point to our network file system, so when a user uploads a file he can do it via the portal or our network drive. We are using FSR's elsewhere and are wondering how to incorporate it into a collab room document iview. Our portal environment is NW04 Stack 12.
    Any assistance would be most appreciated.
    Thanks,
    Kris

    Hi Kris,
    what you need to do is to create a collaboration room template that would integrate a KM Navigation iView that points to the file share. Of course, first you need to integrate the share via repository manager in KM.
    I hope you know how to integrate the share into KM. For more on how to create a room template check the info in this thread:
    Collaboration Room Creation error on NW04 SP9
    Hope this helps,
    Robert

  • Create Custom List, store information and display the information on web part

    Hi,
    Working on a Custom visual web part in sharepoint 2010. Scenario is i would like to have two button on that web part, one is "I read it " button for users to tag the page and another one is "find the list of people who already tag/read that
    page". i have added a visual web part into my project and two buttons event within it. Now goal is once user click on "I read it button" it will create custom list to store urls and usersname. When click on "Find the list of people"
    get the username only for that specific page whoever read/tag it.
    1. How can i create the custom list to store all users information
    2. Retrieve the information from Custom List and Display the list of people based on specific page url who ever read/tag that page. 
    Any help will be greatly appreciated!

    Appreciated for your help!
    List has four columns Title, Hyperlink, Created by, and created. i just wanted to display Users and hyperlink column. i tried to retrieve the items from list but query is not returning any items and displaying. As you said in CAML query we can pass the page
    url to get the collection of user for that particular page. but is not something will be hard coded value, if we pass the page url into CAML query? is there something we can dynamically retrieve the users based on page url.  for example, if users visits
    30 different page url, i need to put all those urls into CAML Query. do i need to create custom user field or i can use Created by field to get the users? please correct me if i am wrong. Below is the code:
    using System;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.WebControls;
    using System.Data;
    namespace CustomUserControl.VisualWebPart1
        public partial class VisualWebPart1UserControl : UserControl
            protected void Page_Load(object sender, EventArgs e)
            protected void btnRead_Click(object sender, EventArgs e)
                using (SPSite site = new SPSite(SPContext.Current.Web.Site.ID))
                    using (SPWeb web = site.OpenWeb())
                        web.AllowUnsafeUpdates = true;
                        SPList list = web.Lists["UserInformation"];
                        SPListItem newItem = list.Items.Add();
                        SPFieldUrlValue hyper = new SPFieldUrlValue();
                        //hyper.Description = "Google";
                        hyper.Url = System.Web.HttpContext.Current.Request.Url.AbsoluteUri.ToString();
                        newItem["Hyperlink"] = hyper;
                        newItem.Update();
                        web.AllowUnsafeUpdates = false;
            protected void btnDisplay_Click(object sender, EventArgs e)
                SPWeb web = SPContext.Current.Web;
                SPList list = web.Lists["UserInformation"];
                SPQuery query = new SPQuery ();           
                query.Query = "<Where><Eq><FieldRef Name='Hyperlink' Type='URL' /><Value>http://nyc01d1sptmp01:8080/diligent/wiki/cft/Pages/home.aspx</Value></Eq></Where>";
                DataGrid grdList = new DataGrid();
                SPListItemCollection items = list.GetItems(query);
                DataTable table;
                table = new DataTable();
                table.Columns.Add("Title", typeof(string));
                table.Columns.Add("Hyperlink", typeof(string));
           table.Columns.Add("Created by", typeof(string));
                DataRow row;
                foreach (SPListItem result in items)
                    row = table.Rows.Add();
                    row["Title"] = result.Title;
                    row["Hyperlink"] = result.Name;
           SPFieldUser userField = (SPFieldUser)result.Fields.GetField("Users");
                    SPFieldUserValue userFieldValue = (SPFieldUserValue)userField.GetFieldValue(result["Users"].ToString());
                    SPUser user = userFieldValue.User;
                    string name = user.LoginName;
           row["Created by"] = name;
                grdList.DataSource = table.DefaultView;
                grdList.DataBind();

  • Hi I want to create a search form with drop down search criteria. This form should then search on the same site and display the search results. Is there HTML available for this? Or an oline site that I can use to build this form? I created a form in Jotfo

    Hi I want to create a search form with drop down search criteria. This form should then search on the same site and display the search results. Is there HTML available for this? Or an oline site that I can use to build this form? I created a form in Jotform.com, but this form doesn't search the site, instead it sends me an e-mail. Do you have a solution for me? Thanks.

    Hi I want to create a search form with drop down search criteria. This form should then search on the same site and display the search results. Is there HTML available for this? Or an oline site that I can use to build this form? I created a form in Jotform.com, but this form doesn't search the site, instead it sends me an e-mail. Do you have a solution for me? Thanks.

  • The FInal Step, i have created a program to all my specifications and i am now ready to connect the hardware

    I have created a program to all my specifications and i am now ready to connect the hardware.
    My program was created to automate the cleaning process of an atmostpheric chamber. It controls two valves based on the pressure readings and time intervals. When creating this program i figured that if a could make a boolean turn on or off based on the pressure readings then it would be no problem somehow wiring it to send a signal to the hardware. I have reached that point and don't know how to proceed.  I was told that the first step is to figure out what kind of Card is being interfaced with the program. 
    I have read up on this subject and it seems like there is many ways to do it.
    All sugestions will be greatly appreciated

    I'm not sure how you can create the program without knowing what hardware you're going to be using. But...  What have you read up on? You will need to select your data acquisition hardware. What kind of signals do you have? What kind of transducers do you have? What kind of actuators do you have? You may want to start with:
    Introduction to Data Acquisition
    Digital Voltage Measurement Fundamentals
    Complete Data Acquisition Tutorial
    EDIT: Re-reading your post and seeing Waldemar's response: Do you actually already have a card installed?
    Message Edited by smercurio_fc on 07-29-2008 02:25 PM

  • Create a DAQ program and display results on with waveform and spreadsheet

    I need help creating a DAQ program that will read digital and analog channels and display on a continuous waveform, and then display readings on a spreadsheet

    You definitely want to start with the example programs. There are many of them which ship with LabVIEW and even more on NI's Example Programs Library (http://www.ni.com/devzone/libraries/default.htm). Also, if you are wanting to use an Excel spreadsheet, I would suggest getting the Report Generation Toolkit for Microsoft Office. It simplifies your coding immensely and will save you a lot of time.
    J.R. Allen

  • Creating Bar Charts using Java and Display in jsp

    Hi..Is it possible to create a servlet that processes data from database and display the values as Bar Charts in jsp pages. If its possible, is there any examples on how to achieve that?

    I don't get it. You already know what needs to be done to solve your problem, the only thing you are missing is the HOW. That's the easy part, if only you break down what you have to know:
    1) how do I show an image on a website (this is a basic HTML question actually, not actually related to servlets/JSPs directly)
    2) how do I fetch the path from a database (JDBC question) so that I can use this path to link to my image on disc
    So what is preventing you from figuring out how to do these two simple tasks? Some clever google searches should give you all the information you need in no time.
    by the way: are you sure that you need to store these paths in the database? Is this part of some file upload component?

  • Collaboration rooms and Inner Page == embedded

    Hi,
    does Inner Page Isolation Mode has always have to be set at URL?
    When we set Inner Page Isolation Mode to Embedded the collaboration rooms and collaboration detailed navigation are not working anymore and the browser is redirected to:
    http://somecompany.org:50100/irj/portal?standAlone=true&windowId=WID1243256552687
    Any ideas what could be the cause and how to fix it, besides setting Inner Page isolation mode to URL?
    Maybe EPCM.doNavigate used in collaboration rooms requires that the Inner Page Isolation Mode should be set to URL?
    Regards,
    Ladislav
    Edited by: Ladislav Pomezny on May 25, 2009 3:34 PM

    I've set inner page isolation mode to url.

Maybe you are looking for

  • Brightness at Windows 7 not working - solved

    In my T400 with Windows 7 installed I had the problem that the brightness adjustment didn't work. I searched all forums and installed all new released drivers for Windows 7 (released version) but it didn't solve my problem (including hotkey-driver).

  • Can't open AEP file, crashes AE 6 with error messages...

    I've been rendering a 3D scene for a few weeks and got all the final frames finished on Thanksgiving. I've been composing them all weekend and one particular file I had all put together and then saved it and closed it and tried to open it Adobe Media

  • Apple ID change on an iPhone 5

    my wife uses one of my i phone 5's. I want to change the apple id on the phone to hers and delete mine. however i want to keep the existing content on the phone as thats hers and it has not been sync to i cloud. any ideas

  • How do I read the firmware revision of a PCI-6601?

    I need to read the firmware revision of my PCI-6601 card. I cannot find any reference to this in the NI-DAQ Function Reference Help document nor in the Measurement and Automation Test Panel. Thank you for your help!

  • Is is possible to convert the movies purchased on itunes to DVD?

    Is is possible to convert the movies purchased on itunes to DVD? (In other words you would be burning the movie or tv shows to a blank DVD).