DBA Data[Home] [Help]

APPS.ISC_DEPOT_RPT_UTIL_PKG dependencies on BIS_PMV_PARAMETERS_PUB

Line 771: l_custom_rec := BIS_PMV_PARAMETERS_PUB.INITIALIZE_QUERY_TYPE;

767: if p_custom_output is null then
768: p_custom_output := bis_query_attributes_tbl();
769: end if;
770:
771: l_custom_rec := BIS_PMV_PARAMETERS_PUB.INITIALIZE_QUERY_TYPE;
772:
773: l_custom_rec.attribute_name := p_low;
774: l_custom_rec.attribute_value := l_range_low;
775: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;

Line 775: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;

771: l_custom_rec := BIS_PMV_PARAMETERS_PUB.INITIALIZE_QUERY_TYPE;
772:
773: l_custom_rec.attribute_name := p_low;
774: l_custom_rec.attribute_value := l_range_low;
775: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
776: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.INTEGER_BIND;
777: p_custom_output.extend;
778: p_custom_output(p_custom_output.count) := l_custom_rec;
779:

Line 776: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.INTEGER_BIND;

772:
773: l_custom_rec.attribute_name := p_low;
774: l_custom_rec.attribute_value := l_range_low;
775: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
776: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.INTEGER_BIND;
777: p_custom_output.extend;
778: p_custom_output(p_custom_output.count) := l_custom_rec;
779:
780: l_custom_rec.attribute_name := p_high;

Line 782: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;

778: p_custom_output(p_custom_output.count) := l_custom_rec;
779:
780: l_custom_rec.attribute_name := p_high;
781: l_custom_rec.attribute_value := l_range_high;
782: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
783: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.INTEGER_BIND;
784: p_custom_output.extend;
785: p_custom_output(p_custom_output.count) := l_custom_rec;
786:

Line 783: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.INTEGER_BIND;

779:
780: l_custom_rec.attribute_name := p_high;
781: l_custom_rec.attribute_value := l_range_high;
782: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
783: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.INTEGER_BIND;
784: p_custom_output.extend;
785: p_custom_output(p_custom_output.count) := l_custom_rec;
786:
787: END bind_low_high;