[Home] [Help]
1082: CURSOR get_eam_txn_rec( c_wip_entity_id NUMBER, c_op_seq_num NUMBER )
1083: IS
1084: SELECT transaction_type,
1085: transaction_date
1086: FROM EAM_OP_COMPLETION_TXNS
1087: WHERE wip_entity_id = p_wip_entity_id
1088: AND operation_seq_num = p_operation_sequence_num
1089: ORDER BY transaction_date DESC;
1090: