- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2015 01:07 PM
I have a m2m table that already exists, the problem is that I need to rename the label that is displayed in the related list tab on the form. The M2M from label in the sys_m2m table cant be modified. Ok so I created an admin override ACL so i can rename the label. There is a business rule 'SNC ManyToMany Create' that checks if the m2m already exists, I can comment out the BR that makes this check and update the record but is there another way to update the m2m 'from' and 'to' labels without having to ?
function createMTMTable() {
if (exists()) {
current.setAbortAction(true);
current.m2m_table.setError(gs.getMessage("A Many to Many entry already exists for this table"));
return;
}
if (MTMexists()) {
gs.addInfoMessage(gs.getMessage("The many to many table {0} already exists", current.m2m_table));
return;
}
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2015 02:06 PM
Hi Sean,
You can rename the label of related list by right clicking on the menu of the related list and doing Configure >> List Control
Over there you can assign the label of your preference.
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2022 08:56 PM
Thank you Berny - this was very helpful!
Cheers
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2020 03:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2020 11:17 PM
You're welcome
Thanks,
Berny