The following is an example of the code I am using:
UOM2."UOM_TYPE_CODE"(+) = '20'
The issue is that I can also have a value of '25'. How can I write a statement that will equal '20' Or '25' without returning records for both. SCR returns an error using the following code:
Example1: UOM2."UOM_TYPE_CODE"(+) = '20'Or '25'
Example2: UOM2."UOM_TYPE_CODE"(+) IN ('20','25')
UOM2."UOM_TYPE_CODE"(+) = '20'
The issue is that I can also have a value of '25'. How can I write a statement that will equal '20' Or '25' without returning records for both. SCR returns an error using the following code:
Example1: UOM2."UOM_TYPE_CODE"(+) = '20'Or '25'
Example2: UOM2."UOM_TYPE_CODE"(+) IN ('20','25')