Jump to: navigation, search

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


(Arguments)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
The GetProxyInformation Activity returns various system data of a proxy object.
 +
 +
=Description=
 
{{ActivityInfoBox
 
{{ActivityInfoBox
 
| title = Get Proxy Information
 
| title = Get Proxy Information
Line 9: Line 12:
 
| version = 2.1+
 
| version = 2.1+
 
}}
 
}}
The GetProxyInformation Activity returns various system data of a proxy object.
 
  
==Arguments==
+
===Arguments===
 
{| class="wikitable sortable" | width = "50%"
 
{| class="wikitable sortable" | width = "50%"
 
|-
 
|-
Line 39: Line 41:
 
|- align="left"
 
|- align="left"
 
| ExternalExportTimeStamp || {{DateTime}}|| Out || Timestamp of external export (Proxy object to external destination); is set once the export status changes to '''Queued for external processing'''
 
| ExternalExportTimeStamp || {{DateTime}}|| Out || Timestamp of external export (Proxy object to external destination); is set once the export status changes to '''Queued for external processing'''
 +
|- align="left"
 
| ImportHash || {{Integer}}|| Out || Import hashcode
 
| ImportHash || {{Integer}}|| Out || Import hashcode
 
|- align="left"
 
|- align="left"
 
| ExportHash || {{Integer}}|| Out || Export hashcode
 
| ExportHash || {{Integer}}|| Out || Export hashcode
 +
|- align="left"
 
| ImportDeleted || {{Boolean}}|| Out || True if target object has been deleted on import
 
| ImportDeleted || {{Boolean}}|| Out || True if target object has been deleted on import
 
|- align="left"
 
|- align="left"
Line 49: Line 53:
 
|}
 
|}
  
==Usage==
+
===Usage===
 
This activity is used to get different kinds of system data from a proxy object at once.
 
This activity is used to get different kinds of system data from a proxy object at once.
  
==Example==
+
<!-- DO NOT REMOVE THIS -->{{Activity/End}}<!-- DO NOT REMOVE THIS -->
 
+
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>
+
|}
+
  
 
==See also==
 
==See also==
 
* [[Workflow Designer]]
 
* [[Workflow Designer]]
  
[[Category:Workflows]]
+
[[Category:Activities|GetProxyInformation (Activity)]]
[[Category:Activities]]
+
[[Category:Interfacing|GetProxyInformation (Activity)]]
[[Category:Interfacing]]
+

Latest revision as of 09:57, 4 November 2015

The GetProxyInformation Activity returns various system data of a proxy object.

[edit]

Description

Get Proxy Information
Name GetProxyInformation
Purpose Get system data of proxy object
Category Data Exchange
Returns Various information
Version 2.1+

Arguments

Argument Type Direction Purpose
ProxyObject Proxy In The proxy object
Target BaseClass Out Target object
ImportStatus ProxyImportStatus Out Current import state
ExportStatus ProxyExportStatus Out Current export state
ImportTargetVersion Integer Out Version of target object on import
ExportTargetVersion Integer Out Version of target object on export
ImportVersion Integer Out Version of proxy object on import
ExportVersion Integer Out Version of proxy object on export
ImportTimeStamp Date/Time Out Timestamp of import (Proxy to target object)
ExportTimeStamp Date/Time Out Timestamp of export (Target to Proxy object)
ExternalImportTimeStamp Date/Time Out Timestamp of external import (external source to Proxy object)
ExternalExportTimeStamp Date/Time Out Timestamp of external export (Proxy object to external destination); is set once the export status changes to Queued for external processing
ImportHash Integer Out Import hashcode
ExportHash Integer Out Export hashcode
ImportDeleted Boolean Out True if target object has been deleted on import
ExportDeleted Boolean Out True if target object has been deleted before export
Result Boolean Out True if data has been loaded

Usage

This activity is used to get different kinds of system data from a proxy object at once.


See also