DBA Data[Home] [Help]

APPS.IGI_IMP_IAC_IMPORT_CUST_PKG dependencies on FND_FILE

Line 62: FND_FILE.Put_Line(FND_FILE.Log,l_message);

58: igi_iac_debug_pkg.debug_other_msg(p_level => g_state_level,
59: p_full_path => l_path_name,
60: p_remove_from_stack => FALSE);
61: l_message := FND_MESSAGE.Get;
62: FND_FILE.Put_Line(FND_FILE.Log,l_message);
63:
64: -- Invoking SQL*Loader to upload the file to the intermediate table.
65: igi_imp_iac_import_pkg.spawn_loader( l_full_file_name
66: );

Line 85: fnd_file.put_line(fnd_file.log, errbuf);

81: p_full_path => l_path_name,
82: p_remove_from_stack => FALSE);
83: retcode := 2;
84: errbuf := FND_MESSAGE.Get;
85: fnd_file.put_line(fnd_file.log, errbuf);
86: WHEN e_web_adi_enabled THEN
87: FND_MESSAGE.Set_Name('IGI','IGI_IMP_IAC_WEB_ADI_ENABLED');
88: igi_iac_debug_pkg.debug_other_msg(p_level => g_error_level,
89: p_full_path => l_path_name,

Line 93: fnd_file.put_line(fnd_file.log, errbuf);

89: p_full_path => l_path_name,
90: p_remove_from_stack => FALSE);
91: retcode := 2;
92: errbuf := FND_MESSAGE.Get;
93: fnd_file.put_line(fnd_file.log, errbuf);
94: WHEN OTHERS THEN
95: FND_MESSAGE.Retrieve(l_message);
96: igi_iac_debug_pkg.debug_other_msg(p_level => g_error_level,
97: p_full_path => l_path_name,

Line 101: fnd_file.put_line(fnd_file.log, errbuf);

97: p_full_path => l_path_name,
98: p_remove_from_stack => FALSE);
99: retcode := 2;
100: errbuf := l_message;
101: fnd_file.put_line(fnd_file.log, errbuf);
102:
103: END Import_Cust_Data_Process;
104:
105: END igi_imp_iac_import_cust_pkg;