Hi Everyone,
How can I get a list of the ascending dates for the activities available for one account using OTBI expression? Is it possible to get all the dates for the account in one row only?
Here is what I have so far:
CASE WHEN YEAR ("Activity". "Actual Start Date") = YEAR (CURRENT_DATE)
THEN
(CASE WHEN "Activity Extension". "Extension Attribute LOV 010" LIKE '%KPI%'
THEN "Activity". "Actual Start Date"
ELSE "Activity Extension". "Extension Attribute Timestamp 003"
END)
ELSE NULL END
Thank you!