How do i include a calendar portlet from groupspace in my portal

hi all
i have created a portal web project and create a portal,
the domain created for the portal is normal portal domain without the groupspace/collaboratio facets,
now i want to include a calendar portlet into my application where users of my portal can use that calendar to schedule their activities,
What do i need to do integrate calendar portlets into my portal?

Biren,
If you want to use calendar portlet,your domain should support the groupspace Framework configuration.
Here is steps(WLP9.2):
(1)Create a domain which support portal and groupspace(Check the groupspace checkbox).
(2)In workshop:
Create a portal EAR project(Select Collaboration API and Collaboration portlets App from weblogic portal Collaboration facet)
Create a portal web project(Select Collaboration portlets Checkbox from weblogic portal Collaboration facet)
Create a data project(if required)
(3)Now open the merged projects view in the workshop.
(4)From the portal webb project copy the portlets folder.
(5)Now create a .portal file and keep the calendar portlet on the portal file.
You can use all the Collaboration portlets(Email,Tasklist,calendar,Address Book,Discussion).It needs same configuration for every one.
In weblogic portal 8.1.4 you need to manually run the SQL scripts and update web.xml/weblogic.xml but in 9.2 while creating the domain configuarion it does all the necessary task.
Thanks
Bishnu
Regards
Bishnu

