DBA Data[Home] [Help]

APPS.CS_AUTOGEN_TASK_PVT dependencies on STANDARD

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

549: IF FND_API.To_Boolean(p_init_msg_list) THEN
550: FND_MSG_PUB.Initialize;
551: END IF;
552:
553: -- Standard call to check for call compatibility
554: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version,
555: l_api_name, G_PKG_NAME) THEN
556: FND_MSG_PUB.Count_And_Get(
557: p_count => x_msg_count,

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

758: end loop; -- While c_search_rules%found
759:
760: close c_search_rules;
761:
762: -- Standard call to get message count and if count is 1, get message info
763: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
764:
765: EXCEPTION
766: WHEN FND_API.G_EXC_ERROR THEN

Line 855: -- API standard start of API saveponit

851: Task_Creation_Failed EXCEPTION;
852:
853: BEGIN
854: -- Declare a savepoint to rollback to in case of errors in task creation.
855: -- API standard start of API saveponit
856:
857: SAVEPOINT CS_AutoGen_Task_PVT ;
858:
859: -- Initialize message list if p_init_msg_list is set to TRUE

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

860: IF FND_API.To_Boolean(p_init_msg_list) THEN
861: FND_MSG_PUB.Initialize;
862: END IF;
863:
864: -- Standard call to check for call compatibility
865: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version,
866: l_api_name, G_PKG_NAME) THEN
867: FND_MSG_PUB.Count_And_Get(
868: p_count => x_msg_count,

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

1108: End If;
1109:
1110: End If; -- If (l_call_create_task_api = TRUE)
1111:
1112: -- Standard call to get message count and if count is 1, get message info
1113: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1114:
1115: -- Standard check of p_commit
1116: IF FND_API.To_Boolean(p_commit) THEN

Line 1115: -- Standard check of p_commit

1111:
1112: -- Standard call to get message count and if count is 1, get message info
1113: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
1114:
1115: -- Standard check of p_commit
1116: IF FND_API.To_Boolean(p_commit) THEN
1117: COMMIT WORK;
1118: END IF;
1119: