DBA Data[Home] [Help]

APPS.PO_VENDORS_GRP dependencies on STANDARD

Line 22: -- Contracts business document type ex: PA_BLANKET or PO_STANDARD

18: --IN:
19: --p_document_id
20: -- PO header ID
21: --p_document_type
22: -- Contracts business document type ex: PA_BLANKET or PO_STANDARD
23: -- This will be parsed to retrieve the PO document type
24: --p_external_contact_id
25: -- Supplier contact id on the deliverable. Default is null.
26: --p_init_msg_list

Line 95: IF (p_document_type IN ('PO_STANDARD', 'PA_BLANKET', 'PA_CONTRACT')) THEN

91: END IF;
92:
93:
94: -- parse doc type if contracts document type
95: IF (p_document_type IN ('PO_STANDARD', 'PA_BLANKET', 'PA_CONTRACT')) THEN
96: l_document_type := SUBSTR(p_document_type, 1, 2);
97: ELSE
98: l_document_type := p_document_type;
99: END IF;

Line 171: -- Contracts business document type ex: PA_BLANKET or PO_STANDARD

167: --IN:
168: --p_document_id
169: -- PO header ID
170: --p_document_type
171: -- Contracts business document type ex: PA_BLANKET or PO_STANDARD
172: -- This will be parsed to retrieve the PO document type
173: --p_external_contact_id
174: -- Supplier contact id on the deliverable. Default is null.
175: --p_init_msg_list

Line 255: IF (p_document_type IN ('PO_STANDARD', 'PA_BLANKET', 'PA_CONTRACT')) THEN

251: FND_MSG_PUB.initialize;
252: END IF;
253:
254: -- parse doc type if contracts document type
255: IF (p_document_type IN ('PO_STANDARD', 'PA_BLANKET', 'PA_CONTRACT')) THEN
256: l_document_type := SUBSTR(p_document_type, 1, 2);
257: ELSE
258: l_document_type := p_document_type;
259: END IF;