კატეგორია არქივი: SharePoint სიმბოლო

Emailing ყოველდღიური სამუშაო შეგახსენებთ // Looping in SharePoint დიზაინერი სამუშაოს

I wrote up a detailed article a few weeks ago describing how to create a SharePoint Designer workflow that sends a task reminder email on a daily basis. It’s been published at the new SharePoint Magazine საიტი. More generally, სტატიაში გვიჩვენებს როგორ შევქმნათ looping სტრუქტურა SPD.

The magazine has a wide variety of articles including, სხვა საკითხებთან, very technical stuff, interviews and industry news. I recommend you add it to your RSS feed.

If you have a product or service to sell, I’d also consider advertising on the site. It’s off to a strong start with several thousand pairs of eyes looking at it already. That’s sure to grow.

და ბოლოს, if you’ve been itching to write something and get it out in front of a larger audience, this is a great time and place to scratch it.

</ბოლო>

გამოწერა ჩემი დღიური.

პროგრამები Tags:

ჩემი უახლესი “თავდაცვის SharePoint დიზაინერი” მუხლი ხელმისაწვდომია

მარკ მილერი დასრულდა საბოლოო მომხმარებლის SharePoint has posted my latest article about using SharePoint Designer to create great workflow solutions up on his site. შეამოწმეთ იგი out.

ამ სტატიაში, ვლაპარაკობ დამუშავება და, უფრო დეტალურად, როგორ უნდა შეიქმნას საიმედო და გამეორება ტესტი პროცესის გამოყენებით SharePoint თვისებები (საბაჟო სიები, საიტი თარგები). The article targets End Users, მაგრამ მიდგომა კარგია დეველოპერები ძალიან.

</ბოლო>

გამოწერა ჩემი დღიური.

შემოსვლა სამუშაოს საქმიანობის SharePoint დიზაინერი

გასულ კვირას, I was working out how to loop and implement a state machine using SharePoint Designer and mentioned, როგორც განზე, რომ მე, ალბათ, დაწერა დღიურში შესახებ უკეთესი workflow ხე.

კარგად, Sanjeev Rajput beat me to it. Have a look.

Saving log data into a custom list seems superior to using the regular workflow history:

  • It’s just a custom list, so you can export it to excel very easily.
  • You can create views, dynamically filter the data, და ა.შ..
  • It’s not subject to the auto-purge you get with regular workflow history.

There are some risks / downsides:

  • Many running workflows with a lot of logging could cause too much data to be written to the list.
  • Maybe you *do* want automatic purging. You don’t get that feature with this approach (without coding).
  • Security is tricky. In order to write to the list, the user must have permission to do so. That means that it’s probably not suitable for any kind of "official" audit since the user could discover the list and edit it. This could be overcome with some custom programming.

</ბოლო>

პროგრამები Tags:

გამოწერა ჩემი დღიური.

უბედურება ერთად Tribbles … err .. KPIs

This past week I finished off a proof of concept project for a client in Manhattan. While implementing the solution, მე გაიქცა მეორეზე ხარვეზი MOSS KPIs (ვხედავ აქ წინა KPI საკითხი და ჩემი Workaround).

ფონის: We used SharePoint Designer workflow to model a fairly complex multi-month long business process. As it chugged along, it would update some state information in a list. KPIs use this data to do their mojo.

We decided to create a new site each time a new one of these business processes kicks off. Aside from the workflow itself, these sites host several document libraries, use audience targeting and so forth. Just a bunch of stuff to help with collaboration among the internal employees, traveling employees and the client’s participating business partners.

We also wanted to show some KPIs that monitor the overall health of that specific business process as promoted by the workflow state data and viewed using the KPIs.

და ბოლოს, we used KPI list items that do a count on a view on a list in the site (as opposed to pulling from another data source, like excel or SQL).

The Problem: As you can imagine, assuming we were to carry the basic idea forward into a production world, we would want a site template. Provision a new site based off a "business process" template.

The problem is that you can’t seem to get a functioning KPI that way. When I create a new site based on a template with a KPI List and KPI web part, the new site’s KPI data are broken. The new site’s KPI list points at whatever source you defined when you first saved it as a template.

