-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathservices.xml
More file actions
executable file
·61 lines (60 loc) · 3.21 KB
/
services.xml
File metadata and controls
executable file
·61 lines (60 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="UTF-8"?>
<screenflowContribution xmlns="http://schemas.active-endpoints.com/appmodules/screenflow/2010/10/avosServiceDiscovery.xsd">
<service name="execSQL">
<avosServiceName>execSQL</avosServiceName>
<displayName>execSQL</displayName>
<category>Automated Steps:Data Access Services</category>
<description>You can interact directly with a data source within a IPD process by using the Data Access system service.
Using this service, you create an invoke activity that executes one statement on a specified data source and receives a result set as the response.
This service Supports One SQL statement, but multiple batched updates/inserts</description>
<iconLocation>project:/com.informatica.cloud.das/images/database.png</iconLocation>
<largeIconLocation>project:/com.informatica.cloud.das/images/database.png</largeIconLocation>
<input>
<parameter name="dataAccessRequest" required="true" type="reference"
description="tDataAccessRequest Object">
<options>
<option name="referenceTo">DataAccessService:tDataAccessRequest</option>
</options>
</parameter>
</input>
<output>
<field description="tResponse Object"
label=""
name="dataAccessResponse"
type="reference">
<options>
<option name="referenceTo">DataAccessService:tResponse</option>
</options>
</field>
</output>
</service>
<service name="execMultiSQL">
<avosServiceName>execMultiSQL</avosServiceName>
<displayName>execMultiSQL</displayName>
<category>Automated Steps:Data Access Services</category>
<description>You can interact directly with a data source within a IPD process by using the Data Access system service.
Using this service, you create an invoke activity that executes Multiple statement on a specified data source and receives a result set as the response.
You can execute any SQL statement, whether you are selecting, inserting, updating or deleting data or stored procedures from a data source.
This service Supports One SQL statement, but multiple batched updates/inserts</description>
<iconLocation>project:/com.informatica.cloud.das/images/database.png</iconLocation>
<largeIconLocation>project:/com.informatica.cloud.das/images/database.png</largeIconLocation>
<input>
<parameter name="multiDataAccessRequest" required="true" type="reference"
description="Provide one or many statements to be executed using the MultiDataAccessRequest">
<options>
<option name="referenceTo">DataAccessService:tMultiDataAccessRequest</option>
</options>
</parameter>
</input>
<output>
<field description="tMultiResponse object"
label=""
name="multiDataAccessResponse"
type="reference">
<options>
<option name="referenceTo">DataAccessService:tMultiResponse</option>
</options>
</field>
</output>
</service>
</screenflowContribution>