DBA Data[Home] [Help]

APPS.PO_NOTIFICATIONS_SV3 dependencies on STANDARD

Line 215: ELSIF (x_document_type_code = 'STANDARD') THEN

211: ELSIF (x_document_type_code IN ('INTERNAL', 'PURCHASE')) THEN
212: x_code := 'E';
213: ELSIF (x_document_type_code = 'BLANKET') THEN
214: x_code := 'B';
215: ELSIF (x_document_type_code = 'STANDARD') THEN
216: x_code := 'H';
217: ELSE
218: raise INVALID_DOC_TYPE;
219: END IF;

Line 239: (x_document_type_code = 'STANDARD')) THEN

235: -- Bug 482497, lpo, 12/22/97
236: -- If code = 'PLANNED' use 'H' as x_code instead of 'P' to get the total in
237: -- the PO line level. (Using 'P' will get the total released amount.)
238: IF ((x_document_type_code = 'PLANNED') OR
239: (x_document_type_code = 'STANDARD')) THEN
240: x_code := 'H';
241: ELSIF (x_document_type_code IN ('RELEASE', 'SCHEDULED')) THEN
242: x_code := 'R';
243: ELSIF (x_document_type_code IN ('INTERNAL', 'PURCHASE')) THEN