Discussions
Categories
Choose a Product
THRUST SERVICES
CORE APPS
CE PRODUCTS
...
Quick Links
POPULAR
HELPFUL TIPS
Groups
My Links
FOR SIGNED IN MEMBERS:
Back to website
Home
TeamSite
TeamSite, LiveSite and OpenDeploy
Getting SHARED BY property of a task
System
How can I get the "shared by" property of a workflow task using Perl? Below is the code I am using which runs (although
there is no GetSharedBy property defined in the perldocs- probably it is undocumented) but this just returns an empty string. What is the correct way of doing this? Thanx.
---------------------------------------
my $task = new TeamSite::WFtask($id);
if ($task->IsValid())
{
my $sharedby = $task->GetSharedBy();
print "Shared By: ".$sharedby."\n";
}
Find more posts tagged with
Comments
There are no comments yet