Forum Replies Created

  • Lee Stewart

    Member
    07/22/2021 at 11:26 AM in reply to: HOW TO GET MO ASSOCIATED WITH AN RO?

    Nevermind, I found a way to expand it by manipulating the code. Thanks again. This was just what I needed to get me started.

  • Lee Stewart

    Member
    07/22/2021 at 11:05 AM in reply to: HOW TO GET MO ASSOCIATED WITH AN RO?

    Thanks Mike. I tried the code and it works on this test case. Can you modify it to get all RO that are linked to an MO (SI_Number starting with M)

  • Lee Stewart

    Member
    01/07/2021 at 5:15 AM in reply to: HOW DO I GET WO# ASSOCIATED WITH SO#

    Thank you so much. I spent so much time joining tables together with no success.

  • Lee Stewart

    Member
    12/02/2020 at 11:39 AM in reply to: STOCK AND STOCK AUDIT JOIN?

    The person I am designing the report for wants these fields from Stock Audit. I will try the table you mentioned to see if it gives me the same information that’s in the Stock Audit view.

  • Lee Stewart

    Member
    11/06/2020 at 4:03 AM in reply to: CUSTOMER QUOTES WITH ALTERNATES

    Thanks Thiago. I stumbled upon a solution yesterday using the Alternates_View. I joined Master_PNM_Auto_Key to PNM_Auto_Key on Parts Master table, and it worked.

  • Lee Stewart

    Member
    11/05/2020 at 5:02 AM in reply to: CUSTOMER QUOTES WITH ALTERNATES

    What’s the linkage between Parts Master and CQ History with Alternates. First attached image

    Here’s the scenario. I want to determine what Parts have had no customer quotes for the last 3 yrs. In the attached figure, X-D4N-300M is in our inventory and has no quotes, but it’s alternate X-D4N does. I want to have both X-D4N-300M and X-D4N associated with the same quote so I can do a lookup on X-D4N-300M and see that it has had quotes associated with it even though the quote was on its alternate.

    I’ve tried linking the CQ_Detail to Parts_master twice. One join is on ALT_PNM_AUTO_KEY to PNM_Auto_Key and PNM_Auto_key to PNM_Auto_key. (Image 3 & 4) I get the same part number in the Crystal Report (image 2).

  • Lee Stewart

    Member
    06/11/2020 at 8:55 AM in reply to: WHAT TABLE DOES QTY ISSUED COME FROM IN SL IN QUANTUM

    Thanks guys, I abandoned the view after using your tips. I have an almost complete solution. This Crystal Report I’m designing is challenging, but I’ve learned a lot from it.

  • Lee Stewart

    Member
    06/10/2020 at 6:30 AM in reply to: WHAT TABLE DOES QTY ISSUED COME FROM IN SL IN QUANTUM

    Thanks David.

  • Lee Stewart

    Member
    06/10/2020 at 3:51 AM in reply to: WHAT TABLE DOES QTY ISSUED COME FROM IN SL IN QUANTUM

    No. This is an entirely new problem. His post did help with the issue I had posted about, but I found an alternate solution using the VIEW_SPR_WO_BOM table. I’d like to be able to get the Qty Issued from the Stock Line but Stock table doesn’t have QTY Issued field which is weird. I wonder where that Qty Issued comes from. I searched through the Quantum Data Dictionary to find all tables that have that field but the ones I tested did not give me the result I was looking for.

  • Lee Stewart

    Member
    06/08/2020 at 5:25 PM in reply to: JOINING STOCK TO WO_OPERATION

    How do you join WO_BOM table to STOCK table

  • Lee Stewart

    Member
    05/13/2020 at 7:00 AM in reply to: JOIN GL_FISCAL AND GL_PERIOD TO INVOICES

    This was very challenging, but I managed to come up with a solution to getting the year and month in the cross-tab header using fiscal_start from GL_Fiscal and GL_Period. Adding the fields directly blew up the report.

    My solution was to use SQL statements to get the fiscal_start from GL_Fiscal and GL_Period and use formulas to format the dates as year and month. I also had to use Select Distinct Records and Perform Grouping on Server option in the Database menu

  • Lee Stewart

    Member
    04/28/2020 at 6:43 PM in reply to: JOINING STOCK TO WO_OPERATION

    Thanks guys, I will experiment with these ideas when I have some slack time and report back.

  • Lee Stewart

    Member
    03/24/2020 at 4:53 PM in reply to: LINKING POS TO SOS

    I am so glad I found this post because I was having the hardest time trying to link PO_Details and SO_Details. Added Purchase_Sales and used left outer joins and it worked perfect.

  • Lee Stewart

    Member
    02/27/2020 at 8:47 AM in reply to: RO ORDER REPORT THAT SHOWS SO AND WO NUMBERS

    I am so glad I found this thread. I’ve been all morning trying to figure out how to link RO_Detail to WO_Operation. I tried WO_BOM as suggested in the post and it worked perfectly. Thank you, thank you, thank you.

  • Lee Stewart

    Member
    12/16/2019 at 7:45 AM in reply to: LINKING CONTACT MANAGER TO CUSTOMER QUOTATIONS

    Figured out the solution to my problem: This is a repost of what Jake wrote plus some corrections. This will allow you to link Customer Quotes and Contact Manager tables in a Crystal Report.

    PROJECT_HEADER links to PROJECT_LINKS on PJH_AUTO_KEY

    PROJECT_LINKS links to CQ_HEADER on KEY_VALUE= CQH_AUTO_KEY

    COMPANIES links to CQ_HEADER on CMP_AUTO_KEY.

    CQ_STATUS links to CQ_HEADER on CQS_AUTO_KEY

    PROJECT_HEADER links to PROJECT_DETAIL on PJH_AUTO_KEY

    SYS_USERS links to PROJECT_HEADER on SYSUR_AUTO_KEY

    FILTERS: PROJECT_LINKS.ORDER_TYPE = ‘CQ’

    CQ_STATUS.DESCRIPTION = OPEN

    CQ_HEADER.HISTORICAL_FLAG = FALSE

  • Lee Stewart

    Member
    12/16/2019 at 5:19 AM in reply to: LINKING CONTACT MANAGER TO CUSTOMER QUOTATIONS

    I tried what you suggested, but here’s what’s happening now in Crystal Reports.

    I have two filters: CQ_Status.Description = OPEN, Project_Links.Order_Type = CQ.

    However, I am only getting records where historical flag = true and not where historical flag = false (I have no filter for historical flag). I don’t get a full record set. The CQ_Numbers are in the 160000 range.

    I checked 60820 in Customer Quotations in Quantum and clicked Contact Management Links button and 44885 does not appear for the Contact # (i.e. PRJ_Number)

    I’ve attached some screenshots from Quantum and Crystal Reports