DBA Data[Home] [Help]

APPS.AMS_RUNTIME_SCRIPTING_PVT dependencies on WF_ENGINE

Line 120: wf_engine.CreateProcess(

116: '-'||l_adhoc_user;
117:
118: AMS_UTILITY_PVT.debug_message('Create and Start Process with Item Key: '||l_item_key);
119:
120: wf_engine.CreateProcess(
121: itemtype => g_ItemType,
122: itemkey => l_item_key,
123: process => g_processName);
124:

Line 125: wf_engine.SetItemUserKey(

121: itemtype => g_ItemType,
122: itemkey => l_item_key,
123: process => g_processName);
124:
125: wf_engine.SetItemUserKey(
126: itemtype => g_ItemType,
127: itemkey => l_item_key,
128: userkey => l_item_key);
129:

Line 131: wf_engine.SetItemAttrText(

127: itemkey => l_item_key,
128: userkey => l_item_key);
129:
130: -- user name label
131: wf_engine.SetItemAttrText(
132: itemtype => g_ItemType,
133: itemkey => l_item_key,
134: aname => 'AMS_USERNAME_LABEL',
135: avalue => p_uname_label);

Line 138: wf_engine.SetItemAttrText(

134: aname => 'AMS_USERNAME_LABEL',
135: avalue => p_uname_label);
136:
137: -- password label
138: wf_engine.SetItemAttrText(
139: itemtype => g_ItemType,
140: itemkey => l_item_key,
141: aname => 'AMS_PWD_LABEL',
142: avalue => p_pwd_label);

Line 145: wf_engine.SetItemAttrText(

141: aname => 'AMS_PWD_LABEL',
142: avalue => p_pwd_label);
143:
144: -- user name
145: wf_engine.SetItemAttrText(
146: itemtype => g_ItemType,
147: itemkey => l_item_key,
148: aname => 'AMS_USERNAME',
149: avalue => p_user_name);

Line 152: wf_engine.SetItemAttrText(

148: aname => 'AMS_USERNAME',
149: avalue => p_user_name);
150:
151: -- password
152: wf_engine.SetItemAttrText(
153: itemtype => g_ItemType,
154: itemkey => l_item_key,
155: aname => 'AMS_PWD',
156: avalue => p_password);

Line 159: wf_engine.SetItemAttrText(

155: aname => 'AMS_PWD',
156: avalue => p_password);
157:
158: -- performer
159: wf_engine.SetItemAttrText(
160: itemtype => g_ItemType,
161: itemkey => l_item_key,
162: aname => 'AMS_PERF',
163: avalue => l_user_name);

Line 166: wf_engine.SetItemAttrText(

162: aname => 'AMS_PERF',
163: avalue => l_user_name);
164:
165: -- email address
166: wf_engine.SetItemAttrText(
167: itemtype => g_ItemType,
168: itemkey => l_item_key,
169: aname => 'AMS_EMAIL_ADDRESS',
170: avalue => p_email_address);

Line 173: wf_engine.SetItemAttrText(

169: aname => 'AMS_EMAIL_ADDRESS',
170: avalue => p_email_address);
171:
172: -- subject
173: wf_engine.SetItemAttrText(
174: itemtype => g_ItemType,
175: itemkey => l_item_key,
176: aname => 'AMS_SUBJECT',
177: avalue => p_subject);

Line 179: wf_engine.SetItemOwner(

175: itemkey => l_item_key,
176: aname => 'AMS_SUBJECT',
177: avalue => p_subject);
178:
179: wf_engine.SetItemOwner(
180: itemtype => g_ItemType,
181: itemkey => l_item_key,
182: owner => l_item_owner);
183:

Line 184: wf_engine.StartProcess(

180: itemtype => g_ItemType,
181: itemkey => l_item_key,
182: owner => l_item_owner);
183:
184: wf_engine.StartProcess(
185: itemtype => g_ItemType,
186: itemkey => l_item_key);
187:
188: AMS_UTILITY_PVT.debug_message('Process Started');