Difference between revisions of "Activity:SaveObject (Activity)"
(Created page with "The SaveObject Activity saves a {{UBIK}} object to the database. {{ActivityInfoBox | title = Save Object | name = SaveObject | internalname = SaveObject | image = | imageca...") |
|||
(21 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
The SaveObject Activity saves a {{UBIK}} object to the database. | The SaveObject Activity saves a {{UBIK}} object to the database. | ||
− | + | =Description= | |
{{ActivityInfoBox | {{ActivityInfoBox | ||
| title = Save Object | | title = Save Object | ||
| name = SaveObject | | name = SaveObject | ||
− | |||
| image = | | image = | ||
| imagecaption = Activity SaveObject | | imagecaption = Activity SaveObject | ||
Line 13: | Line 12: | ||
| version = 2.1+ | | version = 2.1+ | ||
}} | }} | ||
+ | |||
+ | ===Arguments=== | ||
+ | |||
+ | {| class="wikitable sortable" | width = "50%" | ||
+ | |- | ||
+ | ! Argument !! Type !! Direction !! Purpose | ||
+ | |- align="left" | ||
+ | | UBIKObject|| [[BaseClass]] || In || The object to save | ||
+ | |- align="left" | ||
+ | | ShallowSave|| {{Boolean_MSDN}} || In || If True, only the object itself will be saved, if False it will try to also save primary child objects (related child instances) | ||
+ | |- align="left" | ||
+ | | Result|| [[RelationalObject]]|| Out || The created instance, null if creation failed | ||
+ | |} | ||
+ | |||
+ | ===Usage=== | ||
+ | |||
+ | This activity is used save a newly created or changed object to the database. This is necessary if you create a new object during the workflow, e.g. with the [[Activity:CreateInstance_(Activity)|CreateInstance activity]] or if you modified an existing object with the [[Activity:SetPropertyValue_(Activity)|SetPropertyValue activity]]. | ||
+ | |||
+ | =Example= | ||
+ | |||
+ | Save the given object shallow: | ||
+ | {| class="wikitable" | width = "50%" | ||
+ | |- | ||
+ | ! Argument!! Value | ||
+ | |- align="left" | ||
+ | | UBIKObject|| Connect this argument with a variable | ||
+ | |- align="left" | ||
+ | | ShallowSave || <source lang = "vbnet">True</source> | ||
+ | |} | ||
+ | |||
+ | <headertabs /> | ||
+ | |||
+ | ==See also== | ||
+ | * [[Workflow Designer]] | ||
+ | * [[Activity:CreateInstance (Activity)]] | ||
+ | |||
+ | [[Category:Activities|SaveObject (Activity)]] |
Latest revision as of 12:05, 11 November 2015
The SaveObject Activity saves a UBIK® object to the database.