DBA Data[Home] [Help]

APPS.BOM_ROUTINGHEADER_PVT dependencies on STANDARD

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

71: And organization_id = P_OrgId
72: And nvl(alternate_routing_designator, 'Primary Alternate') =
73: nvl(P_Alternate, 'Primary Alternate');
74: BEGIN
75: -- Standard call to check for call compatibility.
76: IF NOT FND_API.Compatible_API_Call ( l_api_version ,
77: p_api_version ,
78: l_api_name ,
79: G_PKG_NAME )

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

265: x_routing_rec := l_routing_rec;
266:
267: -- End of API body.
268:
269: -- Standard call to get message count and if count is 1,
270: -- get message info.
271: FND_MSG_PUB.Count_And_Get
272: (p_count => x_msg_count,
273: p_data => x_msg_data

Line 540: And bos.standard_operation_id is not null

536: And exists (
537: Select null
538: From bom_operation_sequences bos
539: Where bos.routing_sequence_id = bor.routing_sequence_id
540: And bos.standard_operation_id is not null
541: );
542: BEGIN
543: -- Standard call to check for call compatibility.
544: IF NOT FND_API.Compatible_API_Call ( l_api_version,

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

539: Where bos.routing_sequence_id = bor.routing_sequence_id
540: And bos.standard_operation_id is not null
541: );
542: BEGIN
543: -- Standard call to check for call compatibility.
544: IF NOT FND_API.Compatible_API_Call ( l_api_version,
545: p_api_version,
546: l_api_name,
547: G_PKG_NAME ) THEN

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

943:
944: x_routing_rec := l_routing_rec;
945:
946: -- End of API body.
947: -- Standard call to get message count and if count is 1,
948: -- get message info.
949: FND_MSG_PUB.Count_And_Get
950: (p_count => x_msg_count,
951: p_data => x_msg_data

Line 1009: -- Standard Start of API savepoint

1005: l_return_status VARCHAR2(1);
1006: l_msg_count NUMBER;
1007: l_msg_data VARCHAR2(2000);
1008: BEGIN
1009: -- Standard Start of API savepoint
1010: SAVEPOINT CreateRouting_Pvt;
1011: -- Standard call to check for call compatibility.
1012: IF NOT FND_API.Compatible_API_Call ( l_api_version,
1013: p_api_version,

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

1007: l_msg_data VARCHAR2(2000);
1008: BEGIN
1009: -- Standard Start of API savepoint
1010: SAVEPOINT CreateRouting_Pvt;
1011: -- Standard call to check for call compatibility.
1012: IF NOT FND_API.Compatible_API_Call ( l_api_version,
1013: p_api_version,
1014: l_api_name,
1015: G_PKG_NAME )

Line 1304: -- Standard check of p_commit.

1300:
1301: x_routing_rec := l_routing_rec;
1302:
1303: -- End of API body.
1304: -- Standard check of p_commit.
1305: IF FND_API.To_Boolean( p_commit ) THEN
1306: COMMIT WORK;
1307: END IF;
1308: -- Standard call to get message count and if count is 1,

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

1304: -- Standard check of p_commit.
1305: IF FND_API.To_Boolean( p_commit ) THEN
1306: COMMIT WORK;
1307: END IF;
1308: -- Standard call to get message count and if count is 1,
1309: -- get message info.
1310: FND_MSG_PUB.Count_And_Get
1311: (p_count => x_msg_count,
1312: p_data => x_msg_data

Line 1383: -- Standard Start of API savepoint

1379: nvl(p_alternate, 'primary alternate')
1380: );
1381: l_RowFound boolean := false; -- old routing found
1382: BEGIN
1383: -- Standard Start of API savepoint
1384: SAVEPOINT UpdateRouting_Pvt;
1385: -- Standard call to check for call compatibility.
1386: IF NOT FND_API.Compatible_API_Call(
1387: l_api_version,

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

1381: l_RowFound boolean := false; -- old routing found
1382: BEGIN
1383: -- Standard Start of API savepoint
1384: SAVEPOINT UpdateRouting_Pvt;
1385: -- Standard call to check for call compatibility.
1386: IF NOT FND_API.Compatible_API_Call(
1387: l_api_version,
1388: p_api_version,
1389: l_api_name,

Line 1623: -- Standard check of p_commit.

1619:
1620: x_routing_rec := l_routing_rec;
1621: -- End of API body.
1622:
1623: -- Standard check of p_commit.
1624: IF FND_API.To_Boolean(p_commit) THEN
1625: COMMIT WORK;
1626: END IF;
1627: -- Standard call to get message count and if count is 1, get message info.

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

1623: -- Standard check of p_commit.
1624: IF FND_API.To_Boolean(p_commit) THEN
1625: COMMIT WORK;
1626: END IF;
1627: -- Standard call to get message count and if count is 1, get message info.
1628: FND_MSG_PUB.Count_And_Get(
1629: p_count => x_msg_count,
1630: p_data => x_msg_data);
1631: EXCEPTION

Line 1700: -- Standard Start of API savepoint

1696: And organization_id = P_OrgId;
1697: l_routing constant number := 3; -- delete type
1698: l_ReturnCode number;
1699: BEGIN
1700: -- Standard Start of API savepoint
1701: SAVEPOINT DeleteRouting_Pvt;
1702: -- Standard call to check for call compatibility.
1703: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name,
1704: G_PKG_NAME) THEN

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

1698: l_ReturnCode number;
1699: BEGIN
1700: -- Standard Start of API savepoint
1701: SAVEPOINT DeleteRouting_Pvt;
1702: -- Standard call to check for call compatibility.
1703: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name,
1704: G_PKG_NAME) THEN
1705: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1706: END IF;

Line 1784: -- Standard check of p_commit.

1780:
1781: x_routing_rec := l_routing_rec;
1782: -- End of API body.
1783:
1784: -- Standard check of p_commit.
1785: IF FND_API.To_Boolean(p_commit) THEN
1786: COMMIT WORK;
1787: END IF;
1788: -- Standard call to get message count and if count is 1, get message info.

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

1784: -- Standard check of p_commit.
1785: IF FND_API.To_Boolean(p_commit) THEN
1786: COMMIT WORK;
1787: END IF;
1788: -- Standard call to get message count and if count is 1, get message info.
1789: FND_MSG_PUB.Count_And_Get(
1790: p_count => x_msg_count,
1791: p_data => x_msg_data
1792: );

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

1841: l_routing_rec bom_routingheader_pvt.routing_rec_type;
1842: x_routing_rec bom_routingheader_pvt.routing_rec_type;
1843: BEGIN
1844: SAVEPOINT createrouting_pvt;
1845: -- Standard call to check for call compatibility.
1846: IF NOT fnd_api.compatible_api_call(l_api_version,
1847: p_api_version,
1848: l_api_name,
1849: G_PKG_NAME)