DBA Data[Home] [Help]

APPS.JL_ZZ_PO_LIBRARY_1_PKG dependencies on PO_LINE_LOCATIONS_ALL

Line 40: FROM po_line_locations_all

36: BEGIN
37: Errcd := 0;
38: SELECT SUM (global_attribute6)
39: INTO total_tax
40: FROM po_line_locations_all
41: WHERE po_header_id = po_header_id
42: AND rownum = row_number;
43: EXCEPTION
44: WHEN OTHERS THEN

Line 83: FROM po_line_locations_all

79: SELECT global_attribute1, global_attribute2,
80: global_attribute3, global_attribute4,
81: global_attribute5, global_attribute6
82: INTO ga1, ga2, ga3, ga4, ga5, ga6
83: FROM po_line_locations_all
84: WHERE line_location_id = form_line_loca_id
85: AND rownum = row_number;
86: EXCEPTION
87: WHEN OTHERS THEN

Line 101: FROM po_line_locations_all

97: BEGIN
98: Errcd := 0;
99: SELECT SUM (global_attribute6)
100: INTO total_tax
101: FROM po_line_locations_all
102: WHERE po_header_id = po_header_id2
103: AND po_release_id = po_release_id2
104: AND rownum = row_number;
105: EXCEPTION