Hi
My data source is HANA
On app startup , I am populating a DROPDOWN by
DROPDOWN_1.setItems(DS_1.getMemberList("OFFICESHORTNAME", MemberPresentation.INTERNAL_KEY, MemberDisplay.KEY, 20, "ALL"));
ALL means that I am applying no filter.
On trigerng this event
if (DROPDOWN_1.getSelectedValue() == "ALL" )
{
DS_1.clearFilter("OFFICESHORTNAME");
}
else
{
DS_1.setFilterExt("OFFICESHORTNAME", DROPDOWN_1.getSelectedValue());
}
But I still get this error , How I do I handle it