Hi Community,
Is there a way that we can be able to remove the lock on the decision maker, so the user can manually input this? Thanks
Like
Hi,
Add below code in opportunity edit page. Let me know if you still face the issue.
{
"operation": "insert",
"name": "OpportunityDecisionMaker",
"values": {
"layout": {
"row": 2,
"column": 5,
"colSpan": 19
},
"bindTo": "DecisionMaker",
"controlConfig": {
"enabled": true
}
},
"parentName": "BantProfile",
"propertyName": "items",
"alias": {
"name": "DecisionMaker",
"excludeProperties": ["layout"],
"excludeOperations": ["remove", "move"]
}
},
hi Joseph Francisco,
Which section has this "Decision Maker" field?
Hi,
Add below code in opportunity edit page. Let me know if you still face the issue.
{
"operation": "insert",
"name": "OpportunityDecisionMaker",
"values": {
"layout": {
"row": 2,
"column": 5,
"colSpan": 19
},
"bindTo": "DecisionMaker",
"controlConfig": {
"enabled": true
}
},
"parentName": "BantProfile",
"propertyName": "items",
"alias": {
"name": "DecisionMaker",
"excludeProperties": ["layout"],
"excludeOperations": ["remove", "move"]
}
},
Joseph Francisco
You can use the diff code provided by Nishit Singla, with one change. Instead of Insert, please use the "merge" keyword since the insert will consider it as a duplicate entry of the same item.
The below should be sufficient to enable/unlock the field.
Also, make sure you need it in "OpportunityPageV2".
{ "operation": "merge", "name": "OpportunityDecisionMaker", "values": { "enabled": true }, },
BR,
Bhoobalan Palanivelu.
Nishit Singla,
This one works for me. Thanks Nishit Singla