DBA Data[Home] [Help]

APPS.AP_APPROVAL_PKG dependencies on FND_API

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

934: l_inv_header_rec ap_invoices_all%rowtype;
935: l_event_class_code zx_trx_headers_gt.event_class_code%TYPE;
936:
937: -- Project LCM 7588322
938: l_lcm_return_status VARCHAR2(30) := FND_API.G_RET_STS_SUCCESS;
939: l_lcm_msg_count NUMBER;
940: l_lcm_msg_data VARCHAR2(2000);
941: l_lcm_used VARCHAR2(1) := 'N';
942: l_unpostable_holds_exist VARCHAR2(1) := 'N';

Line 2210: 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

2206:
2207: --EXECUTE IMMEDIATE
2208: INL_MATCH_GRP.Create_MatchesFromAP
2209: (p_api_version => 1.0, -- API version
2210: 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
2211: 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
2212: p_invoice_id => l_invoice_id,
2213: 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.
2214: x_msg_count => l_lcm_msg_count, -- Number of messages in the list

Line 2211: 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

2207: --EXECUTE IMMEDIATE
2208: INL_MATCH_GRP.Create_MatchesFromAP
2209: (p_api_version => 1.0, -- API version
2210: 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
2211: 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
2212: p_invoice_id => l_invoice_id,
2213: 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.
2214: x_msg_count => l_lcm_msg_count, -- Number of messages in the list
2215: x_msg_data => l_lcm_msg_data); -- Messages stored in encoded format

Line 2213: 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.

2209: (p_api_version => 1.0, -- API version
2210: 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
2211: 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
2212: p_invoice_id => l_invoice_id,
2213: 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.
2214: x_msg_count => l_lcm_msg_count, -- Number of messages in the list
2215: x_msg_data => l_lcm_msg_data); -- Messages stored in encoded format
2216:
2217: IF(l_lcm_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

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

2213: 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.
2214: x_msg_count => l_lcm_msg_count, -- Number of messages in the list
2215: x_msg_data => l_lcm_msg_data); -- Messages stored in encoded format
2216:
2217: IF(l_lcm_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
2218: -- Bug 7718385
2219: RAISE LCM_Exception;
2220: END IF;
2221: END IF; -- l_unpostable_holds_exist <> 'Y'

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

2538:
2539: -- Logging error messages
2540: FOR i in 1 ..l_lcm_msg_count
2541: LOOP
2542: l_lcm_msg_data := FND_MSG_PUB.get(i, FND_API.g_false);
2543: l_debug_info :='l_msg_data ('||i||'): '||l_lcm_msg_data;
2544: -- Print_Debug(l_api_name, l_debug_info);
2545: IF g_debug_mode = 'Y' THEN
2546: AP_Debug_Pkg.Print(g_debug_mode, l_debug_info );

Line 4730: IF(l_out_status = FND_API.G_TRUE) THEN

4726: p_object_id => P_vendor_id,
4727: p_object_type => 'S');
4728:
4729:
4730: IF(l_out_status = FND_API.G_TRUE) THEN
4731:
4732: initialize_invoice_holds
4733: (p_invoice_id => p_invoice_id,
4734: p_calling_sequence => l_curr_calling_sequence);