You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE PROCEDURE dbo.[GetAllTabsModules]
-- get all tabmodules, which are added to any page
@PortalID int, -- Not Null
@AllTabs bit-- Not Null, get modules displayed on all pages or others?ASBEGINSELECT M.*FROM dbo.[vw_ModulesOnTabs] M
JOIN (SELECTMIN(TabModuleID) MinTabModuleID
FROM dbo.[vw_ModuleTabs]
WHERE isDeleted =0AND PortalID = @PortalID
GROUP BY ModuleID) S
WHEREM.AllTabs= @allTabs
ORDER BYM.ModuleId;
END; -- PROCEDURE
GO
I believe what WHERE M.AllTabs = @allTabs should be ON M.AllTabs = @allTabs here.
The text was updated successfully, but these errors were encountered:
I believe what
WHERE M.AllTabs = @allTabs
should beON M.AllTabs = @allTabs
here.The text was updated successfully, but these errors were encountered: