DBA Data[Home] [Help]

APPS.AR_INVOICE_API_PUB dependencies on FND_MESSAGE

Line 489: x_msg_data := arp_standard.fnd_message('AR_INAPI_TABLES_EMPTY');

485:
486: IF (l_trx_header_tbl.COUNT = 0) OR (l_trx_lines_tbl.COUNT = 0) THEN
487: ROLLBACK to Create_Invoice;
488: x_return_status := fnd_api.g_ret_sts_unexp_error;
489: x_msg_data := arp_standard.fnd_message('AR_INAPI_TABLES_EMPTY');
490: RETURN;
491: END IF;
492:
493: IF pg_debug = 'Y'

Line 941: x_msg_data := arp_standard.fnd_message('AR_INAPI_MULTIPLE_HEADERS');

937:
938: IF ( nvl(l_no_of_records,0) > 1 )
939: THEN
940: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
941: x_msg_data := arp_standard.fnd_message('AR_INAPI_MULTIPLE_HEADERS');
942: return;
943: END IF;
944:
945: AR_INVOICE_API_PUB.g_customer_trx_id := NULL; -- manishri, Bug 9915107.

Line 1886: l_message := fnd_message.get;

1882: | Get any messages that have been put on the regular message stack |
1883: | and add them to the error list. |
1884: +-------------------------------------------------------------------*/
1885:
1886: l_message := fnd_message.get;
1887:
1888: WHILE l_message IS NOT NULL LOOP
1889:
1890: arp_trx_validate.Add_To_Error_List(

Line 1901: l_message := fnd_message.get;

1897: p_message_name => 'GENERIC_MESSAGE',
1898: p_token_name_1 => 'GENERIC_TEXT',
1899: p_token_1 => l_message );
1900:
1901: l_message := fnd_message.get;
1902:
1903: END LOOP;
1904:
1905: