DBA Data[Home] [Help]

APPS.PA_FP_TXN_CURRENCIES_PUB dependencies on FND_PROFILE

Line 19: P_PA_DEBUG_MODE varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');

15: are copied from source to target option
16:
17: ============================================================================*/
18:
19: P_PA_DEBUG_MODE varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');
20:
21: PROCEDURE Copy_Fp_Txn_Currencies (
22: p_source_fp_option_id IN NUMBER
23: ,p_target_fp_option_id IN NUMBER

Line 98: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

94: -- Set the error stack.
95: pa_debug.set_err_stack('PA_FP_TXN_CURRENCIES_PUB.Copy_Fp_Txn_Currencies');
96:
97: -- Get the Debug mode into local variable and set it to 'Y' if its NULL
98: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
99: l_debug_mode := NVL(l_debug_mode, 'Y');
100:
101: -- Initialize the return status to success
102: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 878: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

874:
875: x_msg_count := 0;
876: x_return_status := FND_API.G_RET_STS_SUCCESS;
877: pa_debug.set_err_stack('pa_fp_txn_currencies_pub.enter_agreement_curr_for_ci');
878: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
879: l_debug_mode := NVL(l_debug_mode, 'Y');
880: IF P_PA_DEBUG_MODE = 'Y' THEN
881: pa_debug.set_process('enter_agreement_curr_for_ci: ' || 'PLSQL','LOG',l_debug_mode);
882: END IF;