DBA Data[Home] [Help]

APPS.ARP_BR_HOUSEKEEPER_PKG dependencies on AR_RECEIPT_API_PUB

Line 946: AR_RECEIPT_API_PUB.Create_and_apply(

942:
943: /*------------------------------------------------+
944: | Call Receipt API to create and apply a receipt |
945: +------------------------------------------------*/
946: AR_RECEIPT_API_PUB.Create_and_apply(
947: p_api_version => 1.0,
948: p_init_msg_list => FND_API.G_TRUE,
949: x_return_status => l_return_status,
950: x_msg_count => l_msg_count,

Line 984: write_debug_and_log('API error count : AR_RECEIPT_API_PUB.Create_and_apply : '||to_char(NVL(l_msg_count,0)));

980: +------------------------------------------------*/
981: IF NVL(l_msg_count,0) > 0 Then
982:
983: /* Bug 1855821 : indicate in the log file the receipt API procedure that raised the error */
984: write_debug_and_log('API error count : AR_RECEIPT_API_PUB.Create_and_apply : '||to_char(NVL(l_msg_count,0)));
985:
986: write_API_output(l_msg_count,l_msg_data);
987:
988: END IF;

Line 1360: AR_RECEIPT_API_PUB.Activity_unapplication(

1356: /*------------------------------------+
1357: | Unapply from STD using Receipt API |
1358: +------------------------------------*/
1359:
1360: AR_RECEIPT_API_PUB.Activity_unapplication(
1361: p_api_version => 1.0,
1362: p_init_msg_list => FND_API.G_TRUE,
1363: x_return_status => l_return_status,
1364: x_msg_count => l_msg_count,

Line 1378: write_debug_and_log('API error count : AR_RECEIPT_API_PUB.Activity_unapplication : '||

1374: +------------------------------------------------*/
1375: IF NVL(l_msg_count,0) > 0 Then
1376:
1377: /* Bug 1855821 : indicate in the log file the receipt API procedure that raised the error */
1378: write_debug_and_log('API error count : AR_RECEIPT_API_PUB.Activity_unapplication : '||
1379: to_char(NVL(l_msg_count,0)));
1380: write_API_output(l_msg_count,l_msg_data);
1381:
1382: END IF;

Line 1433: write_debug_and_log('will call AR_RECEIPT_API_PUB.Apply');

1429: /*---------------------------------------------+
1430: | Create normal application using Receipt API |
1431: +---------------------------------------------*/
1432:
1433: write_debug_and_log('will call AR_RECEIPT_API_PUB.Apply');
1434:
1435: AR_RECEIPT_API_PUB.Apply(
1436: p_api_version => 1.0,
1437: p_init_msg_list => FND_API.G_TRUE,

Line 1435: AR_RECEIPT_API_PUB.Apply(

1431: +---------------------------------------------*/
1432:
1433: write_debug_and_log('will call AR_RECEIPT_API_PUB.Apply');
1434:
1435: AR_RECEIPT_API_PUB.Apply(
1436: p_api_version => 1.0,
1437: p_init_msg_list => FND_API.G_TRUE,
1438: x_return_status => l_return_status,
1439: x_msg_count => l_msg_count,

Line 1457: write_debug_and_log('API error count : AR_RECEIPT_API_PUB.Apply : '|| to_char(NVL(l_msg_count,0)));

1453: +------------------------------------------------*/
1454: IF NVL(l_msg_count,0) > 0 Then
1455:
1456: /* Bug 1855821 : indicate in the log file the receipt API procedure that raised the error */
1457: write_debug_and_log('API error count : AR_RECEIPT_API_PUB.Apply : '|| to_char(NVL(l_msg_count,0)));
1458:
1459: write_API_output(l_msg_count,l_msg_data);
1460:
1461: END IF;