DBA Data[Home] [Help]

APPS.BIS_VG_UTIL dependencies on FND_MSG_PUB

Line 1188: IF (fnd_msg_pub.check_msg_level(p_msg_level) = TRUE) THEN

1184: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
1185: )
1186: IS
1187: BEGIN
1188: IF (fnd_msg_pub.check_msg_level(p_msg_level) = TRUE) THEN
1189: fnd_message.set_name(BIS_VG_TYPES.message_application, p_msg_name);
1190: fnd_msg_pub.ADD;
1191: END IF;
1192:

Line 1190: fnd_msg_pub.ADD;

1186: IS
1187: BEGIN
1188: IF (fnd_msg_pub.check_msg_level(p_msg_level) = TRUE) THEN
1189: fnd_message.set_name(BIS_VG_TYPES.message_application, p_msg_name);
1190: fnd_msg_pub.ADD;
1191: END IF;
1192:
1193: EXCEPTION
1194: when FND_API.G_EXC_ERROR then

Line 1224: IF (fnd_msg_pub.check_msg_level(p_msg_level) = TRUE) THEN

1220: )
1221: IS
1222:
1223: BEGIN
1224: IF (fnd_msg_pub.check_msg_level(p_msg_level) = TRUE) THEN
1225: fnd_message.set_name(BIS_VG_TYPES.message_application, p_msg_name);
1226: fnd_message.set_token(p_token1, p_value1);
1227: fnd_msg_pub.ADD;
1228: END IF;

Line 1227: fnd_msg_pub.ADD;

1223: BEGIN
1224: IF (fnd_msg_pub.check_msg_level(p_msg_level) = TRUE) THEN
1225: fnd_message.set_name(BIS_VG_TYPES.message_application, p_msg_name);
1226: fnd_message.set_token(p_token1, p_value1);
1227: fnd_msg_pub.ADD;
1228: END IF;
1229:
1230: EXCEPTION
1231: when FND_API.G_EXC_ERROR then

Line 1262: IF (fnd_msg_pub.check_msg_level(p_msg_level) = TRUE) THEN

1258: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
1259: )
1260: IS
1261: BEGIN
1262: IF (fnd_msg_pub.check_msg_level(p_msg_level) = TRUE) THEN
1263: fnd_message.set_name(BIS_VG_TYPES.message_application, p_msg_name);
1264: fnd_message.set_token(p_token1, p_value1);
1265: fnd_message.set_token(p_token2, p_value2);
1266: fnd_msg_pub.ADD;

Line 1266: fnd_msg_pub.ADD;

1262: IF (fnd_msg_pub.check_msg_level(p_msg_level) = TRUE) THEN
1263: fnd_message.set_name(BIS_VG_TYPES.message_application, p_msg_name);
1264: fnd_message.set_token(p_token1, p_value1);
1265: fnd_message.set_token(p_token2, p_value2);
1266: fnd_msg_pub.ADD;
1267: END IF;
1268:
1269: EXCEPTION
1270: when FND_API.G_EXC_ERROR then

Line 1303: IF (fnd_msg_pub.check_msg_level(p_msg_level) = TRUE) THEN

1299: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
1300: )
1301: IS
1302: BEGIN
1303: IF (fnd_msg_pub.check_msg_level(p_msg_level) = TRUE) THEN
1304: fnd_message.set_name(BIS_VG_TYPES.message_application, p_msg_name);
1305: fnd_message.set_token(p_token1, p_value1);
1306: fnd_message.set_token(p_token2, p_value2);
1307: fnd_message.set_token(p_token3, p_value3);

Line 1308: fnd_msg_pub.ADD;

1304: fnd_message.set_name(BIS_VG_TYPES.message_application, p_msg_name);
1305: fnd_message.set_token(p_token1, p_value1);
1306: fnd_message.set_token(p_token2, p_value2);
1307: fnd_message.set_token(p_token3, p_value3);
1308: fnd_msg_pub.ADD;
1309: END IF;
1310:
1311: EXCEPTION
1312: when FND_API.G_EXC_ERROR then

Line 1335: , p_error_msg_level IN NUMBER := FND_MSG_PUB.G_MSG_LVL_ERROR

1331: -- these procedure check and puts the error message on the message stack
1332: --
1333: PROCEDURE Add_Error_Message
1334: ( p_error_msg_name IN VARCHAR2
1335: , p_error_msg_level IN NUMBER := FND_MSG_PUB.G_MSG_LVL_ERROR
1336: , p_error_proc_name IN VARCHAR2 := NULL
1337: , p_error_type IN VARCHAR2 := BIS_VG_UTIL.G_ERROR
1338: , p_error_table IN BIS_VG_UTIL.Error_Tbl_Type
1339: , x_error_table OUT BIS_VG_UTIL.Error_Tbl_Type

Line 1346: IF (fnd_msg_pub.check_msg_level(p_error_msg_level) = TRUE) THEN

1342: --
1343: l_error_rec BIS_VG_UTIL.Error_Rec_Type;
1344: --
1345: BEGIN
1346: IF (fnd_msg_pub.check_msg_level(p_error_msg_level) = TRUE) THEN
1347: fnd_message.set_name(BIS_VG_TYPES.message_application, p_error_msg_name);
1348:
1349: l_error_rec.Error_Msg_ID := NULL;
1350: l_error_rec.Error_Msg_Name := p_error_msg_name;

Line 1362: , p_error_msg_level IN NUMBER := FND_MSG_PUB.G_MSG_LVL_ERROR

1358: END Add_Error_Message;
1359:
1360: PROCEDURE Add_Error_Message
1361: ( p_error_msg_name IN VARCHAR2
1362: , p_error_msg_level IN NUMBER := FND_MSG_PUB.G_MSG_LVL_ERROR
1363: , p_error_proc_name IN VARCHAR2 := NULL
1364: , p_error_type IN VARCHAR2 := BIS_VG_UTIL.G_ERROR
1365: , p_token1 IN VARCHAR2
1366: , p_value1 IN VARCHAR2

Line 1376: IF (fnd_msg_pub.check_msg_level(p_error_msg_level) = TRUE) THEN

1372: l_error_rec BIS_VG_UTIL.Error_Rec_Type;
1373: --
1374: BEGIN
1375:
1376: IF (fnd_msg_pub.check_msg_level(p_error_msg_level) = TRUE) THEN
1377: fnd_message.set_name(BIS_VG_TYPES.message_application, p_error_msg_name);
1378: fnd_message.set_token(p_token1, p_value1);
1379:
1380: l_error_rec.Error_Msg_ID := NULL;

Line 1394: , p_error_msg_level IN NUMBER := FND_MSG_PUB.G_MSG_LVL_ERROR

1390: END Add_Error_Message;
1391:
1392: PROCEDURE Add_Error_Message
1393: ( p_error_msg_name IN VARCHAR2
1394: , p_error_msg_level IN NUMBER := FND_MSG_PUB.G_MSG_LVL_ERROR
1395: , p_error_proc_name IN VARCHAR2 := NULL
1396: , p_error_type IN VARCHAR2 := BIS_VG_UTIL.G_ERROR
1397: , p_token1 IN VARCHAR2
1398: , p_value1 IN VARCHAR2

Line 1410: IF (fnd_msg_pub.check_msg_level(p_error_msg_level) = TRUE) THEN

1406: l_error_rec BIS_VG_UTIL.Error_Rec_Type;
1407: --
1408: BEGIN
1409:
1410: IF (fnd_msg_pub.check_msg_level(p_error_msg_level) = TRUE) THEN
1411: fnd_message.set_name(BIS_VG_TYPES.message_application, p_error_msg_name);
1412: fnd_message.set_token(p_token1, p_value1);
1413: fnd_message.set_token(p_token2, p_value2);
1414:

Line 1428: , p_error_msg_level IN NUMBER := FND_MSG_PUB.G_MSG_LVL_ERROR

1424: END Add_Error_Message;
1425:
1426: PROCEDURE Add_Error_Message
1427: ( p_error_msg_name IN VARCHAR2
1428: , p_error_msg_level IN NUMBER := FND_MSG_PUB.G_MSG_LVL_ERROR
1429: , p_error_proc_name IN VARCHAR2 := NULL
1430: , p_error_type IN VARCHAR2 := BIS_VG_UTIL.G_ERROR
1431: , p_token1 IN VARCHAR2
1432: , p_value1 IN VARCHAR2

Line 1446: IF (fnd_msg_pub.check_msg_level(p_error_msg_level) = TRUE) THEN

1442: l_error_rec BIS_VG_UTIL.Error_Rec_Type;
1443: --
1444: BEGIN
1445:
1446: IF (fnd_msg_pub.check_msg_level(p_error_msg_level) = TRUE) THEN
1447: fnd_message.set_name(BIS_VG_TYPES.message_application, p_error_msg_name);
1448: fnd_message.set_token(p_token1, p_value1);
1449: fnd_message.set_token(p_token2, p_value2);
1450: fnd_message.set_token(p_token3, p_value3);