By way of example:

  • Create a new site and build it to perfection. This site includes the KPI data.
  • Save that as a template.
  • Create a new site and base if off the template.
  • This new site’s KPI list items’ sources point to the site template, not the current site.

The instantiation process does not correct the URL.

I tried to solve this by specifying a relative URL when defining the KPI list item. თუმცა, I couldn’t get any variation of that to work.

I always want to pair up these "problem" blog posts with some kind of solution, but in this case I don’t have a good one. The best I can figure is that you need to go in to the newly provisioned site and fix everything manually. The UI makes this even harder because changing the URL of the source list causes a refresh, so you really have to redefine the whole thing from scratch.

If anyone knows a better way to handle this, გთხოვთ კომენტარი.

</ბოლო>

პროგრამები Tags:

Mea Culpa — SharePoint დიზაინერი * შეიძლება * საკუთარი სახელმწიფო მანქანა workflows

I’ve recently learned that it’s possible and even fairly easy to create a state machine workflow using SharePoint Designer. Necessity is the mother of invention and all that good stuff and I had a need this week that looked for an invention. Coincidentally, I came across this MSDN forum post as well. My personal experience this week and that "independent confirmation" lends strength to my conviction. I plan to write about this at greater length with a full blown example, but here’s the gist of it:

  • The approach leverages the fact that a workflow can change a list item, thereby triggering a new workflow. I’ve normally considered this to be a nuisance and even blogged about using semaphores to handle it.
  • SharePoint allows multiple independent workflows to be active against a specific list item.

To configure it:

  • Design your state machine (i.e., the states and how states transition from one to the next).
  • Implement each state as separate workflow.
  • Configure each of these state workflows to execute in response to any change in the list item.

Each state workflow follows this rough pattern:

  • Upon initialization, determine whether it should really run by inspecting state information in the "current item". Abort if not.
  • Do the work.
  • Update the "current item" with new state information. This triggers an update to the current item and fires off all the state workflows.

Aside from the obvious benefit that one can create a declarative state machine workflow, all that state information is terrific for building KPIs and interesting views.

It does have a fairly substantial drawback — standard workflow history tracking is even more useless than normal 🙂 That’s easily remedied, თუმცა. Store all of your audit type information in a custom list. That’s probably a good idea even for vanilla sequential workflow, but that’s for another blog post 🙂

I call this a "mea culpa" because I have, სამწუხაროდ, said more than once on forums and elsewhere that one must use visual studio to create a state machine workflow. That simply isn’t true.

</ბოლო>

გამოწერა ჩემი დღიური.

პროგრამები Tags:

გამოყენება Semaphores in SharePoint Designer სიმბოლო ადამიანებით Endless Loops

It’s possible to cause an endless loop in a SharePoint Designer workflow. A common implementation pattern like this causes the problem:

  • შექმნა workflow და ასოცირებული სია.
  • მიუთითებს იმაზე, რომ უნდა დაწყებულიყო, შეიქმნას ახალი ნივთები და განაახლონ არსებული ნივთები.
  • ნაბიჯი workflow განახლებები სფეროში "მიმდინარე პუნქტის".
  • მიმდინარე პუნქტით შეიცვალა, workflow იწყება თავიდან.

თავიდან აეცილებინა ეს დაუსრულებელი ციკლი, განახორციელონ მარტივი semaphore:

  • დამატება საიტი სვეტი (ან სვეტის სიაში / ბიბლიოთეკა თუ თქვენ არ იყენებთ შინაარსი სახის).
  • დამალვა იგი რედაქტირება გვერდზე (გაკეთება ადვილია თუ საიტი სვეტი მეშვეობით თვისებების, არა ადვილია, თუ სიაში სვეტი).
  • ამ workflow, შეამოწმეთ თუ ღირებულება semaphore სვეტი არის ცარიელი.
  • თუ ეს ცარიელი, ვაყენებთ მას არა ცარიელი მნიშვნელობა და გაგრძელება.
  • თუ იგი არ არის ცარიელი, გასვლა დაუყოვნებლივ.

ეს შეიძლება გახდეს საკმაოდ nuanced გადაწყვეტა, დამოკიდებულია ბიზნეს მოთხოვნებს და ა.შ., მაგრამ ეს იყო workable ნიმუში, როდესაც მე საჭირო ეს.

