DBA Data[Home] [Help]

APPS.OKL_MULTIGAAP_ENGINE_PVT dependencies on OKL_TRX_TYPES_B

Line 212: okl_trx_types_b typ

208:
209: CURSOR is_formula_based IS
210: select nvl(typ.FORMULA_YN,'N')
211: from okl_trx_contracts khr,
212: okl_trx_types_b typ
213: where khr.try_id=typ.id
214: and khr.id = p_id;
215: BEGIN
216: -- checks whether transaction type is formala based

Line 233: l_trx_type_class okl_trx_types_b.trx_type_class%type := null;

229: RETURN false;
230: END is_formula_based;
231:
232: FUNCTION is_line_based(p_id NUMBER) RETURN BOOLEAN IS
233: l_trx_type_class okl_trx_types_b.trx_type_class%type := null;
234:
235: CURSOR is_line_based IS
236: select trx_type_class
237: from okl_trx_contracts khr,

Line 238: okl_trx_types_b typ

234:
235: CURSOR is_line_based IS
236: select trx_type_class
237: from okl_trx_contracts khr,
238: okl_trx_types_b typ
239: where khr.try_id=typ.id
240: and khr.id = p_id;
241: BEGIN
242: -- checks whether transaction type is contract based or line based.

Line 500: l_trx_type_name okl_trx_types_b.trx_type_class%type := null;

496: and khr.id = lns.tcn_id;
497:
498: l_formula_yn boolean := false;
499: l_is_line_based boolean := false;
500: l_trx_type_name okl_trx_types_b.trx_type_class%type := null;
501: i NUMBER := 0;
502: k NUMBER := 0;
503: j NUMBER := 0;
504: m NUMBER := 0;