DBA Data[Home] [Help]

APPS.ARRX_SALES_TAX_REP dependencies on UTL_FILE

Line 1968: WHEN utl_file.invalid_path then

1964: BUFF => fc_text);
1965: fc_buffer := '';
1966:
1967: EXCEPTION
1968: WHEN utl_file.invalid_path then
1969: fc_buffer := 'Invalid path';
1970: WHEN utl_file.invalid_mode then
1971: fc_buffer := 'Invalid Mode';
1972: WHEN utl_file.invalid_filehandle then

Line 1970: WHEN utl_file.invalid_mode then

1966:
1967: EXCEPTION
1968: WHEN utl_file.invalid_path then
1969: fc_buffer := 'Invalid path';
1970: WHEN utl_file.invalid_mode then
1971: fc_buffer := 'Invalid Mode';
1972: WHEN utl_file.invalid_filehandle then
1973: fc_buffer := 'Invalid filehandle';
1974: WHEN utl_file.invalid_operation then

Line 1972: WHEN utl_file.invalid_filehandle then

1968: WHEN utl_file.invalid_path then
1969: fc_buffer := 'Invalid path';
1970: WHEN utl_file.invalid_mode then
1971: fc_buffer := 'Invalid Mode';
1972: WHEN utl_file.invalid_filehandle then
1973: fc_buffer := 'Invalid filehandle';
1974: WHEN utl_file.invalid_operation then
1975: fc_buffer := 'Invalid operation';
1976: WHEN utl_file.write_error then

Line 1974: WHEN utl_file.invalid_operation then

1970: WHEN utl_file.invalid_mode then
1971: fc_buffer := 'Invalid Mode';
1972: WHEN utl_file.invalid_filehandle then
1973: fc_buffer := 'Invalid filehandle';
1974: WHEN utl_file.invalid_operation then
1975: fc_buffer := 'Invalid operation';
1976: WHEN utl_file.write_error then
1977: fc_buffer := 'Write error';
1978:

Line 1976: WHEN utl_file.write_error then

1972: WHEN utl_file.invalid_filehandle then
1973: fc_buffer := 'Invalid filehandle';
1974: WHEN utl_file.invalid_operation then
1975: fc_buffer := 'Invalid operation';
1976: WHEN utl_file.write_error then
1977: fc_buffer := 'Write error';
1978:
1979: END WRITE_LOG;
1980: