DBA Data[Home] [Help]

APPS.PO_SIGNATURE_PVT dependencies on PO_DEBUG

Line 9: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;

5: g_po_wf_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('PO_SET_DEBUG_WORKFLOW_ON'),'N');
6:
7: c_log_head CONSTANT VARCHAR2(30) := 'po.plsql.PO_SIGNATURE_PVT.';
8: g_pkg_name CONSTANT VARCHAR2(30) := 'PO_SIGNATURE_PVT'; --
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:
12: -- Read the profile option that determines whether the promise date will be defaulted with need-by date or not
13: g_default_promise_date VARCHAR2(1) := NVL(FND_PROFILE.VALUE('POS_DEFAULT_PROMISE_DATE_ACK'),'N');

Line 10: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;

6:
7: c_log_head CONSTANT VARCHAR2(30) := 'po.plsql.PO_SIGNATURE_PVT.';
8: g_pkg_name CONSTANT VARCHAR2(30) := 'PO_SIGNATURE_PVT'; --
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:
12: -- Read the profile option that determines whether the promise date will be defaulted with need-by date or not
13: g_default_promise_date VARCHAR2(1) := NVL(FND_PROFILE.VALUE('POS_DEFAULT_PROMISE_DATE_ACK'),'N');
14:

Line 3113: PO_DEBUG.debug_unexp (

3109: -- Bug 3602512 START
3110: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
3111: IF (g_debug_unexp) THEN
3112: FOR i IN 1..FND_MSG_PUB.count_msg LOOP
3113: PO_DEBUG.debug_unexp (
3114: p_log_head => c_log_head||l_api_name,
3115: p_progress => NULL,
3116: p_message => FND_MSG_PUB.get ( p_msg_index => i,
3117: p_encoded => FND_API.G_FALSE ) );

Line 3249: PO_DEBUG.debug_unexp (

3245: -- Bug 3602512 START
3246: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
3247: IF (g_debug_unexp) THEN
3248: FOR i IN 1..FND_MSG_PUB.count_msg LOOP
3249: PO_DEBUG.debug_unexp (
3250: p_log_head => c_log_head||l_api_name,
3251: p_progress => NULL,
3252: p_message => FND_MSG_PUB.get ( p_msg_index => i,
3253: p_encoded => FND_API.G_FALSE ) );