DBA Data[Home] [Help]

APPS.FND_EXECUTABLES_PKG dependencies on FND_PROGRAM

Line 415: if (f_luby = 1) then fnd_program.set_session_mode('seed_data');

411: and lookup_type = 'CP_EXECUTION_METHOD_CODE'
412: and enabled_flag = 'Y'
413: and rownum = 1;
414:
415: if (f_luby = 1) then fnd_program.set_session_mode('seed_data');
416: else fnd_program.set_session_mode('customer_data');
417: end if;
418:
419: begin

Line 416: else fnd_program.set_session_mode('customer_data');

412: and enabled_flag = 'Y'
413: and rownum = 1;
414:
415: if (f_luby = 1) then fnd_program.set_session_mode('seed_data');
416: else fnd_program.set_session_mode('customer_data');
417: end if;
418:
419: begin
420: fnd_program.executable(

Line 420: fnd_program.executable(

416: else fnd_program.set_session_mode('customer_data');
417: end if;
418:
419: begin
420: fnd_program.executable(
421: executable => x_user_executable_name,
422: application => x_application_short_name,
423: short_name => x_executable_name,
424: description => x_description,

Line 443: fnd_message.set_token('REASON',fnd_program.message);

439: 'fnd.plsql.fnd_executables_pkg.load_row.exception', FALSE);
440: end if;
441: when others then
442: fnd_message.set_name('FND','GENERIC-INTERNAL ERROR');
443: fnd_message.set_token('REASON',fnd_program.message);
444: app_exception.raise_exception;
445: end;
446: end;
447: end LOAD_ROW;