How can I filter on "system_number" not equal to "PDC*" and "state" equal to "DRMO" OR "Inactive"
///<SUMMARY>
///On select new delivered component as relationship, filter by System not equal to "PDC*" and State equal to "DRMO or InActive"
///</SUMMARY>
var retObj = new Object();
retObj["system_number"] != { filterValue: "PDC*", isFilterFixed: true }; ****** Need to make not equal to" ******
retObj["state"] = { filterValue: "DRMO", isFilterFixed: true }; ****** Need to include "InActive" ******
return retObj;
Hi Chris,
I tried your second example, but the "system_number" doesn't filter. Is that because "system_number" is an item within my itemType and not a string?
Hi Chris,
I tried your second example, but the "system_number" doesn't filter. Is that because "system_number" is an item within my itemType and not a string?