DBA Data[Home] [Help]

APPS.AP_APPROVAL_PKG dependencies on FND_API

Line 753: l_lcm_return_status VARCHAR2(30) := FND_API.G_RET_STS_SUCCESS;

749: l_inv_header_rec ap_invoices_all%rowtype;
750: l_event_class_code zx_trx_headers_gt.event_class_code%TYPE;
751:
752: -- Project LCM 7588322
753: l_lcm_return_status VARCHAR2(30) := FND_API.G_RET_STS_SUCCESS;
754: l_lcm_msg_count NUMBER;
755: l_lcm_msg_data VARCHAR2(2000);
756: l_lcm_used VARCHAR2(1) := 'N';
757: l_unpostable_holds_exist VARCHAR2(1) := 'N';

Line 1565: p_init_msg_list => FND_API.G_TRUE, -- This is to initialize the message list whenever the API is called, not cumulating messages from one execution to other

1561:
1562: --EXECUTE IMMEDIATE
1563: INL_MATCH_GRP.Create_MatchesFromAP
1564: (p_api_version => 1.0, -- API version
1565: p_init_msg_list => FND_API.G_TRUE, -- This is to initialize the message list whenever the API is called, not cumulating messages from one execution to other
1566: p_commit => FND_API.G_FALSE, -- This is to not issue any commit inside the API, since commit cycle is managed by the calling program
1567: p_invoice_id => l_invoice_id,
1568: x_return_status => l_lcm_return_status, -- Returns "S", "E" or "U", i.e. FND_API.G_RET_STS_SUCCESS , FND_API.G_RET_STS_ERROR or FND_API.G_RET_STS_UNEXP_ERROR.
1569: x_msg_count => l_lcm_msg_count, -- Number of messages in the list

Line 1566: p_commit => FND_API.G_FALSE, -- This is to not issue any commit inside the API, since commit cycle is managed by the calling program

1562: --EXECUTE IMMEDIATE
1563: INL_MATCH_GRP.Create_MatchesFromAP
1564: (p_api_version => 1.0, -- API version
1565: p_init_msg_list => FND_API.G_TRUE, -- This is to initialize the message list whenever the API is called, not cumulating messages from one execution to other
1566: p_commit => FND_API.G_FALSE, -- This is to not issue any commit inside the API, since commit cycle is managed by the calling program
1567: p_invoice_id => l_invoice_id,
1568: x_return_status => l_lcm_return_status, -- Returns "S", "E" or "U", i.e. FND_API.G_RET_STS_SUCCESS , FND_API.G_RET_STS_ERROR or FND_API.G_RET_STS_UNEXP_ERROR.
1569: x_msg_count => l_lcm_msg_count, -- Number of messages in the list
1570: x_msg_data => l_lcm_msg_data); -- Messages stored in encoded format

Line 1568: x_return_status => l_lcm_return_status, -- Returns "S", "E" or "U", i.e. FND_API.G_RET_STS_SUCCESS , FND_API.G_RET_STS_ERROR or FND_API.G_RET_STS_UNEXP_ERROR.

1564: (p_api_version => 1.0, -- API version
1565: p_init_msg_list => FND_API.G_TRUE, -- This is to initialize the message list whenever the API is called, not cumulating messages from one execution to other
1566: p_commit => FND_API.G_FALSE, -- This is to not issue any commit inside the API, since commit cycle is managed by the calling program
1567: p_invoice_id => l_invoice_id,
1568: x_return_status => l_lcm_return_status, -- Returns "S", "E" or "U", i.e. FND_API.G_RET_STS_SUCCESS , FND_API.G_RET_STS_ERROR or FND_API.G_RET_STS_UNEXP_ERROR.
1569: x_msg_count => l_lcm_msg_count, -- Number of messages in the list
1570: x_msg_data => l_lcm_msg_data); -- Messages stored in encoded format
1571:
1572: IF(l_lcm_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

Line 1572: IF(l_lcm_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

1568: x_return_status => l_lcm_return_status, -- Returns "S", "E" or "U", i.e. FND_API.G_RET_STS_SUCCESS , FND_API.G_RET_STS_ERROR or FND_API.G_RET_STS_UNEXP_ERROR.
1569: x_msg_count => l_lcm_msg_count, -- Number of messages in the list
1570: x_msg_data => l_lcm_msg_data); -- Messages stored in encoded format
1571:
1572: IF(l_lcm_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
1573: -- Bug 7718385
1574: RAISE LCM_Exception;
1575: END IF;
1576: END IF; -- l_unpostable_holds_exist <> 'Y'

Line 1765: l_lcm_msg_data := FND_MSG_PUB.get(i, FND_API.g_false);

1761:
1762: -- Logging error messages
1763: FOR i in 1 ..l_lcm_msg_count
1764: LOOP
1765: l_lcm_msg_data := FND_MSG_PUB.get(i, FND_API.g_false);
1766: l_debug_info :='l_msg_data ('||i||'): '||l_lcm_msg_data;
1767: Print_Debug(l_api_name, l_debug_info);
1768: END LOOP;
1769: