DBA Data[Home] [Help]

APPS.PON_BIZ_EVENTS_PVT dependencies on FND_MSG_PUB

Line 944: FND_MSG_PUB.INITIALIZE;

940: -- value to p_init_msg_list in case this initialization is not
941: -- wanted
942: --
943: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
944: FND_MSG_PUB.INITIALIZE;
945: END IF;
946:
947: g_err_loc := '10.2 Checked and called FND_MSG_PUB.INITIALIZE';
948: LOG_MESSAGE('raise_event', g_err_loc);

Line 947: g_err_loc := '10.2 Checked and called FND_MSG_PUB.INITIALIZE';

943: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
944: FND_MSG_PUB.INITIALIZE;
945: END IF;
946:
947: g_err_loc := '10.2 Checked and called FND_MSG_PUB.INITIALIZE';
948: LOG_MESSAGE('raise_event', g_err_loc);
949:
950: -- Get the db session context
951: l_org_id := FND_PROFILE.VALUE( NAME => 'ORG_ID' );

Line 1023: FND_MSG_PUB.ADD;

1019: ROLLBACK TO pon_biz_event_raise_event;
1020:
1021: FND_MESSAGE.SET_NAME('PON','PON_GENERIC_ERR');
1022: FND_MESSAGE.SET_TOKEN('TOKEN', g_err_loc|| ' :' || SQLCODE || ' :' || SQLERRM);
1023: FND_MSG_PUB.ADD;
1024: LOG_MESSAGE('raise_event', 'An error in the raise_event procedure. Error at:'||g_err_loc || ' :' || SQLCODE || ' :' || SQLERRM);
1025:
1026: FND_MSG_PUB.COUNT_AND_GET( p_count => x_msg_count,
1027: p_data => x_msg_data);

Line 1026: FND_MSG_PUB.COUNT_AND_GET( p_count => x_msg_count,

1022: FND_MESSAGE.SET_TOKEN('TOKEN', g_err_loc|| ' :' || SQLCODE || ' :' || SQLERRM);
1023: FND_MSG_PUB.ADD;
1024: LOG_MESSAGE('raise_event', 'An error in the raise_event procedure. Error at:'||g_err_loc || ' :' || SQLCODE || ' :' || SQLERRM);
1025:
1026: FND_MSG_PUB.COUNT_AND_GET( p_count => x_msg_count,
1027: p_data => x_msg_data);
1028:
1029: END RAISE_EVENT;
1030: