Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to print PO Items with the Change Order Flag = Yes

Status
Not open for further replies.

SpeedyGonza

Technical User
Nov 16, 2004
18
0
0
CA
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top