Similar Messages

  • How can i import my calendar events from google calendar to ical?

    how can i import my calendar events from google calendar to ical?

    To set up CalDAV support for Google Calendar in Apple's iCal, follow these steps:
    Open Apple iCal, go to Preferences and then the Accounts tab.
    Click on the + button to add an account.
    In the box that pops up, enter a description for the account and your Google Account username and password.
    Under Server Options, add the following URL:
    https://www.google.com/calendar/dav/[email protected]/user//www.google.com/calendar/dav/[email protected]/user
    Replace '[email protected]' with the email address that you use to log in to Calendar. Make sure to include the '@domain.com' portion (which is @gmail.com for Gmail users) in this section.
    DO NOT substitute your username for 'user' at the end of the URL.
    Leave the Use Kerberos v5 for authentication option unchecked.
    Click Add.
    Under the Delegation tab, select the calendars you'd like to add to iCal by checking the boxes next to them. You may need to hit refresh to get the latest list of calendars.
    Add your email address to your Address Book card by selecting Add Email. You'll be prompted to add your email address only if your address is not already in your Address Book.
    You won't be able to invite or email guests to Google Calendar events within iCal if your address is not in your Address Book.
    Your Google Calendar will now appear in iCal's list of calendars, and changes you make to your Google Calendar in iCal will be reflected when you sign in to Google Calendar.
    Event information will automatically refresh every five minutes. You can change this interval by opening the iCal > Preferences > Accounts menu and selecting a new refresh interval under the 'Refresh calendars' drop-down. Keep in mind you can also force a refresh by selecting a calendar and pressing the Apple and R keys at the same time.
    Calendars that are checked but disabled have already been added to iCal - you can remove them from within iCal.

  • How can I remove dropdown calendar menu from date/time field.

    I set up a javascript calculation based on the input of a date field. As long as the user enters the date manually the script works fine. If user attempts to select date by drop down menu then script will not work. How can I remove the calendar feature from the Date field?

    You may have to wire custom script to get you what you need. That would probably work on 'exit' event.
    Just you give you better Idea here is some thing I have on a date field. If user types his own date instead of picking from calendar this code checks whether it is valid date or not and returns to the same field either they enter valid date or clear the field.
    This is FormCalc script. You may get the idea how this works and make it work for you using the same logic either in FormCalc or JavaScript.
    ----- form1.SOF.Head.Table1.Row1.ReqDate.Date_ReqDate::exit: - (FormCalc, client) ------------------
    if (HasValue($)) then
    if (Len($.rawValue) == 10) then
    var S1
    var MM
    var DD
    var YYYY
    var Derror
    var D1
    var D2
    var S2
    Derror = 0
    D1 = 0
    D2 = 0
    S1 = $.rawValue
    D1 = At(S1, "-")
    S2 = Right(S1, 5)
    D2 = At(S2, "-")
    if (D1 > 0 and D2 > 0) then
    if (D1 == 3 and D2 == 1) then
    MM = Substr(S1, 1, 2)
    DD = Substr(S1, 4, 2)
    YYYY = Substr(S1, 7, 4)
    elseif (D1 == 5 and D2 == 3) then
    MM = Substr(S1, 6, 2)
    DD = Substr(S1, 9, 2)
    YYYY = Substr(S1, 1, 4)
    else
    Derror = Derror + 1
    endif
    else
    Derror = Derror + 1
    endif
    if (Oneof(MM, "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12")) then
    Derror = Derror
    else
    Derror = Derror +1
    endif
    //xfa.host.messageBox("MM"+ Derror, "Incorrect Date", 1, 0)
    if ((Oneof(DD, "01", "02", "03", "04", "05", "06", "07", "08", "09")) or ((DD >=10) and (DD <= 31))) then
    Derror = Derror
    else
    Derror = Derror + 1
    endif
    //xfa.host.messageBox("DD"+ Derror, "Incorrect Date", 1, 0)
    if ((YYYY >= 1975) and (YYYY <= 2050)) then
    Derror = Derror
    else
    Derror = Derror + 1
    endif
    //xfa.host.messageBox("YYYY"+ Derror, "Incorrect Date", 1, 0)
    if (Derror > 0) then
    xfa.host.messageBox("Preferred valied date between Jan 01, 1975 and Dec 31, 2050. ", "Incorrect Date", 1, 0)
    xfa.host.setFocus($.somExpression)
    else
    //good
    $.formattedValue = Format("MMM DD, YYYY", Concat(YYYY, MM, DD))
    if ($event.shift) then
    //xfa.host.messageBox("Shift")
    var sh
    sh = 1
    //xfa.host.setFocus("xfa.form.form1.SOF.Head.RadioAttachTo.RadioAttachTo3")
    else
    if (xfa.event.commitKey == 1) then
    var A
    A = 1
    else
    xfa.host.setFocus("xfa.form.form1.SOF.Head.Table1.Row2.CustName")
    endif
    endif
    endif
    else
    xfa.host.messageBox("Preferred valied date in format MMM DD, YYYY.", "Incorrect Format", 1, 0)
    xfa.host.setFocus($.somExpression)
    endif
    endif
    Good luck,
    SekharN

  • How can I access a calendar backup from my old iPhone?

    How can I access a calendar backup from my old iPhone?
    I recently had to get a replacement iPhone 4. The tech at the Apple Store thought that I might have had a software problem and recommended that I not "restore from backup," but start this phone as a new device and just sync the apps and what-not. My calendar on my computer was different than the one on my old phone, though, and now I need the data from my old iPhone calendar. I did back up my old phone just prior to taking it to the Apple Store.
    HELP!

    Well what you can do is update to ios5 then use icloud to sync your calandar up to your phone then restore your phone as new and when prompted in the new phone setup put in your icloud username and password and you will have your calandar events back.

  • How can i set my calendar start from Monday NOT Sunday like it is now?

    How can i set my calendar start from Monday NOT Sunday like it is now?

    Read this thread: https://discussions.apple.com/message/11501621#11501621
    For example, if you set the Regional format to United Kingdom, the days will be re-ordered but it will have other effects as well which you probably don't want.

  • Porting portlets from WebSphere to Weblogic Portal Server

    How to Porting portlets from WebSphere to Weblogic Portal Server can any one help
    me by providing the suitable steps , or material to know how to go about it.
    Thanks in advance

    To be in same page, iam running the client program using the IBM jre and using all the websphere client jars set in classpath. This program conatins intial context factory as "com.ibm.websphere.naming.WsnInitialContextFactory" and provider url as "iiop://hostname:portnumber" it contacts the EJB bean method which is hosted on the weblogic server on the "hostname" machine. When it tries to contact i get the errror as
         "javax.naming.NameNotFoundException: Context: , name: java.iecc.env.ejb.elf.client_new(My JNDI name): First component in name java.iecc.env.ejb.elf.client_new not found. [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0]"

  • How do I delete all calendar entries from iPhone 3G S

    My iPhone calendar is out of sync with Outlook (2007, connected to an Exchange server). There are appointments no longer in Outlook that are still on the iPhone, and appointments with the wrong time on the iPhone. SO I want to remove all the calendar entries from the iPhone and then redownload everything from Outlook.
    So how do I delete all the calendar items from the iPhone WITHOUT deleting them from Outlook or messing with my Outlook profile?

    Thanks, Allan. Actually, I prefer to sync my calendar via iTunes because I refresh Outlook and sync via iTunes much more frequently than I fire up VPN to get directly to exchange. But I did use your tip the other way - I turn ON Exchange Calendars to blow away my current iPhone content, then turned it back off to delete the Exchange content. That left me with an empty iPhone calendar that I could then load via iTunes sync.

  • How do I send a calendar invite from my phone to a non-Apple device (PC using Outlook) in a non-iCloud format?

    I have searched but haven't come up with an answer yet.
    Here's my situation:  I use multiple calendars across multiple platforms (work and home, Exchange & iCal).  To keep them in sync, I send an invite to one or the other (work email / personal email).  While I can fairly reliably send an email from work (Outlook / Exchange) to my iCal via email (using Mail on iPhone, iPad or MacAir), I cannot do the reverse.  The culprit, per se, is our corporate security policies.  Since the invite comes from iCloud and to accept it (and have it added to my calendar), I have to communicate with iCloud.  But alas, said communication is blocked (corporate stance:  since it's possible to do file sharing it's been tagged as such and blocked).
    While I would love to change the corporate policy, I am unable to do so
    So, my question is how do I change the invite to not come from iCloud?  I tried switching off iCal sync in iCloud, but when I do, the invitation option within iCal no longer exists.
    Is there a preference switch somewhere that I am missing?

    Is the message saying to log into iCloud on her device and not only a computer?
    To use iCloud on a you must have an Apple device that can use iCloud.
    To enable iCloud on your Windows PC (Windows 7 or 8 required), first set up your iCloud account on your other iOS devices or Mac, then install iCloud for Windows.
    To do what you want:
    Share iCloud Calendar with PC user
    http://computers.tutsplus.com/tutorials/techniques-to-share-apple-and-google-cal endars--cms-20057

  • How do I delete a calendar event from iPad 2?

    Hello, I have a MacBook Pro running OS X Lion and my wife has an iPad 2.
    I invited her to a recurring event through iCal on the MacBook Pro.  My wife accepted the invite and added it to her calendar on the iPad 2.  I later updated the event from monthly to every four weeks.  My wife accepted the update but it added it as a second event on the iPad, i.e., both the original monthly series and the four-weekly series are present in the iPad calendar.  On the MacBook Pro only the updated event series is present.
    I've since deleted the event on the MacBook Pro.  My wife received the notification of the delete on the iPad 2 but there was no option to delete the event.
    How can I delete the two recurring iPad series?

    View the calendar in Month view.
    Tap on the event. You should see an outline of an arrow pointing to the event. At the opposite end of the arrow from the event should be and Edit button.
    Tap Edit and a larger box with the details of the event shall appear. At the bottom of that box should be a Red Delete button.
    This should appear for all events but perhaps automatic events or pleating events are different.

  • How to extract/format the calendar week from date?

    Hi,
    we are using WebI XI 3.1 SP3 in combination with SAP-BI(BW) 7.2.
    From a BW-Query we get a normal date (21.03.2011) and we want
    to show our KPIs/ key data per calender week (12.2011).
    In the universe-designer we only can get calender month from a calender day
    (right click to the dimension --> object format --> Date/.. --> Mmm jjjj).
    So the question is, HOW CAN WE GET THE CAL WEEK within SAP-BO (Universe/WEBI)?
    Thanks for help.

    Hi Tim,
    Can't you use the Week() function in Webi for this? It will return the week of the year as a number.
    Thanks

  • How can I remove old calendar names from the iTunes sync list?

    I gave my calendars new names as part of reducing the total number of calendars in my iCal, and now iTunes still lists the old calendar names as well as the new ones in its "selected calendars" list, even though these names are no longer present in my iCal nor on my iPod Touch. How can I remove the old calendar names?

    The "genius" folks at the Apple Store lived up to their names. The key was to reset the iSync history in the iSync Preferences.

  • How can I include a javaScript files from within jsf component

    Is there any way using which I can include javascript files from my jsf component. Because otherwise I have to write all the javascript commands using writer.write which is very tedious rather than this I just want to include the javascript file which contains all the functions required. Also I want that this file should be included only once irrespective of the number of components included.
    Thanx in advance

    This doesn't depend on JSF. You need to include a script tag, like:
    <script src="/path/script.js"
    language="JavaScript" type="text/javascript"></script>
    If you want to include this only once, make a file included into every page, into which you can put other resources to be included along with this script.
    HTH,
    rs.

  • How do I get my calendar syncd from Blackberry to PC????

    Hello,
    I have loaded the Blackberry Desktop Manager onto my PC, and I cannot work out how I get the calender from my Blackberry to show up on my computer, - I cannot find it in Media Manager am I looking in the wrong place?  Can someone please tell me which application I need to use on Blackberry Desktop Manager to make this happen?  and the instructions to follow from there? 
    Thank you in advance,
    Zoe

    Hi and welcome to the forums!
    Which version of Desktop software are you using?
    As far as Media Manager......Not so much
    Let me know!
    Thanks
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • How can i email my calendar directly from my ipad?

    I know I can "send calendar via email" directly from my Outlook, is there a way I can do that directly from my ipad?

    Thanks Templeton!  Not the answer I was looking for, but it was pretty definative. 
    Is there an app for that?

  • How do I transfer contacts/calendar information from my PC to my Iphone3gs?

    This is probably a very obvious question but I cannot seem to find the answer myself and I am very technically challenged! I have spent hours trying to figure this out. I have just bought an iphone. I want to set up a calendar/contacts programme on my home computer and then share that information so that it all goes onto the iphone. Is this possible? I used to use Outlook at work but our home computer seems not to have any programmes on it. Any recommendations on what to use and how to ensure it then gets on to my iphone.Many thanks

    http://support.apple.com/kb/HT1386

