GetCC
This function returns first user login or all logins separated by semicolon from current case’s Carbon Copy list.
Syntax
GetCC("getall");
Function arguments
- getall – (Boolean) [Optional] if true then function returns all logins separated with semicolon, default false
Return value
This function returns String.
first user login, logins separated by semicolon from Carbon Copy list or an empty string if the list is empty.
Examples
Example 1:
This will return first user login from current case’s Carbon Copy list.
firstCC = GetCC();
Example 2:
This will returns logins of all users from current case’s Carbon Copy list separated by semicolon.
contributor = GetCC(true);