DBA Data[Home] [Help]

APPS.GMD_SS_BATCH_WF_PKG dependencies on WF_LOG_PKG

Line 114: wf_log_pkg.string(6, 'Dummy','Entered Stability Study Batch Creation '||l_event_key);

110: select application_id into l_application_id
111: from fnd_application where application_short_name='GMD';
112:
113: /* Check which event has been raised */
114: wf_log_pkg.string(6, 'Dummy','Entered Stability Study Batch Creation '||l_event_key);
115:
116:
117: OPEN C1;
118: Fetch C1 into l_status, l_study, l_study_desc, l_orgn_code, l_sched_date,

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

130: ame_api.clearAllApprovals(applicationIdIn => l_application_id,
131: transactionIdIn => l_event_key,
132: transactionTypeIn => l_transaction_type);
133:
134: wf_log_pkg.string(6, 'Dummy','Approvers Cleared');
135: ame_api.getNextApprover(applicationIdIn => l_application_id,
136: transactionIdIn => l_event_key,
137: transactionTypeIn => l_transaction_type,
138: nextApproverOut => Approver);

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

235: WF_ENGINE.SETITEMATTRTEXT(itemtype => l_itemtype,itemkey => l_itemkey,
236: aname => 'AME_TRANS',
237: avalue =>l_transaction_type);
238:
239: wf_log_pkg.string(6, 'Dummy','Setting Parent');
240:
241:
242: WF_ENGINE.SETITEMPARENT(itemtype =>l_itemtype,itemkey =>l_itemkey,
243: parent_itemtype => p_itemtype,

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

244: parent_itemkey=> p_itemkey,
245: parent_context=> NULL);
246:
247: /* start the Workflow process */
248: wf_log_pkg.string(6, 'Dummy','Starting Process');
249:
250: IF (l_debug = 'Y') THEN
251: gmd_debug.put_line('Finished setting workflow attributes ');
252: END IF;