Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion robot/Cumulus/resources/NPSP.robot
Original file line number Diff line number Diff line change
Expand Up @@ -696,4 +696,14 @@ Field Permissions Cleanup
... insert fldperm; }
... else { System.debug('Permissions Exist, skipping.'); }

Run Task execute_anon apex=${addfieldback}
Run Task execute_anon apex=${addfieldback}


Return Field Value
[Documentation]
[Arguments] ${objectapiname} ${rec_id} ${field}

@{records} = SOQL Query SELECT ${field} FROM ${objectapiname} where Id = '${rec_id}'
&{field_value} = Get From List ${records} 0

[Return] &{field_value}