DBA Data[Home] [Help]

APPS.XLA_RPT_UTIL_QRY_PKG dependencies on FND_GLOBAL

Line 86: (p_msg => 'Concurrent Request Id = '||FND_GLOBAL.CONC_REQUEST_ID

82: END IF;
83:
84: IF (C_LEVEL_STATEMENT >= g_log_level) THEN
85: trace
86: (p_msg => 'Concurrent Request Id = '||FND_GLOBAL.CONC_REQUEST_ID
87: ,p_level => C_LEVEL_STATEMENT
88: ,p_module=> l_log_module );
89: END IF;
90:

Line 96: where fcr.request_id = FND_GLOBAL.CONC_REQUEST_ID

92:
93: select fcp.concurrent_program_name
94: into l_component_name
95: from fnd_concurrent_requests fcr,fnd_concurrent_programs_vl fcp
96: where fcr.request_id = FND_GLOBAL.CONC_REQUEST_ID
97: and fcr.concurrent_program_id = fcp.concurrent_program_id;
98:
99: EXCEPTION
100: when others then

Line 103: (p_msg => 'Could not find the Component Name for Request Id : '||FND_GLOBAL.CONC_REQUEST_ID

99: EXCEPTION
100: when others then
101: IF (C_LEVEL_STATEMENT >= g_log_level) THEN
102: trace
103: (p_msg => 'Could not find the Component Name for Request Id : '||FND_GLOBAL.CONC_REQUEST_ID
104: ,p_level => C_LEVEL_STATEMENT
105: ,p_module=> l_log_module );
106: END IF;
107: END;