DBA Data[Home] [Help]

APPS.OKL_SETUP_PRD_PRCTEMPL_PVT dependencies on OKL_ACCOUNTING_UTIL

Line 265: l_token2_value := Okl_Accounting_Util.Get_Message_Token(p_region_code => 'OKL_LP_PRCTEMPLAT_CRUPT',

261: IF(l_valid <> TRUE) THEN
262:
263: -- added akjain to fix bug # 2429053
264: -- Get the token value.
265: l_token2_value := Okl_Accounting_Util.Get_Message_Token(p_region_code => 'OKL_LP_PRCTEMPLAT_CRUPT',
266: p_attribute_code => 'OKL_PRODUCT_PRICING_TEMPLATE'
267: );
268:
269: l_token1_value := Okl_Accounting_Util.Get_Message_Token(p_region_code => 'OKL_LP_PRCTEMPLAT_CRUPT',

Line 269: l_token1_value := Okl_Accounting_Util.Get_Message_Token(p_region_code => 'OKL_LP_PRCTEMPLAT_CRUPT',

265: l_token2_value := Okl_Accounting_Util.Get_Message_Token(p_region_code => 'OKL_LP_PRCTEMPLAT_CRUPT',
266: p_attribute_code => 'OKL_PRODUCT_PRICING_TEMPLATE'
267: );
268:
269: l_token1_value := Okl_Accounting_Util.Get_Message_Token(p_region_code => 'OKL_LP_PRCTEMPLAT_CRUPT',
270: p_attribute_code => 'OKL_PRODUCT'
271: );
272:
273:

Line 316: l_attrib_tbl okl_accounting_util.overlap_attrib_tbl_type;

312: ) IS
313: l_pitv_rec pitv_rec_type;
314: l_return_status VARCHAR2(1) := G_RET_STS_SUCCESS;
315: l_valid BOOLEAN;
316: l_attrib_tbl okl_accounting_util.overlap_attrib_tbl_type;
317: BEGIN
318: l_return_status := G_RET_STS_SUCCESS;
319: l_pitv_rec := p_pitv_rec;
320:

Line 323: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_NUMBER;

319: l_pitv_rec := p_pitv_rec;
320:
321: /* call check_overlaps */
322: l_attrib_tbl(1).attribute := 'pdt_id';
323: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_NUMBER;
324: l_attrib_tbl(1).value := l_pitv_rec.pdt_id;
325:
326: okl_accounting_util.check_overlaps(p_id => l_pitv_rec.id,
327: p_attrib_tbl => l_attrib_tbl,

Line 326: okl_accounting_util.check_overlaps(p_id => l_pitv_rec.id,

322: l_attrib_tbl(1).attribute := 'pdt_id';
323: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_NUMBER;
324: l_attrib_tbl(1).value := l_pitv_rec.pdt_id;
325:
326: okl_accounting_util.check_overlaps(p_id => l_pitv_rec.id,
327: p_attrib_tbl => l_attrib_tbl,
328: p_start_date_attribute_name => 'START_DATE',
329: p_start_date => l_pitv_rec.start_date,
330: p_end_date_attribute_name => 'END_DATE',

Line 505: l_attrib_tbl okl_accounting_util.overlap_attrib_tbl_type;

501: l_tmp_pitv_rec pitv_rec_type; /* for any other purposes */
502: l_return_status VARCHAR2(1) := G_RET_STS_SUCCESS;
503: l_action VARCHAR2(1);
504: l_new_version VARCHAR2(100);
505: l_attrib_tbl okl_accounting_util.overlap_attrib_tbl_type;
506: BEGIN
507: l_return_status := G_RET_STS_SUCCESS;
508:
509: l_pitv_rec := p_pitv_rec;

Line 794: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_NUMBER;

790: l_pitv_rec.start_date := l_sysdate + 1 ;
791: END IF;
792:
793: l_attrib_tbl(1).attribute := 'PDT_ID';
794: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_NUMBER;
795: l_attrib_tbl(1).value := l_pitv_rec.pdt_id;
796:
797: okl_accounting_util.get_version(
798: p_attrib_tbl => l_attrib_tbl,

Line 797: okl_accounting_util.get_version(

793: l_attrib_tbl(1).attribute := 'PDT_ID';
794: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_NUMBER;
795: l_attrib_tbl(1).value := l_pitv_rec.pdt_id;
796:
797: okl_accounting_util.get_version(
798: p_attrib_tbl => l_attrib_tbl,
799: p_cur_version => l_pitv_rec.version,
800: p_end_date_attribute_name => 'END_DATE',
801: p_end_date => l_pitv_rec.end_date,