DBA Data[Home] [Help]

APPS.BIX_PMV_EMC_ERPT_PRTLT_PKG dependencies on BIS_PMV_PARAMETERS_PUB

Line 30: l_custom_rec BIS_QUERY_ATTRIBUTES := BIS_PMV_PARAMETERS_PUB.Initialize_Query_Type;

26: l_classification VARCHAR2(32000);
27: l_view_by varchar2(1000);
28: l_row_type varchar2(10) := 'AC';
29:
30: l_custom_rec BIS_QUERY_ATTRIBUTES := BIS_PMV_PARAMETERS_PUB.Initialize_Query_Type;
31:
32: BEGIN
33:
34: /*IF (FND_PROFILE.DEFINED('BIX_DM_AGENT_COST')) THEN

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

146:
147:
148: l_custom_rec.attribute_name := ':l_other_account' ;
149: l_custom_rec.attribute_value:= l_other_account;
150: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
151: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
152:
153: p_custom_output.Extend();
154: p_custom_output(p_custom_output.count) := l_custom_rec;

Line 151: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;

147:
148: l_custom_rec.attribute_name := ':l_other_account' ;
149: l_custom_rec.attribute_value:= l_other_account;
150: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
151: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
152:
153: p_custom_output.Extend();
154: p_custom_output(p_custom_output.count) := l_custom_rec;
155:

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

154: p_custom_output(p_custom_output.count) := l_custom_rec;
155:
156: l_custom_rec.attribute_name := ':l_application_id';
157: l_custom_rec.attribute_value:= l_application_id;
158: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
159: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.NUMERIC_BIND;
160:
161: p_custom_output.EXTEND;
162: p_custom_output(p_custom_output.COUNT) := l_custom_rec;

Line 159: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.NUMERIC_BIND;

155:
156: l_custom_rec.attribute_name := ':l_application_id';
157: l_custom_rec.attribute_value:= l_application_id;
158: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
159: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.NUMERIC_BIND;
160:
161: p_custom_output.EXTEND;
162: p_custom_output(p_custom_output.COUNT) := l_custom_rec;
163:

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

163:
164: IF ( l_account IS NOT NULL) THEN
165: l_custom_rec.attribute_name := ':l_account' ;
166: l_custom_rec.attribute_value:= l_account;
167: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
168: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
169:
170: p_custom_output.Extend();
171: p_custom_output(p_custom_output.count) := l_custom_rec;

Line 168: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;

164: IF ( l_account IS NOT NULL) THEN
165: l_custom_rec.attribute_name := ':l_account' ;
166: l_custom_rec.attribute_value:= l_account;
167: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
168: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
169:
170: p_custom_output.Extend();
171: p_custom_output(p_custom_output.count) := l_custom_rec;
172: END IF;

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

173:
174: IF ( l_classification IS NOT NULL) THEN
175: l_custom_rec.attribute_name := ':l_classification' ;
176: l_custom_rec.attribute_value:= l_classification;
177: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
178: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
179:
180: p_custom_output.Extend();
181: p_custom_output(p_custom_output.count) := l_custom_rec;

Line 178: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;

174: IF ( l_classification IS NOT NULL) THEN
175: l_custom_rec.attribute_name := ':l_classification' ;
176: l_custom_rec.attribute_value:= l_classification;
177: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
178: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
179:
180: p_custom_output.Extend();
181: p_custom_output(p_custom_output.count) := l_custom_rec;
182: END IF;

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

182: END IF;
183:
184: l_custom_rec.attribute_name := ':l_row_type' ;
185: l_custom_rec.attribute_value:= l_row_type;
186: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
187: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
188:
189: p_custom_output.Extend();
190: p_custom_output(p_custom_output.count) := l_custom_rec;

Line 187: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;

183:
184: l_custom_rec.attribute_name := ':l_row_type' ;
185: l_custom_rec.attribute_value:= l_row_type;
186: l_custom_rec.attribute_type := BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
187: l_custom_rec.attribute_data_type := BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
188:
189: p_custom_output.Extend();
190: p_custom_output(p_custom_output.count) := l_custom_rec;
191: