DBA Data[Home] [Help]

APPS.GMD_QMTES dependencies on WF_LOG_PKG

Line 146: wf_log_pkg.string(6, 'Dummy','Entered Test Transactions with event_key '||l_event_key);

142: select application_id into l_application_id
143: from fnd_application where application_short_name='GMD';
144:
145: /* Check which event has been raised */
146: wf_log_pkg.string(6, 'Dummy','Entered Test Transactions with event_key '||l_event_key);
147:
148: /*Figure out if all the batch_steps are covered for sampple creation */
149:
150: OPEN C1;

Line 152: wf_log_pkg.string(6, 'Dummy','Before Fetching the values. Inside the Loop');

148: /*Figure out if all the batch_steps are covered for sampple creation */
149:
150: OPEN C1;
151: LOOP
152: wf_log_pkg.string(6, 'Dummy','Before Fetching the values. Inside the Loop');
153: Fetch C1 into L_ITEM_NO,L_ITEM_DESC,L_ITEM_UM,L_PARENT_LOT,L_LOT_NO,L_RESULT_ID,L_TEST_CODE,L_TEST_DESC, --RLNAGARA B5714214 Added l_parent_lot
154: L_TEST_CLASS,L_TEST_METHOD_CODE,L_TEST_METHOD_DESC,L_RESOURCES,L_TEST_REPLICATE,
155: l_qc_lab_org_id, L_SAMPLE_ID,L_SAMPLE_NO,L_SAMPLE_DESC,
156: l_SUBINVENTORY, l_testbydate,l_planned_resource,l_planned_Result_date, l_LOCATOR,

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

182: /* Start the Workflow for the Given Combination */
183: ame_api.clearAllApprovals(applicationIdIn => l_application_id,
184: transactionIdIn => l_result_id,
185: transactionTypeIn => l_transaction_type);
186: wf_log_pkg.string(6, 'Dummy','Approvers Cleared');
187: ame_api.getNextApprover(applicationIdIn => l_application_id,
188: transactionIdIn => l_result_id,
189: transactionTypeIn => l_transaction_type,
190: nextApproverOut => Approver);

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

327: parent_itemkey=> p_itemkey,
328: parent_context=> NULL);
329:
330: /* start the Workflow process */
331: wf_log_pkg.string(6, 'Dummy','Starting Process');
332:
333:
334: /* As this a pure FYI notification we will set the approer to approve status */
335: Approver.approval_status := ame_util.approvedStatus;

Line 346: wf_log_pkg.string(6, 'Dummy','Child Process Created and current approver is '||l_user);

342:
343: WF_ENGINE.STARTPROCESS (itemtype => l_itemtype,itemkey => l_itemkey);
344:
345:
346: wf_log_pkg.string(6, 'Dummy','Child Process Created and current approver is '||l_user);
347:
348: end if;
349:
350: END LOOP;