Sage 100

 View Only
  • 1.  Print Picking Sheet for NON-STANDARD Sales Order

    Posted 05-16-2022 19:19
    Sage 100 really allows to print Picking Sheets for Quotes, Repeating Orders….and even hard coded the title of the form to Picking Sheet??
    I am still trying to lock users from printing…but havent found a way

    ------------------------------
    Lourdes Sobrino
    LU² DSD Puerto Rico
    Guaynabo Puerto Rico
    787.485.9638
    ------------------------------


  • 2.  RE: Print Picking Sheet for NON-STANDARD Sales Order

    Posted 05-17-2022 08:10
    This won't stop them from printing but you could suppress the address (or other fields) with a conditional based on the SO type.

    ------------------------------
    Jeff Schwenk
    Bottomline Software, Inc.
    ------------------------------



  • 3.  RE: Print Picking Sheet for NON-STANDARD Sales Order

    Posted 05-17-2022 19:26

    If you want to only be able to print standard or back orders, you may be able to accomplish this with a UI post load script on the panel that reloads the values in the drop box so only the desired types can be selected or set it to what you want and disable it.  However, disabling it may be undone when changing form codes but I think reloading the drop box would persist, should be able to use something like this.

    oUIObj.SetControlProperty "OrderTypeToPrint", "Tbl$", "SB"
    oUIObj.DropBoxLoad "OrderTypeToPrint", "Standard Orders/Back Orders/"



    As for the title, you can just use a "select...case" statement on the OrderType field to output whatever you want for each type.



    ------------------------------
    David Speck II
    Tennessee Software Solutions
    ------------------------------



  • 4.  RE: Print Picking Sheet for NON-STANDARD Sales Order

    Posted 05-19-2022 14:04
    Also, I should have added that my last post was for the Picking Sheet Printing task on the menu, it does not affect quick printing.  If you don't want them to be able to get to the quick print button for picking sheets, you could use a post read event that checks the order type and conditionally disables/enables the button.

    Of course, the other way to handle it would be by modifying the crystal report, either with record or group selections or by changing what is displayed in the report based on the order type.

    ------------------------------
    David Speck II
    Tennessee Software Solutions
    ------------------------------