The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
93 views

Employee Scheduling Template

There is a template from Microsoft about Employee Scheduling. This however is an STP solution which doesn't work anymore starting Sharepoint 2010. Can someone please share if you have any templates ...
1
vote
0answers
191 views

Schedule workflow or email notification

Just wondering, is there a way to schedule (e.g. 1st day of each Month) a workflow or send email notification for a list, without using powershell or C# code.
2
votes
2answers
35 views

Can this simple scheduling app be done in SP OOB

...or would you need to write code? Event registration system Corporate events are entered into a list with a date assigned (could be a calendar or list view) Users register for the event * Only a ...
2
votes
1answer
188 views

Why is default ScheduledItem StartDate a 'weird' value?

If you create a new ScheduledItem object and look at the StartDate - it's 1/1/1990 - why? This has just caught me out when trying to evaluate whether the dates have been set or whether they're, what I ...
0
votes
1answer
27 views

Possible to get a list of scheduleditems?

Is it possible to get a list of ScheduledItems from SharePoint in C# (event receiver)? For example, I've created a ScheduledItem and called the .Schedule() method. I'd expect this ScheduledItem to ...
0
votes
1answer
482 views

The URL is invalid. It may refer to a nonexistent file

public override void ItemCheckingIn(SPItemEventProperties properties) { base.ItemCheckingIn(properties); #region Automatic Scheduling ScheduledItem scheduledItem = null; ...
1
vote
1answer
98 views

Is it possible to check if a page is scheduled for publishing?

I can create a ScheduledItem in an event receiver, but how do I check if a list item is scheduled? What I've tried: IsScheduledItem method (ScheduledItem class) - but this method: "...confirms that ...
1
vote
1answer
243 views

Automatically schedule a page on publish

When the user publishes a page, I need to automatically schedule it with a start date being as soon as possible, and the end date being a year from the start date. I've tried the event receiver ...
1
vote
2answers
231 views

Is it possible to make a page's publishing schedule mandatory?

As opposed to a page just being published as soon as it's approved - I need to make the schedule (the setting of the start and expiry date) of the publishing mandatory. Can it be done?
1
vote
2answers
780 views

How to run reports in sharepoint site using scheduler and email to sharepoint library?

I want to run reports in sharepoint site using scheduler and email reports output to sharepoint library. Please help. Thanks.
1
vote
1answer
446 views

Run a custom timer job only on weekdays

So I want to run a timer job only on weekdays. Does anybody have any experience with a similar requirement? I can think of two options: Inherit from the SPSchedule class, and write my own custom ...