Howard,
Not sure what you are trying to accomplish it or why you might need it.
But if you want to get the list of code, could you just use SQL to get it?

Here's the SQL calls to make to the database to get the corresponding pieces of 
workflow if you wanted to go that route:
SCHEMAs:
SELECT name, schemaid
FROM arschema
WHERE....

Fields:
SELECT s.name, F.Fieldname, F.fieldid, F.datatype
FROM field f
INNER JOIN arschema s
ON f.schemaid=s.schemaid
WHERE....

Active Links:
SELECT s.name, a.name
FROM actlink a
INNER JOIN actlink_mapping m
ON a.actlinkid = m.actlinkid
INNER JOIN arschema s
ON m.schemaid = s.schemaid
WHERE....

Filters:
SELECT s.name, f.name
FROM filter f
INNER JOIN filter_mapping m
ON f.filterid = m.filterid
INNER JOIN arschema s
ON m.schemaid = s.schemaid
WHERE...

Escalations
SELECT s.name, E.name
FROM escalation e
INNER JOIN escal_mapping m
ON e.escalationId = m.escalationId
INNER JOIN arschema s
ON m.schemaid = s.schemaid
WHERE....

Menus:
Select name
FROM Char_menu
WHERE...

Active Link Guides:
SELECT sc.name, ac.name
FROM arcontainer ac
INNER JOIN cntnr_ownr_obj co
ON ac.containerID = co.containerId
INNER JOIN arschema sc
ON co.ownerObjId = sc.schemaId
WHERE ac.containerType = 1 AND ....

Filter Guides:
SELECT sc.name, ac.name
FROM arcontainer ac
INNER JOIN cntnr_ownr_obj co
ON ac.containerID = co.containerId
INNER JOIN arschema sc
ON co.ownerObjId = sc.schemaId
WHERE ac.containerType = 4 AND ...

Web Services:
SELECT sc.name, ac.name
FROM arcontainer ac
INNER JOIN cntnr_ownr_obj co
ON ac.containerID = co.containerId
INNER JOIN arschema sc
ON co.ownerObjId = sc.schemaId
WHERE ac.containerType = 5 AND...

HTH
Matt P

From: Action Request System discussion list(ARSList) [mailto:[EMAIL PROTECTED] 
On Behalf Of LJ Longwing
Sent: Thursday, November 13, 2008 9:06 AM
To: arslist@ARSLIST.ORG
Subject: Re: Command line program to list all workflow elements

**
Are you possibly talking about the driver program?  It's included with the API 
if I remember correctly, through various options it will tell you anything you 
want to know about any object in the system.

________________________________
From: Action Request System discussion list(ARSList) [mailto:[EMAIL PROTECTED] 
On Behalf Of Howard Richter
Sent: Thursday, November 13, 2008 7:37 AM
To: arslist@ARSLIST.ORG
Subject: Command line program to list all workflow elements
**
Good morning All,
I remember a utility back in the 4.x and 5.x days that would allow you from a 
command line list the forms or any other workflow elements. Does anyone know if 
this is still around or has been remade for 7.x and if so what is it called?
As always thanks and have a nice day,
hbr


--
Howard Richter
Red Hat Certified Technician
CompTIA Linux+ Certified
ITIL Foundation Certified
E-Mail = [EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>
LinkedIn Profile = http://www.linkedin.com/in/hbr4270
__Platinum Sponsor: www.rmsportal.com ARSlist: "Where the Answers Are" html___
__Platinum Sponsor: www.rmsportal.com ARSlist: "Where the Answers Are" html___

_______________________________________________________________________________
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
Platinum Sponsor: www.rmsportal.com ARSlist: "Where the Answers Are"

Reply via email to