Suppose you have a query like this in VO
select meaning, lookup_code from fwk_tbx_lookup_codes_vl where lookup_type = 'FWK_TBX_POSITIONS' and meaning <> :1
Cause:
- You have not binded the View Object Query properly in any of the BC4J components(i.e. AM,VO or CO).
- You have set View Defination property of messageChoiceBean.
Action:
- Ensure before executing the VO query you are setting the bind variables :-
//VOImpl Code public void initQuery() { setWhereClause(null); setWhereClauseParams(null); setWhereClauseParam(0,"Buyer"); executeQuery(); }
- Instead of setting the View Definition property set the View Instance property of messageChoiceBean.
Thanks
AJ
"Instead of setting the View Definition property set the View Instance property," was very helpful, thank you!
ReplyDelete