3.3.5.4 Update INV01 to Allow Override of Order Amount

zaibhamid81
edited December 2022 in Academy Discussions

Hi Everyone,

 

Please advise If I am correct or not. I am having a little difficulty to understand what has been asked to created here.

 

We now have two check boxes  or Booleans "Submit purchase order Request?"  and "override Suggested Order Amount?". My question is does only one box needs to be checked at one time or they both needs to be checked for the correct execution of the transaction ?

If it needs both check boxes to be true at the same time then my formula is working but if only one check box needed ( "override Suggested Order Amount?") then I need help.

 

Please see below screen shots of the formulas and step by step process with 1 check box and both check boxes. with 1 check box the Confirm PO receipt is not showing override value until I check the Submit PO request check box.

zaibhamid81_0-1646747128088.png

zaibhamid81_1-1646747460430.pngzaibhamid81_2-1646747481503.png

zaibhamid81_3-1646747506032.png

Thanks

JH

 

Tagged:

Comments

  • AngeloB
    edited December 2022

    @zaibhamid81 

    I am facing the similar issue, however I think i have managed to resolve it in the following way: 

     

    'IF Submit Purchase Order Request? THEN Suggested Order Amount for the Month ELSE IF NOT Override Suggested Order Amount? THEN 0 ELSE Override Amount'

    The only constrain here is that I am over taxing the system to check first the condition that is less likely. So, using the above, if the user chooses to submit the order request, this will be executed OR if it chooses to overwrite the suggested amount and add one manually, will execute accordingly:

    ** You need to point out 'PO Submitted' and 'Confirmed Purchase Order Receipt' line items to 'Final Shipment Amount' 

     

    AngeloB_0-1659692875006.png

    AngeloB_1-1659692925758.pngAngeloB_2-1659693007518.png

    Hope to hear everyone comments in case of an alternative solution

    Angelo

     

     

  • fabio.casalegno
    edited December 2022

    Confirm Purchase Order Receipt is bringing to the future Final Shipment Amount based on Shipping Time Weeks IF Confirmed PO Delivery is greater than 1. 

     

    Confirmed PO Delivery is just PO Submitted posted to the future by Shipping Time Weeks.

     

    That means you just need to change the formula of PO Submitted to include the override case:

     

    IF Final Shipment Amount >0 OR Override Suggested Order Amount? THEN 1 ELSE 0

     

    If I am not mistaken this should solve the problem.

  • Aryen
    edited December 2022

    I think using If not will work

    IF NOT Submit Purchase Order Request? THEN Suggested Order Amount for the Month ELSE IF NOT Override Suggested Order Amount? THEN 0 ELSE Override Amount

  • Sagar17
    edited September 2023

    Please explain in a simple way