DBA Data[Home] [Help]

APPS.GMD_QMTES dependencies on WF_LOG_PKG

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

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

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

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

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

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

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

335: parent_itemkey=> p_itemkey,
336: parent_context=> NULL);
337:
338: /* start the Workflow process */
339: wf_log_pkg.string(6, 'Dummy','Starting Process');
340:
341:
342: /* As this a pure FYI notification we will set the approer to approve status */
343: Approver.approval_status := ame_util.approvedStatus;

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

350:
351: WF_ENGINE.STARTPROCESS (itemtype => l_itemtype,itemkey => l_itemkey);
352:
353:
354: wf_log_pkg.string(6, 'Dummy','Child Process Created and current approver is '||l_user);
355:
356: end if;
357:
358: END LOOP;