Hello!
I want to build a report where I can use more than one value as input for one parameter.
So the sql must be dynamic....
For example I want to search two material numbers 001 andd 002 which I write into the parameter matnr.
The query looks like:
Select * from MARA where MARA.MATNR = ${matnr}
So this is only for one parameter possible,
but for the two values query must look like
Select * from MARA where MARA.MATNR = ${matnr_value1} OR MARA.MATNR = ${matnr_value2}.
Is there a Solution for this Problem possible?
Thx for any help!


Reply With Quote
