DBA Data[Home] [Help]

APPS.OKL_SETUP_STREAMTYPES_PVT dependencies on OKL_ACCOUNTING_UTIL

Line 581: l_attrib_tbl okl_accounting_util.overlap_attrib_tbl_type;

577:
578: l_styv_rec styv_rec_type;
579: l_return_status VARCHAR2(1) := G_RET_STS_SUCCESS;
580: l_valid BOOLEAN;
581: l_attrib_tbl okl_accounting_util.overlap_attrib_tbl_type;
582: l_sysdate DATE := TRUNC(SYSDATE);
583:
584: BEGIN
585: x_return_status := G_RET_STS_SUCCESS;

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

586: l_styv_rec := p_styv_rec;
587:
588: /* call check_overlaps */
589: l_attrib_tbl(1).attribute := 'CODE';
590: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_VARCHAR2;
591: l_attrib_tbl(1).value := l_styv_rec.code;
592:
593: okl_accounting_util.check_overlaps( p_id => l_styv_rec.id,
594: p_attrib_tbl => l_attrib_tbl,

Line 593: okl_accounting_util.check_overlaps( p_id => l_styv_rec.id,

589: l_attrib_tbl(1).attribute := 'CODE';
590: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_VARCHAR2;
591: l_attrib_tbl(1).value := l_styv_rec.code;
592:
593: okl_accounting_util.check_overlaps( p_id => l_styv_rec.id,
594: p_attrib_tbl => l_attrib_tbl,
595: p_start_date_attribute_name => 'START_DATE',
596: p_start_date => l_styv_rec.start_date,
597: p_end_date_attribute_name => 'END_DATE',

Line 775: l_attrib_tbl okl_accounting_util.overlap_attrib_tbl_type;

771: l_tmp_styv_rec styv_rec_type; /* for any other purposes */
772: l_return_status VARCHAR2(1) := G_RET_STS_SUCCESS;
773: l_action VARCHAR2(1);
774: l_new_version VARCHAR2(100);
775: l_attrib_tbl okl_accounting_util.overlap_attrib_tbl_type;
776: BEGIN
777: l_return_status := G_RET_STS_SUCCESS;
778: l_styv_rec := p_styv_rec;
779: -- auto_update code with name

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

1066: l_styv_rec.start_date := l_sysdate + 1 ;
1067: END IF;
1068:
1069: l_attrib_tbl(1).attribute := 'CODE';
1070: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_VARCHAR2;
1071: l_attrib_tbl(1).value := l_styv_rec.code;
1072:
1073: okl_accounting_util.get_version(p_attrib_tbl => l_attrib_tbl,
1074: p_cur_version => l_styv_rec.version,

Line 1073: okl_accounting_util.get_version(p_attrib_tbl => l_attrib_tbl,

1069: l_attrib_tbl(1).attribute := 'CODE';
1070: l_attrib_tbl(1).attrib_type := okl_accounting_util.G_VARCHAR2;
1071: l_attrib_tbl(1).value := l_styv_rec.code;
1072:
1073: okl_accounting_util.get_version(p_attrib_tbl => l_attrib_tbl,
1074: p_cur_version => l_styv_rec.version,
1075: p_end_date_attribute_name => 'END_DATE',
1076: p_end_date => l_styv_rec.end_date,
1077: p_view => 'OKL_STRM_TYPE_V',