DBA Data[Home] [Help]

APPS.OKL_SETUP_PRCPARAMS_PVT dependencies on OKL_ACCOUNTING_UTIL

Line 366: l_attrib_tbl okl_accounting_util.overlap_attrib_tbl_type;

362: ) IS
363: l_sppv_rec sppv_rec_type;
364: l_return_status VARCHAR2(1) := G_RET_STS_SUCCESS;
365: l_valid BOOLEAN;
366: l_attrib_tbl okl_accounting_util.overlap_attrib_tbl_type;
367: BEGIN
368: l_return_status := G_RET_STS_SUCCESS;
369: l_sppv_rec := p_sppv_rec;
370:

Line 373: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_VARCHAR2;

369: l_sppv_rec := p_sppv_rec;
370:
371: /* call check_overlaps */
372: l_attrib_tbl(1).attribute := 'name';
373: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_VARCHAR2;
374: l_attrib_tbl(1).value := l_sppv_rec.name;
375:
376: okl_accounting_util.check_overlaps(p_id => l_sppv_rec.id,
377: p_attrib_tbl => l_attrib_tbl,

Line 376: okl_accounting_util.check_overlaps(p_id => l_sppv_rec.id,

372: l_attrib_tbl(1).attribute := 'name';
373: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_VARCHAR2;
374: l_attrib_tbl(1).value := l_sppv_rec.name;
375:
376: okl_accounting_util.check_overlaps(p_id => l_sppv_rec.id,
377: p_attrib_tbl => l_attrib_tbl,
378: p_start_date_attribute_name => 'DATE_START',
379: p_start_date => l_sppv_rec.date_start,
380: p_end_date_attribute_name => 'DATE_END',

Line 520: l_attrib_tbl okl_accounting_util.overlap_attrib_tbl_type;

516: l_tmp_sppv_rec sppv_rec_type; /* for any other purposes */
517: l_return_status VARCHAR2(1) := G_RET_STS_SUCCESS;
518: l_action VARCHAR2(1);
519: l_new_version VARCHAR2(100);
520: l_attrib_tbl okl_accounting_util.overlap_attrib_tbl_type;
521: BEGIN
522: l_return_status := G_RET_STS_SUCCESS;
523: l_sppv_rec := p_sppv_rec;
524:

Line 782: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_VARCHAR2;

778: l_sppv_rec.date_start := l_sysdate + 1 ;
779: END IF;
780:
781: l_attrib_tbl(1).attribute := 'name';
782: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_VARCHAR2;
783: l_attrib_tbl(1).value := l_sppv_rec.name;
784:
785: okl_accounting_util.get_version(
786: p_attrib_tbl => l_attrib_tbl,

Line 785: okl_accounting_util.get_version(

781: l_attrib_tbl(1).attribute := 'name';
782: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_VARCHAR2;
783: l_attrib_tbl(1).value := l_sppv_rec.name;
784:
785: okl_accounting_util.get_version(
786: p_attrib_tbl => l_attrib_tbl,
787: p_cur_version => l_sppv_rec.version,
788: p_end_date_attribute_name => 'DATE_END',
789: p_end_date => l_sppv_rec.date_end,