DBA Data[Home] [Help]

APPS.CSF_UTIL_PVT dependencies on FND_MSG_PUB

Line 69: RETURN fnd_msg_pub.g_first;

65: END get_false;
66:
67: FUNCTION get_first RETURN NUMBER IS
68: BEGIN
69: RETURN fnd_msg_pub.g_first;
70: END get_first;
71:
72: FUNCTION get_next RETURN NUMBER IS
73: BEGIN

Line 74: RETURN fnd_msg_pub.g_next;

70: END get_first;
71:
72: FUNCTION get_next RETURN NUMBER IS
73: BEGIN
74: RETURN fnd_msg_pub.g_next;
75: END get_next;
76:
77: FUNCTION get_last RETURN NUMBER IS
78: BEGIN

Line 79: RETURN fnd_msg_pub.g_last;

75: END get_next;
76:
77: FUNCTION get_last RETURN NUMBER IS
78: BEGIN
79: RETURN fnd_msg_pub.g_last;
80: END get_last;
81:
82: FUNCTION get_previous RETURN NUMBER IS
83: BEGIN

Line 84: RETURN fnd_msg_pub.g_previous;

80: END get_last;
81:
82: FUNCTION get_previous RETURN NUMBER IS
83: BEGIN
84: RETURN fnd_msg_pub.g_previous;
85: END get_previous;
86:
87: FUNCTION get_msg_lvl_unexp_error RETURN NUMBER IS
88: BEGIN

Line 89: RETURN fnd_msg_pub.g_msg_lvl_unexp_error;

85: END get_previous;
86:
87: FUNCTION get_msg_lvl_unexp_error RETURN NUMBER IS
88: BEGIN
89: RETURN fnd_msg_pub.g_msg_lvl_unexp_error;
90: END get_msg_lvl_unexp_error;
91:
92: FUNCTION get_msg_lvl_error RETURN NUMBER IS
93: BEGIN

Line 94: RETURN fnd_msg_pub.g_msg_lvl_error;

90: END get_msg_lvl_unexp_error;
91:
92: FUNCTION get_msg_lvl_error RETURN NUMBER IS
93: BEGIN
94: RETURN fnd_msg_pub.g_msg_lvl_error;
95: END get_msg_lvl_error;
96:
97: FUNCTION get_msg_lvl_success RETURN NUMBER IS
98: BEGIN

Line 99: RETURN fnd_msg_pub.g_msg_lvl_success;

95: END get_msg_lvl_error;
96:
97: FUNCTION get_msg_lvl_success RETURN NUMBER IS
98: BEGIN
99: RETURN fnd_msg_pub.g_msg_lvl_success;
100: END get_msg_lvl_success;
101:
102: FUNCTION get_msg_lvl_debug_high RETURN NUMBER IS
103: BEGIN

Line 104: RETURN fnd_msg_pub.g_msg_lvl_debug_high;

100: END get_msg_lvl_success;
101:
102: FUNCTION get_msg_lvl_debug_high RETURN NUMBER IS
103: BEGIN
104: RETURN fnd_msg_pub.g_msg_lvl_debug_high;
105: END get_msg_lvl_debug_high;
106:
107: FUNCTION get_msg_lvl_debug_medium RETURN NUMBER IS
108: BEGIN

Line 109: RETURN fnd_msg_pub.g_msg_lvl_debug_medium;

105: END get_msg_lvl_debug_high;
106:
107: FUNCTION get_msg_lvl_debug_medium RETURN NUMBER IS
108: BEGIN
109: RETURN fnd_msg_pub.g_msg_lvl_debug_medium;
110: END get_msg_lvl_debug_medium;
111:
112: FUNCTION get_msg_lvl_debug_low RETURN NUMBER IS
113: BEGIN

Line 114: RETURN fnd_msg_pub.g_msg_lvl_debug_low;

110: END get_msg_lvl_debug_medium;
111:
112: FUNCTION get_msg_lvl_debug_low RETURN NUMBER IS
113: BEGIN
114: RETURN fnd_msg_pub.g_msg_lvl_debug_low;
115: END get_msg_lvl_debug_low;
116:
117: /**
118: * Returns the Address of a Location given the Location ID.