DBA Data[Home] [Help]

APPS.EC_DOCUMENT dependencies on FND_PROFILE

Line 72: fnd_profile.get ( 'ECE_OUT_FILE_PATH', p_Output_Path);

68: -- Retrieve the system profile option ECE_OUT_FILE_PATH. This will
69: -- be the directory where the output file will be written.
70: -- NOTE: this directory must be specified in the parameter UTL_FILE_DIR in
71: -- the INIT.ORA file.
72: fnd_profile.get ( 'ECE_OUT_FILE_PATH', p_Output_Path);
73: END IF;
74:
75: IF i_debug_mode IS NULL THEN
76: fnd_profile.get('ECE_' || i_Transaction_Type || '_DEBUG_MODE', p_Debug_Mode);

Line 76: fnd_profile.get('ECE_' || i_Transaction_Type || '_DEBUG_MODE', p_Debug_Mode);

72: fnd_profile.get ( 'ECE_OUT_FILE_PATH', p_Output_Path);
73: END IF;
74:
75: IF i_debug_mode IS NULL THEN
76: fnd_profile.get('ECE_' || i_Transaction_Type || '_DEBUG_MODE', p_Debug_Mode);
77: IF p_Debug_mode IS NULL THEN
78: p_Debug_Mode := 0;
79: END IF;
80: ELSE

Line 234: fnd_profile.get('ECE_' || i_Transaction_Type || '_ENABLED', cEnabled);

230: ec_debug.pl(3, 'Debug Mode', i_debug_mode);
231: END if;
232:
233: -- Transaction Enabled Check
234: fnd_profile.get('ECE_' || i_Transaction_Type || '_ENABLED', cEnabled);
235:
236: IF cEnabled IS NULL THEN
237: ec_debug.pl(0,'EC','ECE_NO_TRANSACTION_PROFILE','TRANSACTION_TYPE',i_Transaction_Type);
238: retcode := 2;