DBA Data[Home] [Help]

APPS.GMD_QMREJ dependencies on WF_LOG_PKG

Line 160: wf_log_pkg.string(6, 'Dummy','Entered Sample Rejection Transaction with event_key '||l_event_key);

156: select application_id into l_application_id
157: from fnd_application where application_short_name='GMD';
158:
159: /* Check which event has been raised */
160: wf_log_pkg.string(6, 'Dummy','Entered Sample Rejection Transaction with event_key '||l_event_key);
161:
162: /* Get the common fields values*/
163: OPEN common_fields;
164: FETCH common_fields INTO l_orgn_code, l_sample_type, l_sample_type_desc;

Line 228: wf_log_pkg.string(6, 'Dummy','Approvers Cleared');

224: ame_api.clearAllApprovals(applicationIdIn => l_application_id,
225: transactionIdIn => l_event_key,
226: transactionTypeIn => l_transaction_type);
227:
228: wf_log_pkg.string(6, 'Dummy','Approvers Cleared');
229: ame_api.getNextApprover(applicationIdIn => l_application_id,
230: transactionIdIn => l_event_key,
231: transactionTypeIn => l_transaction_type,
232: nextApproverOut => Approver);

Line 339: wf_log_pkg.string(6, 'Dummy','Setting Parent');

335: WF_ENGINE.SETITEMATTRTEXT(itemtype => l_itemtype, itemkey => l_itemkey,
336: aname => 'AME_TRANS',
337: avalue =>l_transaction_type);
338:
339: wf_log_pkg.string(6, 'Dummy','Setting Parent');
340:
341: WF_ENGINE.SETITEMPARENT(itemtype =>l_itemtype,itemkey =>l_itemkey,
342: parent_itemtype => p_itemtype,
343: parent_itemkey=> p_itemkey,

Line 347: wf_log_pkg.string(6, 'Dummy','Starting Process');

343: parent_itemkey=> p_itemkey,
344: parent_context=> NULL);
345:
346: /* start the Workflow process */
347: wf_log_pkg.string(6, 'Dummy','Starting Process');
348:
349: /* As this a pure FYI notification we will set the approver to approve status */
350: Approver.approval_status := ame_util.approvedStatus;
351: ame_api.updateApprovalStatus(applicationIdIn => l_application_id,