You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

Redwood-How to add dynamic mashup url with dynamic parameters in redwood in oracle sales cloud.

in Sales 6 comments

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) {

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!