DBA Data[Home] [Help]

APPS.BEN_REOPEN_LER_CONC dependencies on FND_GLOBAL

Line 235: p_request_id => fnd_global.conc_request_id,

231: p_legal_entity_id => p_legal_entity_id,
232: p_debug_messages_flag => p_debug_messages,
233: p_object_version_number => l_object_version_number,
234: p_effective_date => l_effective_date,
235: p_request_id => fnd_global.conc_request_id,
236: p_program_application_id => fnd_global.prog_appl_id,
237: p_program_id => fnd_global.conc_program_id,
238: p_program_update_date => SYSDATE,
239: p_date_from => l_from_ocrd_date

Line 236: p_program_application_id => fnd_global.prog_appl_id,

232: p_debug_messages_flag => p_debug_messages,
233: p_object_version_number => l_object_version_number,
234: p_effective_date => l_effective_date,
235: p_request_id => fnd_global.conc_request_id,
236: p_program_application_id => fnd_global.prog_appl_id,
237: p_program_id => fnd_global.conc_program_id,
238: p_program_update_date => SYSDATE,
239: p_date_from => l_from_ocrd_date
240: );

Line 237: p_program_id => fnd_global.conc_program_id,

233: p_object_version_number => l_object_version_number,
234: p_effective_date => l_effective_date,
235: p_request_id => fnd_global.conc_request_id,
236: p_program_application_id => fnd_global.prog_appl_id,
237: p_program_id => fnd_global.conc_program_id,
238: p_program_update_date => SYSDATE,
239: p_date_from => l_from_ocrd_date
240: );
241: --

Line 988: IF fnd_global.conc_request_id <> -1

984: --
985: hr_utility.set_location ('Entering ' || l_proc, 05);
986:
987: --
988: IF fnd_global.conc_request_id <> -1
989: THEN
990: --
991: -- Submit the generic error by error type and error by person reports.
992: --

Line 995: (p_concurrent_request_id => fnd_global.conc_request_id,

991: -- Submit the generic error by error type and error by person reports.
992: --
993: l_actn := 'ben_batch_reporting.batch_reports ERROR_BY_ERROR_TYPE...';
994: ben_batch_reporting.batch_reports
995: (p_concurrent_request_id => fnd_global.conc_request_id,
996: p_report_type => 'ERROR_BY_ERROR_TYPE'
997: );
998: --
999: l_actn := 'ben_batch_reporting.batch_reports ERROR_BY_PERSON...';

Line 1001: (p_concurrent_request_id => fnd_global.conc_request_id,

997: );
998: --
999: l_actn := 'ben_batch_reporting.batch_reports ERROR_BY_PERSON...';
1000: ben_batch_reporting.batch_reports
1001: (p_concurrent_request_id => fnd_global.conc_request_id,
1002: p_report_type => 'ERROR_BY_PERSON'
1003: );
1004: --
1005: END IF;