Redwood-How to add dynamic mashup url with dynamic parameters in redwood in oracle sales cloud.
Hi team,
Our requirement is pass dynamic url with parameters in redwood.
Dynamic URL(contact360) is consist of partynumber(from contact object) , branch(resource object) and ownerpartynumber(resource object).
Could you please help us to generate this dynamic url in visual builder in redwood. We are able to pass static url in subview container.
Below is groovy code form classic environment from contact object.
—def vo = newView('Resource')
def vc = newViewCriteria(vo)
def vcr = vc.createRow()
def vci1 = vcr.ensureCriteriaItem('PartyId')
vci1.setOperator('=')
vci1.setValue(adf.util.getUserPartyId())
vc.insertRow(vcr)
vo.appendViewCriteria(vc)
vo.executeQuery()
if (vo != null) {
0