DBA Data[Home] [Help]

APPS.IGC_CC_COMMON_UTILS_PVT dependencies on PO_HEADERS_ALL

Line 364: x_po_header_id po_headers_all.po_header_id%type,

360:
361:
362: FUNCTION DATE_IS_VALID(x_form_name VARCHAR2,
363: x_gl_date gl_period_statuses.start_date%type,
364: x_po_header_id po_headers_all.po_header_id%type,
365: x_po_line_id po_lines_all.po_line_id%type,
366: x_line_location_id po_line_locations_all.line_location_id%type,
367: x_po_distribution_id po_distributions_all.po_distribution_id%type,
368: x_po_dist_num po_distributions_all.distribution_num%type,

Line 410: CURSOR c_get_po_line_id(p_po_header_id po_headers_all.po_header_id%type)

406: AND po_line_id = x_po_line_id
407: AND line_location_id = x_line_location_id;
408:
409: -- Cursors for the call from Invoice Gateway
410: CURSOR c_get_po_line_id(p_po_header_id po_headers_all.po_header_id%type)
411: IS SELECT po_line_id
412: FROM po_lines
413: WHERE po_header_id = p_po_header_id;
414: