DBA Data[Home] [Help]

APPS.FND_TRANSACTION dependencies on FND_PROFILE

Line 238: FND_PROFILE.GET('CONC_TM_TRANSPORT_TYPE', p_transport_type);

234: from sys.dual;
235: end if;
236:
237: -- PIPE/QUEUE profile option switch
238: FND_PROFILE.GET('CONC_TM_TRANSPORT_TYPE', p_transport_type);
239: if p_transport_type is null then
240: p_transport_type := 'QUEUE';
241: end if;
242:

Line 244: fnd_profile.get('CONC_DEBUG', conc_debug);

240: p_transport_type := 'QUEUE';
241: end if;
242:
243: -- debug
244: fnd_profile.get('CONC_DEBUG', conc_debug);
245: if (instr(conc_debug, 'TC') <> 0) then
246: debug_flag := TRUE;
247: end if;
248: if (instr(conc_debug, 'TM1') <> 0) then

Line 259: fnd_profile.get('CONC_TOKEN_TIMEOUT', token_timeout);

255:
256: action_cnt := 1;
257:
258: begin
259: fnd_profile.get('CONC_TOKEN_TIMEOUT', token_timeout);
260: if (token_timeout is null) then
261: token_timeout := DEFAULT_TIMEOUT;
262: end if;
263: exception

Line 368: fnd_profile.get('SQL_TRACE', enable_trace_flag);

364: debug_info('fnd_transaction.synchronous', 'Using transport type', p_transport_type);
365: end if;
366:
367: -- Get SQL_TRACE MULTI_ORG_CATEGORY
368: fnd_profile.get('SQL_TRACE', enable_trace_flag);
369:
370: SELECT DECODE(P.ENABLE_TRACE, 'Y', 'Y', enable_trace_flag),
371: NVL(P.MULTI_ORG_CATEGORY, 'N'),
372: P.APPLICATION_ID, P.CONCURRENT_PROGRAM_ID