Hi people, I'm trying to make a Select statament based on property filter and %ENTITY_SET% parameter, dont know if it's posible
So I'd like to filter Entity ID like this:
ENTITY:
ID | TYPE_SOC |
---|---|
A | Y |
B | Y |
C |
INPUT PARAMETER (Entity_set): <ALL>
*SELECT(%ENTITIES%,"[ID]",ENTITY,"[TYPE_SOC]='Y' AND [ID]='%ENTITY_SET%'")
Example code:
*SELECT(%ENTITIES%,"[ID]",ENTITY,"[TYPE_SOC]='Y' AND [ID]='%ENTITY_SET%'")
*XDIM_MEMBERSET CATEGORY=TEST
*XDIM_MEMBERSET CURRENCY=LC
*XDIM_MEMBERSET ENTITY=%ENTITIES%
*XDIM_MEMBERSET ACCOUNT=ACC1
*BEGIN
[ACCOUNT].[#DESTINATION]=-1*[ACCOUNT].[ACC1]
*END
*COMMIT
And then, after scope:
Debug logs:
-------------------------
Building sub-query 1
-------------------------
Query Type: 0
Max members:
Region:
DIMENSION:CATEGORY
TEST
DIMENSION:ENTITY
A,B,C
//AFTER SCOPE
DIMENSION:CATEGORY
TESTDIMENSION:ENTITY
<-----------empty
Empty values are in entity
The thing is that after this i'm getting queries for all ENTITIES (A,B,C) so i think select filter is not working
PD: I'm trying to prevent that if an user forgot to select ENTITY though packages, they can be filtered though SCRIPTLOGIC by property.
And I could make *WHEN/ENDWHEN structures with ENTITY property, but too much impact and modifications.
If they select 1 entity in the filter it works ok
If i add:
XDIM_FILTER ENTITY=[%ENTITY_SET%].PROPERTIES("TYPE_SOC")="Y"
If they select an not TYPE_SOC Entity, query error.
Is this posible in the Select? Anyone can help me? thanks