DBA Data[Home] [Help]

APPS.AHL_PRD_DISPOSITION_PVT dependencies on STANDARD

Line 238: --Standard Start of API savepoint

234: BEGIN
235: --Initialize API return status to success
236: x_return_status := FND_API.G_RET_STS_SUCCESS;
237:
238: --Standard Start of API savepoint
239: SAVEPOINT create_job_dispositions;
240:
241: --Standard call to check for call compatibility.
242: IF NOT FND_API.compatible_api_call(

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

237:
238: --Standard Start of API savepoint
239: SAVEPOINT create_job_dispositions;
240:
241: --Standard call to check for call compatibility.
242: IF NOT FND_API.compatible_api_call(
243: l_api_version,
244: p_api_version,
245: l_api_name,

Line 769: -- Standard IN Parameters :

765: -- Function : create or update a disposition based on the input from disposition record.
766: -- Pre-reqs :
767: -- Parameters :
768: --
769: -- Standard IN Parameters :
770: -- p_api_version IN NUMBER Default 1.0
771: -- p_init_msg_list IN VARCHAR2 Default FND_API.G_TRUE
772: -- p_commit IN VARCHAR2 Default FND_API.G_FALSE
773: -- p_validation_level IN NUMBER Default FND_API.G_VALID_LEVEL_FULL

Line 774: -- Standard OUT Parameters :

770: -- p_api_version IN NUMBER Default 1.0
771: -- p_init_msg_list IN VARCHAR2 Default FND_API.G_TRUE
772: -- p_commit IN VARCHAR2 Default FND_API.G_FALSE
773: -- p_validation_level IN NUMBER Default FND_API.G_VALID_LEVEL_FULL
774: -- Standard OUT Parameters :
775: -- x_return_status OUT VARCHAR2 Required
776: -- x_msg_count OUT NUMBER Required
777: -- x_msg_data OUT VARCHAR2 Required
778: --

Line 823: -- Standard start of API savepoint

819: l_prev_err_count NUMBER;
820:
821: BEGIN
822:
823: -- Standard start of API savepoint
824: SAVEPOINT process_disposition_pvt;
825: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
826: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, L_DEBUG_KEY || '.begin', 'Entering Procedure');
827: END IF;

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

826: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, L_DEBUG_KEY || '.begin', 'Entering Procedure');
827: END IF;
828:
829: --dbms_output.put_line(SubStr('Begin Process_Disposition', 1, 255));
830: -- Standard call to check for call compatibility
831: IF NOT FND_API.Compatible_API_Call( l_api_version, p_api_version,l_api_name, G_PKG_NAME )
832: THEN
833: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
834: END IF;

Line 890: -- Standard check of p_commit

886: IF x_msg_count - l_prev_err_count > 0 THEN
887: RAISE FND_API.G_EXC_ERROR;
888: END IF;
889:
890: -- Standard check of p_commit
891: IF FND_API.TO_BOOLEAN(p_commit) THEN
892: COMMIT WORK;
893: END IF;
894:

Line 895: -- Standard call to get message count and if count is 1, get message info

891: IF FND_API.TO_BOOLEAN(p_commit) THEN
892: COMMIT WORK;
893: END IF;
894:
895: -- Standard call to get message count and if count is 1, get message info
896: FND_MSG_PUB.Count_And_Get
897: ( p_count => x_msg_count,
898: p_data => x_msg_data,
899: p_encoded => fnd_api.g_false

Line 4463: -- Standard start of API savepoint

4459: l_match_flag boolean;
4460: l_trackable_flag VARCHAR2(1);
4461: --
4462: BEGIN
4463: -- Standard start of API savepoint
4464: SAVEPOINT Validate_Disp_Types_Pvt;
4465:
4466: -- Initialize Procedure return status to success
4467: x_return_status := FND_API.G_RET_STS_SUCCESS;