DBA Data[Home] [Help]

APPS.OZF_CLAIM_DEF_RULE_PVT dependencies on FND_MSG_PUB

Line 126: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN

122: OPEN csr_seed_custom_setup(150);
123: FETCH csr_seed_custom_setup INTO l_custom_setup_id;
124: CLOSE csr_seed_custom_setup;
125: ELSE
126: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
127: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_CLASS_ERROR');
128: FND_MSG_PUB.add;
129: END IF;
130: RAISE FND_API.g_exc_error;

Line 128: FND_MSG_PUB.add;

124: CLOSE csr_seed_custom_setup;
125: ELSE
126: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
127: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_CLASS_ERROR');
128: FND_MSG_PUB.add;
129: END IF;
130: RAISE FND_API.g_exc_error;
131: END IF;
132:

Line 144: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN

140: FETCH csr_user_custom_setup INTO l_custom_setup_id;
141: CLOSE csr_user_custom_setup;
142: ELSE
143: IF l_count_custom_setup > 1 THEN
144: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
145: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_CUSTSET_UP_NO_EXT');
146: FND_MSG_PUB.add;
147: END IF;
148: ELSE

Line 146: FND_MSG_PUB.add;

142: ELSE
143: IF l_count_custom_setup > 1 THEN
144: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
145: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_CUSTSET_UP_NO_EXT');
146: FND_MSG_PUB.add;
147: END IF;
148: ELSE
149: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
150: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_CUSTSET_UP_NO_UK');

Line 149: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN

145: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_CUSTSET_UP_NO_EXT');
146: FND_MSG_PUB.add;
147: END IF;
148: ELSE
149: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
150: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_CUSTSET_UP_NO_UK');
151: FND_MSG_PUB.add;
152: END IF;
153: END IF;

Line 151: FND_MSG_PUB.add;

147: END IF;
148: ELSE
149: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
150: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_CUSTSET_UP_NO_UK');
151: FND_MSG_PUB.add;
152: END IF;
153: END IF;
154: RAISE FND_API.g_exc_error;
155: END IF;

Line 165: FND_MSG_PUB.Count_And_Get (

161:
162: WHEN FND_API.G_EXC_ERROR THEN
163: x_return_status := FND_API.G_RET_STS_ERROR;
164: -- Standard call to get message count and if count=1, get the message
165: FND_MSG_PUB.Count_And_Get (
166: p_encoded => FND_API.G_FALSE,
167: p_count => x_msg_count,
168: p_data => x_msg_data
169: );

Line 174: FND_MSG_PUB.Count_And_Get (

170:
171: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
172: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
173: -- Standard call to get message count and if count=1, get the message
174: FND_MSG_PUB.Count_And_Get (
175: p_encoded => FND_API.G_FALSE,
176: p_count => x_msg_count,
177: p_data => x_msg_data
178: );

Line 182: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

178: );
179:
180: WHEN OTHERS THEN
181: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
182: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
183: THEN
184: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
185: END IF;
186: -- Standard call to get message count and if count=1, get the message

Line 184: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

180: WHEN OTHERS THEN
181: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
182: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
183: THEN
184: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
185: END IF;
186: -- Standard call to get message count and if count=1, get the message
187: FND_MSG_PUB.Count_And_Get (
188: p_encoded => FND_API.G_FALSE,

Line 187: FND_MSG_PUB.Count_And_Get (

183: THEN
184: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
185: END IF;
186: -- Standard call to get message count and if count=1, get the message
187: FND_MSG_PUB.Count_And_Get (
188: p_encoded => FND_API.G_FALSE,
189: p_count => x_msg_count,
190: p_data => x_msg_data
191: );