DBA Data[Home] [Help]

APPS.OZF_AE_HEADER_PVT dependencies on FND_API

Line 25: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

21:
22: -- Hint: Primary key needs to be returned.
23: PROCEDURE Create_Ae_Header(
24: p_api_version_number IN NUMBER,
25: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
26: p_commit IN VARCHAR2 := FND_API.G_FALSE,
27: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
28:
29: x_return_status OUT NOCOPY VARCHAR2,

Line 26: p_commit IN VARCHAR2 := FND_API.G_FALSE,

22: -- Hint: Primary key needs to be returned.
23: PROCEDURE Create_Ae_Header(
24: p_api_version_number IN NUMBER,
25: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
26: p_commit IN VARCHAR2 := FND_API.G_FALSE,
27: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
28:
29: x_return_status OUT NOCOPY VARCHAR2,
30: x_msg_count OUT NOCOPY NUMBER,

Line 27: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,

23: PROCEDURE Create_Ae_Header(
24: p_api_version_number IN NUMBER,
25: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
26: p_commit IN VARCHAR2 := FND_API.G_FALSE,
27: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
28:
29: x_return_status OUT NOCOPY VARCHAR2,
30: x_msg_count OUT NOCOPY NUMBER,
31: x_msg_data OUT NOCOPY VARCHAR2,

Line 59: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

55: -- Standard Start of API savepoint
56: SAVEPOINT CREATE_Ae_Header_PVT;
57:
58: -- Standard call to check for call compatibility.
59: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,
60: p_api_version_number,
61: l_api_name,
62: G_PKG_NAME)
63: THEN

Line 64: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

60: p_api_version_number,
61: l_api_name,
62: G_PKG_NAME)
63: THEN
64: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
65: END IF;
66:
67: -- Initialize message list if p_init_msg_list is set to TRUE.
68: IF FND_API.to_Boolean( p_init_msg_list )

Line 68: IF FND_API.to_Boolean( p_init_msg_list )

64: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
65: END IF;
66:
67: -- Initialize message list if p_init_msg_list is set to TRUE.
68: IF FND_API.to_Boolean( p_init_msg_list )
69: THEN
70: FND_MSG_PUB.initialize;
71: END IF;
72:

Line 80: x_return_status := FND_API.G_RET_STS_SUCCESS;

76: END IF;
77:
78:
79: -- Initialize API return status to SUCCESS
80: x_return_status := FND_API.G_RET_STS_SUCCESS;
81:
82: -- Local variable initialization
83:
84: IF p_ae_header_rec.AE_HEADER_ID IS NULL OR

Line 85: p_ae_header_rec.AE_HEADER_ID = FND_API.g_miss_num

81:
82: -- Local variable initialization
83:
84: IF p_ae_header_rec.AE_HEADER_ID IS NULL OR
85: p_ae_header_rec.AE_HEADER_ID = FND_API.g_miss_num
86: THEN
87: LOOP
88: l_dummy := NULL;
89: OPEN c_id;

Line 108: RAISE FND_API.G_EXC_ERROR;

104:
105: IF FND_GLOBAL.User_Id IS NULL
106: THEN
107: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_USER_PROFILE_MISSING');
108: RAISE FND_API.G_EXC_ERROR;
109: END IF;
110:
111: /*
112: IF ( P_validation_level >= FND_API.G_VALID_LEVEL_FULL)

Line 112: IF ( P_validation_level >= FND_API.G_VALID_LEVEL_FULL)

108: RAISE FND_API.G_EXC_ERROR;
109: END IF;
110:
111: /*
112: IF ( P_validation_level >= FND_API.G_VALID_LEVEL_FULL)
113: THEN
114: -- Debug message
115: IF g_debug THEN
116: OZF_UTILITY_PVT.debug_message('Private API: Validate_Ae_Header');

Line 122: p_init_msg_list => FND_API.G_FALSE,

118:
119: -- Invoke validation procedures
120: Validate_ae_header(
121: p_api_version_number => 1.0,
122: p_init_msg_list => FND_API.G_FALSE,
123: p_validation_level => p_validation_level,
124: p_ae_header_rec => p_ae_header_rec,
125: x_return_status => x_return_status,
126: x_msg_count => x_msg_count,

Line 130: IF x_return_status<>FND_API.G_RET_STS_SUCCESS THEN

126: x_msg_count => x_msg_count,
127: x_msg_data => x_msg_data);
128: END IF;
129:
130: IF x_return_status<>FND_API.G_RET_STS_SUCCESS THEN
131: RAISE FND_API.G_EXC_ERROR;
132: END IF;
133: */
134:

Line 131: RAISE FND_API.G_EXC_ERROR;

127: x_msg_data => x_msg_data);
128: END IF;
129:
130: IF x_return_status<>FND_API.G_RET_STS_SUCCESS THEN
131: RAISE FND_API.G_EXC_ERROR;
132: END IF;
133: */
134:
135: -- Debug Message

Line 184: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN

180: p_attribute12 => p_ae_header_rec.attribute12,
181: p_attribute13 => p_ae_header_rec.attribute13,
182: p_attribute14 => p_ae_header_rec.attribute14,
183: p_attribute15 => p_ae_header_rec.attribute15);
184: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
185: RAISE FND_API.G_EXC_ERROR;
186: END IF;
187: x_ae_header_id:= l_ae_header_id;
188: --

Line 185: RAISE FND_API.G_EXC_ERROR;

181: p_attribute13 => p_ae_header_rec.attribute13,
182: p_attribute14 => p_ae_header_rec.attribute14,
183: p_attribute15 => p_ae_header_rec.attribute15);
184: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
185: RAISE FND_API.G_EXC_ERROR;
186: END IF;
187: x_ae_header_id:= l_ae_header_id;
188: --
189: -- End of API body

Line 193: IF FND_API.to_Boolean( p_commit )

189: -- End of API body
190: --
191:
192: -- Standard check for p_commit
193: IF FND_API.to_Boolean( p_commit )
194: THEN
195: COMMIT WORK;
196: END IF;
197:

Line 212: x_return_status := FND_API.g_ret_sts_error;

208: );
209: EXCEPTION
210:
211: WHEN OZF_Utility_PVT.resource_locked THEN
212: x_return_status := FND_API.g_ret_sts_error;
213: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
214: WHEN FND_API.G_EXC_ERROR THEN
215: ROLLBACK TO CREATE_Ae_Header_PVT;
216: x_return_status := FND_API.G_RET_STS_ERROR;

Line 214: WHEN FND_API.G_EXC_ERROR THEN

210:
211: WHEN OZF_Utility_PVT.resource_locked THEN
212: x_return_status := FND_API.g_ret_sts_error;
213: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
214: WHEN FND_API.G_EXC_ERROR THEN
215: ROLLBACK TO CREATE_Ae_Header_PVT;
216: x_return_status := FND_API.G_RET_STS_ERROR;
217: -- Standard call to get message count and if count=1, get the message
218: FND_MSG_PUB.Count_And_Get (

Line 216: x_return_status := FND_API.G_RET_STS_ERROR;

212: x_return_status := FND_API.g_ret_sts_error;
213: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
214: WHEN FND_API.G_EXC_ERROR THEN
215: ROLLBACK TO CREATE_Ae_Header_PVT;
216: x_return_status := FND_API.G_RET_STS_ERROR;
217: -- Standard call to get message count and if count=1, get the message
218: FND_MSG_PUB.Count_And_Get (
219: p_encoded => FND_API.G_FALSE,
220: p_count => x_msg_count,

Line 219: p_encoded => FND_API.G_FALSE,

215: ROLLBACK TO CREATE_Ae_Header_PVT;
216: x_return_status := FND_API.G_RET_STS_ERROR;
217: -- Standard call to get message count and if count=1, get the message
218: FND_MSG_PUB.Count_And_Get (
219: p_encoded => FND_API.G_FALSE,
220: p_count => x_msg_count,
221: p_data => x_msg_data
222: );
223: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 223: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

219: p_encoded => FND_API.G_FALSE,
220: p_count => x_msg_count,
221: p_data => x_msg_data
222: );
223: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
224: ROLLBACK TO CREATE_Ae_Header_PVT;
225: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
226: -- Standard call to get message count and if count=1, get the message
227: FND_MSG_PUB.Count_And_Get (

Line 225: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

221: p_data => x_msg_data
222: );
223: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
224: ROLLBACK TO CREATE_Ae_Header_PVT;
225: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
226: -- Standard call to get message count and if count=1, get the message
227: FND_MSG_PUB.Count_And_Get (
228: p_encoded => FND_API.G_FALSE,
229: p_count => x_msg_count,

Line 228: p_encoded => FND_API.G_FALSE,

224: ROLLBACK TO CREATE_Ae_Header_PVT;
225: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
226: -- Standard call to get message count and if count=1, get the message
227: FND_MSG_PUB.Count_And_Get (
228: p_encoded => FND_API.G_FALSE,
229: p_count => x_msg_count,
230: p_data => x_msg_data
231: );
232: WHEN OTHERS THEN

Line 234: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

230: p_data => x_msg_data
231: );
232: WHEN OTHERS THEN
233: ROLLBACK TO CREATE_Ae_Header_PVT;
234: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
235: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
236: THEN
237: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
238: END IF;

Line 241: p_encoded => FND_API.G_FALSE,

237: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
238: END IF;
239: -- Standard call to get message count and if count=1, get the message
240: FND_MSG_PUB.Count_And_Get (
241: p_encoded => FND_API.G_FALSE,
242: p_count => x_msg_count,
243: p_data => x_msg_data
244: );
245: End Create_Ae_Header;

Line 249: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

245: End Create_Ae_Header;
246:
247: PROCEDURE Update_Ae_Header(
248: p_api_version_number IN NUMBER,
249: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
250: p_commit IN VARCHAR2 := FND_API.G_FALSE,
251: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
252:
253: x_return_status OUT NOCOPY VARCHAR2,

Line 250: p_commit IN VARCHAR2 := FND_API.G_FALSE,

246:
247: PROCEDURE Update_Ae_Header(
248: p_api_version_number IN NUMBER,
249: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
250: p_commit IN VARCHAR2 := FND_API.G_FALSE,
251: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
252:
253: x_return_status OUT NOCOPY VARCHAR2,
254: x_msg_count OUT NOCOPY NUMBER,

Line 251: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,

247: PROCEDURE Update_Ae_Header(
248: p_api_version_number IN NUMBER,
249: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
250: p_commit IN VARCHAR2 := FND_API.G_FALSE,
251: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
252:
253: x_return_status OUT NOCOPY VARCHAR2,
254: x_msg_count OUT NOCOPY NUMBER,
255: x_msg_data OUT NOCOPY VARCHAR2,

Line 282: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

278: -- Standard Start of API savepoint
279: SAVEPOINT UPDATE_Ae_Header_PVT;
280:
281: -- Standard call to check for call compatibility.
282: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,
283: p_api_version_number,
284: l_api_name,
285: G_PKG_NAME)
286: THEN

Line 287: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

283: p_api_version_number,
284: l_api_name,
285: G_PKG_NAME)
286: THEN
287: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
288: END IF;
289:
290: -- Initialize message list if p_init_msg_list is set to TRUE.
291: IF FND_API.to_Boolean( p_init_msg_list )

Line 291: IF FND_API.to_Boolean( p_init_msg_list )

287: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
288: END IF;
289:
290: -- Initialize message list if p_init_msg_list is set to TRUE.
291: IF FND_API.to_Boolean( p_init_msg_list )
292: THEN
293: FND_MSG_PUB.initialize;
294: END IF;
295:

Line 303: x_return_status := FND_API.G_RET_STS_SUCCESS;

299: END IF;
300:
301:
302: -- Initialize API return status to SUCCESS
303: x_return_status := FND_API.G_RET_STS_SUCCESS;
304:
305: -- Debug Message
306: IF g_debug THEN
307: OZF_UTILITY_PVT.debug_message('Private API: - Open Cursor to Select');

Line 317: RAISE FND_API.G_EXC_ERROR;

313: FETCH c_get_Ae_Header INTO l_ref_ae_header_rec ;
314:
315: If ( c_get_Ae_Header%NOTFOUND) THEN
316: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RECORD_NOT_FOUND');
317: RAISE FND_API.G_EXC_ERROR;
318: END IF;
319: -- Debug Message
320: IF g_debug THEN
321: OZF_UTILITY_PVT.debug_message('Private API: - Close Cursor');

Line 328: l_tar_ae_header_rec.object_version_number = FND_API.G_MISS_NUM ) Then

324: */
325:
326:
327: If (l_tar_ae_header_rec.object_version_number is NULL or
328: l_tar_ae_header_rec.object_version_number = FND_API.G_MISS_NUM ) Then
329: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_NO_OBJ_VER_NUM');
330: raise FND_API.G_EXC_ERROR;
331: End if;
332: -- Check Whether record has been changed by someone else

Line 330: raise FND_API.G_EXC_ERROR;

326:
327: If (l_tar_ae_header_rec.object_version_number is NULL or
328: l_tar_ae_header_rec.object_version_number = FND_API.G_MISS_NUM ) Then
329: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_NO_OBJ_VER_NUM');
330: raise FND_API.G_EXC_ERROR;
331: End if;
332: -- Check Whether record has been changed by someone else
333: If (l_tar_ae_header_rec.object_version_number <> l_ref_ae_header_rec.object_version_number) Then
334: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');

Line 335: raise FND_API.G_EXC_ERROR;

331: End if;
332: -- Check Whether record has been changed by someone else
333: If (l_tar_ae_header_rec.object_version_number <> l_ref_ae_header_rec.object_version_number) Then
334: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
335: raise FND_API.G_EXC_ERROR;
336: End if;
337: IF ( P_validation_level >= FND_API.G_VALID_LEVEL_FULL)
338: THEN
339: -- Debug message

Line 337: IF ( P_validation_level >= FND_API.G_VALID_LEVEL_FULL)

333: If (l_tar_ae_header_rec.object_version_number <> l_ref_ae_header_rec.object_version_number) Then
334: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
335: raise FND_API.G_EXC_ERROR;
336: End if;
337: IF ( P_validation_level >= FND_API.G_VALID_LEVEL_FULL)
338: THEN
339: -- Debug message
340: IF g_debug THEN
341: OZF_UTILITY_PVT.debug_message('Private API: Validate_Ae_Header');

Line 347: p_init_msg_list => FND_API.G_FALSE,

343:
344: -- Invoke validation procedures
345: Validate_ae_header(
346: p_api_version_number => 1.0,
347: p_init_msg_list => FND_API.G_FALSE,
348: p_validation_level => p_validation_level,
349: p_ae_header_rec => p_ae_header_rec,
350: x_return_status => x_return_status,
351: x_msg_count => x_msg_count,

Line 355: IF x_return_status<>FND_API.G_RET_STS_SUCCESS THEN

351: x_msg_count => x_msg_count,
352: x_msg_data => x_msg_data);
353: END IF;
354:
355: IF x_return_status<>FND_API.G_RET_STS_SUCCESS THEN
356: RAISE FND_API.G_EXC_ERROR;
357: END IF;
358:
359:

Line 356: RAISE FND_API.G_EXC_ERROR;

352: x_msg_data => x_msg_data);
353: END IF;
354:
355: IF x_return_status<>FND_API.G_RET_STS_SUCCESS THEN
356: RAISE FND_API.G_EXC_ERROR;
357: END IF;
358:
359:
360: -- Debug Message

Line 412: IF FND_API.to_Boolean( p_commit )

408: -- End of API body.
409: --
410:
411: -- Standard check for p_commit
412: IF FND_API.to_Boolean( p_commit )
413: THEN
414: COMMIT WORK;
415: END IF;
416:

Line 431: x_return_status := FND_API.g_ret_sts_error;

427: );
428: EXCEPTION
429:
430: WHEN OZF_Utility_PVT.resource_locked THEN
431: x_return_status := FND_API.g_ret_sts_error;
432: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
433:
434: WHEN FND_API.G_EXC_ERROR THEN
435: ROLLBACK TO UPDATE_Ae_Header_PVT;

Line 434: WHEN FND_API.G_EXC_ERROR THEN

430: WHEN OZF_Utility_PVT.resource_locked THEN
431: x_return_status := FND_API.g_ret_sts_error;
432: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
433:
434: WHEN FND_API.G_EXC_ERROR THEN
435: ROLLBACK TO UPDATE_Ae_Header_PVT;
436: x_return_status := FND_API.G_RET_STS_ERROR;
437: -- Standard call to get message count and if count=1, get the message
438: FND_MSG_PUB.Count_And_Get (

Line 436: x_return_status := FND_API.G_RET_STS_ERROR;

432: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
433:
434: WHEN FND_API.G_EXC_ERROR THEN
435: ROLLBACK TO UPDATE_Ae_Header_PVT;
436: x_return_status := FND_API.G_RET_STS_ERROR;
437: -- Standard call to get message count and if count=1, get the message
438: FND_MSG_PUB.Count_And_Get (
439: p_encoded => FND_API.G_FALSE,
440: p_count => x_msg_count,

Line 439: p_encoded => FND_API.G_FALSE,

435: ROLLBACK TO UPDATE_Ae_Header_PVT;
436: x_return_status := FND_API.G_RET_STS_ERROR;
437: -- Standard call to get message count and if count=1, get the message
438: FND_MSG_PUB.Count_And_Get (
439: p_encoded => FND_API.G_FALSE,
440: p_count => x_msg_count,
441: p_data => x_msg_data
442: );
443:

Line 444: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

440: p_count => x_msg_count,
441: p_data => x_msg_data
442: );
443:
444: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
445: ROLLBACK TO UPDATE_Ae_Header_PVT;
446: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
447: -- Standard call to get message count and if count=1, get the message
448: FND_MSG_PUB.Count_And_Get (

Line 446: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

442: );
443:
444: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
445: ROLLBACK TO UPDATE_Ae_Header_PVT;
446: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
447: -- Standard call to get message count and if count=1, get the message
448: FND_MSG_PUB.Count_And_Get (
449: p_encoded => FND_API.G_FALSE,
450: p_count => x_msg_count,

Line 449: p_encoded => FND_API.G_FALSE,

445: ROLLBACK TO UPDATE_Ae_Header_PVT;
446: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
447: -- Standard call to get message count and if count=1, get the message
448: FND_MSG_PUB.Count_And_Get (
449: p_encoded => FND_API.G_FALSE,
450: p_count => x_msg_count,
451: p_data => x_msg_data
452: );
453:

Line 456: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

452: );
453:
454: WHEN OTHERS THEN
455: ROLLBACK TO UPDATE_Ae_Header_PVT;
456: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
457: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
458: THEN
459: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
460: END IF;

Line 463: p_encoded => FND_API.G_FALSE,

459: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
460: END IF;
461: -- Standard call to get message count and if count=1, get the message
462: FND_MSG_PUB.Count_And_Get (
463: p_encoded => FND_API.G_FALSE,
464: p_count => x_msg_count,
465: p_data => x_msg_data
466: );
467: End Update_Ae_Header;

Line 472: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

468:
469:
470: PROCEDURE Delete_Ae_Header(
471: p_api_version_number IN NUMBER,
472: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
473: p_commit IN VARCHAR2 := FND_API.G_FALSE,
474: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
475: x_return_status OUT NOCOPY VARCHAR2,
476: x_msg_count OUT NOCOPY NUMBER,

Line 473: p_commit IN VARCHAR2 := FND_API.G_FALSE,

469:
470: PROCEDURE Delete_Ae_Header(
471: p_api_version_number IN NUMBER,
472: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
473: p_commit IN VARCHAR2 := FND_API.G_FALSE,
474: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
475: x_return_status OUT NOCOPY VARCHAR2,
476: x_msg_count OUT NOCOPY NUMBER,
477: x_msg_data OUT NOCOPY VARCHAR2,

Line 474: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,

470: PROCEDURE Delete_Ae_Header(
471: p_api_version_number IN NUMBER,
472: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
473: p_commit IN VARCHAR2 := FND_API.G_FALSE,
474: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
475: x_return_status OUT NOCOPY VARCHAR2,
476: x_msg_count OUT NOCOPY NUMBER,
477: x_msg_data OUT NOCOPY VARCHAR2,
478: p_ae_header_id IN NUMBER,

Line 492: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

488: -- Standard Start of API savepoint
489: SAVEPOINT DELETE_Ae_Header_PVT;
490:
491: -- Standard call to check for call compatibility.
492: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,
493: p_api_version_number,
494: l_api_name,
495: G_PKG_NAME)
496: THEN

Line 497: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

493: p_api_version_number,
494: l_api_name,
495: G_PKG_NAME)
496: THEN
497: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
498: END IF;
499:
500: -- Initialize message list if p_init_msg_list is set to TRUE.
501: IF FND_API.to_Boolean( p_init_msg_list )

Line 501: IF FND_API.to_Boolean( p_init_msg_list )

497: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
498: END IF;
499:
500: -- Initialize message list if p_init_msg_list is set to TRUE.
501: IF FND_API.to_Boolean( p_init_msg_list )
502: THEN
503: FND_MSG_PUB.initialize;
504: END IF;
505:

Line 513: x_return_status := FND_API.G_RET_STS_SUCCESS;

509: END IF;
510:
511:
512: -- Initialize API return status to SUCCESS
513: x_return_status := FND_API.G_RET_STS_SUCCESS;
514:
515: --
516: -- Api body
517: --

Line 531: IF FND_API.to_Boolean( p_commit )

527: -- End of API body
528: --
529:
530: -- Standard check for p_commit
531: IF FND_API.to_Boolean( p_commit )
532: THEN
533: COMMIT WORK;
534: END IF;
535:

Line 550: x_return_status := FND_API.g_ret_sts_error;

546: );
547: EXCEPTION
548:
549: WHEN OZF_Utility_PVT.resource_locked THEN
550: x_return_status := FND_API.g_ret_sts_error;
551: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
552:
553: WHEN FND_API.G_EXC_ERROR THEN
554: ROLLBACK TO DELETE_Ae_Header_PVT;

Line 553: WHEN FND_API.G_EXC_ERROR THEN

549: WHEN OZF_Utility_PVT.resource_locked THEN
550: x_return_status := FND_API.g_ret_sts_error;
551: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
552:
553: WHEN FND_API.G_EXC_ERROR THEN
554: ROLLBACK TO DELETE_Ae_Header_PVT;
555: x_return_status := FND_API.G_RET_STS_ERROR;
556: -- Standard call to get message count and if count=1, get the message
557: FND_MSG_PUB.Count_And_Get (

Line 555: x_return_status := FND_API.G_RET_STS_ERROR;

551: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
552:
553: WHEN FND_API.G_EXC_ERROR THEN
554: ROLLBACK TO DELETE_Ae_Header_PVT;
555: x_return_status := FND_API.G_RET_STS_ERROR;
556: -- Standard call to get message count and if count=1, get the message
557: FND_MSG_PUB.Count_And_Get (
558: p_encoded => FND_API.G_FALSE,
559: p_count => x_msg_count,

Line 558: p_encoded => FND_API.G_FALSE,

554: ROLLBACK TO DELETE_Ae_Header_PVT;
555: x_return_status := FND_API.G_RET_STS_ERROR;
556: -- Standard call to get message count and if count=1, get the message
557: FND_MSG_PUB.Count_And_Get (
558: p_encoded => FND_API.G_FALSE,
559: p_count => x_msg_count,
560: p_data => x_msg_data
561: );
562:

Line 563: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

559: p_count => x_msg_count,
560: p_data => x_msg_data
561: );
562:
563: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
564: ROLLBACK TO DELETE_Ae_Header_PVT;
565: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
566: -- Standard call to get message count and if count=1, get the message
567: FND_MSG_PUB.Count_And_Get (

Line 565: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

561: );
562:
563: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
564: ROLLBACK TO DELETE_Ae_Header_PVT;
565: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
566: -- Standard call to get message count and if count=1, get the message
567: FND_MSG_PUB.Count_And_Get (
568: p_encoded => FND_API.G_FALSE,
569: p_count => x_msg_count,

Line 568: p_encoded => FND_API.G_FALSE,

564: ROLLBACK TO DELETE_Ae_Header_PVT;
565: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
566: -- Standard call to get message count and if count=1, get the message
567: FND_MSG_PUB.Count_And_Get (
568: p_encoded => FND_API.G_FALSE,
569: p_count => x_msg_count,
570: p_data => x_msg_data
571: );
572:

Line 575: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

571: );
572:
573: WHEN OTHERS THEN
574: ROLLBACK TO DELETE_Ae_Header_PVT;
575: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
576: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
577: THEN
578: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
579: END IF;

Line 582: p_encoded => FND_API.G_FALSE,

578: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
579: END IF;
580: -- Standard call to get message count and if count=1, get the message
581: FND_MSG_PUB.Count_And_Get (
582: p_encoded => FND_API.G_FALSE,
583: p_count => x_msg_count,
584: p_data => x_msg_data
585: );
586: End Delete_Ae_Header;

Line 593: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

589:
590: -- Hint: Primary key needs to be returned.
591: PROCEDURE Lock_Ae_Header(
592: p_api_version_number IN NUMBER,
593: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
594:
595: x_return_status OUT NOCOPY VARCHAR2,
596: x_msg_count OUT NOCOPY NUMBER,
597: x_msg_data OUT NOCOPY VARCHAR2,

Line 624: IF FND_API.to_Boolean( p_init_msg_list )

620: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'start');
621: END IF;
622:
623: -- Initialize message list if p_init_msg_list is set to TRUE.
624: IF FND_API.to_Boolean( p_init_msg_list )
625: THEN
626: FND_MSG_PUB.initialize;
627: END IF;
628:

Line 630: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

626: FND_MSG_PUB.initialize;
627: END IF;
628:
629: -- Standard call to check for call compatibility.
630: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,
631: p_api_version_number,
632: l_api_name,
633: G_PKG_NAME)
634: THEN

Line 635: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

631: p_api_version_number,
632: l_api_name,
633: G_PKG_NAME)
634: THEN
635: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
636: END IF;
637:
638:
639: -- Initialize API return status to SUCCESS

Line 640: x_return_status := FND_API.G_RET_STS_SUCCESS;

636: END IF;
637:
638:
639: -- Initialize API return status to SUCCESS
640: x_return_status := FND_API.G_RET_STS_SUCCESS;
641:
642:
643: ------------------------ lock -------------------------
644:

Line 658: RAISE FND_API.g_exc_error;

654: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
655: FND_MESSAGE.set_name('OZF', 'OZF_API_RECORD_NOT_FOUND');
656: FND_MSG_PUB.add;
657: END IF;
658: RAISE FND_API.g_exc_error;
659: END IF;
660:
661: CLOSE c_Ae_Header;
662:

Line 665: p_encoded => FND_API.g_false,

661: CLOSE c_Ae_Header;
662:
663: -------------------- finish --------------------------
664: FND_MSG_PUB.count_and_get(
665: p_encoded => FND_API.g_false,
666: p_count => x_msg_count,
667: p_data => x_msg_data);
668: IF g_debug THEN
669: OZF_Utility_PVT.debug_message(l_full_name ||': end');

Line 674: x_return_status := FND_API.g_ret_sts_error;

670: END IF;
671: EXCEPTION
672:
673: WHEN OZF_Utility_PVT.resource_locked THEN
674: x_return_status := FND_API.g_ret_sts_error;
675: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
676:
677: WHEN FND_API.G_EXC_ERROR THEN
678: ROLLBACK TO LOCK_Ae_Header_PVT;

Line 677: WHEN FND_API.G_EXC_ERROR THEN

673: WHEN OZF_Utility_PVT.resource_locked THEN
674: x_return_status := FND_API.g_ret_sts_error;
675: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
676:
677: WHEN FND_API.G_EXC_ERROR THEN
678: ROLLBACK TO LOCK_Ae_Header_PVT;
679: x_return_status := FND_API.G_RET_STS_ERROR;
680: -- Standard call to get message count and if count=1, get the message
681: FND_MSG_PUB.Count_And_Get (

Line 679: x_return_status := FND_API.G_RET_STS_ERROR;

675: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
676:
677: WHEN FND_API.G_EXC_ERROR THEN
678: ROLLBACK TO LOCK_Ae_Header_PVT;
679: x_return_status := FND_API.G_RET_STS_ERROR;
680: -- Standard call to get message count and if count=1, get the message
681: FND_MSG_PUB.Count_And_Get (
682: p_encoded => FND_API.G_FALSE,
683: p_count => x_msg_count,

Line 682: p_encoded => FND_API.G_FALSE,

678: ROLLBACK TO LOCK_Ae_Header_PVT;
679: x_return_status := FND_API.G_RET_STS_ERROR;
680: -- Standard call to get message count and if count=1, get the message
681: FND_MSG_PUB.Count_And_Get (
682: p_encoded => FND_API.G_FALSE,
683: p_count => x_msg_count,
684: p_data => x_msg_data
685: );
686:

Line 687: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

683: p_count => x_msg_count,
684: p_data => x_msg_data
685: );
686:
687: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
688: ROLLBACK TO LOCK_Ae_Header_PVT;
689: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
690: -- Standard call to get message count and if count=1, get the message
691: FND_MSG_PUB.Count_And_Get (

Line 689: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

685: );
686:
687: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
688: ROLLBACK TO LOCK_Ae_Header_PVT;
689: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
690: -- Standard call to get message count and if count=1, get the message
691: FND_MSG_PUB.Count_And_Get (
692: p_encoded => FND_API.G_FALSE,
693: p_count => x_msg_count,

Line 692: p_encoded => FND_API.G_FALSE,

688: ROLLBACK TO LOCK_Ae_Header_PVT;
689: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
690: -- Standard call to get message count and if count=1, get the message
691: FND_MSG_PUB.Count_And_Get (
692: p_encoded => FND_API.G_FALSE,
693: p_count => x_msg_count,
694: p_data => x_msg_data
695: );
696:

Line 699: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

695: );
696:
697: WHEN OTHERS THEN
698: ROLLBACK TO LOCK_Ae_Header_PVT;
699: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
700: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
701: THEN
702: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
703: END IF;

Line 706: p_encoded => FND_API.G_FALSE,

702: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
703: END IF;
704: -- Standard call to get message count and if count=1, get the message
705: FND_MSG_PUB.Count_And_Get (
706: p_encoded => FND_API.G_FALSE,
707: p_count => x_msg_count,
708: p_data => x_msg_data
709: );
710: End Lock_Ae_Header;

Line 721: x_return_status := FND_API.g_ret_sts_success;

717: IS
718: l_valid_flag VARCHAR2(1);
719:
720: BEGIN
721: x_return_status := FND_API.g_ret_sts_success;
722: IF p_validation_mode = JTF_PLSQL_API.g_create THEN
723: l_valid_flag := OZF_Utility_PVT.check_uniqueness(
724: 'OZF_AE_HEADERS_ALL',
725: 'AE_HEADER_ID = ''' || p_ae_header_rec.AE_HEADER_ID ||''''

Line 735: IF l_valid_flag = FND_API.g_false THEN

731: ''' AND AE_HEADER_ID <> ' || p_ae_header_rec.AE_HEADER_ID
732: );
733: END IF;
734:
735: IF l_valid_flag = FND_API.g_false THEN
736: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_AE_HEADER_ID_DUPLICATE');
737: x_return_status := FND_API.g_ret_sts_error;
738: RETURN;
739: END IF;

Line 737: x_return_status := FND_API.g_ret_sts_error;

733: END IF;
734:
735: IF l_valid_flag = FND_API.g_false THEN
736: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_AE_HEADER_ID_DUPLICATE');
737: x_return_status := FND_API.g_ret_sts_error;
738: RETURN;
739: END IF;
740:
741: END check_ae_header_uk_items;

Line 750: x_return_status := FND_API.g_ret_sts_success;

746: x_return_status OUT NOCOPY VARCHAR2
747: )
748: IS
749: BEGIN
750: x_return_status := FND_API.g_ret_sts_success;
751:
752: IF p_validation_mode = JTF_PLSQL_API.g_create THEN
753:
754:

Line 755: IF p_ae_header_rec.ae_header_id = FND_API.g_miss_num OR p_ae_header_rec.ae_header_id IS NULL THEN

751:
752: IF p_validation_mode = JTF_PLSQL_API.g_create THEN
753:
754:
755: IF p_ae_header_rec.ae_header_id = FND_API.g_miss_num OR p_ae_header_rec.ae_header_id IS NULL THEN
756: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'AE_HEADER_ID' );
757: x_return_status := FND_API.g_ret_sts_error;
758: RETURN;
759: END IF;

Line 757: x_return_status := FND_API.g_ret_sts_error;

753:
754:
755: IF p_ae_header_rec.ae_header_id = FND_API.g_miss_num OR p_ae_header_rec.ae_header_id IS NULL THEN
756: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'AE_HEADER_ID' );
757: x_return_status := FND_API.g_ret_sts_error;
758: RETURN;
759: END IF;
760:
761:

Line 762: IF p_ae_header_rec.object_version_number = FND_API.g_miss_num OR p_ae_header_rec.object_version_number IS NULL THEN

758: RETURN;
759: END IF;
760:
761:
762: IF p_ae_header_rec.object_version_number = FND_API.g_miss_num OR p_ae_header_rec.object_version_number IS NULL THEN
763: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'OBJECT_VERSION_NUMBER' );
764: x_return_status := FND_API.g_ret_sts_error;
765: RETURN;
766: END IF;

Line 764: x_return_status := FND_API.g_ret_sts_error;

760:
761:
762: IF p_ae_header_rec.object_version_number = FND_API.g_miss_num OR p_ae_header_rec.object_version_number IS NULL THEN
763: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'OBJECT_VERSION_NUMBER' );
764: x_return_status := FND_API.g_ret_sts_error;
765: RETURN;
766: END IF;
767:
768:

Line 769: IF p_ae_header_rec.last_update_date = FND_API.g_miss_date OR p_ae_header_rec.last_update_date IS NULL THEN

765: RETURN;
766: END IF;
767:
768:
769: IF p_ae_header_rec.last_update_date = FND_API.g_miss_date OR p_ae_header_rec.last_update_date IS NULL THEN
770: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'LAST_UPDATE_DATE' );
771: x_return_status := FND_API.g_ret_sts_error;
772: RETURN;
773: END IF;

Line 771: x_return_status := FND_API.g_ret_sts_error;

767:
768:
769: IF p_ae_header_rec.last_update_date = FND_API.g_miss_date OR p_ae_header_rec.last_update_date IS NULL THEN
770: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'LAST_UPDATE_DATE' );
771: x_return_status := FND_API.g_ret_sts_error;
772: RETURN;
773: END IF;
774:
775:

Line 776: IF p_ae_header_rec.last_updated_by = FND_API.g_miss_num OR p_ae_header_rec.last_updated_by IS NULL THEN

772: RETURN;
773: END IF;
774:
775:
776: IF p_ae_header_rec.last_updated_by = FND_API.g_miss_num OR p_ae_header_rec.last_updated_by IS NULL THEN
777: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'LAST_UPDATED_BY' );
778: x_return_status := FND_API.g_ret_sts_error;
779: RETURN;
780: END IF;

Line 778: x_return_status := FND_API.g_ret_sts_error;

774:
775:
776: IF p_ae_header_rec.last_updated_by = FND_API.g_miss_num OR p_ae_header_rec.last_updated_by IS NULL THEN
777: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'LAST_UPDATED_BY' );
778: x_return_status := FND_API.g_ret_sts_error;
779: RETURN;
780: END IF;
781:
782:

Line 783: IF p_ae_header_rec.creation_date = FND_API.g_miss_date OR p_ae_header_rec.creation_date IS NULL THEN

779: RETURN;
780: END IF;
781:
782:
783: IF p_ae_header_rec.creation_date = FND_API.g_miss_date OR p_ae_header_rec.creation_date IS NULL THEN
784: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'CREATION_DATE' );
785: x_return_status := FND_API.g_ret_sts_error;
786: RETURN;
787: END IF;

Line 785: x_return_status := FND_API.g_ret_sts_error;

781:
782:
783: IF p_ae_header_rec.creation_date = FND_API.g_miss_date OR p_ae_header_rec.creation_date IS NULL THEN
784: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'CREATION_DATE' );
785: x_return_status := FND_API.g_ret_sts_error;
786: RETURN;
787: END IF;
788:
789:

Line 790: IF p_ae_header_rec.created_by = FND_API.g_miss_num OR p_ae_header_rec.created_by IS NULL THEN

786: RETURN;
787: END IF;
788:
789:
790: IF p_ae_header_rec.created_by = FND_API.g_miss_num OR p_ae_header_rec.created_by IS NULL THEN
791: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'CREATED_BY' );
792: x_return_status := FND_API.g_ret_sts_error;
793: RETURN;
794: END IF;

Line 792: x_return_status := FND_API.g_ret_sts_error;

788:
789:
790: IF p_ae_header_rec.created_by = FND_API.g_miss_num OR p_ae_header_rec.created_by IS NULL THEN
791: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'CREATED_BY' );
792: x_return_status := FND_API.g_ret_sts_error;
793: RETURN;
794: END IF;
795:
796:

Line 797: IF p_ae_header_rec.accounting_event_id = FND_API.g_miss_num OR p_ae_header_rec.accounting_event_id IS NULL THEN

793: RETURN;
794: END IF;
795:
796:
797: IF p_ae_header_rec.accounting_event_id = FND_API.g_miss_num OR p_ae_header_rec.accounting_event_id IS NULL THEN
798: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'ACCOUNTING_EVENT_ID' );
799: x_return_status := FND_API.g_ret_sts_error;
800: RETURN;
801: END IF;

Line 799: x_return_status := FND_API.g_ret_sts_error;

795:
796:
797: IF p_ae_header_rec.accounting_event_id = FND_API.g_miss_num OR p_ae_header_rec.accounting_event_id IS NULL THEN
798: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'ACCOUNTING_EVENT_ID' );
799: x_return_status := FND_API.g_ret_sts_error;
800: RETURN;
801: END IF;
802:
803:

Line 804: IF p_ae_header_rec.accounting_date = FND_API.g_miss_date OR p_ae_header_rec.accounting_date IS NULL THEN

800: RETURN;
801: END IF;
802:
803:
804: IF p_ae_header_rec.accounting_date = FND_API.g_miss_date OR p_ae_header_rec.accounting_date IS NULL THEN
805: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'ACCOUNTING_DATE' );
806: x_return_status := FND_API.g_ret_sts_error;
807: RETURN;
808: END IF;

Line 806: x_return_status := FND_API.g_ret_sts_error;

802:
803:
804: IF p_ae_header_rec.accounting_date = FND_API.g_miss_date OR p_ae_header_rec.accounting_date IS NULL THEN
805: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'ACCOUNTING_DATE' );
806: x_return_status := FND_API.g_ret_sts_error;
807: RETURN;
808: END IF;
809:
810:

Line 811: IF p_ae_header_rec.ae_category = FND_API.g_miss_char OR p_ae_header_rec.ae_category IS NULL THEN

807: RETURN;
808: END IF;
809:
810:
811: IF p_ae_header_rec.ae_category = FND_API.g_miss_char OR p_ae_header_rec.ae_category IS NULL THEN
812: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'AE_CATEGORY' );
813: x_return_status := FND_API.g_ret_sts_error;
814: RETURN;
815: END IF;

Line 813: x_return_status := FND_API.g_ret_sts_error;

809:
810:
811: IF p_ae_header_rec.ae_category = FND_API.g_miss_char OR p_ae_header_rec.ae_category IS NULL THEN
812: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'AE_CATEGORY' );
813: x_return_status := FND_API.g_ret_sts_error;
814: RETURN;
815: END IF;
816:
817:

Line 818: IF p_ae_header_rec.cross_currency_flag = FND_API.g_miss_char OR p_ae_header_rec.cross_currency_flag IS NULL THEN

814: RETURN;
815: END IF;
816:
817:
818: IF p_ae_header_rec.cross_currency_flag = FND_API.g_miss_char OR p_ae_header_rec.cross_currency_flag IS NULL THEN
819: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'CROSS_CURRENCY_FLAG' );
820: x_return_status := FND_API.g_ret_sts_error;
821: RETURN;
822: END IF;

Line 820: x_return_status := FND_API.g_ret_sts_error;

816:
817:
818: IF p_ae_header_rec.cross_currency_flag = FND_API.g_miss_char OR p_ae_header_rec.cross_currency_flag IS NULL THEN
819: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'CROSS_CURRENCY_FLAG' );
820: x_return_status := FND_API.g_ret_sts_error;
821: RETURN;
822: END IF;
823:
824:

Line 825: IF p_ae_header_rec.gl_transfer_flag = FND_API.g_miss_char OR p_ae_header_rec.gl_transfer_flag IS NULL THEN

821: RETURN;
822: END IF;
823:
824:
825: IF p_ae_header_rec.gl_transfer_flag = FND_API.g_miss_char OR p_ae_header_rec.gl_transfer_flag IS NULL THEN
826: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'GL_TRANSFER_FLAG' );
827: x_return_status := FND_API.g_ret_sts_error;
828: RETURN;
829: END IF;

Line 827: x_return_status := FND_API.g_ret_sts_error;

823:
824:
825: IF p_ae_header_rec.gl_transfer_flag = FND_API.g_miss_char OR p_ae_header_rec.gl_transfer_flag IS NULL THEN
826: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'GL_TRANSFER_FLAG' );
827: x_return_status := FND_API.g_ret_sts_error;
828: RETURN;
829: END IF;
830:
831:

Line 832: IF p_ae_header_rec.gl_transfer_run_id = FND_API.g_miss_num OR p_ae_header_rec.gl_transfer_run_id IS NULL THEN

828: RETURN;
829: END IF;
830:
831:
832: IF p_ae_header_rec.gl_transfer_run_id = FND_API.g_miss_num OR p_ae_header_rec.gl_transfer_run_id IS NULL THEN
833: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'GL_TRANSFER_RUN_ID' );
834: x_return_status := FND_API.g_ret_sts_error;
835: RETURN;
836: END IF;

