Link to home
Start Free TrialLog in
Avatar of Isaac
IsaacFlag for United States of America

asked on

SP 2007 employee training and scheduling template

Has anybody used the "employee training and scheduling template" by microsoft?

I had a few issues with decrementing seats when a user unregistered.  I found a fix (https://www.nothingbutsharepoint.com/sites/itpro/Pages/Employee-Training-and-Scheduling-Template-a-couple-fixes-Part-1.aspx) and followed it to a T, but it's still not working.

Also, everyone has contribute permissions which means anyone can change the course details.  I found a fix for that at codeplex but that required adding stuff to the GAC and web.config file, which none of us has access to and won't be able to get it.

Has anybody had these same issues with different solutions?

Thanks for any help you can provide.
Avatar of Jamie McAllister
Jamie McAllister
Flag of Switzerland image

Some ideas which may help;

If the course details are edited via a page, edit the page layout to hide the editable areas during edit mode when someone has insufficient privileges (even if they have contribute).

http://fusionovation.com/blogs/mbell/archive/2008/09/18/security-trimmed-controls-in-sharepoint.aspx

If the course details are edited via list item, hide all list items so only the author can see them and restrict the public views available. Create private views for the admins, and then disable further public view creation in settings. (Is this a setting or a permission, I cant remember).

Set a filter of "Created By" is equal to "[Me]"

They cant see the list items they cant edit them...

Or modify a workflow to check privileges or identity of specified users and cancel a change is condition not met when item is edited.

All no code solutions.
Avatar of Isaac

ASKER

Here's the image of the page.  I'm trying to hide the toolbar (New item, edit item,delete item, etc.) without the buttons.

So, from the site you reference, if I place the control within "SPSecurityTrimmedControl"
and place "AddListItems"  in the permissions attribute, the only thing that will show in the toolbar below will be the buttons (My Registration and Close)

User generated image
Avatar of Isaac

ASKER

Actually, I don't even want the student to add a new item because it will allow them to add a course.  I just want the buttons to show so that means I need to leave the permissions attribute blank.  Right?
TheInnovator,

I use that workflow currently in my site and followed the same link to get it working.  I initially had some problems but it all boiled down to Permissions in my case.  Users need to have contribute access to 3 seperate lists in order for the workflow to work correctly.  Check these lists and see if your users have contribute permission:  Registration, Courses, Past Registrations.

The big two are the Registration and Courses.  If they don't have contribute to both of these lists, the item cannot be deleted and will cause issues.
Avatar of Isaac

ASKER

rnh82,

I don't know why but it's not working for me.  Everyone has contribute permissions and I have full control and it does not even work for me or anyone else.
Hmm... Can you attach a screenshot of your "Attendee Unregistration" workflow?  I'll compare it to mine and see if there are any differences.  When you look at the workflow history of a person that is trying to unregister did you see any error messages?
Avatar of Isaac

ASKER

Here you go...

User generated image
hmmm.....could it be the "View Details" that's the problem.

Someone changed it the "Title" and it changed it everywhere but this was 3 years ago, way before I came along.
ASKER CERTIFIED SOLUTION
Avatar of Robin Hall
Robin Hall
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Isaac

ASKER

When I bring the page up in designer, there is no option for code view, just design.

How do you get to the code?
Avatar of Isaac

ASKER

Never mind
Avatar of Isaac

ASKER

rnh82,

Thanks a lot!

That worked!!