Quantcast
Channel: Microsoft Dynamics GP
Viewing all articles
Browse latest Browse all 38722

Forum Post: RE: Is there any mechanism other than the Remove Completed Purchase Orders utility that would move a PO to the history table?

$
0
0
It seems that a more reliable way to identify voided POs is by searching table POP30100 where the column TRXSORCE value starts with 'POPVT' or where STATGRP is 0 or 1. Run this SQL script, it should return the 132 POs in question: SELECT PONUMBER , POSTATUS , STATGRP , TRXSORCE FROM POP30100 WHERE ( TRXSORCE LIKE 'POPVT%' ) The following script should return the same results of the above script: SELECT PONUMBER , POSTATUS , STATGRP , TRXSORCE FROM POP30100 WHERE STATGRP IN ( 0 , 1 )

Viewing all articles
Browse latest Browse all 38722

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>