DBA Data[Home] [Help]

APPS.AS_LEAD_ROUTING_WF_CUHK dependencies on STANDARD

Line 58: -- The above four parameters are standard input.

54: -- p_api_version_number:
55: -- p_init_msg_list :
56: -- p_validation_level :
57: -- p_commit :
58: -- The above four parameters are standard input.
59: -- p_resource_id_tbl :
60: -- p_group_id_tbl :
61: -- p_person_id_tbl :
62: -- The above three parameters store the available

Line 91: -- The above three parameters are standard output.

87: -- will be decided based upon Oracle's logic.
88: -- x_return_status :
89: -- x_msg_count :
90: -- x_msg_data :
91: -- The above three parameters are standard output.
92: --
93: PROCEDURE Get_Owner_Pre(
94: p_api_version_number IN NUMBER,
95: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

Line 156: -- Standard Start of API savepoint

152: l_person_id NUMBER;
153: l_customer_id NUMBER;
154: l_address_id NUMBER;
155: BEGIN
156: -- Standard Start of API savepoint
157: SAVEPOINT GET_OWNER_PRE_PVT;
158:
159: -- Standard call to check for call compatibility.
160: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

155: BEGIN
156: -- Standard Start of API savepoint
157: SAVEPOINT GET_OWNER_PRE_PVT;
158:
159: -- Standard call to check for call compatibility.
160: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,
161: p_api_version_number,
162: l_api_name,
163: G_PKG_NAME)

Line 248: -- Standard check for p_commit

244: --
245: -- END of API body
246: --
247:
248: -- Standard check for p_commit
249: IF FND_API.to_Boolean( p_commit )
250: THEN
251: COMMIT WORK;
252: END IF;

Line 258: -- Standard call to get message count and IF count is 1, get message info.

254: -- Debug Message
255: AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW,
256: 'PVT: ' || l_api_name || ' End');
257:
258: -- Standard call to get message count and IF count is 1, get message info.
259: FND_MSG_PUB.Count_And_Get
260: ( p_count => x_msg_count,
261: p_data => x_msg_data );
262: