Cancel Purchase/Sales Packing slip [X++]

4.2
(11)
//Purch
// select the purch product receipt vendPackingSlipJour then:
Args args = new Args();
args.record(vendPackingSlipJour);
new MenuFunction(menuitemActionStr(PurchFormLetter_PackingSlipCancel), MenuItemType::Action).run(args);

//Sales
// select the sales packing slip custPackingSlipJour then:
Args args = new Args();
args.record(custPackingSlipJour);
new MenuFunction(menuitemActionStr(SalesFormLetter_PackingSlipCancel), MenuItemType::Action).run(args);

How useful was this post?

Click on a star to rate it!

Average rating 4.2 / 5. Vote count: 11

No votes so far! Be the first to rate this post.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Scroll to Top