plenz
Forum Replies Created
-
Could they make the hot keys consistent accross all modules?
-
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
Member10/03/2022 at 4:41 PM in reply to: Needed: Outsourced Quantum Innventory Manager / ConsultantHi Susan,
I’m interested in helping out. Please email me more information. plenz@vih.com
-
HI Jake, How about a session on Using Lot Manager?
-
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.
-
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.
-
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
-
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.
-
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.
-
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!
-
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
-
It would be what the form is, like WO Packing Slip.
-
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
-
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
-
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
-
Pietro: Sorry should have been the Buy_Detail and the Buy_Source tables.
-
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.
-
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.
-
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.