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 1726: FND_MSG_PUB.add;

1722: ,'', '', '', '', '', '', '', '', '', '');
1723:
1724: IF l_conc_req_id = 0 THEN
1725: FND_MESSAGE.set_name('AR','AR_EBI_CONC_PRO_SUBMIT_FAILED'); /*Concurrent program submission failed!!!!!*/
1726: FND_MSG_PUB.add;
1727: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1728: END IF;
1729:
1730: x_conc_req_ids.EXTEND;

Line 1743: FND_MSG_PUB.count_and_get(

1739: EXCEPTION
1740: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1741: x_return_status := FND_API.G_RET_STS_ERROR;
1742: IF (x_err_msg IS NULL) THEN
1743: FND_MSG_PUB.count_and_get(
1744: p_encoded => FND_API.G_FALSE,
1745: p_count => l_msg_count,
1746: p_data => x_err_msg
1747: );