Line 834: x_return_status := FND_API.g_ret_sts_error;

830:
831:
832: IF p_ae_header_rec.gl_transfer_run_id = FND_API.g_miss_num OR p_ae_header_rec.gl_transfer_run_id IS NULL THEN
833: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'GL_TRANSFER_RUN_ID' );
834: x_return_status := FND_API.g_ret_sts_error;
835: RETURN;
836: END IF;
837:
838:

Line 839: IF p_ae_header_rec.period_name = FND_API.g_miss_char OR p_ae_header_rec.period_name IS NULL THEN

835: RETURN;
836: END IF;
837:
838:
839: IF p_ae_header_rec.period_name = FND_API.g_miss_char OR p_ae_header_rec.period_name IS NULL THEN
840: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'PERIOD_NAME' );
841: x_return_status := FND_API.g_ret_sts_error;
842: RETURN;
843: END IF;

Line 841: x_return_status := FND_API.g_ret_sts_error;

837:
838:
839: IF p_ae_header_rec.period_name = FND_API.g_miss_char OR p_ae_header_rec.period_name IS NULL THEN
840: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'PERIOD_NAME' );
841: x_return_status := FND_API.g_ret_sts_error;
842: RETURN;
843: END IF;
844:
845:

Line 846: IF p_ae_header_rec.set_of_books_id = FND_API.g_miss_num OR p_ae_header_rec.set_of_books_id IS NULL THEN

842: RETURN;
843: END IF;
844:
845:
846: IF p_ae_header_rec.set_of_books_id = FND_API.g_miss_num OR p_ae_header_rec.set_of_books_id IS NULL THEN
847: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'SET_OF_BOOKS_ID' );
848: x_return_status := FND_API.g_ret_sts_error;
849: RETURN;
850: END IF;

Line 848: x_return_status := FND_API.g_ret_sts_error;

844:
845:
846: IF p_ae_header_rec.set_of_books_id = FND_API.g_miss_num OR p_ae_header_rec.set_of_books_id IS NULL THEN
847: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'SET_OF_BOOKS_ID' );
848: x_return_status := FND_API.g_ret_sts_error;
849: RETURN;
850: END IF;
851: ELSE
852:

Line 856: x_return_status := FND_API.g_ret_sts_error;

852:
853:
854: IF p_ae_header_rec.ae_header_id IS NULL THEN
855: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'AE_HEADER_ID' );
856: x_return_status := FND_API.g_ret_sts_error;
857: RETURN;
858: END IF;
859:
860:

Line 863: x_return_status := FND_API.g_ret_sts_error;

859:
860:
861: IF p_ae_header_rec.object_version_number IS NULL THEN
862: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'OBJECT_VERSION_NUMBER' );
863: x_return_status := FND_API.g_ret_sts_error;
864: RETURN;
865: END IF;
866:
867:

Line 870: x_return_status := FND_API.g_ret_sts_error;

866:
867:
868: IF p_ae_header_rec.last_update_date IS NULL THEN
869: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'LAST_UPDATE_DATE' );
870: x_return_status := FND_API.g_ret_sts_error;
871: RETURN;
872: END IF;
873:
874:

Line 877: x_return_status := FND_API.g_ret_sts_error;

873:
874:
875: IF p_ae_header_rec.last_updated_by IS NULL THEN
876: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'LAST_UPDATED_BY' );
877: x_return_status := FND_API.g_ret_sts_error;
878: RETURN;
879: END IF;
880:
881:

Line 884: x_return_status := FND_API.g_ret_sts_error;

880:
881:
882: IF p_ae_header_rec.creation_date IS NULL THEN
883: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'CREATION_DATE' );
884: x_return_status := FND_API.g_ret_sts_error;
885: RETURN;
886: END IF;
887:
888:

Line 891: x_return_status := FND_API.g_ret_sts_error;

887:
888:
889: IF p_ae_header_rec.created_by IS NULL THEN
890: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'CREATED_BY' );
891: x_return_status := FND_API.g_ret_sts_error;
892: RETURN;
893: END IF;
894:
895:

Line 898: x_return_status := FND_API.g_ret_sts_error;

894:
895:
896: IF p_ae_header_rec.accounting_event_id IS NULL THEN
897: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'ACCOUNTING_EVENT_ID' );
898: x_return_status := FND_API.g_ret_sts_error;
899: RETURN;
900: END IF;
901:
902:

Line 905: x_return_status := FND_API.g_ret_sts_error;

901:
902:
903: IF p_ae_header_rec.accounting_date IS NULL THEN
904: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'ACCOUNTING_DATE' );
905: x_return_status := FND_API.g_ret_sts_error;
906: RETURN;
907: END IF;
908:
909:

Line 912: x_return_status := FND_API.g_ret_sts_error;

908:
909:
910: IF p_ae_header_rec.ae_category IS NULL THEN
911: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'AE_CATEGORY' );
912: x_return_status := FND_API.g_ret_sts_error;
913: RETURN;
914: END IF;
915:
916:

Line 919: x_return_status := FND_API.g_ret_sts_error;

915:
916:
917: IF p_ae_header_rec.cross_currency_flag IS NULL THEN
918: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'CROSS_CURRENCY_FLAG' );
919: x_return_status := FND_API.g_ret_sts_error;
920: RETURN;
921: END IF;
922:
923:

Line 926: x_return_status := FND_API.g_ret_sts_error;

922:
923:
924: IF p_ae_header_rec.gl_transfer_flag IS NULL THEN
925: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'GL_TRANSFER_FLAG' );
926: x_return_status := FND_API.g_ret_sts_error;
927: RETURN;
928: END IF;
929:
930:

Line 933: x_return_status := FND_API.g_ret_sts_error;

929:
930:
931: IF p_ae_header_rec.gl_transfer_run_id IS NULL THEN
932: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'GL_TRANSFER_RUN_ID' );
933: x_return_status := FND_API.g_ret_sts_error;
934: RETURN;
935: END IF;
936:
937:

Line 940: x_return_status := FND_API.g_ret_sts_error;

936:
937:
938: IF p_ae_header_rec.period_name IS NULL THEN
939: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'PERIOD_NAME' );
940: x_return_status := FND_API.g_ret_sts_error;
941: RETURN;
942: END IF;
943:
944:

Line 947: x_return_status := FND_API.g_ret_sts_error;

943:
944:
945: IF p_ae_header_rec.set_of_books_id IS NULL THEN
946: OZF_Utility_PVT.Error_Message('OZF_API_MISSING_FIELD', 'MISS_FIELD', 'SET_OF_BOOKS_ID' );
947: x_return_status := FND_API.g_ret_sts_error;
948: RETURN;
949: END IF;
950: END IF;
951:

Line 960: x_return_status := FND_API.g_ret_sts_success;

956: x_return_status OUT NOCOPY VARCHAR2
957: )
958: IS
959: BEGIN
960: x_return_status := FND_API.g_ret_sts_success;
961:
962: -- Enter custom code here
963:
964: END check_ae_header_FK_items;

Line 972: x_return_status := FND_API.g_ret_sts_success;

968: x_return_status OUT NOCOPY VARCHAR2
969: )
970: IS
971: BEGIN
972: x_return_status := FND_API.g_ret_sts_success;
973:
974: -- Enter custom code here
975:
976: END check_ae_header_Lk_items;

Line 992: IF x_return_status <> FND_API.g_ret_sts_success THEN

988: check_ae_header_uk_items(
989: p_ae_header_rec => p_ae_header_rec,
990: p_validation_mode => p_validation_mode,
991: x_return_status => x_return_status);
992: IF x_return_status <> FND_API.g_ret_sts_success THEN
993: RETURN;
994: END IF;
995:
996: -- Check Items Required/NOT NULL API calls

Line 1002: IF x_return_status <> FND_API.g_ret_sts_success THEN

998: check_ae_header_req_items(
999: p_ae_header_rec => p_ae_header_rec,
1000: p_validation_mode => p_validation_mode,
1001: x_return_status => x_return_status);
1002: IF x_return_status <> FND_API.g_ret_sts_success THEN
1003: RETURN;
1004: END IF;
1005: -- Check Items Foreign Keys API calls
1006:

Line 1010: IF x_return_status <> FND_API.g_ret_sts_success THEN

1006:
1007: check_ae_header_FK_items(
1008: p_ae_header_rec => p_ae_header_rec,
1009: x_return_status => x_return_status);
1010: IF x_return_status <> FND_API.g_ret_sts_success THEN
1011: RETURN;
1012: END IF;
1013: -- Check Items Lookups
1014:

Line 1018: IF x_return_status <> FND_API.g_ret_sts_success THEN

1014:
1015: check_ae_header_Lk_items(
1016: p_ae_header_rec => p_ae_header_rec,
1017: x_return_status => x_return_status);
1018: IF x_return_status <> FND_API.g_ret_sts_success THEN
1019: RETURN;
1020: END IF;
1021:
1022: END Check_ae_header_Items;

Line 1044: IF p_ae_header_rec.ae_header_id = FND_API.g_miss_num THEN

1040: FETCH c_complete INTO l_ae_header_rec;
1041: CLOSE c_complete;
1042:
1043: -- ae_header_id
1044: IF p_ae_header_rec.ae_header_id = FND_API.g_miss_num THEN
1045: x_complete_rec.ae_header_id := NULL;
1046: END IF;
1047: IF p_ae_header_rec.ae_header_id IS NULL THEN
1048: x_complete_rec.ae_header_id := l_ae_header_rec.ae_header_id;

Line 1052: IF p_ae_header_rec.object_version_number = FND_API.g_miss_num THEN

1048: x_complete_rec.ae_header_id := l_ae_header_rec.ae_header_id;
1049: END IF;
1050:
1051: -- object_version_number
1052: IF p_ae_header_rec.object_version_number = FND_API.g_miss_num THEN
1053: x_complete_rec.object_version_number := NULL;
1054: END IF;
1055: IF p_ae_header_rec.object_version_number IS NULL THEN
1056: x_complete_rec.object_version_number := l_ae_header_rec.object_version_number;

Line 1060: IF p_ae_header_rec.last_update_date = FND_API.g_miss_date THEN

1056: x_complete_rec.object_version_number := l_ae_header_rec.object_version_number;
1057: END IF;
1058:
1059: -- last_update_date
1060: IF p_ae_header_rec.last_update_date = FND_API.g_miss_date THEN
1061: x_complete_rec.last_update_date := NULL;
1062: END IF;
1063: IF p_ae_header_rec.last_update_date IS NULL THEN
1064: x_complete_rec.last_update_date := l_ae_header_rec.last_update_date;

