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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PO amendment error

Status
Not open for further replies.

shaccpac

Technical User
Sep 12, 2008
84
is it possible change the tax group after posting the PO?


thanks in advance.
 
You mean write a macro to edit posted PO?

Sample code can you give?
 
dim POPORH as AccpacView
dim a4wLink as AccpacDblink
Set a4wLink = OpenDBLink(DBLINK_COMPANY, DBLINK_FLG_READWRITE)
a4wLink.Openview "PO0620", POPORH

POPORH.Browse "Your criteria", True
POPORH.Fetch
POPORH.Fields("TAXGROUP") = YourValue
POPORH.Update
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top