List of Contributions

Contact Details

Ribbons

Badges

Jack Pennypacker


Contributions

1 to 5 of 23 total
Posted By Jack Pennypacker 05-10-2024 02:07 PM
Found In Community: Americas - Pacific Northwest - ID, OR, WA
\ view thread
I want to create a dashboard that will show what the Primary Bun number is for some parts, I can see from looking at the tech details for the field that the info is in the PartWhse table, and the field is PrimBinNum. But when I add it to a BAQ, that field is not visible at all. Not sure why, so wondering ...
Posted By Jack Pennypacker 03-20-2024 09:57 AM
Found In Community: Americas - Pacific Northwest - ID, OR, WA
\ view thread
I will give this a try and see if I can make this work.
Posted By Jack Pennypacker 03-18-2024 11:00 AM
Found In Community: Americas - Pacific Northwest - ID, OR, WA
\ view thread
Wondering if anyone has created a BAQ report or Dashboard that is utilizing a recursive BAQ to create COSTED indented BOM report. If so, would you be willing to share that BAQ with all of us? I have been told that using a CTE query that a recursive BAQ could create a better Costed BOM report that is ...
Posted By Jack Pennypacker 02-23-2024 05:34 PM
Found In Community: Americas - Pacific Northwest - ID, OR, WA
\ view thread
Okay I got this to work here is what I did: with [SubQuery1] as (select [PartTran].[PartNum] as [PartTran_PartNum], [PartTran].[TranType] as [PartTran_TranType], [PartTran].[TranDate] as [PartTran_TranDate], [Part].[TypeCode] as [Part_TypeCode], (case when Row_Number() OVER (Partition BY Part.PartNum ...
Posted By Jack Pennypacker 02-23-2024 04:47 PM
Found In Community: Americas - Pacific Northwest - ID, OR, WA
\ view thread
I like what you have there, but confused on how to apply it to what I need. So For all active parts in out PART table, we want to get the earliest date for either the STK-MTL or PUR-STK transaction ( in the PartTran table , where the TranType is either the STK-MTL or PUR-STK. I need to get that date ...