DBA Data[Home] [Help]

APPS.AR_EBI_INVOICE_PUB dependencies on FND_MSG_PUB

Line 88: FND_MSG_PUB.initialize;

84: BEGIN
85: x_return_status := FND_API.G_RET_STS_SUCCESS;
86:
87: SAVEPOINT ar_ebi_invoice_sub_save_pnt;
88: FND_MSG_PUB.initialize;
89:
90: /* Inserting into ra_interface_lines_all Tables */
91: FOR r_lines_all IN
92: (SELECT INTERFACE_LINE_ID ,

Line 1689: FND_MSG_PUB.add;

1685: );
1686:
1687: IF l_conc_req_id = 0 THEN
1688: FND_MESSAGE.set_name('AR','AR_EBI_CONC_PRO_SUBMIT_FAILED'); /*Concurrent program submission failed!!!!!*/
1689: FND_MSG_PUB.add;
1690: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1691: END IF;
1692:
1693: x_conc_req_ids.EXTEND;

Line 1706: FND_MSG_PUB.count_and_get(

1702: EXCEPTION
1703: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1704: x_return_status := FND_API.G_RET_STS_ERROR;
1705: IF (x_err_msg IS NULL) THEN
1706: FND_MSG_PUB.count_and_get(
1707: p_encoded => FND_API.G_FALSE,
1708: p_count => l_msg_count,
1709: p_data => x_err_msg
1710: );