Requirement – Executing AmImpl method in managed bean in Oracle ADF
We can execute the AmImpl method in managed bean using following method.We can get the bindings object.
BindingContainer bindings = getBindings(); int checkListID = ((BigDecimal)valueChangeEvent.getNewValue()).intValue(); OperationBinding refreshChecklist = bindings.getOperationBinding("checklistQuery");//checklistQuery is method name in Applicationmoduleimpl file refreshChecklist.getParamsMap().put("checklistId", checkListID); // checklistId is parameter for that method.
happy coding with techartifact