DBA Data[Home] [Help]

APPS.ASO_CONTRACT_TERMS_INT dependencies on FND_API

Line 36: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

32:
33:
34: PROCEDURE Get_Article_Variable_Values (
35: p_api_version IN NUMBER,
36: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
37: x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2,
38: x_msg_count OUT NOCOPY /* file.sql.39 change */ NUMBER,
39: x_msg_data OUT NOCOPY /* file.sql.39 change */ VARCHAR2,
40: p_doc_id IN NUMBER,

Line 89: IF NOT fnd_api.compatible_api_call (

85:
86: BEGIN
87:
88: -- Standard call to check for call compatibility.
89: IF NOT fnd_api.compatible_api_call (
90: l_api_version,
91: p_api_version,
92: l_api_name,
93: g_pkg_name

Line 96: RAISE fnd_api.g_exc_unexpected_error;

92: l_api_name,
93: g_pkg_name
94: )
95: THEN
96: RAISE fnd_api.g_exc_unexpected_error;
97: END IF;
98:
99: -- Initialize message list if p_init_msg_list is set to TRUE.
100: IF fnd_api.to_boolean (

Line 100: IF fnd_api.to_boolean (

96: RAISE fnd_api.g_exc_unexpected_error;
97: END IF;
98:
99: -- Initialize message list if p_init_msg_list is set to TRUE.
100: IF fnd_api.to_boolean (
101: p_init_msg_list
102: )
103: THEN
104: fnd_msg_pub.initialize;

Line 108: x_return_status := fnd_api.g_ret_sts_success;

104: fnd_msg_pub.initialize;
105: END IF;
106:
107: -- Initialize API return status to SUCCESS
108: x_return_status := fnd_api.g_ret_sts_success;
109:
110: --
111: -- API body
112: --

Line 384: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

380: END Get_Article_Variable_Values;
381:
382: PROCEDURE Get_Line_Variable_Values (
383: p_api_version IN NUMBER,
384: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
385: x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2,
386: x_msg_count OUT NOCOPY /* file.sql.39 change */ NUMBER,
387: x_msg_data OUT NOCOPY /* file.sql.39 change */ VARCHAR2,
388: p_doc_id IN NUMBER,

Line 402: IF NOT fnd_api.compatible_api_call (

398:
399: BEGIN
400:
401: -- Standard call to check for call compatibility.
402: IF NOT fnd_api.compatible_api_call (
403: l_api_version,
404: p_api_version,
405: l_api_name,
406: g_pkg_name

Line 409: RAISE fnd_api.g_exc_unexpected_error;

405: l_api_name,
406: g_pkg_name
407: )
408: THEN
409: RAISE fnd_api.g_exc_unexpected_error;
410: END IF;
411:
412: -- Initialize message list if p_init_msg_list is set to TRUE.
413: IF fnd_api.to_boolean (

Line 413: IF fnd_api.to_boolean (

409: RAISE fnd_api.g_exc_unexpected_error;
410: END IF;
411:
412: -- Initialize message list if p_init_msg_list is set to TRUE.
413: IF fnd_api.to_boolean (
414: p_init_msg_list
415: )
416: THEN
417: fnd_msg_pub.initialize;

Line 421: x_return_status := fnd_api.g_ret_sts_success;

417: fnd_msg_pub.initialize;
418: END IF;
419:
420: -- Initialize API return status to SUCCESS
421: x_return_status := fnd_api.g_ret_sts_success;
422:
423: --
424: -- API body
425: --

Line 523: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

519: END Get_Line_Variable_Values;
520:
521: FUNCTION OK_To_Commit (
522: p_api_version IN NUMBER,
523: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
524: x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2,
525: x_msg_count OUT NOCOPY /* file.sql.39 change */ NUMBER,
526: x_msg_data OUT NOCOPY /* file.sql.39 change */ VARCHAR2,
527: p_doc_id IN NUMBER,

Line 539: l_return VARCHAR2 (1) := FND_API.G_TRUE;

535: l_update_allowed VARCHAR2 (1);
536: l_quote_version NUMBER;
537: l_quote_expiration_date DATE;
538: l_price_request_id NUMBER;
539: l_return VARCHAR2 (1) := FND_API.G_TRUE;
540:
541: l_status_override VARCHAR2(1); -- bug 8811226
542:
543: CURSOR c_quote_header

Line 554: IF NOT fnd_api.compatible_api_call (

550:
551: BEGIN
552:
553: -- Standard call to check for call compatibility.
554: IF NOT fnd_api.compatible_api_call (
555: l_api_version,
556: p_api_version,
557: l_api_name,
558: g_pkg_name

Line 561: RAISE fnd_api.g_exc_unexpected_error;

557: l_api_name,
558: g_pkg_name
559: )
560: THEN
561: RAISE fnd_api.g_exc_unexpected_error;
562: END IF;
563:
564: -- Initialize message list if p_init_msg_list is set to TRUE.
565: IF fnd_api.to_boolean (

Line 565: IF fnd_api.to_boolean (

561: RAISE fnd_api.g_exc_unexpected_error;
562: END IF;
563:
564: -- Initialize message list if p_init_msg_list is set to TRUE.
565: IF fnd_api.to_boolean (
566: p_init_msg_list
567: )
568: THEN
569: fnd_msg_pub.initialize;

Line 573: x_return_status := fnd_api.g_ret_sts_success;

569: fnd_msg_pub.initialize;
570: END IF;
571:
572: -- Initialize API return status to SUCCESS
573: x_return_status := fnd_api.g_ret_sts_success;
574:
575: --
576: -- API body
577: --

Line 613: l_return := FND_API.G_FALSE;

609: END IF;
610:
611: IF p_doc_type <> 'QUOTE'
612: THEN
613: l_return := FND_API.G_FALSE;
614: ELSE
615:
616: OPEN c_quote_header ;
617: FETCH c_quote_header INTO l_update_allowed, l_quote_expiration_date,

Line 621: l_return := FND_API.G_FALSE;

617: FETCH c_quote_header INTO l_update_allowed, l_quote_expiration_date,
618: l_max_version_flag, l_price_request_id;
619: IF (c_quote_header%NOTFOUND)
620: THEN
621: l_return := FND_API.G_FALSE;
622: END IF;
623: CLOSE c_quote_header;
624:
625: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN

Line 671: l_return := FND_API.G_FALSE;

667: OR l_update_allowed = 'N'
668: OR l_max_version_flag = 'N'
669: OR l_price_request_id IS NOT NULL
670: THEN
671: l_return := FND_API.G_FALSE;
672: END IF;
673:
674: END IF;
675: --