Hi @deamaree , after creating the relationship could you please try to create a .php file in custom/Extension/modules/Employees/Layoutdefs
The name can be whatever you want, like notes_subpanel.php
You could try to write this inside that file
<?php
$layout_defs["Employees"]["subpanel_setup"]['aos_quotes_notes_1'] = array (
'order' => 100,
'module' => 'Notes',
'subpanel_name' => 'default',
'sort_order' => 'asc',
'sort_by' => 'id',
'title_key' => 'LBL_USERS_NOTES_1_FROM_NOTES_TITLE',
'get_subpanel_data' => 'users_notes_1',
'top_buttons' =>
array (
0 =>
array (
'widget_class' => 'SubPanelTopButtonQuickCreate',
),
1 =>
array (
'widget_class' => 'SubPanelTopSelectButton',
'mode' => 'MultiSelect',
),
),
);
You can also try to copy the custom/Extension/modules/Users/Layoutdefs/<name_of_the_file.php> into custom/Extension/modules/Employees/Layoutdefs/<name_of_the_file.php>