Difference between revisions of "FAQ:How to retrieve the Third Party Contract from the Pick Analyst dialog"

From support-works
Jump to navigation Jump to search
(Created page with "{{Template:Basic Cover | title=Controlling the Maximum Number of Records Processed by a VPME Query Node | type=FAQ }} {{Template:Basic Status | status=Published | version=1.0...")
 
 
(16 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{Template:Basic Cover
 
{{Template:Basic Cover
| title=Controlling the Maximum Number of Records Processed by a VPME Query Node
+
| title=How to retrieve the Third Party Contract from the Pick Analyst dialog
 
| type=FAQ
 
| type=FAQ
 
}}
 
}}
 
 
{{Template:Basic Status
 
{{Template:Basic Status
 
| status=Published
 
| status=Published
 
| version=1.0
 
| version=1.0
 
| authors=Hornbill Support
 
| authors=Hornbill Support
| applicableto=Supportworks ITSM 4.x
+
| applicableto=Supportworks 7.6.x
 
}}
 
}}
  
TBC
+
== AssignCallPropertySheet==
 +
The AssignCallPropertySheet class provides the interface needed to prompt for the user to select an analyst or group. This class represents the same dialog as the one displayed when you PickAnalystDialog, with addition to be able to select and retrieve the Third party SLA details.
 +
 
 +
===Properties===
 +
{| class="wikitable"
 +
|-
 +
! Property
 +
! Type
 +
! Description
 +
|-
 +
| groupid
 +
| String
 +
| Group ID
 +
|-
 +
| analystid
 +
| String
 +
| Analyst ID
 +
|-
 +
| tpcontract
 +
| String
 +
| Third Party Contract ID
 +
|}
 +
 
 +
===Methods===
 +
{| class="wikitable"
 +
|-
 +
! Methods
 +
! Description
 +
|-
 +
| Open()
 +
| Invoke to display the analyst/group dialog from which the user can pick/select an analyst, group or third party contract.
 +
|}
 +
==Example==
 +
<code>
 +
var analDialog = new AssignCallPropertySheet();
 +
 +
analDialog.Open();                                                        // Opens the Pick Analyst dialog, and returns the information
 +
 
 +
analDialog.Open("Pick an Assignee");                          // Add an optional Dialog Title
 +
 
 +
alert("Group : " + analDialog.groupid + "\nAnalyst : " + analDialog.repid + (analDialog.tpcontract != "" ? "Third Party SLA : " + analDialog.tpcontract : ""));
 +
</scode>

Latest revision as of 10:57, 23 April 2018



Status: Published
Version: 1.0
Authors: Hornbill Support
Applies to: Supportworks 7.6.x

AssignCallPropertySheet

The AssignCallPropertySheet class provides the interface needed to prompt for the user to select an analyst or group. This class represents the same dialog as the one displayed when you PickAnalystDialog, with addition to be able to select and retrieve the Third party SLA details.

Properties

Property Type Description
groupid String Group ID
analystid String Analyst ID
tpcontract String Third Party Contract ID

Methods

Methods Description
Open() Invoke to display the analyst/group dialog from which the user can pick/select an analyst, group or third party contract.

Example

var analDialog = new AssignCallPropertySheet();

analDialog.Open(); // Opens the Pick Analyst dialog, and returns the information

analDialog.Open("Pick an Assignee"); // Add an optional Dialog Title

alert("Group : " + analDialog.groupid + "\nAnalyst : " + analDialog.repid + (analDialog.tpcontract != "" ? "Third Party SLA : " + analDialog.tpcontract : "")); </scode>