DBA Data[Home] [Help]

APPS.POS_WF_PO_ACKNOWLEDGE dependencies on PO_HEADERS

Line 169: from po_headers_all poh,

165: select poh.segment1 || '-' || poh.revision_num, polc.displayed_field, poh.agent_id,
166: poh.acceptance_required_flag, poh.acceptance_due_date, poh.org_id
167: into x_document_num, x_document_type, x_agent_id, x_acceptance_required_flag,
168: x_acceptance_due_date, x_org_id
169: from po_headers_all poh,
170: po_lookup_codes polc
171: where poh.po_header_id = x_document_id
172: and poh.type_lookup_code = polc.lookup_code
173: and polc.lookup_type = 'PO TYPE';

Line 186: po_headers_all poh,

182: por.acceptance_required_flag, por.acceptance_due_date, por.agent_id
183: into x_release_num, x_agent_id, x_document_num, x_document_type, x_acceptance_required_flag,
184: x_acceptance_due_date, x_agent_id
185: from po_releases_all por,
186: po_headers_all poh,
187: po_lookup_codes polc
188: where por.po_release_id = x_document_id
189: and por.po_header_id = poh.po_header_id
190: and polc.lookup_type = 'DOCUMENT TYPE'

Line 316: from po_headers

312: x_Po_Header_Id := x_document_id;
313:
314: select revision_num
315: into x_revision_num
316: from po_headers
317: where po_header_id = x_document_id;
318: else
319: x_Po_Release_Id := x_document_id;
320:

Line 398: from po_headers

394: where po_release_id = document_id;
395: else
396: select nvl(acceptance_required_flag, 'N')
397: into x_acceptance_required
398: from po_headers
399: where po_header_id = document_id;
400: end if;
401: exception
402: when others then