</ბოლო>

პროგრამები Tags:

გამოწერა ჩემი დღიური.

გასეირნება გზით: დაფიქსირება თანამშრომელთა ტრენინგი თარგი ხელმისაწვდომია ადგილები Unregister Bug

რაც უფრო ბევრი ადამიანი ვიცი, თანამშრომელთა სასწავლო template გათვალისწინებული Microsoft აქ აქვს bug რომ ჩვენ შეგვიძლია აღვადგინოთ შემდეგ ეს ნაბიჯი:

  • შექმენით კლასი მაქსიმალური ზომა 10 სტუდენტები.
  • რეგისტრაცია –> Total available seats properly decrements by one. შედეგი: 9 ხელმისაწვდომი ადგილების.
  • Unregister: –> Bug. Total available seats should increment by one. It does not. შედეგი: 9 ხელმისაწვდომი ადგილების მიხედვით SharePoint, მაგრამ სინამდვილეში, არსებობს 10 ხელმისაწვდომი ადგილების.

Solution: გამოყენება SharePoint დიზაინერი გამოსწორების workflow.

პირველი, open up the site. The folder list for me looks like this:

იმიჯი

If we have a look at the "Attendee registration" workflow, we see that there is a step labeled "Enforce seating policy". It looks like this:

იმიჯი

This step in the workflow updates the item by incrementing the "Filled Seats" metadata column on the course. If we pull that up in more detail, ჩვენ ვხედავთ ამ:

იმიჯი

სულ ეს ინფორმაცია ჩვენ უნდა დააფიქსიროს ხაზიდან workflow.

თუ ჩვენ Flip მეტი to ხაზიდან workflow, there is no similar workflow step. Add it as follows:

1: Expand "Attendee unregistration" და ქმნის XOML (ვხედავ პირველი ეკრანზე დარტყმას თუ თქვენ დაკარგა).

2: დამატება ახალი სამუშაო პროცესის ცვლადი, "New Filled Seats" of type "Number".

3: Assign a value to "New Filled Seats" როგორც ნაჩვენებია:

იმიჯი

4: Decrement შევსებული ადგილები 1:

იმიჯი

5: განახლების დაკავშირებული კურსი პუნქტის:

იმიჯი

6: Make sure all the steps are in the right sequence. ჩემთვის, როგორც ჩანს, ამ:

იმიჯი

7: დასრულების workflow ხელახლა აშენება.

8: ტესტი.

</ბოლო>

გამოწერა ჩემი დღიური.

პროგრამები Tags: ,

მიმართ SharePoint ტექნიკური დიზაინის ნიმუშები: SharePoint დიზაინერი სამუშაოს + თარიღის მიმღები = High potency Cocktail

ერთი განვითარებადი ნიმუშების მე, რათა შეიმუშაოს SharePoint გადაწყვეტილებები ბერკეტი SharePoint დიზაინერი workflow და ღონისძიება მიმღები.

აქ არის ბიზნეს სცენარი იმისათვის, რომ ეს კონტექსტში:

  • ავტვირთო დოკუმენტი doc lib.
  • მე გამოაგდონ off მრავალ ნაბიჯი workflow შექმნილია SharePoint დიზაინერი.
  • რაღაც მომენტში დროს, რომ პროცესი, workflow assigns a task to someone (via collect data from user or assign a task).
  • We want to use a KPI to track how long that task is awaiting completion. The KPI shows green for tasks that are completed or due more than 3 days from now. It shows yellow if the task is due tomorrow or today. It shows red if the task is past due.
  • აი kicker: მინდა თარიღი რომ მართავს, რომ KPI იყოს დასვენების იცის.

