DBA Data[Home] [Help]

APPS.INV_SHORTCHECKEXEC_PVT dependencies on STANDARD

Line 218: -- Standard Call to check for call compatibility

214: END IF;
215: END Compare;
216: --
217: BEGIN
218: -- Standard Call to check for call compatibility
219: IF NOT FND_API.Compatible_API_Call(l_api_version
220: , p_api_version
221: , l_api_name
222: , G_PKG_NAME) THEN

Line 328: -- Standard check of p_commit

324: p_short_quantity =>
325: L_WIP_short_quantity + L_OE_short_quantity);
326: END IF;
327: --
328: -- Standard check of p_commit
329: IF FND_API.to_Boolean(p_commit) THEN
330: COMMIT;
331: END IF;
332: -- Standard call to get message count and if count is 1, get message info

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

328: -- Standard check of p_commit
329: IF FND_API.to_Boolean(p_commit) THEN
330: COMMIT;
331: END IF;
332: -- Standard call to get message count and if count is 1, get message info
333: FND_MSG_PUB.Count_And_Get
334: (p_count => x_msg_count
335: , p_data => x_msg_data);
336: EXCEPTION

Line 433: -- Standard Call to check for call compatibility

429: WHERE inventory_item_id = p_inventory_item_id
430: AND organization_id = p_organization_id;
431: --
432: BEGIN
433: -- Standard Call to check for call compatibility
434: IF NOT FND_API.Compatible_API_Call(l_api_version
435: , p_api_version
436: , l_api_name
437: , G_PKG_NAME) THEN

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

470: x_check_result := FND_API.G_TRUE;
471: END IF;
472: END IF;
473: --
474: -- Standard call to get message count and if count is 1, get message info
475: FND_MSG_PUB.Count_And_Get
476: (p_count => x_msg_count
477: , p_data => x_msg_data);
478: EXCEPTION

Line 743: -- Standard Call to check for call compatibility

739: -- the session's access control list.
740:
741: MO_GLOBAL.set_policy_context('S',l_org_id);
742:
743: -- Standard Call to check for call compatibility
744: IF NOT FND_API.Compatible_API_Call(l_api_version
745: , p_api_version
746: , l_api_name
747: , G_PKG_NAME) THEN

Line 837: -- Standard check of p_commit

833: WF_NOTIFICATION.Denormalize_Notification(L_notification_id);
834: --
835: END LOOP;
836: CLOSE L_ShortTemp_csr;
837: -- Standard check of p_commit
838: IF FND_API.to_Boolean(p_commit) THEN
839: COMMIT;
840: END IF;
841: -- Standard call to get message count and if count is 1, get message info

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

837: -- Standard check of p_commit
838: IF FND_API.to_Boolean(p_commit) THEN
839: COMMIT;
840: END IF;
841: -- Standard call to get message count and if count is 1, get message info
842: FND_MSG_PUB.Count_And_Get
843: (p_count => x_msg_count
844: , p_data => x_msg_data);
845: EXCEPTION

Line 919: -- Standard Call to check for call compatibility

915: IS
916: L_api_version CONSTANT NUMBER := 1.0;
917: L_api_name CONSTANT VARCHAR2(30) := 'PurgeTempTable';
918: BEGIN
919: -- Standard Call to check for call compatibility
920: IF NOT FND_API.Compatible_API_Call(l_api_version
921: , p_api_version
922: , l_api_name
923: , G_PKG_NAME) THEN

Line 939: -- Standard check of p_commit

935: -- Purge all rows with the given sequence number
936: DELETE FROM mtl_short_chk_temp
937: WHERE seq_num = p_seq_num;
938: --
939: -- Standard check of p_commit
940: IF FND_API.to_Boolean(p_commit) THEN
941: COMMIT;
942: END IF;
943: -- Standard call to get message count and if count is 1, get message info

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

939: -- Standard check of p_commit
940: IF FND_API.to_Boolean(p_commit) THEN
941: COMMIT;
942: END IF;
943: -- Standard call to get message count and if count is 1, get message info
944: FND_MSG_PUB.Count_And_Get
945: (p_count => x_msg_count
946: , p_data => x_msg_data);
947: EXCEPTION