DBA Data[Home] [Help]

PACKAGE BODY: APPS.CSE_CLIENT_EXT_PUB

Source


1 package body CSE_CLIENT_EXT_PUB AS
2 -- $Header: CSECLEXB.pls 115.6 2003/01/17 00:17:43 jpwilson noship $
3 
4 l_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('CSE_DEBUG_OPTION'),'N');
5 
6 PROCEDURE rcv_post_transaction(p_transaction_id  IN NUMBER,
7                                x_return_status   OUT NOCOPY VARCHAR2,
8                                x_error_message   OUT NOCOPY VARCHAR2)
9 IS
10 BEGIN
11 
12    -- Replace this with your code here
13 
14    x_return_status := FND_API.G_RET_STS_SUCCESS;
15    x_error_message := NULL;
16 
17 EXCEPTION
18 
19    WHEN OTHERS THEN
20        x_return_status := FND_API.G_RET_STS_ERROR;
21        x_error_message := sqlerrm;
22 
23 END rcv_post_transaction;
24 
25 end CSE_CLIENT_EXT_PUB;