DBA Data[Home] [Help]

APPS.PO_VAL_LINES2 dependencies on STANDARD

Line 7: -- This method is called only for Standard PO and quotation documents

3:
4: -------------------------------------------------------------------------
5: -- The lookup code specified in over_tolerance_error_flag with the lookup type
6: -- 'RECEIVING CONTROL LEVEL' has to exist in po_lookup_codes and still active.
7: -- This method is called only for Standard PO and quotation documents
8: -------------------------------------------------------------------------
9: PROCEDURE over_tolerance_err_flag(p_id_tbl IN po_tbl_number,
10: p_over_tolerance_err_flag_tbl IN po_tbl_varchar30,
11: x_result_set_id IN OUT NOCOPY NUMBER,

Line 57: -- If purchase basis is not 'TEMP LABOR' or document type is not STANDARD ,

53: x_results IN OUT NOCOPY PO_VALIDATION_RESULTS_TYPE,
54: x_result_type OUT NOCOPY VARCHAR2);
55:
56: -------------------------------------------------------------------------
57: -- If purchase basis is not 'TEMP LABOR' or document type is not STANDARD ,
58: -- contractor first name and last name fields should be empty
59: -------------------------------------------------------------------------
60: PROCEDURE contractor_name(p_id_tbl IN po_tbl_number,
61: p_doc_type IN VARCHAR2,

Line 288: --Start date is required for Standard PO with purchase basis 'TEMP LABOR'

284: x_result_set_id IN OUT NOCOPY NUMBER,
285: x_result_type OUT NOCOPY VARCHAR2);
286:
287: -------------------------------------------------------------------------
288: --Start date is required for Standard PO with purchase basis 'TEMP LABOR'
289: --Expiration date if provided should be later than the start date
290: --If purchase basis is not 'TEMP LABOR', start_date and expiration_date have to be null
291: -------------------------------------------------------------------------
292: PROCEDURE start_date_standard(p_id_tbl IN PO_TBL_NUMBER,

Line 292: PROCEDURE start_date_standard(p_id_tbl IN PO_TBL_NUMBER,

288: --Start date is required for Standard PO with purchase basis 'TEMP LABOR'
289: --Expiration date if provided should be later than the start date
290: --If purchase basis is not 'TEMP LABOR', start_date and expiration_date have to be null
291: -------------------------------------------------------------------------
292: PROCEDURE start_date_standard(p_id_tbl IN PO_TBL_NUMBER,
293: p_start_date_tbl IN PO_TBL_DATE,
294: p_expiration_date_tbl IN PO_TBL_DATE,
295: p_purchase_basis_tbl IN PO_TBL_VARCHAR30,
296: x_results IN OUT NOCOPY PO_VALIDATION_RESULTS_TYPE,

Line 302: PROCEDURE item_id_standard(p_id_tbl IN PO_TBL_NUMBER,

298:
299: -------------------------------------------------------------------------
300: -- If order_type_lookup_code is not 'RATE' or 'FIXED PRICE', and item_id is not null, then bom_item_type cannot be 1 or 2.
301: -------------------------------------------------------------------------
302: PROCEDURE item_id_standard(p_id_tbl IN PO_TBL_NUMBER,
303: p_item_id_tbl IN PO_TBL_NUMBER,
304: p_order_type_lookup_code_tbl IN PO_TBL_VARCHAR30,
305: p_inventory_org_id IN NUMBER,
306: x_result_set_id IN OUT NOCOPY NUMBER,

Line 313: PROCEDURE quantity_standard(p_id_tbl IN PO_TBL_NUMBER,

309: -------------------------------------------------------------------------
310: -- Quantity cannot be zero for SPO
311: -- And quantity cannot be empty for SPO if order type is QUANTITY/AMOUNT
312: -------------------------------------------------------------------------
313: PROCEDURE quantity_standard(p_id_tbl IN PO_TBL_NUMBER,
314: p_quantity_tbl IN PO_TBL_NUMBER,
315: p_order_type_lookup_code_tbl IN po_tbl_varchar30,
316: x_results IN OUT NOCOPY PO_VALIDATION_RESULTS_TYPE,
317: x_result_type OUT NOCOPY VARCHAR2);

Line 322: PROCEDURE amount_standard(p_id_tbl IN PO_TBL_NUMBER,

318:
319: -------------------------------------------------------------------------
320: -- If order_type_lookup_code is 'FIXED PRICE' or 'RATE', amount cannot be null
321: -------------------------------------------------------------------------
322: PROCEDURE amount_standard(p_id_tbl IN PO_TBL_NUMBER,
323: p_amount_tbl IN PO_TBL_NUMBER,
324: p_order_type_lookup_code_tbl IN PO_TBL_VARCHAR30,
325: x_results IN OUT NOCOPY PO_VALIDATION_RESULTS_TYPE,
326: x_result_type OUT NOCOPY VARCHAR2);