DBA Data[Home] [Help]

APPS.INV_UTILITY_PVT dependencies on FND_API

Line 46: x_return_status := fnd_api.g_ret_sts_error;

42:
43: x_log_dir := l_write_dir;
44: EXCEPTION
45: WHEN invalid_dir THEN
46: x_return_status := fnd_api.g_ret_sts_error;
47: WHEN OTHERS THEN
48: x_return_status := fnd_api.g_ret_sts_error;
49: END get_log_dir;
50:

Line 48: x_return_status := fnd_api.g_ret_sts_error;

44: EXCEPTION
45: WHEN invalid_dir THEN
46: x_return_status := fnd_api.g_ret_sts_error;
47: WHEN OTHERS THEN
48: x_return_status := fnd_api.g_ret_sts_error;
49: END get_log_dir;
50:
51: /*=======================================================
52: API name : write_debug_file

Line 83: x_return_status := fnd_api.g_ret_sts_error;

79: pg_file_name := p_file_name;
80: pg_path_name := p_path_name;
81: EXCEPTION
82: WHEN UTL_FILE.invalid_path THEN
83: x_return_status := fnd_api.g_ret_sts_error;
84: WHEN UTL_FILE.invalid_mode THEN
85: x_return_status := fnd_api.g_ret_sts_error;
86: END open_debug_file;
87:

Line 85: x_return_status := fnd_api.g_ret_sts_error;

81: EXCEPTION
82: WHEN UTL_FILE.invalid_path THEN
83: x_return_status := fnd_api.g_ret_sts_error;
84: WHEN UTL_FILE.invalid_mode THEN
85: x_return_status := fnd_api.g_ret_sts_error;
86: END open_debug_file;
87:
88: /*=======================================================
89: API name : close_debug_file