DBA Data[Home] [Help]

APPS.AHL_PRD_DISPOSITION_PVT dependencies on STANDARD

Line 240: --Standard Start of API savepoint

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

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

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

Line 772: -- Standard IN Parameters :

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

Line 777: -- Standard OUT Parameters :

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

Line 826: -- Standard start of API savepoint

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

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

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

Line 893: -- Standard check of p_commit

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

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

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

Line 4923: -- Standard start of API savepoint

4919: l_match_flag boolean;
4920: l_trackable_flag VARCHAR2(1);
4921: --
4922: BEGIN
4923: -- Standard start of API savepoint
4924: SAVEPOINT Validate_Disp_Types_Pvt;
4925:
4926: -- Initialize Procedure return status to success
4927: x_return_status := FND_API.G_RET_STS_SUCCESS;