DBA Data[Home] [Help]

APPS.XTR_RISK_DEBUG_PKG dependencies on FND_PROFILE_OPTION_VALUES

Line 199: fnd_profile_option_values table for concurrent program

195:
196: PROCEDURE NAME: check_fnd_profile (private)
197:
198: DESCRIPTION: This procedure check the fnd_profile_options and
199: fnd_profile_option_values table for concurrent program
200: debugging
201:
202: ===========================================================================*/
203: FUNCTION check_fnd_profile return BOOLEAN IS

Line 214: fnd_profile_option_values fpov

210: BEGIN
211: SELECT profile_option_value
212: INTO v_value
213: FROM fnd_profile_options fpo,
214: fnd_profile_option_values fpov
215: WHERE fpo.profile_option_id = fpov.profile_option_id and
216: fpo.profile_option_name = 'XTR: CONCURRENT PROGRAM DEBUG' and
217: fpov.level_value = FND_GLOBAL.USER_ID;
218:

Line 500: fnd_profile_option_values table for concurrent program

496:
497: PROCEDURE NAME: start_conc_prog
498:
499: DESCRIPTION: This procedure check the fnd_profile_options and
500: fnd_profile_option_values table for concurrent program
501: debugging. If the profile option is on, start the debug
502: package for concurrent programs.
503:
504: ===========================================================================*/