Line 1068: IF p_ae_header_rec.last_updated_by = FND_API.g_miss_num THEN

1064: x_complete_rec.last_update_date := l_ae_header_rec.last_update_date;
1065: END IF;
1066:
1067: -- last_updated_by
1068: IF p_ae_header_rec.last_updated_by = FND_API.g_miss_num THEN
1069: x_complete_rec.last_updated_by := NULL;
1070: END IF;
1071: IF p_ae_header_rec.last_updated_by IS NULL THEN
1072: x_complete_rec.last_updated_by := l_ae_header_rec.last_updated_by;

Line 1076: IF p_ae_header_rec.creation_date = FND_API.g_miss_date THEN

1072: x_complete_rec.last_updated_by := l_ae_header_rec.last_updated_by;
1073: END IF;
1074:
1075: -- creation_date
1076: IF p_ae_header_rec.creation_date = FND_API.g_miss_date THEN
1077: x_complete_rec.creation_date := NULL;
1078: END IF;
1079: IF p_ae_header_rec.creation_date IS NULL THEN
1080: x_complete_rec.creation_date := l_ae_header_rec.creation_date;

Line 1084: IF p_ae_header_rec.created_by = FND_API.g_miss_num THEN

1080: x_complete_rec.creation_date := l_ae_header_rec.creation_date;
1081: END IF;
1082:
1083: -- created_by
1084: IF p_ae_header_rec.created_by = FND_API.g_miss_num THEN
1085: x_complete_rec.created_by := NULL;
1086: END IF;
1087: IF p_ae_header_rec.created_by IS NULL THEN
1088: x_complete_rec.created_by := l_ae_header_rec.created_by;

Line 1092: IF p_ae_header_rec.last_update_login = FND_API.g_miss_num THEN

1088: x_complete_rec.created_by := l_ae_header_rec.created_by;
1089: END IF;
1090:
1091: -- last_update_login
1092: IF p_ae_header_rec.last_update_login = FND_API.g_miss_num THEN
1093: x_complete_rec.last_update_login := NULL;
1094: END IF;
1095: IF p_ae_header_rec.last_update_login IS NULL THEN
1096: x_complete_rec.last_update_login := l_ae_header_rec.last_update_login;

Line 1100: IF p_ae_header_rec.request_id = FND_API.g_miss_num THEN

1096: x_complete_rec.last_update_login := l_ae_header_rec.last_update_login;
1097: END IF;
1098:
1099: -- request_id
1100: IF p_ae_header_rec.request_id = FND_API.g_miss_num THEN
1101: x_complete_rec.request_id := NULL;
1102: END IF;
1103: IF p_ae_header_rec.request_id IS NULL THEN
1104: x_complete_rec.request_id := l_ae_header_rec.request_id;

Line 1108: IF p_ae_header_rec.program_application_id = FND_API.g_miss_num THEN

1104: x_complete_rec.request_id := l_ae_header_rec.request_id;
1105: END IF;
1106:
1107: -- program_application_id
1108: IF p_ae_header_rec.program_application_id = FND_API.g_miss_num THEN
1109: x_complete_rec.program_application_id := NULL;
1110: END IF;
1111: IF p_ae_header_rec.program_application_id IS NULL THEN
1112: x_complete_rec.program_application_id := l_ae_header_rec.program_application_id;

Line 1116: IF p_ae_header_rec.program_update_date = FND_API.g_miss_date THEN

1112: x_complete_rec.program_application_id := l_ae_header_rec.program_application_id;
1113: END IF;
1114:
1115: -- program_update_date
1116: IF p_ae_header_rec.program_update_date = FND_API.g_miss_date THEN
1117: x_complete_rec.program_update_date := NULL;
1118: END IF;
1119: IF p_ae_header_rec.program_update_date IS NULL THEN
1120: x_complete_rec.program_update_date := l_ae_header_rec.program_update_date;

Line 1124: IF p_ae_header_rec.program_id = FND_API.g_miss_num THEN

1120: x_complete_rec.program_update_date := l_ae_header_rec.program_update_date;
1121: END IF;
1122:
1123: -- program_id
1124: IF p_ae_header_rec.program_id = FND_API.g_miss_num THEN
1125: x_complete_rec.program_id := NULL;
1126: END IF;
1127: IF p_ae_header_rec.program_id IS NULL THEN
1128: x_complete_rec.program_id := l_ae_header_rec.program_id;

Line 1132: IF p_ae_header_rec.accounting_event_id = FND_API.g_miss_num THEN

1128: x_complete_rec.program_id := l_ae_header_rec.program_id;
1129: END IF;
1130:
1131: -- accounting_event_id
1132: IF p_ae_header_rec.accounting_event_id = FND_API.g_miss_num THEN
1133: x_complete_rec.accounting_event_id := NULL;
1134: END IF;
1135: IF p_ae_header_rec.accounting_event_id IS NULL THEN
1136: x_complete_rec.accounting_event_id := l_ae_header_rec.accounting_event_id;

Line 1140: IF p_ae_header_rec.accounting_date = FND_API.g_miss_date THEN

1136: x_complete_rec.accounting_event_id := l_ae_header_rec.accounting_event_id;
1137: END IF;
1138:
1139: -- accounting_date
1140: IF p_ae_header_rec.accounting_date = FND_API.g_miss_date THEN
1141: x_complete_rec.accounting_date := NULL;
1142: END IF;
1143: IF p_ae_header_rec.accounting_date IS NULL THEN
1144: x_complete_rec.accounting_date := l_ae_header_rec.accounting_date;

Line 1148: IF p_ae_header_rec.accounting_error_code = FND_API.g_miss_char THEN

1144: x_complete_rec.accounting_date := l_ae_header_rec.accounting_date;
1145: END IF;
1146:
1147: -- accounting_error_code
1148: IF p_ae_header_rec.accounting_error_code = FND_API.g_miss_char THEN
1149: x_complete_rec.accounting_error_code := NULL;
1150: END IF;
1151: IF p_ae_header_rec.accounting_error_code IS NULL THEN
1152: x_complete_rec.accounting_error_code := l_ae_header_rec.accounting_error_code;

Line 1156: IF p_ae_header_rec.ae_category = FND_API.g_miss_char THEN

1152: x_complete_rec.accounting_error_code := l_ae_header_rec.accounting_error_code;
1153: END IF;
1154:
1155: -- ae_category
1156: IF p_ae_header_rec.ae_category = FND_API.g_miss_char THEN
1157: x_complete_rec.ae_category := NULL;
1158: END IF;
1159: IF p_ae_header_rec.ae_category IS NULL THEN
1160: x_complete_rec.ae_category := l_ae_header_rec.ae_category;

Line 1164: IF p_ae_header_rec.ae_sequence_id = FND_API.g_miss_num THEN

1160: x_complete_rec.ae_category := l_ae_header_rec.ae_category;
1161: END IF;
1162:
1163: -- ae_sequence_id
1164: IF p_ae_header_rec.ae_sequence_id = FND_API.g_miss_num THEN
1165: x_complete_rec.ae_sequence_id := NULL;
1166: END IF;
1167: IF p_ae_header_rec.ae_sequence_id IS NULL THEN
1168: x_complete_rec.ae_sequence_id := l_ae_header_rec.ae_sequence_id;

Line 1172: IF p_ae_header_rec.ae_sequence_value = FND_API.g_miss_num THEN

1168: x_complete_rec.ae_sequence_id := l_ae_header_rec.ae_sequence_id;
1169: END IF;
1170:
1171: -- ae_sequence_value
1172: IF p_ae_header_rec.ae_sequence_value = FND_API.g_miss_num THEN
1173: x_complete_rec.ae_sequence_value := NULL;
1174: END IF;
1175: IF p_ae_header_rec.ae_sequence_value IS NULL THEN
1176: x_complete_rec.ae_sequence_value := l_ae_header_rec.ae_sequence_value;

Line 1180: IF p_ae_header_rec.cross_currency_flag = FND_API.g_miss_char THEN

1176: x_complete_rec.ae_sequence_value := l_ae_header_rec.ae_sequence_value;
1177: END IF;
1178:
1179: -- cross_currency_flag
1180: IF p_ae_header_rec.cross_currency_flag = FND_API.g_miss_char THEN
1181: x_complete_rec.cross_currency_flag := NULL;
1182: END IF;
1183: IF p_ae_header_rec.cross_currency_flag IS NULL THEN
1184: x_complete_rec.cross_currency_flag := l_ae_header_rec.cross_currency_flag;

Line 1188: IF p_ae_header_rec.description = FND_API.g_miss_char THEN

1184: x_complete_rec.cross_currency_flag := l_ae_header_rec.cross_currency_flag;
1185: END IF;
1186:
1187: -- description
1188: IF p_ae_header_rec.description = FND_API.g_miss_char THEN
1189: x_complete_rec.description := NULL;
1190: END IF;
1191: IF p_ae_header_rec.description IS NULL THEN
1192: x_complete_rec.description := l_ae_header_rec.description;

Line 1196: IF p_ae_header_rec.gl_reversal_flag = FND_API.g_miss_char THEN

1192: x_complete_rec.description := l_ae_header_rec.description;
1193: END IF;
1194:
1195: -- gl_reversal_flag
1196: IF p_ae_header_rec.gl_reversal_flag = FND_API.g_miss_char THEN
1197: x_complete_rec.gl_reversal_flag := NULL;
1198: END IF;
1199: IF p_ae_header_rec.gl_reversal_flag IS NULL THEN
1200: x_complete_rec.gl_reversal_flag := l_ae_header_rec.gl_reversal_flag;

Line 1204: IF p_ae_header_rec.gl_transfer_error_code = FND_API.g_miss_char THEN

1200: x_complete_rec.gl_reversal_flag := l_ae_header_rec.gl_reversal_flag;
1201: END IF;
1202:
1203: -- gl_transfer_error_code
1204: IF p_ae_header_rec.gl_transfer_error_code = FND_API.g_miss_char THEN
1205: x_complete_rec.gl_transfer_error_code := NULL;
1206: END IF;
1207: IF p_ae_header_rec.gl_transfer_error_code IS NULL THEN
1208: x_complete_rec.gl_transfer_error_code := l_ae_header_rec.gl_transfer_error_code;

Line 1212: IF p_ae_header_rec.gl_transfer_flag = FND_API.g_miss_char THEN

1208: x_complete_rec.gl_transfer_error_code := l_ae_header_rec.gl_transfer_error_code;
1209: END IF;
1210:
1211: -- gl_transfer_flag
1212: IF p_ae_header_rec.gl_transfer_flag = FND_API.g_miss_char THEN
1213: x_complete_rec.gl_transfer_flag := NULL;
1214: END IF;
1215: IF p_ae_header_rec.gl_transfer_flag IS NULL THEN
1216: x_complete_rec.gl_transfer_flag := l_ae_header_rec.gl_transfer_flag;

