DBA Data[Home] [Help]

APPS.CSFW_TASKS_PUB dependencies on FND_MSG_PUB

Line 442: fnd_msg_pub.get

438: commit work;
439: ELSE
440: FOR l_counter IN 1 .. l_msg_count
441: LOOP
442: fnd_msg_pub.get
443: ( p_msg_index => l_counter
444: , p_encoded => FND_API.G_FALSE
445: , p_data => l_data
446: , p_msg_index_out => l_msg_index_out

Line 529: fnd_msg_pub.get

525: x_error := FND_API.G_RET_STS_SUCCESS;
526: ELSE
527: FOR l_counter IN 1 .. l_msg_count
528: LOOP
529: fnd_msg_pub.get
530: ( p_msg_index => l_counter
531: , p_encoded => FND_API.G_FALSE
532: , p_data => l_data
533: , p_msg_index_out => l_msg_index_out

Line 546: fnd_msg_pub.get

542:
543: ELSE
544: FOR l_counter IN 1 .. l_msg_count
545: LOOP
546: fnd_msg_pub.get
547: ( p_msg_index => l_counter
548: , p_encoded => FND_API.G_FALSE
549: , p_data => l_data
550: , p_msg_index_out => l_msg_index_out

Line 562: fnd_msg_pub.get

558:
559: ELSE
560: FOR l_counter IN 1 .. l_msg_count
561: LOOP
562: fnd_msg_pub.get
563: ( p_msg_index => l_counter
564: , p_encoded => FND_API.G_FALSE
565: , p_data => l_data
566: , p_msg_index_out => l_msg_index_out

Line 935: fnd_msg_pub.get

931: x_error := FND_API.G_RET_STS_SUCCESS;
932: ELSE
933: FOR l_counter IN 1 .. l_msg_count
934: LOOP
935: fnd_msg_pub.get
936: ( p_msg_index => l_counter
937: , p_encoded => FND_API.G_FALSE
938: , p_data => l_data
939: , p_msg_index_out => l_msg_index_out

Line 1432: fnd_msg_pub.get

1428: ELSE
1429: x_error_id := 2;
1430: FOR l_counter IN 1 .. x_msg_count
1431: LOOP
1432: fnd_msg_pub.get
1433: ( p_msg_index => l_counter
1434: , p_encoded => FND_API.G_FALSE
1435: , p_data => l_data
1436: , p_msg_index_out => l_msg_index_out

Line 1628: fnd_msg_pub.get

1624: commit;
1625: ELSE
1626: FOR l_counter IN 1 .. x_msg_count
1627: LOOP
1628: fnd_msg_pub.get
1629: ( p_msg_index => l_counter
1630: , p_encoded => FND_API.G_FALSE
1631: , p_data => l_data
1632: , p_msg_index_out => l_msg_index_out

Line 1796: x_error := fnd_msg_pub.get(p_msg_index => l_cnt, p_encoded => fnd_api.g_true);

1792:
1793: -- Going inside loop to check for messages...
1794: FOR l_cnt IN 1..x_msg_count
1795: LOOP
1796: x_error := fnd_msg_pub.get(p_msg_index => l_cnt, p_encoded => fnd_api.g_true);
1797: IF INSTR(x_error, 'CSR_TASK_OVERLAP', 1, 1) > 0 THEN -- Check for the overlap message code.
1798: l_overlap_msg_index := l_cnt; --this is the index of the overlap error message.
1799: --ELSE
1800: --fnd_msg_pub.delete_msg(l_cnt);

Line 1800: --fnd_msg_pub.delete_msg(l_cnt);

1796: x_error := fnd_msg_pub.get(p_msg_index => l_cnt, p_encoded => fnd_api.g_true);
1797: IF INSTR(x_error, 'CSR_TASK_OVERLAP', 1, 1) > 0 THEN -- Check for the overlap message code.
1798: l_overlap_msg_index := l_cnt; --this is the index of the overlap error message.
1799: --ELSE
1800: --fnd_msg_pub.delete_msg(l_cnt);
1801: END IF;
1802: END LOOP;
1803:
1804: -- Rollback the transaction if there is an overlap message.

Line 1807: fnd_msg_pub.get(p_msg_index => l_overlap_msg_index, p_encoded => fnd_api.g_false, p_data => x_error, p_msg_index_out => l_msg_count);

1803:
1804: -- Rollback the transaction if there is an overlap message.
1805: IF l_overlap_msg_index > 0 THEN
1806: -- Getting decoded overlap message...
1807: fnd_msg_pub.get(p_msg_index => l_overlap_msg_index, p_encoded => fnd_api.g_false, p_data => x_error, p_msg_index_out => l_msg_count);
1808: ROLLBACK TO before_sch_date;
1809: ELSE
1810: fnd_msg_pub.initialize;
1811: x_msg_count := 0;

Line 1810: fnd_msg_pub.initialize;

1806: -- Getting decoded overlap message...
1807: fnd_msg_pub.get(p_msg_index => l_overlap_msg_index, p_encoded => fnd_api.g_false, p_data => x_error, p_msg_index_out => l_msg_count);
1808: ROLLBACK TO before_sch_date;
1809: ELSE
1810: fnd_msg_pub.initialize;
1811: x_msg_count := 0;
1812: x_error := null;
1813: COMMIT;
1814: END IF;

Line 1821: --fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_error);

1817:
1818: EXCEPTION
1819: WHEN fnd_api.g_exc_error THEN
1820: x_return_status := fnd_api.g_ret_sts_error;
1821: --fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_error);
1822: fnd_msg_pub.get(p_msg_index => x_msg_count, p_encoded => fnd_api.g_false, p_data => x_error, p_msg_index_out => l_msg_count);
1823: WHEN fnd_api.g_exc_unexpected_error THEN
1824: x_return_status := fnd_api.g_ret_sts_unexp_error;
1825: --fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_error);

Line 1822: fnd_msg_pub.get(p_msg_index => x_msg_count, p_encoded => fnd_api.g_false, p_data => x_error, p_msg_index_out => l_msg_count);

1818: EXCEPTION
1819: WHEN fnd_api.g_exc_error THEN
1820: x_return_status := fnd_api.g_ret_sts_error;
1821: --fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_error);
1822: fnd_msg_pub.get(p_msg_index => x_msg_count, p_encoded => fnd_api.g_false, p_data => x_error, p_msg_index_out => l_msg_count);
1823: WHEN fnd_api.g_exc_unexpected_error THEN
1824: x_return_status := fnd_api.g_ret_sts_unexp_error;
1825: --fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_error);
1826: fnd_msg_pub.get(p_msg_index => x_msg_count, p_encoded => fnd_api.g_false, p_data => x_error, p_msg_index_out => l_msg_count);

Line 1825: --fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_error);

1821: --fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_error);
1822: fnd_msg_pub.get(p_msg_index => x_msg_count, p_encoded => fnd_api.g_false, p_data => x_error, p_msg_index_out => l_msg_count);
1823: WHEN fnd_api.g_exc_unexpected_error THEN
1824: x_return_status := fnd_api.g_ret_sts_unexp_error;
1825: --fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_error);
1826: fnd_msg_pub.get(p_msg_index => x_msg_count, p_encoded => fnd_api.g_false, p_data => x_error, p_msg_index_out => l_msg_count);
1827: WHEN OTHERS THEN
1828: x_error := SQLERRM;
1829: END UPDATE_SCH_DATE_TASK;

Line 1826: fnd_msg_pub.get(p_msg_index => x_msg_count, p_encoded => fnd_api.g_false, p_data => x_error, p_msg_index_out => l_msg_count);

1822: fnd_msg_pub.get(p_msg_index => x_msg_count, p_encoded => fnd_api.g_false, p_data => x_error, p_msg_index_out => l_msg_count);
1823: WHEN fnd_api.g_exc_unexpected_error THEN
1824: x_return_status := fnd_api.g_ret_sts_unexp_error;
1825: --fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_error);
1826: fnd_msg_pub.get(p_msg_index => x_msg_count, p_encoded => fnd_api.g_false, p_data => x_error, p_msg_index_out => l_msg_count);
1827: WHEN OTHERS THEN
1828: x_error := SQLERRM;
1829: END UPDATE_SCH_DATE_TASK;
1830: