<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://greggsmith.net/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Komodo</id>
		<title>SDU - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://greggsmith.net/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Komodo"/>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Special:Contributions/Komodo"/>
		<updated>2026-07-27T11:26:52Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.26.1</generator>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Crystal_Reports&amp;diff=1808</id>
		<title>Crystal Reports</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Crystal_Reports&amp;diff=1808"/>
				<updated>2008-04-03T16:36:32Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: New page: == Crystal Formula Examples ==  '''Analyst''' (Example for Contacts)     if IsNull ({ca_contact.last_name})    then &amp;quot;UNASSIGNED&amp;quot;    else       if IsNull ({ca_contact.first_name})      ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Crystal Formula Examples ==&lt;br /&gt;
&lt;br /&gt;
'''[[Analyst]]''' (Example for Contacts)&lt;br /&gt;
&lt;br /&gt;
   if IsNull ({ca_contact.last_name})&lt;br /&gt;
   then &amp;quot;UNASSIGNED&amp;quot;&lt;br /&gt;
   else&lt;br /&gt;
      if IsNull ({ca_contact.first_name})&lt;br /&gt;
      then Uppercase ({ca_contact.last_name})&lt;br /&gt;
      else Uppercase ({ca_contact.last_name} + &amp;quot;, &amp;quot; + {ca_contact.first_name})&lt;br /&gt;
&lt;br /&gt;
'''[[CloseDate]]''' (Example for Requests)&lt;br /&gt;
&lt;br /&gt;
''Note: Be sure the u2lpdmtime.dll is avaible for such calls''&lt;br /&gt;
&lt;br /&gt;
   PDMTimeToDateTime ({call_req.close_date})&lt;br /&gt;
&lt;br /&gt;
'''[[OpenDate]]''' (Example for Requests)&lt;br /&gt;
&lt;br /&gt;
''Note: Be sure the u2lpdmtime.dll is avaible for such calls''&lt;br /&gt;
&lt;br /&gt;
   PDMTimeToDateTime ({call_req.open_date})&lt;br /&gt;
&lt;br /&gt;
'''[[TimeOpen]]''' (Example for Requests which Utilizes 'CloseDate' formula)&lt;br /&gt;
&lt;br /&gt;
''Note: Be sure the u2lpdmtime.dll is avaible for such calls''&lt;br /&gt;
&lt;br /&gt;
   if isnull ({@CloseDate}) &lt;br /&gt;
   then ((DateTimeToPDMTime (CurrentDateTime) - {call_req.open_date})/60/60/24)&lt;br /&gt;
   else ((DateTimeToPDMTime ({@CloseDate}) - {call_req.open_date})/60/60/24)&lt;br /&gt;
&lt;br /&gt;
'''[[Category]]''' (Example for Request Area)&lt;br /&gt;
&lt;br /&gt;
   if isnull ({prob_ctg.sym}) OR {prob_ctg.sym} = &amp;quot;&amp;quot;&lt;br /&gt;
   then &amp;quot;Currently no category specified&amp;quot;&lt;br /&gt;
   else {prob_ctg.sym}&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Sample_Queries&amp;diff=1807</id>
		<title>Sample Queries</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Sample_Queries&amp;diff=1807"/>
				<updated>2008-04-03T15:54:22Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: /* SQL Query for Request Area */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&lt;br /&gt;
== SQL Query for Request Area ==&lt;br /&gt;
'''&lt;br /&gt;
&lt;br /&gt;
''To obtain the most current listing, from the SQL Query Analyzer run the following query on the MDB.'' &lt;br /&gt;
&lt;br /&gt;
'''SELECT     prob_ctg.persid, prob_ctg.sym, prob_ctg.description FROM [dbo].[prob_ctg] WHERE (prob_ctg.del = 0)'''&lt;br /&gt;
&lt;br /&gt;
''This query will return a list of persistent ID's, Symbols (Request Areas) and Descriptions from SQL. Only ACTIVE Request Areas will be displayed by this query.''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
== SQL Query Reference for Contact Types ==&lt;br /&gt;
&lt;br /&gt;
''-- Select all Contact Types (ca_contact_type)''&lt;br /&gt;
&lt;br /&gt;
'''SELECT id, name FROM dbo.ca_contact_type'''&lt;br /&gt;
&lt;br /&gt;
''-- Select all Groups from (ca_contacts) ''&lt;br /&gt;
&lt;br /&gt;
'''SELECT contact_uuid, last_name, contact_type FROM ca_contact&lt;br /&gt;
WHERE contact_type = 2308'''&lt;br /&gt;
&lt;br /&gt;
''-- Select all Analysts from (ca_contacts)''&lt;br /&gt;
&lt;br /&gt;
'''SELECT contact_uuid, last_name, first_name, contact_type FROM ca_contact&lt;br /&gt;
WHERE contact_type = 2307'''&lt;br /&gt;
&lt;br /&gt;
''-- Select all Customers and Employees from (ca_contacts)''&lt;br /&gt;
&lt;br /&gt;
'''SELECT contact_uuid, last_name, first_name, contact_type FROM ca_contact&lt;br /&gt;
WHERE contact_type = 2305 or contact_type = 2310'''&lt;br /&gt;
&lt;br /&gt;
''-- Select all NULL contact_type(ca_contacts)''&lt;br /&gt;
&lt;br /&gt;
'''SELECT contact_uuid, last_name, first_name, contact_type FROM ca_contact&lt;br /&gt;
WHERE contact_type is NULL'''&lt;br /&gt;
&lt;br /&gt;
''-- Select all Help Desk from (ca_contacts)''&lt;br /&gt;
&lt;br /&gt;
'''SELECT contact_uuid, last_name, first_name, contact_type FROM ca_contact&lt;br /&gt;
WHERE contact_type = 2306'''&lt;br /&gt;
&lt;br /&gt;
''-- Select all Managers from (ca_contacts)''&lt;br /&gt;
&lt;br /&gt;
'''SELECT contact_uuid, last_name, first_name, contact_type FROM ca_contact&lt;br /&gt;
WHERE contact_type = 2301'''&lt;br /&gt;
&lt;br /&gt;
''-- Select all Operators from (ca_contacts)''&lt;br /&gt;
&lt;br /&gt;
'''SELECT contact_uuid, last_name, first_name, contact_type FROM ca_contact&lt;br /&gt;
WHERE contact_type = 2300'''&lt;br /&gt;
&lt;br /&gt;
''-- Select all Technician from (ca_contacts)''&lt;br /&gt;
&lt;br /&gt;
'''SELECT contact_uuid, last_name, first_name, contact_type FROM ca_contact&lt;br /&gt;
WHERE contact_type = 2304'''&lt;br /&gt;
&lt;br /&gt;
''-- Select all Users from (ca_contacts)''&lt;br /&gt;
&lt;br /&gt;
'''SELECT contact_uuid, last_name, first_name, contact_type FROM ca_contact&lt;br /&gt;
WHERE contact_type = 2302'''&lt;br /&gt;
&lt;br /&gt;
''-- Select all Vendors from (ca_contacts) ''&lt;br /&gt;
&lt;br /&gt;
'''SELECT contact_uuid, last_name, first_name, contact_type FROM ca_contact&lt;br /&gt;
WHERE contact_type = 2303'''&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Sample_Queries&amp;diff=1806</id>
		<title>Sample Queries</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Sample_Queries&amp;diff=1806"/>
				<updated>2008-04-03T14:37:24Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: /* SQL Query for Request Area */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&lt;br /&gt;
== SQL Query for Request Area ==&lt;br /&gt;
'''&lt;br /&gt;
&lt;br /&gt;
''To obtain the most current listing, from the SQL Query Analyzer run the following query on the MDB.'' &lt;br /&gt;
&lt;br /&gt;
'''SELECT     prob_ctg.persid, prob_ctg.sym, prob_ctg.description FROM [dbo].[prob_ctg] WHERE (prob_ctg.del = 0)'''&lt;br /&gt;
&lt;br /&gt;
''This query will return a list of persistent ID's, Symbols (Request Areas) and Descriptions from SQL. Only ACTIVE Request Areas will be displayed by this query.''&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Sample_Queries&amp;diff=1805</id>
		<title>Sample Queries</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Sample_Queries&amp;diff=1805"/>
				<updated>2008-04-03T14:35:56Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''&lt;br /&gt;
