DBA Data[Home] [Help]

APPS.PO_PDOI_HEADER_PROCESS_PVT dependencies on PO_VALIDATIONS

Line 1616: PO_VALIDATIONS.validate_pdoi(p_headers => l_headers,

1612: l_parameter_value_tbl(6) := PO_PDOI_PARAMS.g_sys.manual_quote_num_type;
1613:
1614: d_position := 10;
1615:
1616: PO_VALIDATIONS.validate_pdoi(p_headers => l_headers,
1617: p_doc_type => PO_PDOI_PARAMS.g_request.document_type,
1618: p_parameter_name_tbl => l_parameter_name_tbl,
1619: p_parameter_value_tbl => l_parameter_value_tbl,
1620: x_result_type => l_result_type,

Line 1625: IF l_result_type = po_validations.c_result_type_failure THEN

1621: x_results => l_results);
1622:
1623: d_position := 20;
1624:
1625: IF l_result_type = po_validations.c_result_type_failure THEN
1626: IF (PO_LOG.d_stmt) THEN
1627: PO_LOG.stmt(d_module, d_position, 'vaidate headers return failure');
1628: END IF;
1629:

Line 1648: IF l_result_type = po_validations.c_result_type_fatal THEN

1644: END IF;
1645:
1646: d_position := 40;
1647:
1648: IF l_result_type = po_validations.c_result_type_fatal THEN
1649: IF (PO_LOG.d_stmt) THEN
1650: PO_LOG.stmt(d_module, d_position, 'vaidate headers return fatal');
1651: END IF;
1652:

Line 3195: IF x_results.result_type(i) = po_validations.c_result_type_failure THEN

3191:
3192: d_position := 10;
3193:
3194: FOR i IN 1 .. x_results.entity_id.COUNT LOOP
3195: IF x_results.result_type(i) = po_validations.c_result_type_failure THEN
3196: x_headers.error_flag_tbl(l_index_tbl(x_results.entity_id(i))) := FND_API.g_TRUE;
3197: END IF;
3198: END LOOP;
3199: