SpeedyGonza
Technical User
Our company would like to have a modified report thant only print the most recently changed PO items (i.e. the one marked with "^" in the report). We want to ask a question before the user prints:
Private Sub Report_Start()
strPringChanges = "Do you want to print changes?"
intResult = MsgBox(strPringChanges, vbQuestion + vbYesNo _
+ vbDefaultButton2, Ambient.DisplayName)
End Sub
If use click yes then we'll only print the change items. But I don't know how to make use of the calculated fields or how to tell GP to print only when the Change Order Flag is equals to yes.
Private Sub Report_Start()
strPringChanges = "Do you want to print changes?"
intResult = MsgBox(strPringChanges, vbQuestion + vbYesNo _
+ vbDefaultButton2, Ambient.DisplayName)
End Sub
If use click yes then we'll only print the change items. But I don't know how to make use of the calculated fields or how to tell GP to print only when the Change Order Flag is equals to yes.