View activity-codes.dir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Export Object gbst_lst | |
Unique_Field = title | |
Where "title = 'Activity Name'" | |
Actions = Export | |
export_gbst_element (gbst_lst2gbst_elm) | |
; | |
Routine export_gbst_element | |
Object gbst_elm | |
To gbst_elm Through $1 |
View privileges.dir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NO_EXPORT OBJECT ALL; | |
EXPORT OBJECT privclass | |
UNIQUE_FIELD=class_name | |
/* | |
WHERE "class_name like 'HC%' OR class_name = 'System Administrator'" | |
*/ | |
ACTIONS = EXPORT | |
TO x_web_cmd THROUGH privclass2x_web_cmd |
View rule-properties.dir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NO_EXPORT OBJECT ALL; | |
EXPORT OBJECT prop_name | |
/* | |
WHERE "prop_name in ('Email Log Notes','Phone Notes','Notes Text','Close Case Notes','Activity Name')" | |
*/ | |
ACTIONS = EXPORT | |
; |
View zipcode.schemascript.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<schemaScript xmlns="http://www.dovetailsoftware.com/2006/10/SchemaScript.xsd"> | |
<addTable name="zipcode" id="3555"> | |
<description>Stores zipcodes and related city, state, country, timezone info</description> | |
<groupName>Customer Srvc Mgr</groupName> | |
</addTable> | |
<addColumn name="objid" dataType="Integer" table="zipcode" > | |
<description>Internal record number</description> | |
<clarifyGenericFieldID>3</clarifyGenericFieldID> |
View find-element.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
REM Make sure they supplied 1 param - which is the list element name to search for | |
REM If they didn't, show usage & exit | |
echo. | |
echo *** find lists (gbst and hgbst) that have a given element *** | |
echo. | |
if "%1" == "" goto usage |
View 703.cbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' Form 703 - Employee form | |
' | |
' Allow a new option (such as SMS) as a valid Notification Preference | |
Option Explicit | |
Dim normalBizHigh As String | |
Dim normalBizMid As String | |
Dim normalBizLow As String | |
Dim afterBizHigh As String |
View 15250.dat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OBJECT TYPE="window_db", NAME="WINDOW_DB_15250_10.1_dovetail" | |
UNIQUE_FIELD = id , ver_clarify, ver_customer, locale | |
FIELDS | |
title ="Property Names"; | |
id=15250; | |
top_c=22; | |
bottom_c=522; | |
left_c=3; | |
right_c=728; | |
flags=0; |
View NumberOfOpenChildCasesOnParent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Linq; | |
using Dovetail.SDK.Clarify; | |
using Dovetail.SDK.Properties; | |
using Dovetail.SDK.Properties.Functions; | |
using FubuCore; | |
namespace Dovetail.PropertyExtensionExamples.Functions | |
{ | |
// NumberOfOpenChildCasesOnParent | |
public class NumberOfOpenChildCasesOnParent : IPropertyFunction |
View bizrule.dir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NO_EXPORT OBJECT ALL; | |
EXPORT OBJECT com_tmplte | |
UNIQUE_FIELD=title, rule_set,type | |
WHERE "title = 'test rule' and type = 1" | |
ACTIONS = EXPORT, DELETE | |
TO rule_cond THROUGH condition2rule_cond | |
UNIQUE_FIELD=type, operator, operand1, op1_type, operand2 | |
UNIQUE_RELATION=parentrule2com_tmplte |
View case.activities.filter.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<filter name="Case Activities" entity="Cases" allowAdhocQueries="true"> | |
<privileges> | |
<addPrivilege value="Admin" /> | |
</privileges> | |
<query from="case_alst"> | |
<addFacet key="activity_name" field="act_name" dataType="string" > | |
<values> | |
<!-- Make sure this list has a default value! --> |
NewerOlder