== SQL Query for Request Area ==&lt;br /&gt;
'''&lt;br /&gt;
&lt;br /&gt;
''To obtain the most current listing, from the SQL Query Analyzer run the following query on the MDB.'' &lt;br /&gt;
&lt;br /&gt;
'''SELECT     prob_ctg.persid, prob_ctg.sym, prob_ctg.description&lt;br /&gt;
FROM         [dbo].[prob_ctg]&lt;br /&gt;
WHERE     (prob_ctg.del = 0)'''&lt;br /&gt;
&lt;br /&gt;
''This query will return a list of persistent ID's, Symbols (Request Areas) and Descriptions from SQL. Only ACTIVE Request Areas will be displayed by this query.''&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Sample_Queries&amp;diff=1804</id>
		<title>Sample Queries</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Sample_Queries&amp;diff=1804"/>
				<updated>2008-04-03T14:34:19Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: SQL Query for Request Areas&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To obtain the most current listing, from the SQL Query Analyzer run the following query on the MDB. &lt;br /&gt;
&lt;br /&gt;
SELECT     prob_ctg.persid, prob_ctg.sym, prob_ctg.description&lt;br /&gt;
FROM         [dbo].[prob_ctg]&lt;br /&gt;
WHERE     (prob_ctg.del = 0)&lt;br /&gt;
&lt;br /&gt;
This query will return a list of persistent ID's, Symbols (Request Areas) and Descriptions from SQL. Only ACTIVE Request Areas will be displayed by this query.&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1280</id>
		<title>Yellow Pages:Appia Incorporated</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1280"/>
				<updated>2008-02-22T18:56:20Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Appia_Incorporated.png|APPIA-Your 360degree Solution!|1-800-60-APPIA]]&lt;br /&gt;
&lt;br /&gt;
== '''1-888-60-APPIA'''  ==&lt;br /&gt;
=== '''360-degree Vision:     Engage . . . Execute . . . Empower'''  ===&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
We have been working with Computer Associates Product Suites since 1996, when CA acquired Paradigm as part of the Legent acquisition.  We have architected, developed, and deployed hundreds of business solutions since that time.  &lt;br /&gt;
&lt;br /&gt;
'''Our Team's proficiencies span through the CA product sets as well as custom and third-party integrations.'''  &lt;br /&gt;
&lt;br /&gt;
*Architecture&lt;br /&gt;
*Compliance&lt;br /&gt;
*Workflow&lt;br /&gt;
*Software Customization and Specialized Development&lt;br /&gt;
*Integration&lt;br /&gt;
*Education and Training&lt;br /&gt;
*Business Process Guidance&lt;br /&gt;
*Technical Support&lt;br /&gt;
&lt;br /&gt;
'''Contact Us Today!      1-888-602-7742      '''&lt;br /&gt;
;Technical Support     &lt;br /&gt;
: [mailto:support@appia.us support@appia.us]&lt;br /&gt;
;Sales Team              &lt;br /&gt;
: [mailto:sales@appia.us sales@appia.us]&lt;br /&gt;
;Opportunities            &lt;br /&gt;
: [mailto:hr@appia.us hr@appia.us]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''''Unparalleled Complete Life-Cycle Solutions . . . Your Complete Solution!''&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1279</id>
		<title>Yellow Pages:Appia Incorporated</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1279"/>
				<updated>2008-02-22T18:56:04Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Appia_Incorporated.png|APPIA-Your 360degree Solution!|1-800-60-APPIA]]&lt;br /&gt;
&lt;br /&gt;
== '''1-888-60-APPIA'''  ==&lt;br /&gt;
=== '''360-degree Vision:     Engage . . . Execute . . . Empower'''  ===&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
We have been working with Computer Associates Product Suites since 1996, when CA acquired Paradigm as part of the Legent acquisition.  We have architected, developed, and deployed hundreds of business solutions since that time.  &lt;br /&gt;
&lt;br /&gt;
'''Our Team's proficiencies span through the CA product sets as well as custom and third-party integrations.'''  &lt;br /&gt;
&lt;br /&gt;
*Architecture&lt;br /&gt;
*Compliance&lt;br /&gt;
*Workflow&lt;br /&gt;
*Software Customization and Specialized Development&lt;br /&gt;
*Integration&lt;br /&gt;
*Education and Training&lt;br /&gt;
*Business Process Guidance&lt;br /&gt;
*Technical Support&lt;br /&gt;
&lt;br /&gt;
'''Contact Us Today!      1-888-602-7742      '''&lt;br /&gt;
;Technical Support     &lt;br /&gt;
: [mailto:support@appia.us support@appia.us]&lt;br /&gt;
;Sales Team              &lt;br /&gt;
: [mailto:sales@appia.us sales@appia.us]&lt;br /&gt;
;Opportunities            &lt;br /&gt;
: [mailto:hr@appia.us hr@appia.us]&lt;br /&gt;
&lt;br /&gt;
'''''Unparalleled Complete Life-Cycle Solutions . . . Your Complete Solution!''&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1278</id>
		<title>Yellow Pages:Appia Incorporated</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1278"/>
				<updated>2008-02-22T18:49:44Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Appia_Incorporated.png|APPIA-Your 360degree Solution!|1-800-60-APPIA]]&lt;br /&gt;
&lt;br /&gt;
== '''1-888-60-APPIA'''  ==&lt;br /&gt;
=== '''360-degree Vision:     Engage . . . Execute . . . Empower'''  ===&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
We have been working with Computer Associates Product Suites since 1996, when CA acquired Paradigm as part of the Legent acquisition.  We have architected, developed, and deployed hundreds of business solutions since that time.  &lt;br /&gt;
&lt;br /&gt;
'''Our Team's proficiencies span through the CA product sets as well as custom and third-party integrations.'''  &lt;br /&gt;
&lt;br /&gt;
*Architecture&lt;br /&gt;
*Compliance&lt;br /&gt;
*Workflow&lt;br /&gt;
*Software Customization and Specialized Development&lt;br /&gt;
*Integration&lt;br /&gt;
*Education and Training&lt;br /&gt;
*Business Process Guidance&lt;br /&gt;
*Technical Support&lt;br /&gt;
&lt;br /&gt;
'''Contact Us Today!      1-888-602-7742      '''&lt;br /&gt;
;Technical Support     &lt;br /&gt;
: [mailto:support@appia.us support@appia.us]&lt;br /&gt;
;Sales Team              &lt;br /&gt;
: [mailto:sales@appia.us sales@appia.us]&lt;br /&gt;
;Opportunities            &lt;br /&gt;
: [mailto:hr@appia.us hr@appia.us]&lt;br /&gt;
&lt;br /&gt;
'''''Unparalleled Complete Life-Cycle Solutions . . . [[Image:AppiaEngage.gif|APPIA-Your 360degree Solution!|1-800-60-APPIA]]''&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=File:AppiaEngage.gif&amp;diff=1276</id>
		<title>File:AppiaEngage.gif</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=File:AppiaEngage.gif&amp;diff=1276"/>
				<updated>2008-02-22T18:46:09Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1275</id>
		<title>Yellow Pages:Appia Incorporated</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1275"/>
				<updated>2008-02-22T18:45:43Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Appia_Incorporated.png|APPIA-Your 360degree Solution!|1-800-60-APPIA]]&lt;br /&gt;
&lt;br /&gt;
== '''1-888-60-APPIA'''  ==&lt;br /&gt;
=== '''360-degree Vision:     Engage . . . Execute . . . Empower'''  ===&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
We have been working with Computer Associates Product Suites since 1996, when CA acquired Paradigm as part of the Legent acquisition.  We have architected, developed, and deployed hundreds of business solutions since that time.  &lt;br /&gt;
&lt;br /&gt;
'''Our Team's proficiencies span through the CA product sets as well as custom and third-party integrations.'''  &lt;br /&gt;
&lt;br /&gt;
*Architecture&lt;br /&gt;
*Compliance&lt;br /&gt;
*Workflow&lt;br /&gt;
*Software Customization and Specialized Development&lt;br /&gt;
*Integration&lt;br /&gt;
*Education and Training&lt;br /&gt;
*Business Process Guidance&lt;br /&gt;
*Technical Support&lt;br /&gt;
&lt;br /&gt;
'''Contact Us Today!      1-888-602-7742      '''&lt;br /&gt;
;Technical Support     &lt;br /&gt;
: [mailto:support@appia.us support@appia.us]&lt;br /&gt;
;Sales Team              &lt;br /&gt;
: [mailto:sales@appia.us sales@appia.us]&lt;br /&gt;
;Opportunities            &lt;br /&gt;
: [mailto:hr@appia.us hr@appia.us]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== '''''Unparalleled Complete Life-Cycle Solutions . . . [[Image:AppiaEngage.gif|APPIA-Your 360degree Solution!|1-800-60-APPIA]]. . . .Your 360-degree Solution!''==&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1274</id>
		<title>Yellow Pages:Appia Incorporated</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1274"/>
				<updated>2008-02-22T18:36:07Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Appia_Incorporated.png|APPIA-Your 360degree Solution!|1-800-60-APPIA]]&lt;br /&gt;
&lt;br /&gt;
== '''1-888-60-APPIA'''  ==&lt;br /&gt;
=== '''360-degree Vision:     Engage . . . Execute . . . Empower'''  ===&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
We have been working with Computer Associates Product Suites since 1996, when CA acquired Paradigm as part of the Legent acquisition.  We have architected, developed, and deployed hundreds of business solutions since that time.  &lt;br /&gt;
&lt;br /&gt;
'''Our Team's proficiencies span through the CA product sets as well as custom and third-party integrations.'''  &lt;br /&gt;
&lt;br /&gt;
*Architecture&lt;br /&gt;
*Compliance&lt;br /&gt;
*Workflow&lt;br /&gt;
*Software Customization and Specialized Development&lt;br /&gt;
*Integration&lt;br /&gt;
*Education and Training&lt;br /&gt;
*Business Process Guidance&lt;br /&gt;
*Technical Support&lt;br /&gt;
&lt;br /&gt;
'''Contact Us Today!      1-888-602-7742      '''&lt;br /&gt;
;Technical Support     &lt;br /&gt;
: [mailto:support@appia.us support@appia.us]&lt;br /&gt;
;Sales Team              &lt;br /&gt;
: [mailto:sales@appia.us sales@appia.us]&lt;br /&gt;
;Opportunities            &lt;br /&gt;
: [mailto:hr@appia.us hr@appia.us]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== '''''Unparalleled Complete Life-Cycle Solutions . . . . . . .Your 360-degree Solution!''==&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1272</id>
		<title>Yellow Pages:Appia Incorporated</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1272"/>
				<updated>2008-02-22T18:34:45Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Appia_Incorporated.png|APPIA-Your 360degree Solution!|1-800-60-APPIA]]&lt;br /&gt;
&lt;br /&gt;
== '''1-888-60-APPIA'''  ==&lt;br /&gt;
=== '''360-degree Vision:     Engage . . . Execute . . . Empower'''  ===&lt;br /&gt;
   &lt;br /&gt;
[[Image:Appia Incorporated print2.png|APPIA-Your 360degree Solution!|1-800-60-APPIA]]&lt;br /&gt;
We have been working with Computer Associates Product Suites since 1996, when CA acquired Paradigm as part of the Legent acquisition.  We have architected, developed, and deployed hundreds of business solutions since that time.  &lt;br /&gt;
&lt;br /&gt;
'''Our Team's proficiencies span through the CA product sets as well as custom and third-party integrations.'''  &lt;br /&gt;
&lt;br /&gt;
*Architecture&lt;br /&gt;
*Compliance&lt;br /&gt;
*Workflow&lt;br /&gt;
*Software Customization and Specialized Development&lt;br /&gt;
*Integration&lt;br /&gt;
*Education and Training&lt;br /&gt;
*Business Process Guidance&lt;br /&gt;
*Technical Support&lt;br /&gt;
&lt;br /&gt;
'''Contact Us Today!      1-888-602-7742      '''&lt;br /&gt;
;Technical Support     &lt;br /&gt;
: [mailto:support@appia.us support@appia.us]&lt;br /&gt;
;Sales Team              &lt;br /&gt;
: [mailto:sales@appia.us sales@appia.us]&lt;br /&gt;
;Opportunities            &lt;br /&gt;
: [mailto:hr@appia.us hr@appia.us]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== '''''Unparalleled Complete Life-Cycle Solutions . . . . . . .Your 360-degree Solution!''==&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1270</id>
		<title>Yellow Pages:Appia Incorporated</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1270"/>
				<updated>2008-02-22T18:32:34Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[Image:Appia_Incorporated.png|APPIA-Your 360degree Solution!|1-800-60-APPIA]]&lt;br /&gt;
&lt;br /&gt;
== '''1-888-60-APPIA'''  ==&lt;br /&gt;
=== '''360-degree Vision:     Engage . . . Execute . . . Empower'''  ===&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
We have been working with Computer Associates Product Suites since 1996, when CA acquired Paradigm as part of the Legent acquisition.  We have architected, developed, and deployed hundreds of business solutions since that time.  &lt;br /&gt;
&lt;br /&gt;
'''Our Team's proficiencies span through the CA product sets as well as custom and third-party integrations.'''  &lt;br /&gt;
&lt;br /&gt;
*Architecture&lt;br /&gt;
*Compliance&lt;br /&gt;
*Workflow&lt;br /&gt;
*Software Customization and Specialized Development&lt;br /&gt;
*Integration&lt;br /&gt;
*Education and Training&lt;br /&gt;
*Business Process Guidance&lt;br /&gt;
*Technical Support&lt;br /&gt;
&lt;br /&gt;
'''Contact Us Today!      1-888-602-7742      '''&lt;br /&gt;
;Technical Support     &lt;br /&gt;
: [mailto:support@appia.us support@appia.us]&lt;br /&gt;
;Sales Team              &lt;br /&gt;
: [mailto:sales@appia.us sales@appia.us]&lt;br /&gt;
;Opportunities            &lt;br /&gt;
: [mailto:hr@appia.us hr@appia.us]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== '''''Unparalleled Complete Life-Cycle Solutions . . . . . . .Your 360-degree Solution!''==&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1269</id>
		<title>Yellow Pages:Appia Incorporated</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1269"/>
				<updated>2008-02-22T18:29:37Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: /* '''APPIA INCORPORATED     1-888-60-APPIA''' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Appia Incorporated&lt;br /&gt;
[[Image:Appia_Incorporated.png|APPIA-Your 360degree Solution!|1-800-60-APPIA]]&lt;br /&gt;
&lt;br /&gt;
== '''1-888-60-APPIA'''  ==&lt;br /&gt;
=== '''360-degree Vision:     Engage . . . Execute . . . Empower'''  ===&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
We have been working with Computer Associates Product Suites since 1996, when CA acquired Paradigm as part of the Legent acquisition.  We have architected, developed, and deployed hundreds of business solutions since that time.  &lt;br /&gt;
&lt;br /&gt;
'''Our Team's proficiencies span through the CA product sets as well as custom and third-party integrations.'''  &lt;br /&gt;
&lt;br /&gt;
*Architecture&lt;br /&gt;
*Compliance&lt;br /&gt;
*Workflow&lt;br /&gt;
*Software Customization and Specialized Development&lt;br /&gt;
*Integration&lt;br /&gt;
*Education and Training&lt;br /&gt;
*Business Process Guidance&lt;br /&gt;
*Technical Support&lt;br /&gt;
&lt;br /&gt;
'''Contact Us Today!      1-888-602-7742      '''&lt;br /&gt;
;Technical Support     &lt;br /&gt;
: [mailto:support@appia.us support@appia.us]&lt;br /&gt;
;Sales Team              &lt;br /&gt;
: [mailto:sales@appia.us sales@appia.us]&lt;br /&gt;
;Opportunities            &lt;br /&gt;
: [mailto:hr@appia.us hr@appia.us]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== '''''Unparalleled Complete Life-Cycle Solutions . . . . . . .Your 360-degree Solution!''==&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=File:Appia_Incorporated.png&amp;diff=1268</id>
		<title>File:Appia Incorporated.png</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=File:Appia_Incorporated.png&amp;diff=1268"/>
				<updated>2008-02-22T18:27:06Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1267</id>
		<title>Yellow Pages:Appia Incorporated</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Yellow_Pages:Appia_Incorporated&amp;diff=1267"/>
				<updated>2008-02-22T18:24:26Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Appia Incorporated&lt;br /&gt;
[[Image:Appia_Incorporated.png|APPIA-Your 360degree Solution!|1-800-60-APPIA]]&lt;br /&gt;
&lt;br /&gt;
== '''APPIA INCORPORATED     1-888-60-APPIA'''  ==&lt;br /&gt;
=== '''360-degree Vision:     Engage . . . Execute . . . Empower'''  ===&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
We have been working with Computer Associates Product Suites since 1996, when CA acquired Paradigm as part of the Legent acquisition.  We have architected, developed, and deployed hundreds of business solutions since that time.  &lt;br /&gt;
&lt;br /&gt;
'''Our Team's proficiencies span through the CA product sets as well as custom and third-party integrations.'''  &lt;br /&gt;
&lt;br /&gt;
*Architecture&lt;br /&gt;
*Compliance&lt;br /&gt;
*Workflow&lt;br /&gt;
*Software Customization and Specialized Development&lt;br /&gt;
*Integration&lt;br /&gt;
*Education and Training&lt;br /&gt;
*Business Process Guidance&lt;br /&gt;
*Technical Support&lt;br /&gt;
&lt;br /&gt;
'''Contact Us Today!      1-888-602-7742      '''&lt;br /&gt;
;Technical Support     &lt;br /&gt;
: [mailto:support@appia.us support@appia.us]&lt;br /&gt;
;Sales Team              &lt;br /&gt;
: [mailto:sales@appia.us sales@appia.us]&lt;br /&gt;
;Opportunities            &lt;br /&gt;
: [mailto:hr@appia.us hr@appia.us]&lt;br /&gt;
----&lt;br /&gt;
== '''''Unparalleled Complete Life-Cycle Solutions . . . . . . .Your 360-degree Solution!''==&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Automatically_Set_Assignee_to_Closing_Analyst&amp;diff=1103</id>
		<title>Automatically Set Assignee to Closing Analyst</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Automatically_Set_Assignee_to_Closing_Analyst&amp;diff=1103"/>
				<updated>2008-02-07T03:02:09Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: /* Step 3. Publish the Schema changes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article provides instructions for having system generated [[Activity|Activities]] set to ''Internal'' so it cannot be viewed by users of the Employee or Customer Interfaces.&lt;br /&gt;
&lt;br /&gt;
== Step 1. Create the script ==&lt;br /&gt;
A script is created as an [[.spl file]] and placed in the [[NX_ROOT]]/site/mods/majic directory. When the Service Desk service starts, the contents of the majic directory are processed and cached. You can use any naming scheme you like for your [[.spl file]], but it is recommended that the file be preceded with a 'z' for easy identification as a custom file (eg zMyCompany.spl, zcr_scripts.spl, zMyScripts.spl).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;// Use 'cr' for Requests, Incidents &amp;amp; Problems, 'chg' for Changes, and 'iss' for Issues&lt;br /&gt;
cr::zmyscript(...){&lt;br /&gt;
if(is_null(assignee)){&lt;br /&gt;
// Use 'int' in place of 'uuid' in the line below if for pre-r11 releases&lt;br /&gt;
uuid userid;&lt;br /&gt;
send_wait(0, top_object(), &amp;quot;call_attr&amp;quot;, &amp;quot;cr&amp;quot;, &amp;quot;current_user_id&amp;quot;);&lt;br /&gt;
userid = msg[0];&lt;br /&gt;
assignee = userid;&lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The trigger that will be created in step 2 is the first level filtering. If you need further filtering then utilize an [[if statement]] in the [[spel code]] above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Step 2. Create the trigger ==&lt;br /&gt;
This step is to create the trigger that will initiate the script. The methods used to implement the trigger vary based on the Service Desk release.  In the examples to follow, the trigger is designed to fire if the [[Status]] is being changed to 'Resolved'. Use whatever filter you like for attaching your [[Event|event]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;For r11.x releases&amp;lt;/font&amp;gt; triggers are created via the [[Schema Designer]] utility. Simply add the following code as a [[Site-Defined Trigger]] to the '''[[cr|cr (Request)]]''', '''[[chg|chg (Change Order)]]''', or '''[[iss|iss (Issue)]]''' table.&lt;br /&gt;
 POST_VALIDATE zmyscript() 111 FILTER(EVENT(&amp;quot;UPDATE&amp;quot;) &amp;amp;&amp;amp; status{-&amp;gt;'CL'});&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;For older releases&amp;lt;/font&amp;gt; triggers are made by creating a [[.mod file]] and placing it in the [[NX_ROOT]]/site/mods/majic directory. Name the [[.mod file|.mod]] anything you like, but it is recommended that it be preceded with a 'z'.&lt;br /&gt;
&lt;br /&gt;
 MODIFY cr POST_VALIDATE zmyscript() 111 FILTER(EVENT(&amp;quot;UPDATE&amp;quot;) &amp;amp;&amp;amp; status{-&amp;gt;'CL'});&lt;br /&gt;
 MODIFY chg status POST_VALIDATE zmyscript() 111 FILTER(EVENT(&amp;quot;UPDATE&amp;quot;) &amp;amp;&amp;amp; status{-&amp;gt;'CL'});&lt;br /&gt;
 MODIFY iss status POST_VALIDATE zmyscript() 111 FILTER(EVENT(&amp;quot;UPDATE&amp;quot;) &amp;amp;&amp;amp; status{-&amp;gt;'CL'});&lt;br /&gt;
&lt;br /&gt;
== Step 3. Publish the Schema changes ==&lt;br /&gt;
The methods used to publish schema changes vary based on the Service Desk release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;For r11.x releases&amp;lt;/font&amp;gt;, follow these steps:&lt;br /&gt;
#Save and Publish your Schema changes (under File menu of Schema Designer)&lt;br /&gt;
#Stop the Service Desk service&lt;br /&gt;
#Run [[pdm_publish]] from a command line&lt;br /&gt;
#Start the Service Desk service&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;For older release&amp;lt;/font&amp;gt; recycle the Service Desk service.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;div align='center'&amp;gt;&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;To make corrections or additions to this article, select the ''edit'' tab above.&amp;lt;br&amp;gt;&lt;br /&gt;
To discuss or ask questions about this article, select the ''discussion'' tab above.&amp;lt;/font&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Customizations]]&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Automatically_Set_Assignee_to_Closing_Analyst&amp;diff=1102</id>
		<title>Automatically Set Assignee to Closing Analyst</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Automatically_Set_Assignee_to_Closing_Analyst&amp;diff=1102"/>
				<updated>2008-02-07T03:01:12Z</updated>
		
		<summary type="html">&lt;p&gt;Komodo: /* Step 2. Create the trigger */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article provides instructions for having system generated [[Activity|Activities]] set to ''Internal'' so it cannot be viewed by users of the Employee or Customer Interfaces.&lt;br /&gt;
&lt;br /&gt;
== Step 1. Create the script ==&lt;br /&gt;
A script is created as an [[.spl file]] and placed in the [[NX_ROOT]]/site/mods/majic directory. When the Service Desk service starts, the contents of the majic directory are processed and cached. You can use any naming scheme you like for your [[.spl file]], but it is recommended that the file be preceded with a 'z' for easy identification as a custom file (eg zMyCompany.spl, zcr_scripts.spl, zMyScripts.spl).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;// Use 'cr' for Requests, Incidents &amp;amp; Problems, 'chg' for Changes, and 'iss' for Issues&lt;br /&gt;
cr::zmyscript(...){&lt;br /&gt;
if(is_null(assignee)){&lt;br /&gt;
// Use 'int' in place of 'uuid' in the line below if for pre-r11 releases&lt;br /&gt;
uuid userid;&lt;br /&gt;
send_wait(0, top_object(), &amp;quot;call_attr&amp;quot;, &amp;quot;cr&amp;quot;, &amp;quot;current_user_id&amp;quot;);&lt;br /&gt;
userid = msg[0];&lt;br /&gt;
assignee = userid;&lt;br /&gt;
}&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The trigger that will be created in step 2 is the first level filtering. If you need further filtering then utilize an [[if statement]] in the [[spel code]] above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Step 2. Create the trigger ==&lt;br /&gt;
This step is to create the trigger that will initiate the script. The methods used to implement the trigger vary based on the Service Desk release.  In the examples to follow, the trigger is designed to fire if the [[Status]] is being changed to 'Resolved'. Use whatever filter you like for attaching your [[Event|event]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;For r11.x releases&amp;lt;/font&amp;gt; triggers are created via the [[Schema Designer]] utility. Simply add the following code as a [[Site-Defined Trigger]] to the '''[[cr|cr (Request)]]''', '''[[chg|chg (Change Order)]]''', or '''[[iss|iss (Issue)]]''' table.&lt;br /&gt;
 POST_VALIDATE zmyscript() 111 FILTER(EVENT(&amp;quot;UPDATE&amp;quot;) &amp;amp;&amp;amp; status{-&amp;gt;'CL'});&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;For older releases&amp;lt;/font&amp;gt; triggers are made by creating a [[.mod file]] and placing it in the [[NX_ROOT]]/site/mods/majic directory. Name the [[.mod file|.mod]] anything you like, but it is recommended that it be preceded with a 'z'.&lt;br /&gt;
&lt;br /&gt;
 MODIFY cr POST_VALIDATE zmyscript() 111 FILTER(EVENT(&amp;quot;UPDATE&amp;quot;) &amp;amp;&amp;amp; status{-&amp;gt;'CL'});&lt;br /&gt;
 MODIFY chg status POST_VALIDATE zmyscript() 111 FILTER(EVENT(&amp;quot;UPDATE&amp;quot;) &amp;amp;&amp;amp; status{-&amp;gt;'CL'});&lt;br /&gt;
 MODIFY iss status POST_VALIDATE zmyscript() 111 FILTER(EVENT(&amp;quot;UPDATE&amp;quot;) &amp;amp;&amp;amp; status{-&amp;gt;'CL'});&lt;br /&gt;
&lt;br /&gt;
== Step 3. Publish the Schema changes ==&lt;br /&gt;
The methods used to publish schema changes vary based on the Service Desk release.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;For r11.x releases&amp;lt;/font&amp;gt;, follow these steps:&lt;br /&gt;
#Save your Schema changes&lt;br /&gt;
#Stop the Service Desk service&lt;br /&gt;
#Run [[pdm_publish]] from a command line&lt;br /&gt;
#Start the Service Desk service&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;blue&amp;quot;&amp;gt;For older release&amp;lt;/font&amp;gt; recycle the Service Desk service.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;div align='center'&amp;gt;&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;To make corrections or additions to this article, select the ''edit'' tab above.&amp;lt;br&amp;gt;&lt;br /&gt;
To discuss or ask questions about this article, select the ''discussion'' tab above.&amp;lt;/font&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Customizations]]&lt;/div&gt;</summary>
		<author><name>Komodo</name></author>	</entry>

	</feed>