What defines the OOB name of the Related Lists

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-09-2020 05:10 AM
Hi
Lately, I was searching for a Related List, which (by table relations) must be there...
In fact, I wanted to show the "Available for groups" Related List from the Groups perspective, Normally, you can find this Relation (M2M table) as "Available for Groups" on the Catalog Item Form.
After scrolling through hundreds of Related Lists, which are available for the "Group" [sys_user_group] table, I found the one, but with a completely different name. It was not named "Available for Groups", but instead it is named "Items orderable by group".
This describes the sense, but I cannot find where this name is defined.
I know that you can rename the Related List by "Configure > List Control", but there is no definition captured here:
I now searched for a while, but cannot identify, where this name comes from.
Can anyone show me how this name is set in the system (not how to RENAME, but WHERE the OOB name for this particular Related List can be found).
Thanks a lot for your help and research.
BR Dirk
- Labels:
-
User Experience and Design
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-09-2020 05:53 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-09-2020 09:41 PM
Hi
Thanks for your answer. I looked at that before by myself, but there is NO entry labeled "Items orderable by group" (see screenshot below).
My PDI has only 9 records in that table [sys_m2m]. None of them has such a label.
So, this is not the right answer - sorry.
Does anyone have another idea?
Thanks for your investigation.
BR
Dirk

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-09-2020 09:45 PM
Muhammad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-09-2020 10:39 PM
Hi Dirk,
As you analyzed already, this related list is for the table 'sc_cat_item_group_mtom' and the label you're searching for is defined in this table. It is the OOB label name. It is defined at the 'sc_cat_item_group_mtom' dictionary level.
The dictionary entry for this table is
<database>
<element name="sc_cat_item_group_mtom" type="collection" label="Available for Groups" attributes="update_synch" extends="sys_metadata">
<element name="sc_cat_item" type="reference" reference="sc_cat_item" label="Parent Item" mtom="Available for group" reference_qual="javascript: new SNCCatalogUtil().getReferenceQualRlt()"/>
<element name="sc_avail_group" type="reference" reference="sys_user_group" label="Dependent Item" mtom="Items orderable by group"/>
</element>
<!--Automatically split from sc_cat_item_extensions.xml-->
</database>
where mtom="Items orderable by group" is picked from related lists for the column.
Unfortunately, this couldn't be seen in the System Definition > Tables.
mtom field will be shown in related lists label where the label field in dictionary will be shown as the reference field label.