DBA Data[Home] [Help]

APPS.OKL_XCR_PVT dependencies on OKL_EXT_CSH_RCPTS_B

Line 103: -- FUNCTION get_rec for: OKL_EXT_CSH_RCPTS_B

99:
100: END add_language;
101:
102: ---------------------------------------------------------------------------
103: -- FUNCTION get_rec for: OKL_EXT_CSH_RCPTS_B
104: ---------------------------------------------------------------------------
105: ---------------------------------------------------------------------------
106: -- Start of comments
107: --

Line 109: -- Description : To get the record from the Okl_Ext_Csh_Rcpts_B table.

105: ---------------------------------------------------------------------------
106: -- Start of comments
107: --
108: -- Function Name : get_rec
109: -- Description : To get the record from the Okl_Ext_Csh_Rcpts_B table.
110: -- Business Rules :
111: -- Parameters : p_xcr_rec, x_no_data_found
112: -- Version : 1.0
113: -- History : 25-AUG-04 abindal modified to include the two new

Line 177: FROM Okl_Ext_Csh_Rcpts_B

173: -- New column receipt type and fully applied added.
174: RECEIPT_TYPE,
175: FULLY_APPLIED_FLAG,
176: EXPIRED_FLAG
177: FROM Okl_Ext_Csh_Rcpts_B
178: WHERE okl_ext_csh_rcpts_b.id = p_id;
179: l_xcr_pk xcr_pk_csr%ROWTYPE;
180: l_xcr_rec xcr_rec_type;
181: BEGIN

Line 178: WHERE okl_ext_csh_rcpts_b.id = p_id;

174: RECEIPT_TYPE,
175: FULLY_APPLIED_FLAG,
176: EXPIRED_FLAG
177: FROM Okl_Ext_Csh_Rcpts_B
178: WHERE okl_ext_csh_rcpts_b.id = p_id;
179: l_xcr_pk xcr_pk_csr%ROWTYPE;
180: l_xcr_rec xcr_rec_type;
181: BEGIN
182: x_no_data_found := TRUE;

Line 311: -- Description : To get the record from the Okl_Ext_Csh_Rcpts_B table.

307: ---------------------------------------------------------------------------
308: -- Start of comments
309: --
310: -- Function Name : get_rec
311: -- Description : To get the record from the Okl_Ext_Csh_Rcpts_B table.
312: -- Business Rules :
313: -- Parameters : p_xcrv_rec, x_no_data_found
314: -- Version : 1.0
315: -- History : 25-AUG-04 abindal modified to include the two new

Line 1336: -- insert_row for:OKL_EXT_CSH_RCPTS_B --

1332: ---------------------------------------------------------------------------
1333: -- PROCEDURE insert_row
1334: ---------------------------------------------------------------------------
1335: ----------------------------------------
1336: -- insert_row for:OKL_EXT_CSH_RCPTS_B --
1337: ----------------------------------------
1338: ---------------------------------------------------------------------------
1339: -- Start of comments
1340: --

Line 1342: -- Description : Inserts the row in the table Okl_Ext_Csh_Rcpts_B.

1338: ---------------------------------------------------------------------------
1339: -- Start of comments
1340: --
1341: -- Procedure Name : insert_row
1342: -- Description : Inserts the row in the table Okl_Ext_Csh_Rcpts_B.
1343: -- Business Rules :
1344: -- Parameters : p_init_msg_list, x_return_status, x_msg_count, x_msg_data,
1345: -- p_xcr_rec, x_xcr_rec
1346: -- Version : 1.0

Line 1366: -- Set_Attributes for:OKL_EXT_CSH_RCPTS_B --

