DBA Data[Home] [Help]

APPS.AHL_AVF_PRIM_VSTS_PVT dependencies on STANDARD

Line 35: -- Standard IN Parameters :

31: -- Type : Private
32: -- Function : Validate MR operating organization and returns maintenance organization defined for it
33: -- Parameters :
34: --
35: -- Standard IN Parameters :
36: -- p_api_version IN NUMBER Required
37: -- p_init_msg_list IN VARCHAR2 Optional
38: -- p_commit IN VARCHAR2 Optional
39: -- p_validation_level IN NUMBER Optional

Line 532: --Standard check for commit

528: 'At the end of PL SQL Procedure.');
529: END IF;
530:
531: -- Proceed to commit if status is 'S' or if there were only validation errors
532: --Standard check for commit
533: IF Fnd_Api.TO_BOOLEAN(p_commit) THEN
534: COMMIT;
535: END IF;
536: ----- EXCEPTIONS--------------------------------------

Line 811: -- Standard IN Parameters :

807: -- Type : Private
808: -- Function : Validate MR operating organization and returns maintenance organization defined for it
809: -- Parameters :
810: --
811: -- Standard IN Parameters :
812: -- p_api_version IN NUMBER Required
813: -- p_init_msg_list IN VARCHAR2 Optional
814: -- p_commit IN VARCHAR2 Optional
815: -- p_validation_level IN NUMBER Optional

Line 1031: -- Standard IN Parameters :

1027: -- Type : Private
1028: -- Function : Procedure to create primary visits based on auto visit hierarchy and on primary UEs
1029: -- Parameters :
1030: --
1031: -- Standard IN Parameters :
1032: -- p_api_version IN NUMBER Required
1033: -- p_init_msg_list IN VARCHAR2 Default FND_API.G_FALSE
1034: -- p_validation_level IN NUMBER Default FND_API.G_VALID_LEVEL_FULL
1035: --

Line 1036: -- Standard OUT Parameters :

1032: -- p_api_version IN NUMBER Required
1033: -- p_init_msg_list IN VARCHAR2 Default FND_API.G_FALSE
1034: -- p_validation_level IN NUMBER Default FND_API.G_VALID_LEVEL_FULL
1035: --
1036: -- Standard OUT Parameters :
1037: -- x_return_status OUT VARCHAR2 Required
1038: -- x_msg_count OUT NUMBER Required
1039: -- x_msg_data OUT VARCHAR2 Required
1040: --

Line 1057: -- Standard in/out parameters

1053: x_msg_data OUT NOCOPY VARCHAR2)IS
1054:
1055: -- Local Variables
1056:
1057: -- Standard in/out parameters
1058: l_api_name VARCHAR2(30) := 'Create_Primary_Visits';
1059: l_api_version NUMBER := 1.0;
1060: l_debug_key CONSTANT VARCHAR2(100) := 'ahl.plsql.' || G_PKG_NAME || '.' || L_API_NAME;
1061: l_msg_count NUMBER;

Line 1185: -- Standard start of API savepoint

1181: 'At the start of PLSQL procedure, snapshot ID : ' || p_snapshot_id
1182: );
1183: END IF;
1184:
1185: -- Standard start of API savepoint
1186: SAVEPOINT Create_Primary_Visits_pvt;
1187:
1188: -- Initialize message list if p_init_msg_list is set to TRUE
1189:

Line 1197: -- Standard call to check for call compatibility.

1193:
1194: -- Initialize API return status to success
1195: x_return_status := FND_API.G_RET_STS_SUCCESS;
1196:
1197: -- Standard call to check for call compatibility.
1198: IF NOT Fnd_Api.COMPATIBLE_API_CALL(l_api_version,
1199: p_api_version,
1200: l_api_name,G_PKG_NAME)
1201: THEN

Line 1802: -- Standard check of p_commit.

1798:
1799:
1800: ---------------------------End of Body-------------------------------------
1801: -- END of API body.
1802: -- Standard check of p_commit.
1803:
1804: IF Fnd_Api.To_Boolean (p_commit) THEN
1805: COMMIT WORK;
1806: END IF;

Line 1892: -- Standard start of API savepoint

1888: l_cancel_visit_flag VARCHAR2(1);
1889:
1890: BEGIN
1891:
1892: -- Standard start of API savepoint
1893: SAVEPOINT Process_Primary_visits;
1894:
1895: -- 1. Initialize error message stack by default
1896: FND_MSG_PUB.Initialize;

Line 1898: -- Standard call to check for call compatibility

1894:
1895: -- 1. Initialize error message stack by default
1896: FND_MSG_PUB.Initialize;
1897:
1898: -- Standard call to check for call compatibility
1899: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
1900: retcode := 2;
1901: errbuf := FND_MSG_PUB.Get;
1902: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;