Greetings everyone
i have table name PayrollExpencesTrans and it relation with DimensionAttributeValueCombination
and i want search about Partial from the dimension value from PayrollExpencesTrans table
i want search about this value (M09001)
so i did like this
select firstOnly payrollExpencesTrans
where dimensionAttributeValueCombination.DisplayValue like "*" this.text() "*"
exists join dimensionAttributeValueCombination where payrollExpencesTrans.LedgerDimension==dimensionAttributeValueCombination.RecId;
but still give me nothing
any idea how can i solve this problem