DBA Data[Home] [Help]

APPS.ARP_CASHBOOK dependencies on FND_API

Line 1866: p_init_msg_list => FND_API.G_TRUE,

1862:
1863: BEGIN
1864:
1865: AR_RECEIPT_API_PUB.Reverse(p_api_version => 1.0,
1866: p_init_msg_list => FND_API.G_TRUE,
1867: x_return_status => l_return_status,
1868: x_msg_count => l_msg_count,
1869: x_msg_data => l_msg_data,
1870: p_cash_receipt_id => p_cr_id,

Line 1906: l_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,FND_API.G_FALSE);

1902: +-------------------------------------------------------*/
1903:
1904: FOR l_count IN 1..l_msg_count LOOP
1905:
1906: l_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,FND_API.G_FALSE);
1907: IF PG_DEBUG in ('Y', 'C') THEN
1908: arp_util.debug('reverse: ' || to_char(l_count)||' : '||l_msg_data);
1909: END IF;
1910:

Line 1920: IF l_return_status = FND_API.G_RET_STS_SUCCESS Then

1916:
1917: /*-----------------------------------------------------+
1918: | If API return status is not SUCCESS raise exception |
1919: +-----------------------------------------------------*/
1920: IF l_return_status = FND_API.G_RET_STS_SUCCESS Then
1921:
1922: /*-----------------------------------------------------+
1923: | Success do nothing, else branch introduced to make |
1924: | sure that NULL case will also raise exception |

Line 1944: FND_MSG_PUB.Get (FND_MSG_PUB.G_FIRST, FND_API.G_TRUE, l_msg_data, l_msg_index);

1940: WHEN API_exception THEN
1941: IF PG_DEBUG in ('Y', 'C') THEN
1942: arp_util.debug('API Exception: arp_cashbook.reverse '||SQLERRM);
1943: END IF;
1944: FND_MSG_PUB.Get (FND_MSG_PUB.G_FIRST, FND_API.G_TRUE, l_msg_data, l_msg_index);
1945: FND_MESSAGE.Set_Encoded (l_msg_data);
1946: app_exception.raise_exception;
1947:
1948: WHEN OTHERS THEN