Here is the selection criteria i have :
(
({PART.QTY_IN_DEMAND} <> 0.00) and
({PART.ORDER_POLICY} <> ["D", "E"]) and
({PART.DETAIL_ONLY} = "N")
and
{PART.ENGINEERING_MSTR} = "Q"
)
OR
(
({PART.QTY_IN_DEMAND} <> 0.00) and
(({PART.PLANNING_LEADTIME} = 0.00) OR ISNULL({PART.PLANNING_LEADTIME}))
and
({PART.DETAIL_ONLY} = "N")
and
({PART.ENGINEERING_MSTR} = "Q")
I added {PART.ENGINEERING_MSTR} = "Q") just to verify everything was working for testing. What i need to accomplish is that {PART.ENGINEERING_MSTR} = Zero, all alphas, and null. How do i write this to make the above criteria return all the correct records. TIA,
(
({PART.QTY_IN_DEMAND} <> 0.00) and
({PART.ORDER_POLICY} <> ["D", "E"]) and
({PART.DETAIL_ONLY} = "N")
and
{PART.ENGINEERING_MSTR} = "Q"
)
OR
(
({PART.QTY_IN_DEMAND} <> 0.00) and
(({PART.PLANNING_LEADTIME} = 0.00) OR ISNULL({PART.PLANNING_LEADTIME}))
and
({PART.DETAIL_ONLY} = "N")
and
({PART.ENGINEERING_MSTR} = "Q")
I added {PART.ENGINEERING_MSTR} = "Q") just to verify everything was working for testing. What i need to accomplish is that {PART.ENGINEERING_MSTR} = Zero, all alphas, and null. How do i write this to make the above criteria return all the correct records. TIA,