Difference between revisions of "WSSIWYG"

From SDU
Jump to: navigation, search
m
m (Reverted edits by Agegeleruvy (Talk); changed back to last version by Gityerfix)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''What Servicedesk Sees Is What You Get'''
+
__NOTOC__
 +
{{Global Header}}
 +
{{Global Announcement}}
  
 +
== Overview ==
 +
'''What Servicedesk Sees Is What You Get'''
 
This is a small tool developed by [[User:Nero Le Velu|Nero Le Velu]] to see what USD see from the object point of view
 
This is a small tool developed by [[User:Nero Le Velu|Nero Le Velu]] to see what USD see from the object point of view
  
 
Download [[Media:ListObj.frg|ListObj.frg]] to your server.
 
Download [[Media:ListObj.frg|ListObj.frg]] to your server.
 
  
 
== Command Structure ==
 
== Command Structure ==
Line 12: Line 15:
 
'''where filter''' is a logical constraint on object attribute (ex: last_name='Neron')<br>
 
'''where filter''' is a logical constraint on object attribute (ex: last_name='Neron')<br>
 
'''DottedAttribute1, DottedAttribute2,...''' are the return values (ex: customer.admin_org.name)
 
'''DottedAttribute1, DottedAttribute2,...''' are the return values (ex: customer.admin_org.name)
 
  
 
== Examples ==
 
== Examples ==
Line 18: Line 20:
 
bop_cmd -f ListObj.frg "ShowObjectDomset( 'chg, 'description LIKE \'%test%\'', 'chg_ref_num', 'category.sym')"
 
bop_cmd -f ListObj.frg "ShowObjectDomset( 'chg, 'description LIKE \'%test%\'', 'chg_ref_num', 'category.sym')"
 
bop_cmd -f ListObj.frg "ShowObjectDomset( 'wf', 'status == \'PEND\', 'chg.chg_ref_num')"</source>
 
bop_cmd -f ListObj.frg "ShowObjectDomset( 'wf', 'status == \'PEND\', 'chg.chg_ref_num')"</source>
 
 
 
 
----
 
<div align='center'><font color="red">To make corrections or additions to this article, select the ''edit'' tab above.<br>
 
To discuss or ask questions about this article, select the ''discussion'' tab above.</font></div>
 

Latest revision as of 05:28, 30 November 2010

To make corrections or additions to this article, select the edit tab above.
To discuss or ask questions about this article, select the discussion tab above.

Overview

What Servicedesk Sees Is What You Get This is a small tool developed by Nero Le Velu to see what USD see from the object point of view

Download ListObj.frg to your server.

Command Structure

<source lang="text">bop_cmd -f ListObj.frg "ShowObjectDomset( object, where filter, DottedAttribute1, DottedAttribute2, DottedAttribute3, etc... )"</source>

object is the USD object name (ex: cr, in, wf, ...)
where filter is a logical constraint on object attribute (ex: last_name='Neron')
DottedAttribute1, DottedAttribute2,... are the return values (ex: customer.admin_org.name)

Examples

<source lang="text">bop_cmd -f ListObj.frg "ShowObjectDomset( 'cr', 'id>2', 'ref_num', 'customer.combo_name')" bop_cmd -f ListObj.frg "ShowObjectDomset( 'chg, 'description LIKE \'%test%\, 'chg_ref_num', 'category.sym')" bop_cmd -f ListObj.frg "ShowObjectDomset( 'wf', 'status == \'PEND\', 'chg.chg_ref_num')"</source>