Line 1220: IF p_ae_header_rec.gl_transfer_run_id = FND_API.g_miss_num THEN

1216: x_complete_rec.gl_transfer_flag := l_ae_header_rec.gl_transfer_flag;
1217: END IF;
1218:
1219: -- gl_transfer_run_id
1220: IF p_ae_header_rec.gl_transfer_run_id = FND_API.g_miss_num THEN
1221: x_complete_rec.gl_transfer_run_id := NULL;
1222: END IF;
1223: IF p_ae_header_rec.gl_transfer_run_id IS NULL THEN
1224: x_complete_rec.gl_transfer_run_id := l_ae_header_rec.gl_transfer_run_id;

Line 1228: IF p_ae_header_rec.org_id = FND_API.g_miss_num THEN

1224: x_complete_rec.gl_transfer_run_id := l_ae_header_rec.gl_transfer_run_id;
1225: END IF;
1226:
1227: -- org_id
1228: IF p_ae_header_rec.org_id = FND_API.g_miss_num THEN
1229: x_complete_rec.org_id := NULL;
1230: END IF;
1231: IF p_ae_header_rec.org_id IS NULL THEN
1232: x_complete_rec.org_id := l_ae_header_rec.org_id;

Line 1236: IF p_ae_header_rec.period_name = FND_API.g_miss_char THEN

1232: x_complete_rec.org_id := l_ae_header_rec.org_id;
1233: END IF;
1234:
1235: -- period_name
1236: IF p_ae_header_rec.period_name = FND_API.g_miss_char THEN
1237: x_complete_rec.period_name := NULL;
1238: END IF;
1239: IF p_ae_header_rec.period_name IS NULL THEN
1240: x_complete_rec.period_name := l_ae_header_rec.period_name;

Line 1244: IF p_ae_header_rec.set_of_books_id = FND_API.g_miss_num THEN

1240: x_complete_rec.period_name := l_ae_header_rec.period_name;
1241: END IF;
1242:
1243: -- set_of_books_id
1244: IF p_ae_header_rec.set_of_books_id = FND_API.g_miss_num THEN
1245: x_complete_rec.set_of_books_id := NULL;
1246: END IF;
1247: IF p_ae_header_rec.set_of_books_id IS NULL THEN
1248: x_complete_rec.set_of_books_id := l_ae_header_rec.set_of_books_id;

Line 1252: IF p_ae_header_rec.attribute_category = FND_API.g_miss_char THEN

1248: x_complete_rec.set_of_books_id := l_ae_header_rec.set_of_books_id;
1249: END IF;
1250:
1251: -- attribute_category
1252: IF p_ae_header_rec.attribute_category = FND_API.g_miss_char THEN
1253: x_complete_rec.attribute_category := NULL;
1254: END IF;
1255: IF p_ae_header_rec.attribute_category IS NULL THEN
1256: x_complete_rec.attribute_category := l_ae_header_rec.attribute_category;

Line 1260: IF p_ae_header_rec.attribute1 = FND_API.g_miss_char THEN

1256: x_complete_rec.attribute_category := l_ae_header_rec.attribute_category;
1257: END IF;
1258:
1259: -- attribute1
1260: IF p_ae_header_rec.attribute1 = FND_API.g_miss_char THEN
1261: x_complete_rec.attribute1 := NULL;
1262: END IF;
1263: IF p_ae_header_rec.attribute1 IS NULL THEN
1264: x_complete_rec.attribute1 := l_ae_header_rec.attribute1;

Line 1268: IF p_ae_header_rec.attribute2 = FND_API.g_miss_char THEN

1264: x_complete_rec.attribute1 := l_ae_header_rec.attribute1;
1265: END IF;
1266:
1267: -- attribute2
1268: IF p_ae_header_rec.attribute2 = FND_API.g_miss_char THEN
1269: x_complete_rec.attribute2 := NULL;
1270: END IF;
1271: IF p_ae_header_rec.attribute2 IS NULL THEN
1272: x_complete_rec.attribute2 := l_ae_header_rec.attribute2;

Line 1276: IF p_ae_header_rec.attribute3 = FND_API.g_miss_char THEN

1272: x_complete_rec.attribute2 := l_ae_header_rec.attribute2;
1273: END IF;
1274:
1275: -- attribute3
1276: IF p_ae_header_rec.attribute3 = FND_API.g_miss_char THEN
1277: x_complete_rec.attribute3 := NULL;
1278: END IF;
1279: IF p_ae_header_rec.attribute3 IS NULL THEN
1280: x_complete_rec.attribute3 := l_ae_header_rec.attribute3;

Line 1284: IF p_ae_header_rec.attribute4 = FND_API.g_miss_char THEN

1280: x_complete_rec.attribute3 := l_ae_header_rec.attribute3;
1281: END IF;
1282:
1283: -- attribute4
1284: IF p_ae_header_rec.attribute4 = FND_API.g_miss_char THEN
1285: x_complete_rec.attribute4 := NULL;
1286: END IF;
1287: IF p_ae_header_rec.attribute4 IS NULL THEN
1288: x_complete_rec.attribute4 := l_ae_header_rec.attribute4;

Line 1292: IF p_ae_header_rec.attribute5 = FND_API.g_miss_char THEN

1288: x_complete_rec.attribute4 := l_ae_header_rec.attribute4;
1289: END IF;
1290:
1291: -- attribute5
1292: IF p_ae_header_rec.attribute5 = FND_API.g_miss_char THEN
1293: x_complete_rec.attribute5 := NULL;
1294: END IF;
1295: IF p_ae_header_rec.attribute5 IS NULL THEN
1296: x_complete_rec.attribute5 := l_ae_header_rec.attribute5;

Line 1300: IF p_ae_header_rec.attribute6 = FND_API.g_miss_char THEN

1296: x_complete_rec.attribute5 := l_ae_header_rec.attribute5;
1297: END IF;
1298:
1299: -- attribute6
1300: IF p_ae_header_rec.attribute6 = FND_API.g_miss_char THEN
1301: x_complete_rec.attribute6 := NULL;
1302: END IF;
1303: IF p_ae_header_rec.attribute6 IS NULL THEN
1304: x_complete_rec.attribute6 := l_ae_header_rec.attribute6;

Line 1308: IF p_ae_header_rec.attribute7 = FND_API.g_miss_char THEN

1304: x_complete_rec.attribute6 := l_ae_header_rec.attribute6;
1305: END IF;
1306:
1307: -- attribute7
1308: IF p_ae_header_rec.attribute7 = FND_API.g_miss_char THEN
1309: x_complete_rec.attribute7 := NULL;
1310: END IF;
1311: IF p_ae_header_rec.attribute7 IS NULL THEN
1312: x_complete_rec.attribute7 := l_ae_header_rec.attribute7;

Line 1316: IF p_ae_header_rec.attribute8 = FND_API.g_miss_char THEN

1312: x_complete_rec.attribute7 := l_ae_header_rec.attribute7;
1313: END IF;
1314:
1315: -- attribute8
1316: IF p_ae_header_rec.attribute8 = FND_API.g_miss_char THEN
1317: x_complete_rec.attribute8 := NULL;
1318: END IF;
1319: IF p_ae_header_rec.attribute8 IS NULL THEN
1320: x_complete_rec.attribute8 := l_ae_header_rec.attribute8;

Line 1324: IF p_ae_header_rec.attribute9 = FND_API.g_miss_char THEN

1320: x_complete_rec.attribute8 := l_ae_header_rec.attribute8;
1321: END IF;
1322:
1323: -- attribute9
1324: IF p_ae_header_rec.attribute9 = FND_API.g_miss_char THEN
1325: x_complete_rec.attribute9 := NULL;
1326: END IF;
1327: IF p_ae_header_rec.attribute9 IS NULL THEN
1328: x_complete_rec.attribute9 := l_ae_header_rec.attribute9;

Line 1332: IF p_ae_header_rec.attribute10 = FND_API.g_miss_char THEN

1328: x_complete_rec.attribute9 := l_ae_header_rec.attribute9;
1329: END IF;
1330:
1331: -- attribute10
1332: IF p_ae_header_rec.attribute10 = FND_API.g_miss_char THEN
1333: x_complete_rec.attribute10 := NULL;
1334: END IF;
1335: IF p_ae_header_rec.attribute10 IS NULL THEN
1336: x_complete_rec.attribute10 := l_ae_header_rec.attribute10;

Line 1340: IF p_ae_header_rec.attribute11 = FND_API.g_miss_char THEN

1336: x_complete_rec.attribute10 := l_ae_header_rec.attribute10;
1337: END IF;
1338:
1339: -- attribute11
1340: IF p_ae_header_rec.attribute11 = FND_API.g_miss_char THEN
1341: x_complete_rec.attribute11 := NULL;
1342: END IF;
1343: IF p_ae_header_rec.attribute11 IS NULL THEN
1344: x_complete_rec.attribute11 := l_ae_header_rec.attribute11;

Line 1348: IF p_ae_header_rec.attribute12 = FND_API.g_miss_char THEN

1344: x_complete_rec.attribute11 := l_ae_header_rec.attribute11;
1345: END IF;
1346:
1347: -- attribute12
1348: IF p_ae_header_rec.attribute12 = FND_API.g_miss_char THEN
1349: x_complete_rec.attribute12 := NULL;
1350: END IF;
1351: IF p_ae_header_rec.attribute12 IS NULL THEN
1352: x_complete_rec.attribute12 := l_ae_header_rec.attribute12;

Line 1356: IF p_ae_header_rec.attribute13 = FND_API.g_miss_char THEN

1352: x_complete_rec.attribute12 := l_ae_header_rec.attribute12;
1353: END IF;
1354:
1355: -- attribute13
1356: IF p_ae_header_rec.attribute13 = FND_API.g_miss_char THEN
1357: x_complete_rec.attribute13 := NULL;
1358: END IF;
1359: IF p_ae_header_rec.attribute13 IS NULL THEN
1360: x_complete_rec.attribute13 := l_ae_header_rec.attribute13;

Line 1364: IF p_ae_header_rec.attribute14 = FND_API.g_miss_char THEN

1360: x_complete_rec.attribute13 := l_ae_header_rec.attribute13;
1361: END IF;
1362:
1363: -- attribute14
1364: IF p_ae_header_rec.attribute14 = FND_API.g_miss_char THEN
1365: x_complete_rec.attribute14 := NULL;
1366: END IF;
1367: IF p_ae_header_rec.attribute14 IS NULL THEN
1368: x_complete_rec.attribute14 := l_ae_header_rec.attribute14;

