DBA Data[Home] [Help]

APPS.WSH_DEBUG_SV dependencies on FND_GLOBAL

Line 443: g_user_name := lower(FND_GLOBAL.user_name);

439: fnd_profile.get('WSH_DEBUG_FILE_PREFIX',g_file_prefix);
440: --
441: IF g_file_prefix IS NULL THEN
442: IF ( g_user_name is null ) THEN
443: g_user_name := lower(FND_GLOBAL.user_name);
444: END IF;
445: IF ( g_user_name is null ) THEN
446: g_user_name := 'dbuser:' || lower(USER);
447: END IF;

Line 501: IF ( nvl(fnd_global.conc_request_id, -1) > 0 ) THEN

497: --
498: fnd_profile.get('WSH_DEBUG_LOG_DIRECTORY',g_dir);
499: --
500: --
501: IF ( nvl(fnd_global.conc_request_id, -1) > 0 ) THEN
502: g_RunMode := 'CONC';
503: l_run_comment := 'l' || fnd_global.conc_request_id || '.req' ;
504: l_newFile := TRUE;
505: --dbg_file.log('set new file true');

Line 503: l_run_comment := 'l' || fnd_global.conc_request_id || '.req' ;

499: --
500: --
501: IF ( nvl(fnd_global.conc_request_id, -1) > 0 ) THEN
502: g_RunMode := 'CONC';
503: l_run_comment := 'l' || fnd_global.conc_request_id || '.req' ;
504: l_newFile := TRUE;
505: --dbg_file.log('set new file true');
506: g_dir := NVL(g_dir,'X');
507: ELSE

Line 581: l_run_comment1 := LOWER( NVL(FND_GLOBAL.user_name,USER) );

577: --
578: --
579: IF g_Profiler THEN
580:
581: l_run_comment1 := LOWER( NVL(FND_GLOBAL.user_name,USER) );
582: --
583: l_sql_string:= 'begin
584: dbms_profiler.start_profiler(run_comment =>:1,run_comment1 =>:2,run_number =>:3);
585: end;