Is it possible to create Predefined filter from the derived tables.
Iam having few derived tables in the universe and wheever iam trying to create a predefined filter from that particular table objects iam getting the following error
i have tried this for the Last 7 days Predefined Filter in the unv level but its not working.sorry for the pain but can you please help me in getting this done as iam due to the delivery.
So here is the scenario
Have created a Derived table Disk and in the disk iam having a Date column and its been parsed and working fine.
Now iam creating a predefined filter for Last 7 Days.
i tried with this initially
months_between(@Select(Logical Disk\Date),sysdate) between -0.25 and 0
its giving error Like “INVALID TABLE NAME”
as you suggested i tried giving the exact derived table name
months_between(@Select(Table__121\Date),sysdate) between -0.25 and 0
and iam getting the same error.
Can you let me no the excat way how can i implement this predefined condition.
That’s never going to work is it? @Select should be used for objects.
Once your derived table is created it should be treated like any other table in the universe.
You need to specify what database you are using… but since you say that you have this same syntax working with a table (not derived) you should be able to use that syntax.
Looking at the syntax used, I’d suspect very strongly that it’s Oracle, dessa.
kumar, back to basics.
Can you view the table values from the derived table?
Have you tested that the derived table objects work in a query on their own?
In English (not code), what do you want the filter to do?
I tried using the Column name from the derived table but no luck.
As Dessa suggested i can use the syntax from other tables but the reason why i can’t do like that is because this tables are not joined to each other.
like iam having four set of tables Hourly,daily,weekly,detail all with same table names only a slight change.
i tried to manage the H,D,W tables by joinningthem and creating the condition etc.
but now the last set of table are crating a for me coz i dont have any common column to join them.
i can able to view the Derived table values and i can also able to run reports on that table all is fine but when iam trying to create a Predefined filter its not allowing me to do so …
The problem sounds more funadamental that you first stated. As Mark suggests, give the full description of the problem and what you want the filter to do in plain English.
At this moment it looks like you should be utilising Aggregate Aware …
I have created a derived table “DISK” and this table is a independent and not joined with any other table.
Now i want to create a predefined filter in this tables named Last 7 days ,
so when the user run a query he will be getting last 7 days data into the report.
i have created this Filter for other DB Tables in the schema and they are working fine now when i tried creating this for the derived table DISK and its poping up with an error mesage “TABLE OR VIEW DOES N’T EXIST”