DBA Data[Home] [Help]

APPS.GMD_QMSMC dependencies on WF_LOG_PKG

Line 589: --wf_log_pkg.string(6, 'Dummy','PO Receipts');

585: ELSIF l_event_name = 'oracle.apps.gml.po.receipt.created' THEN
586: gmd_debug.put_line ('PO Receipts'); -- Bug # 4576699
587:
588: l_transaction_type:='RECEIVING_TRANSACTION';
589: --wf_log_pkg.string(6, 'Dummy','PO Receipts');
590: /* Set Org Context as we are using multi org view RCV_TRANSACTIONS_V */
591:
592: OPEN recv;
593: FETCH recv INTO l_organization_code,

Line 618: --wf_log_pkg.string(6, 'Dummy','Found PO Receipts');

614: l_org_id, --RLNAGARA B5018797 Uncommented this
615: l_operating_unit, --RLNAGARA B5018797
616: l_vendor_lot_num; --Bug#6145310
617: IF recv%found THEN
618: --wf_log_pkg.string(6, 'Dummy','Found PO Receipts');
619:
620: l_valid_transaction :=true;
621: END IF;
622:

Line 777: --wf_log_pkg.string(6, 'Dummy','PO Specification attributes Set');

773: l_supp_spec.parent_lot_number := L_parent_lot_number;
774: l_supp_spec.org_id := l_org_id; --RLNAGARA B5018797 to find correct supplier spec using org_id
775:
776: gmd_debug.put_line ('PO Specification attributes Set'); -- Bug # 4576699
777: --wf_log_pkg.string(6, 'Dummy','PO Specification attributes Set');
778:
779: IF (l_debug = 'Y') THEN
780: gmd_debug.put_line('Checking for Spec');
781: END IF;

Line 875: --wf_log_pkg.string(6, 'Dummy','Sampling Event Creation Failed');

871: p_sampling_events => l_sampling_events,
872: x_sampling_events => l_sampling_events_out) THEN
873: gmd_debug.put_line ('Sampling Event Creation Failed'); -- Bug # 4576699
874:
875: --wf_log_pkg.string(6, 'Dummy','Sampling Event Creation Failed');
876: RAISE FND_API.G_EXC_ERROR;
877: END IF;
878:
879: l_sampling_events := l_sampling_events_out ;

Line 1164: --wf_log_pkg.string(6, 'Dummy','Sampling Event disposition Creation Failed');

1160: p_event_spec_disp =>l_event_spec_disp,
1161: x_event_spec_disp =>l_event_spec_disp_out) THEN
1162: gmd_debug.put_line ('Sampling Event disposition Creation Failed'); -- Bug # 4576699
1163:
1164: --wf_log_pkg.string(6, 'Dummy','Sampling Event disposition Creation Failed');
1165: RAISE FND_API.G_EXC_ERROR;
1166: END IF;
1167:
1168: l_event_spec_disp := l_event_spec_disp_out ;

Line 1556: --wf_log_pkg.string(6, 'Dummy','Could Not Find Specification');

1552: END IF ; /* End of check to create event spec for non-auto sample */
1553:
1554: ELSE
1555: gmd_debug.put_line ('Could Not Find Specification'); -- Bug # 4576699
1556: --wf_log_pkg.string(6, 'Dummy','Could Not Find Specification');
1557: P_resultout:='COMPLETE:NO_WORKFLOW';
1558: return;
1559: END IF;
1560: END IF;

Line 2191: -- wf_log_pkg.string( 6,

2187:
2188: /*************************************/
2189: /* Check which event has been raised */
2190: /*************************************/
2191: -- wf_log_pkg.string( 6,
2192: -- 'Dummy',
2193: -- 'Entered Production Transaction with event_key '||l_event_key
2194: -- );
2195:

Line 2372: --wf_log_pkg.string(6, 'Dummy','Before Creating the Sampling Event');

2368: l_sampling_events.CREATION_DATE := SYSDATE;
2369: l_sampling_events.CREATED_BY := FND_GLOBAL.USER_ID;
2370: l_sampling_events.LAST_UPDATED_BY := FND_GLOBAL.USER_ID;
2371: l_sampling_events.LAST_UPDATE_DATE := SYSDATE;
2372: --wf_log_pkg.string(6, 'Dummy','Before Creating the Sampling Event');
2373:
2374: IF NOT GMD_SAMPLING_EVENTS_PVT.insert_row (
2375: p_sampling_events => l_sampling_events,
2376: x_sampling_events => l_sampling_events_out) THEN

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

2608: /* Start the Workflow for the Given Combination */
2609: AME_API.CLEARALLAPPROVALS(applicationIdIn => l_application_id,
2610: transactionIdIn => l_event_key,
2611: transactionTypeIn => l_transaction_type);
2612: --wf_log_pkg.string(6, 'Dummy','Approvers Cleared');
2613: AME_API.GETNEXTAPPROVER(applicationIdIn => l_application_id,
2614: transactionIdIn => l_event_key,
2615: transactionTypeIn => l_transaction_type,
2616: nextApproverOut => Approver);

Line 2652: --wf_log_pkg.string(6, 'Dummy','Child Process Created');

2648: WF_ENGINE.CREATEPROCESS (itemtype => l_itemtype,
2649: itemkey => l_itemkey,
2650: process => l_Workflow_Process) ;
2651:
2652: --wf_log_pkg.string(6, 'Dummy','Child Process Created');
2653:
2654: /* Set the User Attribute */
2655:
2656: WF_ENGINE.SETITEMATTRTEXT(itemtype => l_itemtype,itemkey => l_itemkey,

Line 2737: WF_LOG_PKG.STRING(6, 'Setting','Setting Parent');

2733: WF_ENGINE.SETITEMATTRTEXT(itemtype => l_itemtype,itemkey => l_itemkey,
2734: aname => 'SPEC_VERS',
2735: avalue =>l_spec_vers );
2736:
2737: WF_LOG_PKG.STRING(6, 'Setting','Setting Parent');
2738:
2739: WF_ENGINE.SETITEMPARENT(itemtype =>l_itemtype,
2740: itemkey =>l_itemkey,
2741: parent_itemtype => p_itemtype,

Line 2759: --WF_LOG_PKG.STRING(6, 'Dummy','Starting Process');

2755: transactionTypeIn => l_transaction_type,
2756: forwardeeIn => AME_UTIL.EMPTYAPPROVERRECORD);
2757:
2758: /* start the Workflow process */
2759: --WF_LOG_PKG.STRING(6, 'Dummy','Starting Process');
2760: WF_ENGINE.STARTPROCESS (itemtype => l_itemtype,itemkey => l_itemkey);
2761: END IF; /* Added in Bug no. 7033224 */
2762: END IF; /* Spec Found */
2763: END LOOP;