ADF Invoke operation manually from code
问题 I want to execute a data control operation (CreateInsert and Delete) from a buttons ActionListener. I am aware a data control button can be inserted from the Data Controls menu, but for various reasons I need to do it this way, a prominent one being I need to perform extra runtime checks. I found the following code: OperationBinding operation = bindings.getOperationBinding("operation_name"); operation.getParamsMap().put("parameter_name", parameterValue); operation.execute(); But don't know