DBA Data[Home] [Help]

APPS.IEM_ACT_CATG_PVT dependencies on STANDARD

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

36: l_cat_id number;
37: l_acct_cat_seq number;
38:
39: BEGIN
40: -- Standard call to check for call compatibility.
41: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
42: p_api_version_number,
43: l_api_name,
44: G_PKG_NAME)

Line 110: -- Standard Check Of p_commit.

106: p_ATTRIBUTE15
107: );
108: END LOOP;
109: END IF;
110: -- Standard Check Of p_commit.
111: IF FND_API.To_Boolean(p_commit) THEN
112: COMMIT WORK;
113: END IF;
114: -- Standard callto get message count and if count is 1, get message info.

Line 114: -- Standard callto get message count and if count is 1, get message info.

110: -- Standard Check Of p_commit.
111: IF FND_API.To_Boolean(p_commit) THEN
112: COMMIT WORK;
113: END IF;
114: -- Standard callto get message count and if count is 1, get message info.
115: FND_MSG_PUB.Count_And_Get
116: ( p_count => x_msg_count,
117: p_data => x_msg_data
118: );

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

159: l_api_version_number NUMBER:=1.0;
160: cursor c1 is select category_id from iem_account_categories
161: where email_account_id=p_email_account_id;
162: BEGIN
163: -- Standard call to check for call compatibility.
164: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
165: p_api_version_number,
166: l_api_name,
167: G_PKG_NAME)

Line 177: -- Standard Check Of p_commit.

173: open c1;
174: fetch c1 bulk collect into x_category_tbl;
175: close c1;
176:
177: -- Standard Check Of p_commit.
178: IF FND_API.To_Boolean(p_commit) THEN
179: COMMIT WORK;
180: END IF;
181: -- Standard callto get message count and if count is 1, get message info.

Line 181: -- Standard callto get message count and if count is 1, get message info.

177: -- Standard Check Of p_commit.
178: IF FND_API.To_Boolean(p_commit) THEN
179: COMMIT WORK;
180: END IF;
181: -- Standard callto get message count and if count is 1, get message info.
182: FND_MSG_PUB.Count_And_Get
183: ( p_count => x_msg_count,
184: p_data => x_msg_data
185: );

Line 234: -- Standard Start of API savepoint

230: l_msg_count NUMBER := 0;
231: l_msg_data VARCHAR2(2000);
232: CREATE_ITEM_EXCP EXCEPTION;
233: BEGIN
234: -- Standard Start of API savepoint
235: SAVEPOINT create_item_wrap_PVT;
236:
237: -- Standard call to check for call compatibility.
238: IF NOT FND_API.Compatible_API_Call (l_api_version_number,

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

233: BEGIN
234: -- Standard Start of API savepoint
235: SAVEPOINT create_item_wrap_PVT;
236:
237: -- Standard call to check for call compatibility.
238: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
239: p_api_version_number,
240: l_api_name,
241: G_PKG_NAME)

Line 286: -- Standard Check Of p_commit.

282: if (l_return_status <> FND_API.G_RET_STS_SUCCESS) then
283: raise CREATE_ITEM_EXCP;
284: x_return_status:=FND_API.G_RET_STS_SUCCESS;
285: end if;
286: -- Standard Check Of p_commit.
287: IF FND_API.To_Boolean(p_commit) THEN
288: COMMIT WORK;
289: END IF;
290: EXCEPTION