NamedWhereClauseParam
Dear All
in My Business Component Project, i need to make a method to check if the VO contains NamedWhereClauseParam defined and setted before (defineNamedWhereClauseParam,setNamedWhereClauseParam)?
i tried, getNamedWhereClauseParam ("xxxx"), and getNamedWhereClauseParams() but i am facing below error in case of VO doesn't have Named Where Clause Param. like below
if (getPolicyHistoryVO1().getNamedWhereClauseParam("MYPOLICY") != null) {
getPolicyHistoryVO1().removeNamedWhereClauseParam("MYPOLICY");
getPolicyHistoryVO1().removeNamedWhereClauseParam("MYMEMBER");
}
JBO-25058: Definition MYPOLICY of type Variable is not found in PolicyHistoryVO1.
please advise