DBA Data[Home] [Help]

APPS.BIS_PMV_APPROVALS_PVT dependencies on BIS_PMV_PARAMETERS_PUB

Line 103: l_custom_rec := BIS_PMV_PARAMETERS_PUB.Initialize_Query_Type;

99: OPEN getApprovalTypes;
100: FETCH getApprovalTypes BULK COLLECT INTO l_code_table, l_meaning_table;
101: CLOSE getApprovalTypes;
102:
103: l_custom_rec := BIS_PMV_PARAMETERS_PUB.Initialize_Query_Type;
104: x_custom_attr := BIS_QUERY_ATTRIBUTES_TBL();
105: l_bind_ctr := 1;
106: l_first := true;
107:

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

111: l_sql := l_sql || ' UNION ';
112: END IF;
113:
114: l_custom_rec.attribute_name := ':l_msgtype'||i;
115: l_custom_rec.attribute_type :=BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
116: l_custom_rec.attribute_value := l_msg_types(i);
117: l_custom_rec.attribute_data_type :=BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
118: x_custom_attr.Extend();
119: x_custom_attr(l_bind_ctr):=l_custom_rec;

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

113:
114: l_custom_rec.attribute_name := ':l_msgtype'||i;
115: l_custom_rec.attribute_type :=BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
116: l_custom_rec.attribute_value := l_msg_types(i);
117: l_custom_rec.attribute_data_type :=BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
118: x_custom_attr.Extend();
119: x_custom_attr(l_bind_ctr):=l_custom_rec;
120: l_bind_ctr:=l_bind_ctr+1;
121:

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

154: IF l_code_table IS NOT NULL AND l_code_table.COUNT >0 THEN
155: FOR i IN l_code_table.FIRST..l_code_table.LAST LOOP
156: l_custom_rec.attribute_name :=':l_appcode'||i;
157: l_custom_rec.attribute_value := l_code_table(i);
158: l_custom_rec.attribute_data_type :=BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
159: l_custom_rec.attribute_type :=BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
160: x_custom_attr.Extend();
161: x_custom_attr(l_bind_ctr):=l_custom_rec;
162: l_bind_ctr:=l_bind_ctr+1;

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

155: FOR i IN l_code_table.FIRST..l_code_table.LAST LOOP
156: l_custom_rec.attribute_name :=':l_appcode'||i;
157: l_custom_rec.attribute_value := l_code_table(i);
158: l_custom_rec.attribute_data_type :=BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
159: l_custom_rec.attribute_type :=BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
160: x_custom_attr.Extend();
161: x_custom_attr(l_bind_ctr):=l_custom_rec;
162: l_bind_ctr:=l_bind_ctr+1;
163:

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

162: l_bind_ctr:=l_bind_ctr+1;
163:
164: l_custom_rec.attribute_name :=':l_app_meaning'||i;
165: l_custom_rec.attribute_value := l_meaning_table(i);
166: l_custom_rec.attribute_data_type :=BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
167: l_custom_rec.attribute_type :=BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
168: x_custom_attr.Extend();
169: x_custom_attr(l_bind_ctr):=l_custom_rec;
170: l_bind_ctr:=l_bind_ctr+1;

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

163:
164: l_custom_rec.attribute_name :=':l_app_meaning'||i;
165: l_custom_rec.attribute_value := l_meaning_table(i);
166: l_custom_rec.attribute_data_type :=BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
167: l_custom_rec.attribute_type :=BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
168: x_custom_attr.Extend();
169: x_custom_attr(l_bind_ctr):=l_custom_rec;
170: l_bind_ctr:=l_bind_ctr+1;
171:

Line 281: l_custom_rec := BIS_PMV_PARAMETERS_PUB.Initialize_Query_Type;

277: l_status_where || l_type_where ||')';
278: l_sql := l_sql || l_orderby;
279: x_custom_sql := l_sql;
280:
281: l_custom_rec := BIS_PMV_PARAMETERS_PUB.Initialize_Query_Type;
282: x_custom_attr := BIS_QUERY_ATTRIBUTES_TBL();
283:
284: l_bind_ctr := 1;
285: l_custom_rec.attribute_name := ':msg_type';

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

282: x_custom_attr := BIS_QUERY_ATTRIBUTES_TBL();
283:
284: l_bind_ctr := 1;
285: l_custom_rec.attribute_name := ':msg_type';
286: l_custom_rec.attribute_type :=BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
287: l_custom_rec.attribute_value := l_msg_type;
288: l_custom_rec.attribute_data_type :=BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
289: x_custom_attr.Extend();
290: x_custom_attr(l_bind_ctr):=l_custom_rec;

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

284: l_bind_ctr := 1;
285: l_custom_rec.attribute_name := ':msg_type';
286: l_custom_rec.attribute_type :=BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
287: l_custom_rec.attribute_value := l_msg_type;
288: l_custom_rec.attribute_data_type :=BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
289: x_custom_attr.Extend();
290: x_custom_attr(l_bind_ctr):=l_custom_rec;
291: l_bind_ctr:=l_bind_ctr+1;
292:

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

293: IF l_code_table IS NOT NULL AND l_code_table.COUNT >0 THEN
294: FOR i IN l_code_table.FIRST..l_code_table.LAST LOOP
295: l_custom_rec.attribute_name :=':l_appcode'||i;
296: l_custom_rec.attribute_value := l_code_table(i);
297: l_custom_rec.attribute_data_type :=BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
298: l_custom_rec.attribute_type :=BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
299: x_custom_attr.Extend();
300: x_custom_attr(l_bind_ctr):=l_custom_rec;
301: l_bind_ctr:=l_bind_ctr+1;

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

294: FOR i IN l_code_table.FIRST..l_code_table.LAST LOOP
295: l_custom_rec.attribute_name :=':l_appcode'||i;
296: l_custom_rec.attribute_value := l_code_table(i);
297: l_custom_rec.attribute_data_type :=BIS_PMV_PARAMETERS_PUB.VARCHAR2_BIND;
298: l_custom_rec.attribute_type :=BIS_PMV_PARAMETERS_PUB.BIND_TYPE;
299: x_custom_attr.Extend();
300: x_custom_attr(l_bind_ctr):=l_custom_rec;
301: l_bind_ctr:=l_bind_ctr+1;
302: END LOOP;