DBA Data[Home] [Help]

APPS.PO_INTERFACE_ERRORS_PVT dependencies on PO_INTERFACE_ERRORS_S

Line 44: -- from the next number in PO_INTERFACE_ERRORS_S sequence.

40: -- Before calling this procedure, p_rec must be populated with values for
41: -- the columns user wants to set. If p_rec.interface_type is not set, the
42: -- value 'UNKNOWN' will be populated as INTERFACE_TYPE in po_interface_erros.
43: -- If p_rec.interface_transaction_id is not set, the value will be derived
44: -- from the next number in PO_INTERFACE_ERRORS_S sequence.
45: -- Also, the following fields will be derived within the procedure and
46: -- the corresponding columns within p_rec will be ignored:
47: -- creation_date
48: -- created_by

Line 97: SELECT po_interface_errors_s.NEXTVAL

93: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
94: END IF;
95:
96: IF (p_rec.interface_transaction_id IS NULL) THEN
97: SELECT po_interface_errors_s.NEXTVAL
98: INTO l_interface_transaction_id
99: FROM DUAL;
100: ELSE
101: l_interface_transaction_id := p_rec.interface_transaction_id;