Skip to main content

Notifications

Announcements

No record found.

Microsoft Dynamics AX (Archived)

Unreserve "Physical Reserved" Qty in Ax 2009 thru x++

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

Hi All,

We are cleaning our inventory on hand. Some records got "Physical Reserved" Qty.

How do we unreserve the "Physical reserved" thru X++?

Your help is greatly appreciated.

Thanks

Andrews

*This post is locked for comments

  • Suggested answer
    Community Member Profile Picture
    Community Member Microsoft Employee on at
    RE: Unreserve "Physical Reserved" Qty in Ax 2009 thru x++

    To remove a reservation (just reverse the sign on the qty):

    In the code below, ‘inventTransParent’ is the inventTransId of the record that has the reservation (e.g. salesline.inventTransId)

    You probably will want to modify the ‘where’ clause a bit to make sure you get the reservation records only, but this is just an example.

    //Remove any existing reservations

    InventTrans            inventTransReserve    ;

    InventMovement         inventMovement        ;

    InventUpd_Reservation  inventUpd_Reservation ;

    ;

    while select inventTransReserve where inventTransReserve.InventTransId == inventTransParent

    {

       Inventmovement = inventTransReserve.inventmovement(true);

       inventUpd_Reservation = InventUpd_Reservation::newInventDim(inventmovement,inventTransReserve.inventDim(), -1 * inventTransReserve.Qty ,false);    inventUpd_Reservation.updatenow();

    }

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Verified Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,391 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,445 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans