DBA Data[Home] [Help]

APPS.IGC_CC_COMMON_UTILS_PVT dependencies on PO_HEADERS_ALL

Line 366: x_po_header_id po_headers_all.po_header_id%type,

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

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

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