DBA Data[Home] [Help]

APPS.GMD_QMSMC dependencies on WF_LOG_PKG

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

697: ELSIF l_event_name = 'oracle.apps.gml.po.receipt.created' THEN
698: gmd_debug.put_line('PO Receipts'); -- Bug # 4576699
699:
700: l_transaction_type := 'RECEIVING_TRANSACTION';
701: --wf_log_pkg.string(6, 'Dummy','PO Receipts');
702: /* Set Org Context as we are using multi org view RCV_TRANSACTIONS_V */
703:
704: OPEN recv;
705: FETCH recv

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

715: l_transaction_id, -- 9509656
716: local_user; --Bug#6276012 added
717:
718: IF recv%found THEN
719: --wf_log_pkg.string(6, 'Dummy','Found PO Receipts');
720:
721: l_valid_transaction := true;
722: END IF;
723:

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

813: IF recv_no_lot%found THEN
814:
815: gmd_debug.put_line('Found Inv PO Receipts for cursor recv_no_lot after recv_inv%notfound - l_valid_transaction := true ');
816:
817: --wf_log_pkg.string(6, 'Dummy','Found PO Receipts');
818:
819: l_valid_transaction := true;
820:
821: else

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

920: l_supp_spec.org_id := l_org_id; --RLNAGARA B5018797 to find correct supplier spec using org_id
921: l_supp_spec.grade_code := L_GRADE; -- 10044459 add grade to spec matching
922:
923: gmd_debug.put_line('PO Specification attributes Set'); -- Bug # 4576699
924: --wf_log_pkg.string(6, 'Dummy','PO Specification attributes Set');
925:
926:
927:
928: IF (l_debug = 'Y') THEN

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

1018: GMD_SAMPLING_EVENTS_PVT.insert_row(p_sampling_events => l_sampling_events,
1019: x_sampling_events => l_sampling_events_out) THEN
1020: gmd_debug.put_line('Sampling Event Creation Failed'); -- Bug # 4576699
1021:
1022: --wf_log_pkg.string(6, 'Dummy','Sampling Event Creation Failed');
1023: RAISE FND_API.G_EXC_ERROR;
1024: END IF;
1025:
1026: l_sampling_events := l_sampling_events_out;

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

1337: GMD_EVENT_SPEC_DISP_PVT.INSERT_ROW(p_event_spec_disp => l_event_spec_disp,
1338: x_event_spec_disp => l_event_spec_disp_out) THEN
1339: gmd_debug.put_line('Sampling Event disposition Creation Failed'); -- Bug # 4576699
1340:
1341: --wf_log_pkg.string(6, 'Dummy','Sampling Event disposition Creation Failed');
1342: RAISE FND_API.G_EXC_ERROR;
1343: END IF;
1344:
1345: l_event_spec_disp := l_event_spec_disp_out;

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

1737: END IF; /* End of check to create event spec for non-auto sample */
1738:
1739: ELSE
1740: gmd_debug.put_line('Could Not Find Specification'); -- Bug # 4576699
1741: --wf_log_pkg.string(6, 'Dummy','Could Not Find Specification');
1742: P_resultout := 'COMPLETE:NO_WORKFLOW';
1743: return;
1744: END IF;
1745: END IF;

Line 2490: -- wf_log_pkg.string( 6,

2486:
2487: /*************************************/
2488: /* Check which event has been raised */
2489: /*************************************/
2490: -- wf_log_pkg.string( 6,
2491: -- 'Dummy',
2492: -- 'Entered Production Transaction with event_key '||l_event_key
2493: -- );
2494:

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

2644: l_sampling_events.CREATION_DATE := SYSDATE;
2645: l_sampling_events.CREATED_BY := FND_GLOBAL.USER_ID;
2646: l_sampling_events.LAST_UPDATED_BY := FND_GLOBAL.USER_ID;
2647: l_sampling_events.LAST_UPDATE_DATE := SYSDATE;
2648: --wf_log_pkg.string(6, 'Dummy','Before Creating the Sampling Event');
2649:
2650: /* Bug No.8942353 - Start */
2651: IF (l_material_detail_id IS NOT NULL)
2652: and (L_LOT_OPTIONAL_ON_SAMPLE <> 'Y') and (L_DELAYED_LOT_ENTRY <> 'Y') -- 10406191

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

2980: /* Start the Workflow for the Given Combination */
2981: AME_API.CLEARALLAPPROVALS(applicationIdIn => l_application_id,
2982: transactionIdIn => l_event_key,
2983: transactionTypeIn => l_transaction_type);
2984: --wf_log_pkg.string(6, 'Dummy','Approvers Cleared');
2985: AME_API.GETNEXTAPPROVER(applicationIdIn => l_application_id,
2986: transactionIdIn => l_event_key,
2987: transactionTypeIn => l_transaction_type,
2988: nextApproverOut => Approver);

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

3023: WF_ENGINE.CREATEPROCESS(itemtype => l_itemtype,
3024: itemkey => l_itemkey,
3025: process => l_Workflow_Process);
3026:
3027: --wf_log_pkg.string(6, 'Dummy','Child Process Created');
3028:
3029: /* Set the User Attribute */
3030:
3031: WF_ENGINE.SETITEMATTRTEXT(itemtype => l_itemtype,

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

3128: itemkey => l_itemkey,
3129: aname => 'SPEC_VERS',
3130: avalue => l_spec_vers);
3131:
3132: WF_LOG_PKG.STRING(6, 'Setting', 'Setting Parent');
3133:
3134: WF_ENGINE.SETITEMPARENT(itemtype => l_itemtype,
3135: itemkey => l_itemkey,
3136: parent_itemtype => p_itemtype,

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

3149: transactionTypeIn => l_transaction_type,
3150: forwardeeIn => AME_UTIL.EMPTYAPPROVERRECORD);
3151:
3152: /* start the Workflow process */
3153: --WF_LOG_PKG.STRING(6, 'Dummy','Starting Process');
3154: WF_ENGINE.STARTPROCESS(itemtype => l_itemtype,
3155: itemkey => l_itemkey);
3156: END IF; /* Added in Bug no. 7033224 */
3157: END IF; /* Spec Found */