167: SELECT nvl(l_invoice_close_tolerance, posp.INVOICE_CLOSE_TOLERANCE),
168: nvl(l_receive_close_tolerance, posp.RECEIVE_CLOSE_TOLERANCE)
169: INTO l_invoice_close_tolerance,
170: l_receive_close_tolerance
171: FROM po_system_parameters posp;
172: exception
173: when others then null;
174: end;
175:
317: SELECT receiving_flag,
318: inspection_required_flag
319: INTO l_rcv_flag,
320: l_insp_flag
321: FROM po_system_parameters;
322:
323: exception
324: when others then
325: null;