how to get the value of a parameter "of OperationBinding" at runtime
Hi This method is used to retrieve the input value of a parameter of an Operation public String viewScannedDocumentAction() { String outcome = null; Long doctype = null; String yer = null; DCIteratorBinding scanedDocIter = ADFUtils.findIterator("DocTransDocDtlVoIterator"); DCIteratorBinding currentIterator = ADFUtils.findIterator("DocTransDocCountIterator"); OperationBinding opr = getOperation("ExecuteWithParams"); Row row = currentIterator.getCurrentRow(); if (row != null) { // Map operationParamsMap = opr.getParamsMap(); DCInvokeMethod method = (DCInvokeMethod) opr.getOperationInfo(); if (method != null) { ...