Forum Replies Created

  • Pat Lenz

    Member
    04/13/2023 at 12:34 PM in reply to: We want your feedback!

    Could they make the hot keys consistent accross all modules?

  • Pat Lenz

    Member
    12/01/2022 at 11:27 AM in reply to: PDF file name change

    This is an issue we have run into as well. We have one document that the file name is blank when printed.

    Can this issue be brought up throught the group with Component Control as an issue? This should be something the use should be able to change or modify.

  • Pat Lenz

    Member
    10/03/2022 at 4:41 PM in reply to: Needed: Outsourced Quantum Innventory Manager / Consultant

    Hi Susan,

    I’m interested in helping out. Please email me more information. plenz@vih.com

  • Pat Lenz

    Member
    07/22/2022 at 9:14 AM in reply to: Quantum West Coast Summit

    HI Jake, How about a session on Using Lot Manager?

  • Pat Lenz

    Member
    11/30/2021 at 8:08 AM in reply to: ACTUAL COSTING FOR PARTIAL RELEASE OF PRODUCT

    The Cost tab is displayed when you use Receive finished parts. You can then change the qty being built and click on the Cost tab to adjsut the cost applied to the stock line.

  • Pat Lenz

    Member
    06/29/2021 at 7:39 AM in reply to: CRYSTAL REPORTS RDP WITH 4K MONITOR

    After our recent upgrade to 12.3.8, we had a few users who had scaling issues with Font and Icons being very large. After some back and forth with CC we found that changing the High DPI scaling override to be controled by Quntum did the trick. Right click on the desktop Quantum Icon and select Properties, Compatabilty Tab, then check as shown. This might need to be completed with Admin privileges . Hope this helps.

  • Pat Lenz

    Member
    03/26/2020 at 8:34 AM in reply to: CHANGE TASK STATUS WHEN WP QUOTE IS APPROVED

    Hi Craig,

    If you go under the Shop control drop down menu, go to Setup at the bottom. From there you will find a WO Quote Status which are status for Work Quotes that also can control the status of the WO. What we have is a Quote status of sent which canges the status of the WO to QTE Sent. You will need to have a status set up in the WO status table to use that the WQ status links to, which you have to have set up in advance. Hope this helps.

    Pat

  • Pat Lenz

    Member
    07/17/2019 at 7:24 AM in reply to: DOC/IMAGES

    We are having similar issues with Adobe, so I removed it and ran Fox-it reader with no issues. Then found that Adobe updated Reader DC so wanted to try and have been running it for 4 months now with no issues. The version of DC is 2019.012.20035. We have noticed that if a user has the full Adobe Acrobat issues still exist with reading PDF’s.

  • Pat Lenz

    Member
    05/16/2019 at 7:13 AM in reply to: EMAIL “SIGNATURES”

    Hi Jesse, What I use is under the User settings on the Email Config is the E-Mail Signature box. This populates the email with the a statement I have. Hope this is what your looking for.

  • Pat Lenz

    Member
    02/05/2019 at 12:49 PM in reply to: DATA EXPORTING

    Hi Mike,

    We have Event Manager, but we don’t think it will handle what we are trying to achieve. It would result in a similar scenario, that we’re in now, in terms of users waiting for the data to be synchronized.

    If you don’t mind sharing, could you describe how you’re checking or listening to Quantum for any new or updated data to be exported?

    Thanks!

  • Pat Lenz

    Member
    12/13/2018 at 11:05 AM in reply to: DOCUMENT DESCRIPTION CHANGE

    Just reported it to CC and got a tracker T7109. CC said it’s not something that can’t be changed in Forms Designer. It’s unfortunate that this is not something the user can change.

    Pat

  • Pat Lenz

    Member
    12/11/2018 at 3:29 PM in reply to: DOCUMENT DESCRIPTION CHANGE

    It would be what the form is, like WO Packing Slip.

  • Pat Lenz

    Member
    07/10/2018 at 8:22 AM in reply to: FORMS DESIGNER PRESENTATION REQUESTS

    Just wanted to say thank you to Thiago from Data Studio, we took advantage of his offer and got some good tips and help on a form we are having issues with.

    Pat

  • Pat Lenz

    Member
    06/04/2018 at 1:24 PM in reply to: FORMS DESIGNER PRESENTATION REQUESTS

    One thing I would be interested in is common ways to fix printing an extra page, or setting or issues that cause a second page to print.

    Pat

  • Pat Lenz

    Member
    08/01/2017 at 9:10 AM in reply to: PURCHASE MANAGEMENT REPORT

    Update: Talking with CC and found out that to set the style you need to log in as SYSDBA, then go to Purchase Management, select which filters you want, then select from PO/Forms and Reports/Purchase Management Report set the style up for the report. The filters in the print setup don’t work, the form uses filters from Purchase Management. This is being investigated as a possible bug by Daniel at CC. Hope this will helps.

    Pat

  • Pat Lenz

    Member
    07/24/2017 at 7:04 AM in reply to: PURCHASE MANAGEMENT REPORT

    Pietro: Sorry should have been the Buy_Detail and the Buy_Source tables.

  • Pat Lenz

    Member
    10/26/2016 at 11:16 AM in reply to: KEEPING PEOPLE FORM OPENING A CLOSED WORK ORDER

    From the Work Order setup, status Choose the status you want set up the unlock on. Click Unlock and then add the users who are allowed to unlock the status. Hope this helps.

  • Pat Lenz

    Member
    10/24/2016 at 8:43 AM in reply to: KEEPING PEOPLE FORM OPENING A CLOSED WORK ORDER

    For our “Close” status, we use the unlock function. The users are added to the list are the only users that can change a Work order out of the “Close” status. If the user is not on the list, they can’t the close status. Hope this helps.

  • Pat Lenz

    Member
    04/03/2025 at 9:15 AM in reply to: Inventory Barcode Label show MO/WO Reservations

    Hi Mike,

    Thank you that works. Trying to get the Qty to show and I ether get 0 or 0,0,0, using the following:

    var

    qc : TOracleDataset;

    begin

    Text:=”;

    qc := TOracleDataset.Create(nil);

    qc.SetSession;

    qc.Sql.Text := ‘select qty_reserved from stock_reservations where wob_auto_key in ‘ +

    ‘(select woo_auto_key from wo_bom where wob_auto_key in ‘ +

    ‘(select wob_auto_key from stock_reservations where stm_auto_key=’ + PN[‘STM_AUTO_KEY’] + ‘))’;

    qc.open;

    while not qc.eof do

    Begin

    Text := Text + qc.FieldByName[‘qty_reserved’].AsString+’,’;

    qc.Next;

    End;

    qc.Free;

    end;

    end;

    This should show me the Qty’s from Stock_reservation.