Maybe you are looking for

  • This is ridiculous... (Updating Hell)

    Please Adobe, get your act together. Your announcements, update warnings, download pages, preliminary statements, links and buttons (in the software itself) are confusing and even misleading users so terribly, most of them don't dare to touch anythin

  • Menus browsing lag

    I suddenly have a considerable lag with menus browsing. The "roll down" ones, like when you click "File", "Bookmarks" etc and a table with contents appear. Mainly bookmarks. The highlight is lagging behind the cursor. It just started one day. Absolut

  • Does this drop-down menu work?

    http://www.correctionalassociation.org/ The top horizontal nav menu should have drop downs for all but "Donate"  If you can't see the the drop-downs, I would appreciate it if you'd post with your OS and browser number.  If you have any ideas about wh

  • Clicking a link on a web page is taking me to an advertising site not the page it should go to.

    When I click a link on a web page it will take me to an advertising page not the page it should take me to. This is only happening with firefox not the other browsers I use. I uninstalled and reinstalled firefox and this did not solve the problem. Th

  • IPod Nano 6th Gen in Audi Issues

    Hi, I had been using my iPod Nano 1st Gen in my Audi A3 perfectly for a few years now, but following the recent recall I had this replaced with a 6th Gen touch screen.  Since having it replaced I find that it keeps turning itself off and is not being