DBA Data[Home] [Help]

APPS.ZPB_DC_WF dependencies on FND_MSG_PUB

Line 663: FND_MSG_PUB.initialize ;

659: END IF;
660:
661:
662: IF FND_API.to_Boolean ( p_init_msg_list ) THEN
663: FND_MSG_PUB.initialize ;
664: END IF;
665:
666: x_return_status := FND_API.G_RET_STS_SUCCESS ;
667: -- Initialize the parameters

Line 759: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,

755:
756: COMMIT;
757:
758: --
759: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,
760: p_data => x_msg_data ) ;
761: --
762: EXCEPTION
763: --

Line 768: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

764: when FND_API.G_EXC_ERROR then
765: --
766: rollback to Raise_Distribution_Event ;
767: x_return_status := FND_API.G_RET_STS_ERROR;
768: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
769: p_data => x_msg_data);
770: --
771: when FND_API.G_EXC_UNEXPECTED_ERROR then
772: --

Line 775: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

771: when FND_API.G_EXC_UNEXPECTED_ERROR then
772: --
773: rollback to Raise_Distribution_Event ;
774: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
775: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
776: p_data => x_msg_data);
777: --
778: when OTHERS then
779: --

Line 782: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

778: when OTHERS then
779: --
780: rollback to Raise_Distribution_Event ;
781: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
782: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
783: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,
784: l_api_name);
785: END if;
786: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

Line 783: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,

779: --
780: rollback to Raise_Distribution_Event ;
781: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
782: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
783: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,
784: l_api_name);
785: END if;
786: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
787: p_data => x_msg_data);

Line 786: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

782: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
783: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,
784: l_api_name);
785: END if;
786: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
787: p_data => x_msg_data);
788: --
789:
790:

Line 1421: FND_MSG_PUB.initialize ;

1417: RAISE FND_API.G_EXC_UNEXPECTED_ERROR ;
1418: END IF;
1419:
1420: IF FND_API.to_Boolean ( p_init_msg_list ) THEN
1421: FND_MSG_PUB.initialize ;
1422: END IF;
1423:
1424: x_return_status := FND_API.G_RET_STS_SUCCESS ;
1425:

Line 1578: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,

1574:
1575: COMMIT;
1576:
1577: --
1578: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,
1579: p_data => x_msg_data ) ;
1580: --
1581: EXCEPTION
1582: --

Line 1587: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

1583: when FND_API.G_EXC_ERROR then
1584: --
1585: rollback to Raise_Submission_Event ;
1586: x_return_status := FND_API.G_RET_STS_ERROR;
1587: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
1588: p_data => x_msg_data);
1589: --
1590: when FND_API.G_EXC_UNEXPECTED_ERROR then
1591: --

Line 1594: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

1590: when FND_API.G_EXC_UNEXPECTED_ERROR then
1591: --
1592: rollback to Raise_Submission_Event ;
1593: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1594: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
1595: p_data => x_msg_data);
1596: --
1597: when OTHERS then
1598: --

Line 1601: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

1597: when OTHERS then
1598: --
1599: rollback to Raise_Submission_Event ;
1600: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1601: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
1602: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,
1603: l_api_name);
1604: END if;
1605: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

Line 1602: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,

1598: --
1599: rollback to Raise_Submission_Event ;
1600: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1601: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
1602: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,
1603: l_api_name);
1604: END if;
1605: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
1606: p_data => x_msg_data);

Line 1605: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

1601: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
1602: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,
1603: l_api_name);
1604: END if;
1605: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
1606: p_data => x_msg_data);
1607: --
1608:
1609:

Line 2478: FND_MSG_PUB.initialize ;

2474: END IF;
2475:
2476:
2477: IF FND_API.to_Boolean ( p_init_msg_list ) THEN
2478: FND_MSG_PUB.initialize ;
2479: END IF;
2480:
2481: x_return_status := FND_API.G_RET_STS_SUCCESS ;
2482:

Line 2593: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,

2589: p_approver_user_id => p_approver_user_id,
2590: p_approval_date => sysdate);
2591:
2592: --
2593: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,
2594: p_data => x_msg_data ) ;
2595: --
2596: EXCEPTION
2597: --

Line 2602: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

2598: when FND_API.G_EXC_ERROR then
2599: --
2600: rollback to Raise_Approval_Event ;
2601: x_return_status := FND_API.G_RET_STS_ERROR;
2602: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
2603: p_data => x_msg_data);
2604: --
2605: when FND_API.G_EXC_UNEXPECTED_ERROR then
2606: --

Line 2609: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

2605: when FND_API.G_EXC_UNEXPECTED_ERROR then
2606: --
2607: rollback to Raise_Approval_Event ;
2608: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2609: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
2610: p_data => x_msg_data);
2611: --
2612: when OTHERS then
2613: --

Line 2616: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

2612: when OTHERS then
2613: --
2614: rollback to Raise_Approval_Event ;
2615: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2616: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
2617: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,
2618: l_api_name);
2619: END if;
2620: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

Line 2617: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,

2613: --
2614: rollback to Raise_Approval_Event ;
2615: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2616: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
2617: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,
2618: l_api_name);
2619: END if;
2620: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
2621: p_data => x_msg_data);

Line 2620: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

2616: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
2617: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,
2618: l_api_name);
2619: END if;
2620: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
2621: p_data => x_msg_data);
2622: --
2623:
2624:

Line 2684: FND_MSG_PUB.initialize ;

2680: END IF;
2681:
2682:
2683: IF FND_API.to_Boolean ( p_init_msg_list ) THEN
2684: FND_MSG_PUB.initialize ;
2685: END IF;
2686:
2687: x_return_status := FND_API.G_RET_STS_SUCCESS ;
2688:

Line 2804: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,

2800: p_approver_user_id => p_approver_user_id,
2801: p_approval_date => sysdate);
2802:
2803: --
2804: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,
2805: p_data => x_msg_data ) ;
2806: --
2807: EXCEPTION
2808: --

Line 2813: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

2809: when FND_API.G_EXC_ERROR then
2810: --
2811: rollback to Raise_Rejection_Event ;
2812: x_return_status := FND_API.G_RET_STS_ERROR;
2813: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
2814: p_data => x_msg_data);
2815: --
2816: when FND_API.G_EXC_UNEXPECTED_ERROR then
2817: --

Line 2820: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

2816: when FND_API.G_EXC_UNEXPECTED_ERROR then
2817: --
2818: rollback to Raise_Rejection_Event ;
2819: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2820: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
2821: p_data => x_msg_data);
2822: --
2823: when OTHERS then
2824: --

Line 2827: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

2823: when OTHERS then
2824: --
2825: rollback to Raise_Rejection_Event ;
2826: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2827: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
2828: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,
2829: l_api_name);
2830: END if;
2831: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

Line 2828: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,

2824: --
2825: rollback to Raise_Rejection_Event ;
2826: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2827: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
2828: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,
2829: l_api_name);
2830: END if;
2831: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
2832: p_data => x_msg_data);

Line 2831: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

2827: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
2828: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,
2829: l_api_name);
2830: END if;
2831: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
2832: p_data => x_msg_data);
2833: --
2834:
2835: