Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!
We use outlook web-access integrated into sharepoint
I wouldn't recommend it for call logging though, you'd be better off using a dedicated call logging suite, sysaid is one that's free and is good enough to just log calls
"I don't know much about Journal. and have never heard it integrate with SP as it is a user specific thing!
However I think you can download a SP template from MS to create a call log DB"
Edit: and he's just provided me the link to the templates too
We use outlook web-access integrated into sharepoint
I wouldn't recommend it for call logging though, you'd be better off using a dedicated call logging suite, sysaid is one that's free and is good enough to just log calls
Its already in use as that, i just wanted to intergrate it with outlook.
Calendar's/Tasks are no issue but this call logging is frustrating as Journal seems perfect for what im trying to do. Shame it doesn't work! nevermind, its only a side project. Cheers for the help!
I call someone, i log it in sharepoint. Everyone who uses the portal can then see i logged said call. Same situation if i received something (PDF/Excel file)
I just wanted to do it all in one place.
We use sharepoint as a help desk too but thats a seperate thing and not in my area.
The boy in my work who does SP said he uses Excel Services or he has written this code to allow e-mails and calander to be used. I assume it could be modifed to be pulled from journal:
<OBJECT classid="CLSID:0006F063-0000-0000-C000-000000000046" width="100%" height="337"> <param name="Folder" value="Inbox"> </OBJECT> <script language="JavaScript" type="text/JavaScript"> function genNewEmail() { try { o = new ActiveXObject("Outlook.Application"); if(o) { mailFolder = o.getNameSpace("MAPI").getDefaultFolder(6);
//You could also use custom forms like IPM.Note.CustomForm mailItem = mailFolder.Items.add("IPM.Note"); mailItem.Display(0) } } catch(e) { window.status = e.Message; } } </script> <p> <p align="center"> <input type="button" value="Create New e-Mail" NAME="cmdNewMessage" OnClick="genNewEmail()">