Hi Shailendu
You can create the file custom/Extension/modules/<ModuleName>/Ext/Menus/menu.ext.php
Add into this file something like that:
PHP Code:
global $module_menu;
if(ACLController::checkAccess('Accounts', 'list', true)) {
$module_menu[]=Array("index.php?module=Accounts&action=<ViewForAccount1>", $mod_strings['LBL_LABEL_FOR_VIEW_FOR_ACCOUNT1'], "");
}
if(ACLController::checkAccess('Accounts', 'list', true)) {
$module_menu[]=Array("index.php?module=Accounts&action=<ViewForAccount2>", $mod_strings['LBL_LABEL_FOR_VIEW_FOR_ACCOUNT2'], "");
}
Modify accordingly to your needs.
Go to Admin -> Repair -> Rebuild Extension
Cheers
Bookmarks