DBA Data[Home] [Help]

APPS.OZF_ACTFORECAST_PVT dependencies on STANDARD

Line 205: -- Standard API information constants.

201: x_forecast_id OUT NOCOPY NUMBER
202: )
203: IS
204: --
205: -- Standard API information constants.
206: --
207: L_API_VERSION CONSTANT NUMBER := 1.0;
208: L_API_NAME CONSTANT VARCHAR2(30) := 'CREATE_ACTFORECAST';
209: L_FULL_NAME CONSTANT VARCHAR2(60) := G_PKG_NAME ||'.'|| L_API_NAME;

Line 250: -- Standard check for API version compatibility.

246: FND_MSG_PUB.Initialize;
247: END IF;
248:
249: --
250: -- Standard check for API version compatibility.
251: --
252: IF NOT FND_API.Compatible_API_Call (L_API_VERSION,
253: p_api_version,
254: L_API_NAME,

Line 489: -- Standard check for commit request.

485: -- End API Body.
486: --
487:
488: --
489: -- Standard check for commit request.
490: --
491: IF FND_API.To_Boolean (p_commit) THEN
492: COMMIT WORK;
493: END IF;

Line 496: -- Standard API to get message count, and if 1,

492: COMMIT WORK;
493: END IF;
494:
495: --
496: -- Standard API to get message count, and if 1,
497: -- set the message data OUT NOCOPY variable.
498: --
499: FND_MSG_PUB.Count_And_Get (
500: p_count => x_msg_count,

Line 615: -- Standard check for API version compatibility.

611: FND_MSG_PUB.Initialize;
612: END IF;
613:
614: --
615: -- Standard check for API version compatibility.
616: --
617: IF NOT FND_API.Compatible_API_Call (L_API_VERSION,
618: p_api_version,
619: L_API_NAME,

Line 797: -- Standard API to get message count, and if 1,

793: COMMIT;
794: END IF;
795:
796: --
797: -- Standard API to get message count, and if 1,
798: -- set the message data OUT NOCOPY variable.
799: --
800: FND_MSG_PUB.Count_And_Get (
801: p_count => x_msg_count,

Line 901: -- Standard check for API version compatibility.

897: FND_MSG_PUB.Initialize;
898: END IF;
899:
900: --
901: -- Standard check for API version compatibility.
902: --
903: IF NOT FND_API.Compatible_API_Call (L_API_VERSION,
904: p_api_version,
905: L_API_NAME,

Line 983: -- Standard API to get message count, and if 1,

979: END IF;
980:
981:
982: --
983: -- Standard API to get message count, and if 1,
984: -- set the message data OUT NOCOPY variable.
985: --
986: FND_MSG_PUB.Count_And_Get (
987: p_count => x_msg_count,

Line 1076: -- Standard check for API version compatibility.

1072: FND_MSG_PUB.Initialize;
1073: END IF;
1074:
1075: --
1076: -- Standard check for API version compatibility.
1077: --
1078: IF NOT FND_API.Compatible_API_Call (L_API_VERSION,
1079: p_api_version,
1080: L_API_NAME,

Line 1116: -- Standard API to get message count, and if 1,

1112: CLOSE c_act_forecast_info;
1113:
1114:
1115: --
1116: -- Standard API to get message count, and if 1,
1117: -- set the message data OUT NOCOPY variable.
1118: --
1119: FND_MSG_PUB.Count_And_Get (
1120: p_count => x_msg_count,

Line 1227: -- Standard check for API version compatibility.

1223: FND_MSG_PUB.Initialize;
1224: END IF;
1225:
1226: --
1227: -- Standard check for API version compatibility.
1228: --
1229: IF NOT FND_API.Compatible_API_Call (L_API_VERSION,
1230: p_api_version,
1231: L_API_NAME,

Line 1315: -- Standard API to get message count, and if 1,

1311: -- End API Body.
1312: --
1313:
1314: --
1315: -- Standard API to get message count, and if 1,
1316: -- set the message data OUT NOCOPY variable.
1317: --
1318: FND_MSG_PUB.Count_And_Get (
1319: p_count => x_msg_count,

Line 1861: l_item_name VARCHAR2(30); -- Used to standardize error messages.

1857: p_act_forecast_rec IN act_forecast_rec_type,
1858: x_return_status OUT NOCOPY VARCHAR2
1859: )
1860: IS
1861: l_item_name VARCHAR2(30); -- Used to standardize error messages.
1862: l_act_forecast_rec act_forecast_rec_type := p_act_forecast_rec;
1863: l_return_status VARCHAR2(1);
1864:
1865: