- 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
‎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
‎12-07-2015 07:26 AM
I am not able to see any options when I right click on the related list menu. I am clicking on the tab of the related list.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-07-2015 07:31 AM
Ah! I got it thanks!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2022 09:42 AM
Hi,
How did you het it? I am still not able to fine it.