DBA Data[Home] [Help]

APPS.OZF_CLAIM_DEF_RULE_PVT dependencies on FND_API

Line 66: x_return_status := FND_API.G_RET_STS_SUCCESS;

62:
63: BEGIN
64:
65: -- Initialize API return status to SUCCESS
66: x_return_status := FND_API.G_RET_STS_SUCCESS;
67:
68: FOR l_claim_rule_rec IN c_clam_rule(p_claim_rec.claim_class,
69: p_claim_rec.source_object_class)
70:

Line 130: RAISE FND_API.g_exc_error;

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:
133: IF l_custom_setup_id IS NULL THEN
134: OPEN csr_count_custom_setup(p_claim_rec.claim_class);

Line 154: RAISE FND_API.g_exc_error;

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;
156: END IF;
157: x_clam_def_rec_type.custom_setup_id := l_custom_setup_id;
158: END IF;

Line 162: WHEN FND_API.G_EXC_ERROR THEN

158: END IF;
159:
160: EXCEPTION
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,

Line 163: x_return_status := FND_API.G_RET_STS_ERROR;

159:
160: EXCEPTION
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,

Line 166: p_encoded => FND_API.G_FALSE,

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: );
170:

Line 171: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

167: p_count => x_msg_count,
168: p_data => x_msg_data
169: );
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,

Line 172: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

168: p_data => x_msg_data
169: );
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,

Line 175: p_encoded => FND_API.G_FALSE,

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: );
179:

Line 181: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

177: p_data => x_msg_data
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;

Line 188: p_encoded => FND_API.G_FALSE,

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: );
192: