DBA Data[Home] [Help]

APPS.BIS_IMPL_DEV_PKG dependencies on FND_MSG_PUB

Line 74: FND_MSG_PUB.initialize;

70: begin
71: -- Initialize API message list if necessary.
72: -- Initialize message list if p_init_msg_list is set to TRUE.
73: IF FND_API.to_Boolean( p_init_msg_list ) THEN
74: FND_MSG_PUB.initialize;
75: END IF;
76:
77: insert into bis_obj_prog_linkages (
78: OBJECT_TYPE,

Line 135: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get

131: -- Make a standard call to get message count
132: -- and if count is 1, get message info.
133: -- The client will directly display the x_msg_data (which is already
134: -- translated) if the x_msg_count = 1;
135: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
136: -- Server-side procedure to access the messages, and consolidate them
137: -- and display them all at once or display one message after another.
138:
139: FND_MSG_PUB.Count_And_Get

Line 139: FND_MSG_PUB.Count_And_Get

135: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
136: -- Server-side procedure to access the messages, and consolidate them
137: -- and display them all at once or display one message after another.
138:
139: FND_MSG_PUB.Count_And_Get
140: ( p_count => x_msg_count,
141: p_data => x_msg_data
142: );
143:

Line 149: IF FND_MSG_PUB.Check_Msg_Level

145: when no_data_found then
146: return;
147: when others then
148: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
149: IF FND_MSG_PUB.Check_Msg_Level
150: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
151: THEN
152: FND_MSG_PUB.Add_Exc_Msg
153: ( G_PKG_NAME,

Line 150: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

146: return;
147: when others then
148: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
149: IF FND_MSG_PUB.Check_Msg_Level
150: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
151: THEN
152: FND_MSG_PUB.Add_Exc_Msg
153: ( G_PKG_NAME,
154: l_api_name

Line 152: FND_MSG_PUB.Add_Exc_Msg

148: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
149: IF FND_MSG_PUB.Check_Msg_Level
150: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
151: THEN
152: FND_MSG_PUB.Add_Exc_Msg
153: ( G_PKG_NAME,
154: l_api_name
155: );
156: END IF;

Line 157: FND_MSG_PUB.Count_And_Get

153: ( G_PKG_NAME,
154: l_api_name
155: );
156: END IF;
157: FND_MSG_PUB.Count_And_Get
158: ( p_count => x_msg_count,
159: p_data => x_msg_data
160: );
161: x_msg_data := 'Executing - '||G_PKG_NAME||'.'||l_api_name||' '||SQLERRM;

Line 244: FND_MSG_PUB.initialize;

240: begin
241: -- Initialize API message list if necessary.
242: -- Initialize message list if p_init_msg_list is set to TRUE.
243: IF FND_API.to_Boolean( p_init_msg_list ) THEN
244: FND_MSG_PUB.initialize;
245: END IF;
246:
247: if (P_ROWID is not null) then
248: update bis_obj_prog_linkages

Line 280: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get

276: -- Make a standard call to get message count
277: -- and if count is 1, get message info.
278: -- The client will directly display the x_msg_data (which is already
279: -- translated) if the x_msg_count = 1;
280: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
281: -- Server-side procedure to access the messages, and consolidate them
282: -- and display them all at once or display one message after another.
283:
284: FND_MSG_PUB.Count_And_Get

Line 284: FND_MSG_PUB.Count_And_Get

280: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
281: -- Server-side procedure to access the messages, and consolidate them
282: -- and display them all at once or display one message after another.
283:
284: FND_MSG_PUB.Count_And_Get
285: ( p_count => x_msg_count,
286: p_data => x_msg_data
287: );
288:

Line 294: IF FND_MSG_PUB.Check_Msg_Level

290: when no_data_found then
291: return;
292: when others then
293: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
294: IF FND_MSG_PUB.Check_Msg_Level
295: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
296: THEN
297: FND_MSG_PUB.Add_Exc_Msg
298: ( G_PKG_NAME,

Line 295: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

291: return;
292: when others then
293: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
294: IF FND_MSG_PUB.Check_Msg_Level
295: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
296: THEN
297: FND_MSG_PUB.Add_Exc_Msg
298: ( G_PKG_NAME,
299: l_api_name

Line 297: FND_MSG_PUB.Add_Exc_Msg

293: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
294: IF FND_MSG_PUB.Check_Msg_Level
295: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
296: THEN
297: FND_MSG_PUB.Add_Exc_Msg
298: ( G_PKG_NAME,
299: l_api_name
300: );
301: END IF;

Line 302: FND_MSG_PUB.Count_And_Get

298: ( G_PKG_NAME,
299: l_api_name
300: );
301: END IF;
302: FND_MSG_PUB.Count_And_Get
303: ( p_count => x_msg_count,
304: p_data => x_msg_data
305: );
306: x_msg_data := 'Executing - '||G_PKG_NAME||'.'||l_api_name||' '||SQLERRM;

Line 938: FND_MSG_PUB.initialize;

934: begin
935: -- Initialize API message list if necessary.
936: -- Initialize message list if p_init_msg_list is set to TRUE.
937: IF FND_API.to_Boolean( p_init_msg_list ) THEN
938: FND_MSG_PUB.initialize;
939: END IF;
940:
941: insert into bis_obj_dependency (
942: OBJECT_TYPE,

Line 1016: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get

1012: -- Make a standard call to get message count
1013: -- and if count is 1, get message info.
1014: -- The client will directly display the x_msg_data (which is already
1015: -- translated) if the x_msg_count = 1;
1016: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
1017: -- Server-side procedure to access the messages, and consolidate them
1018: -- and display them all at once or display one message after another.
1019:
1020: FND_MSG_PUB.Count_And_Get

Line 1020: FND_MSG_PUB.Count_And_Get

1016: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
1017: -- Server-side procedure to access the messages, and consolidate them
1018: -- and display them all at once or display one message after another.
1019:
1020: FND_MSG_PUB.Count_And_Get
1021: ( p_count => x_msg_count,
1022: p_data => x_msg_data
1023: );
1024: exception

Line 1029: IF FND_MSG_PUB.Check_Msg_Level

1025: when no_data_found then
1026: return;
1027: when others then
1028: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1029: IF FND_MSG_PUB.Check_Msg_Level
1030: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1031: THEN
1032: FND_MSG_PUB.Add_Exc_Msg
1033: ( G_PKG_NAME,

Line 1030: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1026: return;
1027: when others then
1028: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1029: IF FND_MSG_PUB.Check_Msg_Level
1030: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1031: THEN
1032: FND_MSG_PUB.Add_Exc_Msg
1033: ( G_PKG_NAME,
1034: l_api_name

Line 1032: FND_MSG_PUB.Add_Exc_Msg

1028: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1029: IF FND_MSG_PUB.Check_Msg_Level
1030: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1031: THEN
1032: FND_MSG_PUB.Add_Exc_Msg
1033: ( G_PKG_NAME,
1034: l_api_name
1035: );
1036: END IF;

Line 1037: FND_MSG_PUB.Count_And_Get

1033: ( G_PKG_NAME,
1034: l_api_name
1035: );
1036: END IF;
1037: FND_MSG_PUB.Count_And_Get
1038: ( p_count => x_msg_count,
1039: p_data => x_msg_data
1040: );
1041: x_msg_data := 'Executing - '||G_PKG_NAME||'.'||l_api_name||' '||SQLERRM;

Line 1135: FND_MSG_PUB.initialize;

1131: begin
1132: -- Initialize API message list if necessary.
1133: -- Initialize message list if p_init_msg_list is set to TRUE.
1134: IF FND_API.to_Boolean( p_init_msg_list ) THEN
1135: FND_MSG_PUB.initialize;
1136: END IF;
1137:
1138: if (P_ROWID IS NOT NULL) THEN
1139: update bis_obj_dependency

Line 1201: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get

1197: -- Make a standard call to get message count
1198: -- and if count is 1, get message info.
1199: -- The client will directly display the x_msg_data (which is already
1200: -- translated) if the x_msg_count = 1;
1201: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
1202: -- Server-side procedure to access the messages, and consolidate them
1203: -- and display them all at once or display one message after another.
1204:
1205: FND_MSG_PUB.Count_And_Get

Line 1205: FND_MSG_PUB.Count_And_Get

1201: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
1202: -- Server-side procedure to access the messages, and consolidate them
1203: -- and display them all at once or display one message after another.
1204:
1205: FND_MSG_PUB.Count_And_Get
1206: ( p_count => x_msg_count,
1207: p_data => x_msg_data
1208: );
1209:

Line 1215: IF FND_MSG_PUB.Check_Msg_Level

1211: when no_data_found then
1212: return;
1213: when others then
1214: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1215: IF FND_MSG_PUB.Check_Msg_Level
1216: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1217: THEN
1218: FND_MSG_PUB.Add_Exc_Msg
1219: ( G_PKG_NAME,

Line 1216: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1212: return;
1213: when others then
1214: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1215: IF FND_MSG_PUB.Check_Msg_Level
1216: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1217: THEN
1218: FND_MSG_PUB.Add_Exc_Msg
1219: ( G_PKG_NAME,
1220: l_api_name

Line 1218: FND_MSG_PUB.Add_Exc_Msg

1214: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1215: IF FND_MSG_PUB.Check_Msg_Level
1216: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1217: THEN
1218: FND_MSG_PUB.Add_Exc_Msg
1219: ( G_PKG_NAME,
1220: l_api_name
1221: );
1222: END IF;

Line 1223: FND_MSG_PUB.Count_And_Get

1219: ( G_PKG_NAME,
1220: l_api_name
1221: );
1222: END IF;
1223: FND_MSG_PUB.Count_And_Get
1224: ( p_count => x_msg_count,
1225: p_data => x_msg_data
1226: );
1227: x_msg_data := 'Executing - '||G_PKG_NAME||'.'||l_api_name||' '||SQLERRM;

Line 1327: FND_MSG_PUB.initialize;

1323: begin
1324: -- Initialize API message list if necessary.
1325: -- Initialize message list if p_init_msg_list is set to TRUE.
1326: IF FND_API.to_Boolean( p_init_msg_list ) THEN
1327: FND_MSG_PUB.initialize;
1328: END IF;
1329:
1330: insert into bis_obj_properties (
1331: OBJECT_TYPE,

Line 1364: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get

1360: -- Make a standard call to get message count
1361: -- and if count is 1, get message info.
1362: -- The client will directly display the x_msg_data (which is already
1363: -- translated) if the x_msg_count = 1;
1364: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
1365: -- Server-side procedure to access the messages, and consolidate them
1366: -- and display them all at once or display one message after another.
1367:
1368: FND_MSG_PUB.Count_And_Get

Line 1368: FND_MSG_PUB.Count_And_Get

1364: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
1365: -- Server-side procedure to access the messages, and consolidate them
1366: -- and display them all at once or display one message after another.
1367:
1368: FND_MSG_PUB.Count_And_Get
1369: ( p_count => x_msg_count,
1370: p_data => x_msg_data
1371: );
1372: exception

Line 1377: IF FND_MSG_PUB.Check_Msg_Level

1373: when no_data_found then
1374: return;
1375: when others then
1376: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1377: IF FND_MSG_PUB.Check_Msg_Level
1378: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1379: THEN
1380: FND_MSG_PUB.Add_Exc_Msg
1381: ( G_PKG_NAME,

Line 1378: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1374: return;
1375: when others then
1376: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1377: IF FND_MSG_PUB.Check_Msg_Level
1378: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1379: THEN
1380: FND_MSG_PUB.Add_Exc_Msg
1381: ( G_PKG_NAME,
1382: l_api_name

Line 1380: FND_MSG_PUB.Add_Exc_Msg

1376: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1377: IF FND_MSG_PUB.Check_Msg_Level
1378: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1379: THEN
1380: FND_MSG_PUB.Add_Exc_Msg
1381: ( G_PKG_NAME,
1382: l_api_name
1383: );
1384: END IF;

Line 1385: FND_MSG_PUB.Count_And_Get

1381: ( G_PKG_NAME,
1382: l_api_name
1383: );
1384: END IF;
1385: FND_MSG_PUB.Count_And_Get
1386: ( p_count => x_msg_count,
1387: p_data => x_msg_data
1388: );
1389: x_msg_data := 'Executing - '||G_PKG_NAME||'.'||l_api_name||' '||SQLERRM;

Line 1483: FND_MSG_PUB.initialize;

1479: begin
1480: -- Initialize API message list if necessary.
1481: -- Initialize message list if p_init_msg_list is set to TRUE.
1482: IF FND_API.to_Boolean( p_init_msg_list ) THEN
1483: FND_MSG_PUB.initialize;
1484: END IF;
1485:
1486: update bis_obj_properties
1487: set

Line 1506: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get

1502: -- Make a standard call to get message count
1503: -- and if count is 1, get message info.
1504: -- The client will directly display the x_msg_data (which is already
1505: -- translated) if the x_msg_count = 1;
1506: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
1507: -- Server-side procedure to access the messages, and consolidate them
1508: -- and display them all at once or display one message after another.
1509:
1510: FND_MSG_PUB.Count_And_Get

Line 1510: FND_MSG_PUB.Count_And_Get

1506: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
1507: -- Server-side procedure to access the messages, and consolidate them
1508: -- and display them all at once or display one message after another.
1509:
1510: FND_MSG_PUB.Count_And_Get
1511: ( p_count => x_msg_count,
1512: p_data => x_msg_data
1513: );
1514:

Line 1520: IF FND_MSG_PUB.Check_Msg_Level

1516: when no_data_found then
1517: return;
1518: when others then
1519: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1520: IF FND_MSG_PUB.Check_Msg_Level
1521: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1522: THEN
1523: FND_MSG_PUB.Add_Exc_Msg
1524: ( G_PKG_NAME,

Line 1521: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1517: return;
1518: when others then
1519: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1520: IF FND_MSG_PUB.Check_Msg_Level
1521: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1522: THEN
1523: FND_MSG_PUB.Add_Exc_Msg
1524: ( G_PKG_NAME,
1525: l_api_name

Line 1523: FND_MSG_PUB.Add_Exc_Msg

1519: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1520: IF FND_MSG_PUB.Check_Msg_Level
1521: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1522: THEN
1523: FND_MSG_PUB.Add_Exc_Msg
1524: ( G_PKG_NAME,
1525: l_api_name
1526: );
1527: END IF;

Line 1528: FND_MSG_PUB.Count_And_Get

1524: ( G_PKG_NAME,
1525: l_api_name
1526: );
1527: END IF;
1528: FND_MSG_PUB.Count_And_Get
1529: ( p_count => x_msg_count,
1530: p_data => x_msg_data
1531: );
1532: x_msg_data := 'Executing - '||G_PKG_NAME||'.'||l_api_name||' '||SQLERRM;

Line 1608: FND_MSG_PUB.initialize;

1604: begin
1605: -- Initialize API message list if necessary.
1606: -- Initialize message list if p_init_msg_list is set to TRUE.
1607: IF FND_API.to_Boolean( p_init_msg_list ) THEN
1608: FND_MSG_PUB.initialize;
1609: END IF;
1610:
1611: update bis_obj_properties
1612: set

Line 1630: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get

1626: -- Make a standard call to get message count
1627: -- and if count is 1, get message info.
1628: -- The client will directly display the x_msg_data (which is already
1629: -- translated) if the x_msg_count = 1;
1630: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
1631: -- Server-side procedure to access the messages, and consolidate them
1632: -- and display them all at once or display one message after another.
1633:
1634: FND_MSG_PUB.Count_And_Get

Line 1634: FND_MSG_PUB.Count_And_Get

1630: -- Else, i.e. if x_msg_count > 1, client will call the FND_MSG_PUB.Get
1631: -- Server-side procedure to access the messages, and consolidate them
1632: -- and display them all at once or display one message after another.
1633:
1634: FND_MSG_PUB.Count_And_Get
1635: ( p_count => x_msg_count,
1636: p_data => x_msg_data
1637: );
1638:

Line 1644: IF FND_MSG_PUB.Check_Msg_Level

1640: when no_data_found then
1641: return;
1642: when others then
1643: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1644: IF FND_MSG_PUB.Check_Msg_Level
1645: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1646: THEN
1647: FND_MSG_PUB.Add_Exc_Msg
1648: ( G_PKG_NAME,

Line 1645: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

1641: return;
1642: when others then
1643: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1644: IF FND_MSG_PUB.Check_Msg_Level
1645: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1646: THEN
1647: FND_MSG_PUB.Add_Exc_Msg
1648: ( G_PKG_NAME,
1649: l_api_name

Line 1647: FND_MSG_PUB.Add_Exc_Msg

1643: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1644: IF FND_MSG_PUB.Check_Msg_Level
1645: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1646: THEN
1647: FND_MSG_PUB.Add_Exc_Msg
1648: ( G_PKG_NAME,
1649: l_api_name
1650: );
1651: END IF;

Line 1652: FND_MSG_PUB.Count_And_Get

1648: ( G_PKG_NAME,
1649: l_api_name
1650: );
1651: END IF;
1652: FND_MSG_PUB.Count_And_Get
1653: ( p_count => x_msg_count,
1654: p_data => x_msg_data
1655: );
1656: x_msg_data := 'Executing - '||G_PKG_NAME||'.'||l_api_name||' '||SQLERRM;