diff --git a/Server Side/HideRelatedList/readme.md b/Server Side/HideRelatedList/readme.md index 5f3a3802d0..4a3c1b6f5c 100644 --- a/Server Side/HideRelatedList/readme.md +++ b/Server Side/HideRelatedList/readme.md @@ -8,6 +8,7 @@ Leaving this question of personas aside and focusing on the problem, what would The first workaround that came to my mind was to hide the Approval list if the user who registered was viewing his own record. A workaround is not the ultimate solution. Just a palliative fix while we find time to think about the ideal one. + # The action plan 1) Every record has a field called sys_created_by; diff --git a/Server Side/HideRelatedList/script.js b/Server Side/HideRelatedList/script.js index 315166961a..729ceb3140 100644 --- a/Server Side/HideRelatedList/script.js +++ b/Server Side/HideRelatedList/script.js @@ -4,4 +4,5 @@ function onLoad() { if (createdBy == loggedUser) { g_form.hideRelatedList('put your related list name here'); } + } \ No newline at end of file