Hi Team,
I have an Account field in Opportunity object, I have to set this account details in to one more landing page as a default value.
When I write the below code, Account from Opportunity is not mapping to the target object. Please suggest on how to proceed.
Code:
========
defaultValues: [{
name: ["UsrOppLookup"],
value: [this.get("Id")]
},
{
name: ["UsrAccount"],
value: [this.get("Account")] // Account is the DB name for Account column in Opp
}]
Thanks,
Suresh.
Like
If you need to set a default value from landing, please use the article by the link below
https://academy.bpmonline.com/documents/service-enterprise/7-11/how-set…
If you need to transfer the value from the page to the detail on backend, please create a business process for this.
If you need to transfer the value from the page to the detail on frontend, please use the "Messages" functionality for this (JavaScript development required)
https://academy.bpmonline.com/documents/technic-sdk/7-11/messages-messa…