DBA Data[Home] [Help]

APPS.OKC_OC_INT_SALESCDT_PVT dependencies on OKC_SALES_CREDIT_PVT

Line 34: --call OKC_SALES_CREDIT_PVT.create_sales_credit()

30: --get sales credit information from ASO or ONT at the LINE level
31: --and append it to global PL/SQL table g_sales_credit_tab which will then
32: --contain BOTH header AND line level information
33:
34: --call OKC_SALES_CREDIT_PVT.create_sales_credit()
35: --this puts sales credits information in OKC
36: --<>
37:
38:

Line 49: | |---OKC_SALES_CREDIT_PVT.create_sales_credit

45: |---OKC_OC_INT_SALESCDT_PVT.create_k_sales_credit()
46: | |---get_sales_credit() called twice at header level AND line level
47: | | |---get_sales_credit_tab() at header level OR line level
48: | | (as called)
49: | |---OKC_SALES_CREDIT_PVT.create_sales_credit
50:
51: **************************************************************/
52: --sales credits
53: g_sales_credit_tab OKC_SALES_CREDIT_PVT.scrv_tbl_type;

Line 53: g_sales_credit_tab OKC_SALES_CREDIT_PVT.scrv_tbl_type;

49: | |---OKC_SALES_CREDIT_PVT.create_sales_credit
50:
51: **************************************************************/
52: --sales credits
53: g_sales_credit_tab OKC_SALES_CREDIT_PVT.scrv_tbl_type;
54: lx_sales_credit_tab OKC_SALES_CREDIT_PVT.scrv_tbl_type;
55:
56:
57: -- cursor to retrieve the contract number against a given contract id

Line 54: lx_sales_credit_tab OKC_SALES_CREDIT_PVT.scrv_tbl_type;

50:
51: **************************************************************/
52: --sales credits
53: g_sales_credit_tab OKC_SALES_CREDIT_PVT.scrv_tbl_type;
54: lx_sales_credit_tab OKC_SALES_CREDIT_PVT.scrv_tbl_type;
55:
56:
57: -- cursor to retrieve the contract number against a given contract id
58: -- this cursor is used to include the contract number in error messages

Line 258: OKC_UTIL.print_trace(2, ' >Calling OKC_SALES_CREDIT_PVT.create_sales_credit');

254: END IF;
255:
256: --now put this sales credits information in OKC
257: IF (l_debug = 'Y') THEN
258: OKC_UTIL.print_trace(2, ' >Calling OKC_SALES_CREDIT_PVT.create_sales_credit');
259: OKC_UTIL.print_trace(2, 'input p_scrv_tbl => g_sales_credit_tab');
260: END IF;
261: IF g_sales_credit_tab.FIRST IS NOT NULL THEN
262:

Line 263: OKC_SALES_CREDIT_PVT.create_sales_credit(

259: OKC_UTIL.print_trace(2, 'input p_scrv_tbl => g_sales_credit_tab');
260: END IF;
261: IF g_sales_credit_tab.FIRST IS NOT NULL THEN
262:
263: OKC_SALES_CREDIT_PVT.create_sales_credit(
264: p_api_version => l_api_version,
265: p_init_msg_list => OKC_API.G_FALSE,
266: x_return_status => l_return_status,
267: x_msg_count => lx_msg_count,

Line 325: OKC_UTIL.print_trace(2, ' >Call to OKC_SALES_CREDIT_PVT.create_sales_credit finished successfully');

321: END IF;
322: END IF;
323:
324: IF (l_debug = 'Y') THEN
325: OKC_UTIL.print_trace(2, ' >Call to OKC_SALES_CREDIT_PVT.create_sales_credit finished successfully');
326: END IF;
327: --<>
328: -----------------------------------------------
329: