DBA Data[Home] [Help]

APPS.OE_INSTALL_BASE_UTIL dependencies on CSI_DATASTRUCTURES_PUB

Line 7: g_returned_inst_tbl csi_datastructures_pub.instance_cz_tbl;

3:
4: -- This is the Global PL/SQL table for the returned set of Instances
5: -- From the Instance Query Form
6:
7: g_returned_inst_tbl csi_datastructures_pub.instance_cz_tbl;
8:
9: -- This record holds the data that is selected from the Install Base Reconfiguration UI
10:
11: TYPE instance_rec_type IS RECORD

Line 23: TYPE instance_tbl_type IS TABLE OF csi_datastructures_pub.instance_cz_rec

19: SHIP_TO_SITE_USE_ID NUMBER := NULL,
20: INSTANCE_NAME VARCHAR2(240) := NULL
21: );
22:
23: TYPE instance_tbl_type IS TABLE OF csi_datastructures_pub.instance_cz_rec
24: INDEX BY BINARY_INTEGER;
25:
26:
27: -- This record type is used to populate the values for the new columns introduced

Line 50: l_returned_inst_tbl IN csi_datastructures_pub.instance_cz_tbl);

46: p_order_line_id IN number,
47: x_partner_order_rec OUT NOCOPY partner_order_rec);
48:
49: PROCEDURE return_selected_instances(
50: l_returned_inst_tbl IN csi_datastructures_pub.instance_cz_tbl);
51:
52: PROCEDURE get_returned_instances(
53: l_read_inst_tbl IN OUT NOCOPY csi_datastructures_pub.instance_cz_tbl );
54:

Line 53: l_read_inst_tbl IN OUT NOCOPY csi_datastructures_pub.instance_cz_tbl );

49: PROCEDURE return_selected_instances(
50: l_returned_inst_tbl IN csi_datastructures_pub.instance_cz_tbl);
51:
52: PROCEDURE get_returned_instances(
53: l_read_inst_tbl IN OUT NOCOPY csi_datastructures_pub.instance_cz_tbl );
54:
55: END oe_install_base_util;