DBA Data[Home] [Help]

APPS.IGI_ITR dependencies on IGI_GEN

Line 74: p_status_message := IGI_GEN.GET_LOOKUP_MEANING('IGI_IMPORT_REQUEST_ID');

70: p_status_code := import_request_id;
71: if p_status_code > 0 then
72: -- p_status_message := 'The Import Request Id is '||to_char(import_request_id);
73: -- Modified by Prerak Vora for NLS Fixing.
74: p_status_message := IGI_GEN.GET_LOOKUP_MEANING('IGI_IMPORT_REQUEST_ID');
75: p_status_message := p_status_message ||to_char(import_request_id);
76: -- Modification ends.
77: commit;
78: elsif p_status_code = 0 then

Line 80: p_status_message := IGI_GEN.GET_LOOKUP_MEANING('IGI_IMPORT_REQUEST_ID_FAIL');

76: -- Modification ends.
77: commit;
78: elsif p_status_code = 0 then
79: -- Modified by Prerak Vora for NLS Fixing.
80: p_status_message := IGI_GEN.GET_LOOKUP_MEANING('IGI_IMPORT_REQUEST_ID_FAIL');
81: -- p_status_message := 'The Import Request Failed';
82: rollback;
83: end if;
84: exception