Line 1372: IF p_ae_header_rec.attribute15 = FND_API.g_miss_char THEN

1368: x_complete_rec.attribute14 := l_ae_header_rec.attribute14;
1369: END IF;
1370:
1371: -- attribute15
1372: IF p_ae_header_rec.attribute15 = FND_API.g_miss_char THEN
1373: x_complete_rec.attribute15 := NULL;
1374: END IF;
1375: IF p_ae_header_rec.attribute15 IS NULL THEN
1376: x_complete_rec.attribute15 := l_ae_header_rec.attribute15;

Line 1384: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

1380: -- to handle any business specific requirements.
1381: END Complete_ae_header_Rec;
1382: PROCEDURE Validate_ae_header(
1383: p_api_version_number IN NUMBER,
1384: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
1385: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
1386: p_ae_header_rec IN ae_header_rec_type,
1387: x_return_status OUT NOCOPY VARCHAR2,
1388: x_msg_count OUT NOCOPY NUMBER,

Line 1385: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,

1381: END Complete_ae_header_Rec;
1382: PROCEDURE Validate_ae_header(
1383: p_api_version_number IN NUMBER,
1384: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
1385: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,
1386: p_ae_header_rec IN ae_header_rec_type,
1387: x_return_status OUT NOCOPY VARCHAR2,
1388: x_msg_count OUT NOCOPY NUMBER,
1389: x_msg_data OUT NOCOPY VARCHAR2

Line 1402: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

1398: -- Standard Start of API savepoint
1399: SAVEPOINT VALIDATE_Ae_Header_;
1400:
1401: -- Standard call to check for call compatibility.
1402: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,
1403: p_api_version_number,
1404: l_api_name,
1405: G_PKG_NAME)
1406: THEN

Line 1407: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

1403: p_api_version_number,
1404: l_api_name,
1405: G_PKG_NAME)
1406: THEN
1407: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1408: END IF;
1409:
1410: -- Initialize message list if p_init_msg_list is set to TRUE.
1411: IF FND_API.to_Boolean( p_init_msg_list )

Line 1411: IF FND_API.to_Boolean( p_init_msg_list )

1407: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1408: END IF;
1409:
1410: -- Initialize message list if p_init_msg_list is set to TRUE.
1411: IF FND_API.to_Boolean( p_init_msg_list )
1412: THEN
1413: FND_MSG_PUB.initialize;
1414: END IF;
1415: IF p_validation_level >= JTF_PLSQL_API.g_valid_level_item THEN

Line 1422: IF x_return_status = FND_API.G_RET_STS_ERROR THEN

1418: p_validation_mode => JTF_PLSQL_API.g_update,
1419: x_return_status => x_return_status
1420: );
1421:
1422: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1423: RAISE FND_API.G_EXC_ERROR;
1424: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1425: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1426: END IF;

Line 1423: RAISE FND_API.G_EXC_ERROR;

1419: x_return_status => x_return_status
1420: );
1421:
1422: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1423: RAISE FND_API.G_EXC_ERROR;
1424: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1425: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1426: END IF;
1427: END IF;

Line 1424: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

1420: );
1421:
1422: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1423: RAISE FND_API.G_EXC_ERROR;
1424: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1425: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1426: END IF;
1427: END IF;
1428:

Line 1425: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

1421:
1422: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1423: RAISE FND_API.G_EXC_ERROR;
1424: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1425: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1426: END IF;
1427: END IF;
1428:
1429: Complete_ae_header_Rec(

Line 1437: p_init_msg_list => FND_API.G_FALSE,

1433:
1434: IF p_validation_level >= JTF_PLSQL_API.g_valid_level_item THEN
1435: Validate_ae_header_Rec(
1436: p_api_version_number => 1.0,
1437: p_init_msg_list => FND_API.G_FALSE,
1438: x_return_status => x_return_status,
1439: x_msg_count => x_msg_count,
1440: x_msg_data => x_msg_data,
1441: p_ae_header_rec => l_ae_header_rec);

Line 1443: IF x_return_status = FND_API.G_RET_STS_ERROR THEN

1439: x_msg_count => x_msg_count,
1440: x_msg_data => x_msg_data,
1441: p_ae_header_rec => l_ae_header_rec);
1442:
1443: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1444: RAISE FND_API.G_EXC_ERROR;
1445: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1446: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1447: END IF;

Line 1444: RAISE FND_API.G_EXC_ERROR;

1440: x_msg_data => x_msg_data,
1441: p_ae_header_rec => l_ae_header_rec);
1442:
1443: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1444: RAISE FND_API.G_EXC_ERROR;
1445: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1446: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1447: END IF;
1448: END IF;

Line 1445: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

1441: p_ae_header_rec => l_ae_header_rec);
1442:
1443: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1444: RAISE FND_API.G_EXC_ERROR;
1445: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1446: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1447: END IF;
1448: END IF;
1449:

Line 1446: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

1442:
1443: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1444: RAISE FND_API.G_EXC_ERROR;
1445: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1446: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1447: END IF;
1448: END IF;
1449:
1450:

Line 1458: x_return_status := FND_API.G_RET_STS_SUCCESS;

1454: END IF;
1455:
1456:
1457: -- Initialize API return status to SUCCESS
1458: x_return_status := FND_API.G_RET_STS_SUCCESS;
1459:
1460:
1461: -- Debug Message
1462: IF g_debug THEN

Line 1474: x_return_status := FND_API.g_ret_sts_error;

1470: );
1471: EXCEPTION
1472:
1473: WHEN OZF_Utility_PVT.resource_locked THEN
1474: x_return_status := FND_API.g_ret_sts_error;
1475: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
1476:
1477: WHEN FND_API.G_EXC_ERROR THEN
1478: ROLLBACK TO VALIDATE_Ae_Header_;

Line 1477: WHEN FND_API.G_EXC_ERROR THEN

1473: WHEN OZF_Utility_PVT.resource_locked THEN
1474: x_return_status := FND_API.g_ret_sts_error;
1475: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
1476:
1477: WHEN FND_API.G_EXC_ERROR THEN
1478: ROLLBACK TO VALIDATE_Ae_Header_;
1479: x_return_status := FND_API.G_RET_STS_ERROR;
1480: -- Standard call to get message count and if count=1, get the message
1481: FND_MSG_PUB.Count_And_Get (

Line 1479: x_return_status := FND_API.G_RET_STS_ERROR;

1475: OZF_Utility_PVT.Error_Message(p_message_name => 'OZF_API_RESOURCE_LOCKED');
1476:
1477: WHEN FND_API.G_EXC_ERROR THEN
1478: ROLLBACK TO VALIDATE_Ae_Header_;
1479: x_return_status := FND_API.G_RET_STS_ERROR;
1480: -- Standard call to get message count and if count=1, get the message
1481: FND_MSG_PUB.Count_And_Get (
1482: p_encoded => FND_API.G_FALSE,
1483: p_count => x_msg_count,

Line 1482: p_encoded => FND_API.G_FALSE,

1478: ROLLBACK TO VALIDATE_Ae_Header_;
1479: x_return_status := FND_API.G_RET_STS_ERROR;
1480: -- Standard call to get message count and if count=1, get the message
1481: FND_MSG_PUB.Count_And_Get (
1482: p_encoded => FND_API.G_FALSE,
1483: p_count => x_msg_count,
1484: p_data => x_msg_data
1485: );
1486:

Line 1487: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

1483: p_count => x_msg_count,
1484: p_data => x_msg_data
1485: );
1486:
1487: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1488: ROLLBACK TO VALIDATE_Ae_Header_;
1489: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1490: -- Standard call to get message count and if count=1, get the message
1491: FND_MSG_PUB.Count_And_Get (

Line 1489: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

1485: );
1486:
1487: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1488: ROLLBACK TO VALIDATE_Ae_Header_;
1489: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1490: -- Standard call to get message count and if count=1, get the message
1491: FND_MSG_PUB.Count_And_Get (
1492: p_encoded => FND_API.G_FALSE,
1493: p_count => x_msg_count,

Line 1492: p_encoded => FND_API.G_FALSE,

1488: ROLLBACK TO VALIDATE_Ae_Header_;
1489: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1490: -- Standard call to get message count and if count=1, get the message
1491: FND_MSG_PUB.Count_And_Get (
1492: p_encoded => FND_API.G_FALSE,
1493: p_count => x_msg_count,
1494: p_data => x_msg_data
1495: );
1496:

Line 1499: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

1495: );
1496:
1497: WHEN OTHERS THEN
1498: ROLLBACK TO VALIDATE_Ae_Header_;
1499: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1500: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1501: THEN
1502: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1503: END IF;

Line 1506: p_encoded => FND_API.G_FALSE,

1502: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1503: END IF;
1504: -- Standard call to get message count and if count=1, get the message
1505: FND_MSG_PUB.Count_And_Get (
1506: p_encoded => FND_API.G_FALSE,
1507: p_count => x_msg_count,
1508: p_data => x_msg_data
1509: );
1510: End Validate_Ae_Header;

Line 1515: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

1511:
1512:
1513: PROCEDURE Validate_ae_header_rec(
1514: p_api_version_number IN NUMBER,
1515: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
1516: x_return_status OUT NOCOPY VARCHAR2,
1517: x_msg_count OUT NOCOPY NUMBER,
1518: x_msg_data OUT NOCOPY VARCHAR2,
1519: p_ae_header_rec IN ae_header_rec_type

Line 1524: IF FND_API.to_Boolean( p_init_msg_list )

1520: )
1521: IS
1522: BEGIN
1523: -- Initialize message list if p_init_msg_list is set to TRUE.
1524: IF FND_API.to_Boolean( p_init_msg_list )
1525: THEN
1526: FND_MSG_PUB.initialize;
1527: END IF;
1528:

Line 1530: x_return_status := FND_API.G_RET_STS_SUCCESS;

1526: FND_MSG_PUB.initialize;
1527: END IF;
1528:
1529: -- Initialize API return status to SUCCESS
1530: x_return_status := FND_API.G_RET_STS_SUCCESS;
1531:
1532: -- Hint: Validate data
1533: -- If data not valid
1534: -- THEN

Line 1535: -- x_return_status := FND_API.G_RET_STS_ERROR;

1531:
1532: -- Hint: Validate data
1533: -- If data not valid
1534: -- THEN
1535: -- x_return_status := FND_API.G_RET_STS_ERROR;
1536:
1537: -- Debug Message
1538: IF g_debug THEN
1539: OZF_UTILITY_PVT.debug_message('Private API: Validate_dm_model_rec');