I can’t calculate a holiday-aware due date in SharePoint Designer workflow very easily. I would have to create a custom action or use a 3rd party tool. თუმცა, it’s easy enough to calculate such a date in an event receiver. Merge those two together and we get a pattern like this:

  • Define a hidden yes/no site column on the document library labeled "DoCalcualteDueDate".
  • ინიციალიზაცია მას ყალბი.
  • საჭირო დროს ამ workflow (e.g. just before the "collect data" აქცია), დაავალოს, რომ მნიშვნელობა True.
  • ItemUpdate() event receiver looks to see if "DoCalculateDueDate" is true. Since the event receiver runs on every update, "DoCalculateDueDate" ჩვეულებრივ ცრუ.
  • როდესაც სამუშაოს ანიჭებს DoCalculateDueDate ჭეშმარიტი, ღონისძიება მიმღები ითვლის დასვენების იცის ვადები.
  • როდესაც ღონისძიება მიმღები აკეთებს ამას გაანგარიშებით, იგი ადგენს DoCalculateDueDate flag ყალბი.

და ბოლოს, SPD workflow is communicated with an event receiver via the DoCalculateDueDate semaphore and we have holiday-aware due dates that are assigned at the exactly correct moment in the workflow’s life. SharePoint Designer controls when the due date is assigned but the event receiver performs the actual calculation and assignment.

</ბოლო>

გამოწერა ჩემი დღიური.

პროგრამები Tags: ,

დაფიქსირდა ქცევა: მოძრავი SPD workflows ფარგლებში საიტის კოლექცია

განახლების: I’ve been researching how to embed a SPD workflow into a site definition. This MSDN forum chain has some interesting information. It’s not conclusive, მაგრამ მიუთითებს გზას მეშვეობით ჯუნგლებში.

I’m giving this post a slightly oddball "Observed Behavior" lead since I’m a little leery of drawing conclusions from it. SPD workflows are … temperamental.

People are often asking / wondering / fretting over moving SPD workflows from one place to another. დღეს, I followed these steps and made these observations:

  • I created a workflow using SharePoint Designer in a site attached to a document library.
  • The associated document library already housed several documents.
  • I saved the site as a template.
  • When I saved the site as a template, I saved the content as well.
  • I created a new site in the same site collection using that template.

ამ ეტაპზე, I tried to run the workflow. It promptly terminated itself with the log message, "Failed on start".

I expected this. I have low expectations when it comes to moving SPD workflows around.

I continued:

  • Opened the site in SharePoint Designer.
  • Had a peek at the workflow. It seemed fine.
  • I clicked "Finish".
  • I ran the workflow.

ამჯერად, იგი მუშაობდა ჯარიმა.

I’ll add that this workflow used the "collect data from user" action which is a relatively complex action under the hood.

I tentatively conclude that the process of "finishing" the workflow caused SPD to properly associate the SPD workflow with the new document library. I also conclude the XOML and other XML artifacts are reasonably "loose". They are not super tightly coupled to the document library.

რას ნიშნავს ეს? Assuming it’s a reliable and reproducible process, there’s at least one rough method we can use to move them around. I don’t know if this would work if we crossed site collection boundaries or even more drastically, მთელი ახალი ფერმები (e.g. dev დადგმას to prod).

თუ თქვენ შორის სწყდებიან, გთხოვთ კომენტარის ან მომაწოდეთ your SharePoint Designer migration story. I’ll gladly update this posting with any insights thus offered.

</ბოლო>

გამოწერა ჩემი დღიური.

პროგრამები Tags:

სწრაფი და მარტივი: სამუშაოს მხოლოდ განახლების სფერო

It’s often useful to store status information in a custom list such as an approval code which should never be directly manipulated by end users. This is a common business scenario. I have been working on a project this year that generates various status and reminder dates via SharePoint Designer workflows that then drive KPIs and generally support time-critical business processes.

გამოყენება საიტი ინფორმაციის ტიპი / სვეტი მისაღწევად ეფექტი.

შექმენით საიტი შინაარსი ტიპის სტატუსი სვეტი როგორც ნაჩვენებია:

იმიჯი

Note the "Status (დემო)" სფეროში ბოლოში.

შემდეგი, click on the column name to access the column’s properties. Select "Hidden (არ გამოჩნდება ფორმები)" გრაფაში პარამეტრები სექციაში ნაჩვენები:

იმიჯი

This removes the field from the standard edit/update forms. თუმცა, ეს ჯერ კიდევ შესაძლებელია ჩვენებები, KPIs, ობიექტის მოდელი და არსად გსურთ გამოიყენოთ იგი, including SPD workflow.

</ბოლო>

გამოწერა ჩემი დღიური.

პროგრამები Tags: ,