Use our Google Custom Search for best site search results.
Search
-
Check if the server is throwing a 5566 error, in which case you may find the permissions (either the site or of the user profile service ) are not allowing it.
I was having a similar problem then I changed my datasource to be a subsite URL, so instead of
http://intranet/_vti_bin/UserProfileService.asmx?WSDL
it ...
-
if its an internal only form, and the location information is published in your AD, you could use the sharepoint AD lookup to get the users region. then change your code to suit per region. doing your own verification if you have to.
if you have many different locations that might be alot of work though.
OR, drop that ...
-
Hi Hillary, thanks for your response.
Yes I think one of those would suit nicely for anyone else trying to do this, I wish I had seen that before starting this feature :)
I have ended up using a workaround (creating an entry in the db called <--- choose region ---> ) since I already have spent too many hours getting this ...
-
Hi kfr,workflows can pause either for a certain amount of time (eg 5mins) or until a date
you could probably work out the next monday programatically in the form then say pause until $nextmonday
-
Hi guys, I have a rather complicated web based change control form, that allows you to pick a region, and the form will automatically put that regions current timezone in.
In the above image, there is a dropdown box (populated by a list in sharepoint) that allows you to pick a region, when the region changes, it looks at another ...
-
edit: sorry please ignore my original comment.
This looks fine to me.
perhaps add another email onto both those parts to email you with a little debug (different for each part)
is it possible there is an email going to the manager accidentally in the RVP Email address or in another step (ie IT director approval step) ...
-
have you checked to see what its sending? obviously its going to be case sensitive. I reckon it should look something like this . note, clicking the ... button brings up a text feild, if you enter it in there without speech marks, it puts it into the workflow with them which is what you want to do.
but yeah do something like ...
-
resolved this, I had everything correct except the second to last field, it should of been 'title' not 'name (for use in forms)' as 'title' is the column/field in the list I am actually looking at.
-
just to clarify the problem
so lets say your drop down box says "bob" and "rob"
your workflow looks at the variable set, and says 'if value_x equals "bob" then' and then it sends and email A
also it has
'if value_x NOT equals "bob" then' and then it sends and email B
and ...
-
Is it possible the values you are checking are of the wrong type, eg "False" vs "false" or "false" vs "0"
you could set it up to send you a mail with the value of the bool you are checking to see what its set to.