Hi All,
I have created a dashboard prompt with 1 presentation variable date prompt(Start date) showing First day of quarter and few column prompts in a dashboard. My requirement is to show the date selected in the prompt concatenated with end day of quarter as 1 column in 'MM/DD/YYYY' format in the report. I tried to concatenate the values using the below syntax in column format but its giving me a syntax error:
TIMESTAMPADD( SQL_TSI_DAY , DAY_OF_QUARTER( (@{pv_start_date}{date '2016-01-01'})) * -(1) + 1, (@{pv_start_date}{date '2016-01-01'}))||'-'||TIMESTAMPADD( SQL_TSI_DAY , -(1), TIMESTAMPADD( SQL_TSI_QUARTER , 1, TIMESTAMPADD( SQL_TSI_DAY , DAY_OF_QUARTER( (@{pv_start_date}{date '2016-01-01'})) * -(1) + 1, (@{pv_start_date}{date '2016-01-01'}))))
I also tried using Evaluate function also but its giving an error with presentation variables.
Can anyone please help me how can I achieve this.
Note : I am using OBIEE 12.2.1.4.0 version.
Thanks in Advance for the help!!!!