generated from salesforcecli/plugin-template-sf
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: messages for lookup field prompts
- Loading branch information
1 parent
ae9d0ef
commit abe96f4
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
# objectPrompt | ||
|
||
Which object will be the parent object for this field? | ||
What is the parent object for this relationship field? | ||
|
||
# lookupDeleteConstraint | ||
|
||
What happens to this field when the parent is deleted | ||
What happens to this field when the parent is deleted? | ||
|
||
# lookupDeleteConstraint.setNull | ||
|
||
If the parent record is deleted, the lookup field is cleared. | ||
Clear the value of this field. | ||
|
||
# lookupDeleteConstraint.restrict | ||
|
||
Prevent the parent record from being deleted if there are lookups that refer to it | ||
Don't allow the parent record from being deleted if there are lookup fields that refer to it. | ||
|
||
# lookupDeleteConstraint.cascade | ||
|
||
Deletes the lookup record as well as associated lookup fields | ||
Delete the lookup record and the associated lookup fields. | ||
|
||
# writeRequiresMasterRead | ||
|
||
Allow write access if parent is readable | ||
Allow write access if the parent is readable? | ||
|
||
# reparentableMasterDetail | ||
|
||
Allow reparenting | ||
Allow reparenting to a different parent record? |