Advertisement
crexin

Dyn GP Post Vendor TEN99TYPE = NonEmployee Compensation

Dec 21st, 2021
5,196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.34 KB | None | 0 0
  1. /*
  2. Post SQL Task for setting TEN99TYPE and TEN99BOXNumber in Dynamics GP PM00200 to a Non-Employee Compensation type
  3. Note this is dependent on Source data and is set as a post SQL Document Task with eOne SmartConnect
  4. */
  5.  
  6. UPDATE PM00200
  7. SET TEN99TYPE = 5
  8. , TEN99BOXNUMBER = 1
  9. WHERE VENDORID = '_Request_VendorID'
  10. AND TXIDNMBR <> ''
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement