Jump to: navigation, search

Difference between revisions of "Activity:DeleteObject (Activity)"


m (moved DeleteObject (Activity) to DeleteObject (Activity): Text replacement - "(.*)\(Activity\)" to "Activity:$1(Activity)")
Line 26: Line 26:
 
==Usage==
 
==Usage==
  
This activity is used to delete a previously created object (e.g. with the [[Activity CreateInstance|CreateInstance]] activity) from memory and the database.
+
This activity is used to delete a previously created object (e.g. with the [[Activity:CreateInstance_(Activity)|CreateInstance]] activity) from memory and the database.
  
 
{{Attention|The delete is permanent, the object can bot be restored!}}
 
{{Attention|The delete is permanent, the object can bot be restored!}}
Line 46: Line 46:
 
==See also==
 
==See also==
 
* [[Workflow Designer]]
 
* [[Workflow Designer]]
* [[CreateInstance (Activity)]]
+
* [[Activity:CreateInstance (Activity)]]
  
 
[[Category:Activities]]
 
[[Category:Activities]]

Revision as of 11:47, 23 February 2015

Delete Object
Name DeleteObject
Purpose Delete an object from the database
Category Object Primitives
Returns True if successful
Version 2.1+

The DeleteObject Activity deletes a UBIK® object from memory and the database.

Arguments

Argument Type Direction Purpose
UBIKObject BaseClass In The object to delete
ShallowDelete Boolean In If True, only the object itself will be deleted, if false it will try to also delete affected objects of the change ("Deep delete")
Result Boolean Out True if successful, false if failed

Usage

This activity is used to delete a previously created object (e.g. with the CreateInstance activity) from memory and the database.

IC Attention.pngThe delete is permanent, the object can bot be restored!

Example

Delete the given object shallow:


Argument Value
UBIKObject Connect this argument with a variable
ShallowDelete
True

See also