1362: l_return_status VARCHAR2(1) := Okl_Api.G_RET_STS_SUCCESS;
1363: l_xcr_rec xcr_rec_type := p_xcr_rec;
1364: l_def_xcr_rec xcr_rec_type;
1365: --------------------------------------------
1366: -- Set_Attributes for:OKL_EXT_CSH_RCPTS_B --
1367: --------------------------------------------
1368:
1369: FUNCTION Set_Attributes (
1370: p_xcr_rec IN xcr_rec_type,

Line 1398: INSERT INTO OKL_EXT_CSH_RCPTS_B(

1394: RAISE Okl_Api.G_EXCEPTION_UNEXPECTED_ERROR;
1395: ELSIF (l_return_status = Okl_Api.G_RET_STS_ERROR) THEN
1396: RAISE Okl_Api.G_EXCEPTION_ERROR;
1397: END IF;
1398: INSERT INTO OKL_EXT_CSH_RCPTS_B(
1399: id,
1400: xcb_id,
1401: rct_id,
1402: icr_id,

Line 1932: -- lock_row for:OKL_EXT_CSH_RCPTS_B --

1928: ---------------------------------------------------------------------------
1929: -- PROCEDURE lock_row
1930: ---------------------------------------------------------------------------
1931: --------------------------------------
1932: -- lock_row for:OKL_EXT_CSH_RCPTS_B --
1933: --------------------------------------
1934: PROCEDURE lock_row(
1935: p_init_msg_list IN VARCHAR2 DEFAULT Okl_Api.G_FALSE,
1936: x_return_status OUT NOCOPY VARCHAR2,

Line 1945: FROM OKL_EXT_CSH_RCPTS_B

1941: E_Resource_Busy EXCEPTION;
1942: PRAGMA EXCEPTION_INIT(E_Resource_Busy, -00054);
1943: CURSOR lock_csr (p_xcr_rec IN xcr_rec_type) IS
1944: SELECT OBJECT_VERSION_NUMBER
1945: FROM OKL_EXT_CSH_RCPTS_B
1946: WHERE ID = p_xcr_rec.id
1947: AND OBJECT_VERSION_NUMBER = p_xcr_rec.object_version_number
1948: FOR UPDATE OF OBJECT_VERSION_NUMBER NOWAIT;
1949:

Line 1952: FROM OKL_EXT_CSH_RCPTS_B

1948: FOR UPDATE OF OBJECT_VERSION_NUMBER NOWAIT;
1949:
1950: CURSOR lchk_csr (p_xcr_rec IN xcr_rec_type) IS
1951: SELECT OBJECT_VERSION_NUMBER
1952: FROM OKL_EXT_CSH_RCPTS_B
1953: WHERE ID = p_xcr_rec.id;
1954: l_api_version CONSTANT NUMBER := 1;
1955: l_api_name CONSTANT VARCHAR2(30) := 'B_lock_row';
1956: l_return_status VARCHAR2(1) := Okl_Api.G_RET_STS_SUCCESS;

Line 1957: l_object_version_number OKL_EXT_CSH_RCPTS_B.OBJECT_VERSION_NUMBER%TYPE;

1953: WHERE ID = p_xcr_rec.id;
1954: l_api_version CONSTANT NUMBER := 1;
1955: l_api_name CONSTANT VARCHAR2(30) := 'B_lock_row';
1956: l_return_status VARCHAR2(1) := Okl_Api.G_RET_STS_SUCCESS;
1957: l_object_version_number OKL_EXT_CSH_RCPTS_B.OBJECT_VERSION_NUMBER%TYPE;
1958: lc_object_version_number OKL_EXT_CSH_RCPTS_B.OBJECT_VERSION_NUMBER%TYPE;
1959: l_row_notfound BOOLEAN := FALSE;
1960: lc_row_notfound BOOLEAN := FALSE;
1961: BEGIN

Line 1958: lc_object_version_number OKL_EXT_CSH_RCPTS_B.OBJECT_VERSION_NUMBER%TYPE;

1954: l_api_version CONSTANT NUMBER := 1;
1955: l_api_name CONSTANT VARCHAR2(30) := 'B_lock_row';
1956: l_return_status VARCHAR2(1) := Okl_Api.G_RET_STS_SUCCESS;
1957: l_object_version_number OKL_EXT_CSH_RCPTS_B.OBJECT_VERSION_NUMBER%TYPE;
1958: lc_object_version_number OKL_EXT_CSH_RCPTS_B.OBJECT_VERSION_NUMBER%TYPE;
1959: l_row_notfound BOOLEAN := FALSE;
1960: lc_row_notfound BOOLEAN := FALSE;
1961: BEGIN
1962: l_return_status := Okl_Api.START_ACTIVITY(l_api_name,

Line 2305: -- update_row for:OKL_EXT_CSH_RCPTS_B --

2301: ---------------------------------------------------------------------------
2302: -- PROCEDURE update_row
2303: ---------------------------------------------------------------------------
2304: ----------------------------------------
2305: -- update_row for:OKL_EXT_CSH_RCPTS_B --
2306: ----------------------------------------
2307: ---------------------------------------------------------------------------
2308: -- Start of comments
2309: --

Line 2311: -- Description : Updates the row in the table Okl_Ext_Csh_Rcpts_B.

2307: ---------------------------------------------------------------------------
2308: -- Start of comments
2309: --
2310: -- Procedure Name : update_row
2311: -- Description : Updates the row in the table Okl_Ext_Csh_Rcpts_B.
2312: -- Business Rules :
2313: -- Parameters : p_init_msg_list, x_return_status, x_msg_count, x_msg_data,
2314: -- p_xcr_rec, x_xcr_rec
2315: -- Version : 1.0

Line 2566: -- Set_Attributes for:OKL_EXT_CSH_RCPTS_B --

2562:
2563: RETURN(l_return_status);
2564: END populate_new_record;
2565: --------------------------------------------
2566: -- Set_Attributes for:OKL_EXT_CSH_RCPTS_B --
2567: --------------------------------------------
2568:
2569: FUNCTION Set_Attributes (
2570: p_xcr_rec IN xcr_rec_type,

Line 2604: UPDATE OKL_EXT_CSH_RCPTS_B

2600: RAISE Okl_Api.G_EXCEPTION_UNEXPECTED_ERROR;
2601: ELSIF (l_return_status = Okl_Api.G_RET_STS_ERROR) THEN
2602: RAISE Okl_Api.G_EXCEPTION_ERROR;
2603: END IF;
2604: UPDATE OKL_EXT_CSH_RCPTS_B
2605: SET XCB_ID = l_def_xcr_rec.xcb_id,
2606: RCT_ID = l_def_xcr_rec.rct_id,
2607: ICR_ID = l_def_xcr_rec.icr_id,
2608: OBJECT_VERSION_NUMBER = l_def_xcr_rec.object_version_number,

Line 2866: -- Description : Updates the row in the table Okl_Ext_Csh_Rcpts_B.

2862: ---------------------------------------------------------------------------
2863: -- Start of comments
2864: --
2865: -- Procedure Name : update_row
2866: -- Description : Updates the row in the table Okl_Ext_Csh_Rcpts_B.
2867: -- Business Rules :
2868: -- Parameters : p_init_msg_list, x_return_status, x_msg_count, x_msg_data,
2869: -- p_xcrv_rec, x_xcrv_rec
2870: -- Version : 1.0

Line 3386: -- delete_row for:OKL_EXT_CSH_RCPTS_B --

3382: ---------------------------------------------------------------------------
3383: -- PROCEDURE delete_row
3384: ---------------------------------------------------------------------------
3385: ----------------------------------------
3386: -- delete_row for:OKL_EXT_CSH_RCPTS_B --
3387: ----------------------------------------
3388: PROCEDURE delete_row(
3389: p_init_msg_list IN VARCHAR2 DEFAULT Okl_Api.G_FALSE,
3390: x_return_status OUT NOCOPY VARCHAR2,

Line 3410: DELETE FROM OKL_EXT_CSH_RCPTS_B

3406: RAISE Okl_Api.G_EXCEPTION_UNEXPECTED_ERROR;
3407: ELSIF (l_return_status = Okl_Api.G_RET_STS_ERROR) THEN
3408: RAISE Okl_Api.G_EXCEPTION_ERROR;
3409: END IF;
3410: DELETE FROM OKL_EXT_CSH_RCPTS_B
3411: WHERE ID = l_xcr_rec.id;
3412:
3413: Okl_Api.END_ACTIVITY(x_msg_count, x_msg_data);
3414: EXCEPTION