DBA Data[Home] [Help]

APPS.PO_REQCHANGEREQUESTWF_PVT dependencies on FND_PROFILE

Line 6: g_po_wf_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('PO_SET_DEBUG_WORKFLOW_ON'),'N');

2: /* $Header: POXVRCWB.pls 120.65.12010000.11 2009/01/29 08:40:59 pilamuru ship $ */
3:
4:
5: -- Read the profile option that enables/disables the debug log
6: g_po_wf_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('PO_SET_DEBUG_WORKFLOW_ON'),'N');
7: g_fnd_debug CONSTANT VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
8: -- Debugging
9: g_debug_stmt CONSTANT BOOLEAN := po_debug.is_debug_stmt_on;
10: g_debug_unexp CONSTANT BOOLEAN := po_debug.is_debug_unexp_on;

Line 7: g_fnd_debug CONSTANT VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');

3:
4:
5: -- Read the profile option that enables/disables the debug log
6: g_po_wf_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('PO_SET_DEBUG_WORKFLOW_ON'),'N');
7: g_fnd_debug CONSTANT VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
8: -- Debugging
9: g_debug_stmt CONSTANT BOOLEAN := po_debug.is_debug_stmt_on;
10: g_debug_unexp CONSTANT BOOLEAN := po_debug.is_debug_unexp_on;
11: --Bug#3497033

Line 436: l_approval_currency := FND_PROFILE.VALUE_SPECIFIC('ICX_PREFERRED_CURRENCY', l_user_id);

432: IF (g_po_wf_debug = 'Y') THEN
433: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,l_progress);
434: END IF;
435:
436: l_approval_currency := FND_PROFILE.VALUE_SPECIFIC('ICX_PREFERRED_CURRENCY', l_user_id);
437: end if;
438:
439: if (l_approval_currency = p_function_currency or l_approver_user_name is null
440: or l_rate_type is null or l_approval_currency is null) then

Line 7331: FND_PROFILE.GET('USER_ID', l_user_id);

7327: */
7328:
7329: begin
7330: /*
7331: FND_PROFILE.GET('USER_ID', l_user_id);
7332: FND_PROFILE.GET('RESP_ID', l_responsibility_id);
7333: FND_PROFILE.GET('RESP_APPL_ID', l_application_id);
7334: fnd_global.APPS_INITIALIZE (l_user_id, l_responsibility_id, l_application_id);
7335: */

Line 7332: FND_PROFILE.GET('RESP_ID', l_responsibility_id);

7328:
7329: begin
7330: /*
7331: FND_PROFILE.GET('USER_ID', l_user_id);
7332: FND_PROFILE.GET('RESP_ID', l_responsibility_id);
7333: FND_PROFILE.GET('RESP_APPL_ID', l_application_id);
7334: fnd_global.APPS_INITIALIZE (l_user_id, l_responsibility_id, l_application_id);
7335: */
7336: po_sup_chg_request_wf_grp.KickOffPOApproval(1, p_return_status,

Line 7333: FND_PROFILE.GET('RESP_APPL_ID', l_application_id);

7329: begin
7330: /*
7331: FND_PROFILE.GET('USER_ID', l_user_id);
7332: FND_PROFILE.GET('RESP_ID', l_responsibility_id);
7333: FND_PROFILE.GET('RESP_APPL_ID', l_application_id);
7334: fnd_global.APPS_INITIALIZE (l_user_id, l_responsibility_id, l_application_id);
7335: */
7336: po_sup_chg_request_wf_grp.KickOffPOApproval(1, p_return_status,
7337: p_po_header_id, p_po_release_id, p_return_msg);