Forum Replies Created

Page 1 of 5
  • Pietro Race

    Member
    04/01/2024 at 11:12 AM in reply to: PURCHASE MANAGEMENT – FILTER BY WO STATUS

    You can uncheck the requisition check box until the right status is set and. Then the release to further refine what you want.

  • Pietro Race

    Member
    04/01/2024 at 11:10 AM in reply to: Recommended PDF reader for Document Imaging

    People use nitro

  • Pietro Race

    Member
    03/21/2024 at 9:59 AM in reply to: PURCHASE MANAGEMENT – FILTER BY WO STATUS

    john i just did something similar for another company. ill put in your db so you can see

  • Pietro Race

    Member
    03/21/2024 at 9:03 AM in reply to: Block stock Activity for PI count

    Alex if you use the barcoding module. With it you can do a floating PI that will keep track of inventory changes.

  • Pietro Race

    Member
    03/08/2024 at 9:25 PM in reply to: Closing Shipper/Shipments with SQL

    You can use the event manager to change the status automatically. Easier

  • Pietro Race

    Member
    03/08/2024 at 9:23 PM in reply to: PURCHASE MANAGEMENT – FILTER BY WO STATUS

    I think it’s possible to select the type of status. I’ll need to dig in to be sure. As for the stored procedure it cannot be changed

  • Leif. You need to change the ils_extract directory to here you want to to go and then create rights to in Oracle.

  • Pietro Race

    Member
    02/21/2024 at 3:55 PM in reply to: How to create a View in a schema other than QCTL

    login to dia/report and run create view. make sure the view doesn’t have qctl schema specifically assigned. Once done then you can select view from dia.

  • Pietro Race

    Member
    02/14/2024 at 10:45 AM in reply to: Term Code and Charges

    You can add a default charge to the invoice but not the sales order

  • Pietro Race

    Member
    01/26/2024 at 7:57 PM in reply to: Packing Slip

    you can pull data from other pipeline using code like this

    var

    q : TOracleDataset;

    begin

    q := TOracleDataset.Create(nil);

    q.SetSession;

    q.Sql.text :=’SELECT IC_UDF_002 FROM PARTS_MASTER WHERE PNM_AUTO_KEY = ‘ + SM_DETAIL[‘PNM_AUTO_KEY’];

    q.Open;

    Text := q.FieldByName[‘IC_UDF_002’].AsString;

    q.Free;

    end;

  • Pietro Race

    Member
    01/26/2024 at 7:50 PM in reply to: ADDING A FIELD ON PICK TICKET FROM DIFFERENT DATA TREE

    make a text box on the document and put in something like this.. this is just a generic pieceof code

    var

    q : TOracleDataset;

    begin

    q := TOracleDataset.Create(nil);

    q.SetSession;

    q.Sql.text :=’SELECT IC_UDF_002 FROM PARTS_MASTER WHERE PNM_AUTO_KEY = ‘ + SM_DETAIL[‘PNM_AUTO_KEY’];

    q.Open;

    Text := q.FieldByName[‘IC_UDF_002’].AsString;

    q.Free;

    end;

  • Pietro Race

    Member
    12/20/2023 at 3:57 PM in reply to: External WO, Qty=27 and need to scrap 5 units.

    I would do two separate shipments. One will ship with correct 22 and then your other shipment for the scrapped

  • Pietro Race

    Member
    12/19/2023 at 5:25 PM in reply to: Event Manager – add serial number and wo #

    Hi Vickie. More than likely you will need to make a custom event with your own sql. You can’t modify the existing packages or it will pop the database.

  • Pietro Race

    Member
    12/14/2023 at 9:54 AM in reply to: Changing shipping statuses

    Osman. When you look at the statuses there is a user button if you take them off then they won’t see it

  • Pietro Race

    Member
    12/13/2023 at 1:38 PM in reply to: How does one implement URL Links?

    Hi Warren. What is the end goal here. For FedEx and ups you can connect with their little api

  • Pietro Race

    Member
    12/05/2023 at 7:17 AM in reply to: Blank Fields in Event Manager Email Notification

    This get resolved

  • Pietro Race

    Member
    12/05/2023 at 7:10 AM in reply to: Document Builder with Images

    You should be able to use the select from 3rd party imaging whitepaper to make the calls to imbed images into the documents

  • Pietro Race

    Member
    12/05/2023 at 7:08 AM in reply to: Invoicing Multiple WO on one invoice w/o BOM

    Josh you should be able to filter out the bom either by switch or forms designer

  • Pietro Race

    Member
    10/05/2023 at 10:26 AM in reply to: Quantum is opening windows opening all over the place

    Making Windows open applications on a specific monitor

    1. Ensure all instances of the app are closed. …
    2. Open your program.
    3. Move it to the monitor on which you would like it to open by default.
    4. Hit the Windows key + Shift + Enter.
    5. Close the application, and open it again – it should now open on the correct monitor.
  • Pietro Race

    Member
    08/22/2023 at 11:42 AM in reply to: Customer Scheduled Orders

    Darryl. Add the parts to a sales order and add ship date to when you want it shipped. We can probably do some automation to auto reserve and create a shipping order etc.

  • Pietro Race

    Member
    07/25/2023 at 9:11 AM in reply to: Troubleshooting Oracle Stability

    Great troubleshooting Warren. I making a list from your experience and things I al finding to use as a checklist. Out of memory errors are relatively new and I have Seen them quite a bit. Trying your network card fix on one client. We will see. Thx p

  • Pietro Race

    Member
    07/10/2023 at 5:08 AM in reply to: Automatic Emailing of Customer Invoices

    Alonda. There is a way to setup in event manager to use the Rolodex entry to send invoices and other documents. Let me know when you have time and I’ll show you how thx pietro

  • Pietro Race

    Member
    05/10/2023 at 2:14 PM in reply to: Customer Statements

    Chantrelle the trick to this is to use the rolodex . in event managerselect global rolodex list. make something named Invoice_contact

    this will show up thon the marketing tab on users in the rolodex. when you flag it makes it eligible to send mail

    Iin the to email address on the invoice notification <each>INVOICE_CONTACT</each>


    this will send to whoever you select ed in the rolodex per company

    thx

    P

  • Pietro Race

    Member
    05/04/2023 at 9:42 AM in reply to: Balancing Inventory

    Martijn, Kevin is the king of sorting this out. We also add an event lets you know the moment it goees out of balance so it is easier to fix

    thx

    P

  • Mike. Sometimes this means the schema is not the same on login. Old quantum used to translate. New versions do not

  • Pietro Race

    Member
    04/04/2023 at 9:56 AM in reply to: Reminder Notificications?

    Warren there is a cm change alert. Put in status code and follow up days and it should trip and event.

  • Pietro Race

    Member
    03/28/2023 at 8:29 AM in reply to: EMBEDDED IMPORT FAILURE

    yeah this is broken. I needed to roll back to office 2013 and it works again. I leave a machine just for imports. i tried leaving one window open but ii is finicky at best.

  • Pietro Race

    Member
    02/13/2023 at 12:41 PM in reply to: CR 2021 version?

    Mike I have Been using it for a while. I installed a 64bit client to make it work at its best

  • Pietro Race

    Member
    01/31/2023 at 11:53 AM in reply to: Automatic Price on Repair Order

    Mike I am Sure we can come up with a way to plug in the correct priceline like the quote module. By class code

  • Pietro Race

    Member
    01/30/2023 at 2:47 PM in reply to: 2023 Heli Expo Attendance

    Hi Dave we will be there. You have my email. Let me know where you will be thx

  • Pietro Race

    Member
    01/16/2023 at 10:28 AM in reply to: Multiple Commands in Crystal Reports

    Marcelo. This has been an open issue for a long time

  • Pietro Race

    Member
    01/09/2023 at 12:05 PM in reply to: Invoice PDF Retention

    San have you tried to use the print to images option in styles. This should print the image to imaging and email a copy. It you actually want a physical copy you can use the emgr image function. Set it to zero size and it will save it to folder when the event runs. Thx pietro

  • Pietro Race

    Member
    12/21/2022 at 1:48 PM in reply to: Home LP

    Something like update parts_master set foreign_list_price = foreign_list_price * .80 where foreign_list_price is not null.

  • Pietro Race

    Member
    12/21/2022 at 10:00 AM in reply to: SO Flag for pick ticket printed

    Field is called printed on the stock reservations table. T or F

  • Pietro Race

    Member
    12/19/2022 at 11:08 AM in reply to: PART NUMBER CHANGE ON STOCKLINE

    If you have a list of stm_auto_key and a new location code you can use ocdia to update the stock. There should be lots of scripts out there to do it. Thx pietro

  • Pietro Race

    Member
    12/08/2022 at 9:20 AM in reply to: Stockline QTY change

    Increase to a positive number and then you can change. It will make a batch

  • Pietro Race

    Member
    11/30/2022 at 8:28 AM in reply to: Tiny Text/Menus After Printing Report to Screen

    Sometimes it’s the default printer that causes this weirdness. also try to set the compatibility settings like te below screen on the quantum.exe and qcsysmod.exe

  • Pietro Race

    Member
    11/22/2022 at 5:37 PM in reply to: PDF file name change

    the subject can be changed in the event. I think the file name is hardcoded

  • Pietro Race

    Member
    11/16/2022 at 2:41 PM in reply to: How to use Update Field in Event Manager

    I am not sure what some of those old events do. Better to make a stored procedure where you can define what you need and just run the event in event manager

  • Pietro Race

    Member
    11/04/2022 at 1:06 PM in reply to: User Setup for seperate Accounting Companies

    Hi Pat. you can configure the user by company in user,system setup, maintain system tables,system browses, users. edit user and assign account company

  • Pietro Race

    Member
    11/01/2022 at 5:21 AM in reply to: Stockmarket causing Quantum porblems

    John this happens from. Time to time. You can set the timeout to a smaller number. It defaults to 20. Thx pietro

  • Pietro Race

    Member
    10/05/2022 at 9:36 AM in reply to: Job Board

    Rolanda. what part of the country are you located. I usually know people that are looking.

    thx

    Pietro

  • Brian if you are using version 12 + of quantum the. There are two possibilities. For the old setup check the server quantim imaging service and make sure that is running and it it’s the new images check the Apache service and make sure it’s still running. If this is ok then check the ports 8080 and 95 on the server to make sure they are open. Thx pietro

  • Pietro Race

    Member
    09/14/2022 at 6:44 AM in reply to: Adding the Images in the automated email

    After creating the event look at the button at the bottom that says images. Then click add and the image type etc. Then click ok and the images specified in I’ll link to the email

  • Pietro Race

    Member
    09/07/2022 at 6:25 PM in reply to: Shop Control/WO Auto-Reserve in 12.5.6

    Vickie are you using autoreserve between companies. Quantum will not auto reserve this way. Also if you are using warehouse filters it will not work either

  • Pietro Race

    Member
    09/07/2022 at 6:23 PM in reply to: Setting up a Style

    Hi Glen for anything run in event manager it needs a style saved. This is bridge between Quantum and Event Manager

  • Pietro Race

    Member
    09/07/2022 at 6:22 PM in reply to: Parameters window blank when opening custom report

    hi Henrik delete the computer\HKEY_CURRENT_USER\Software\Component Control USA, LLC.\Quantum Control reg key and it should come back.

  • Pietro Race

    Member
    09/07/2022 at 6:19 PM in reply to: Quantum Freezes

    Vicky is this a certain user having issues on that machine they have fetch sizes set to -1 this will lock everything up.

  • Pietro Race

    Member
    10/19/2023 at 12:14 AM in reply to: Exchange 365 Online Email from Event Manager

    Leif. Is there an error when sending through 365. There are two different jar files that were out about the time of your version. Th. P

  • Pietro Race

    Member
    01/11/2023 at 5:22 PM in reply to: Invoice PDF Retention

    Jason you can put that style into event manager and it will do it. It behind the scenes

Page 1 of 5