`

MAXIMO查询菜单并根据权限过滤

 
阅读更多
查询一级菜单
select t.position ID,
                    ELEMENTTYPE appType,
                    mod.description,
                    NULL PID
               from maxmenu t, maxmodules mod
              where t.keyvalue = mod.module
                and t.menutype = 'MODULE'
                and t.elementtype = 'MODULE'
                and t.visible = 1
                and t.moduleapp in
                    (select m.moduleapp
                       from maxmenu m
                      where m.menutype = 'MODULE'
                        and m.elementtype = 'APP'
                        and m.keyvalue in
                            (select distinct a.app
                               from applicationauth a
                              where a.groupname in
                                    (select g.groupname
                                       from groupuser g
                                      where g.userid = 'ADMIN')
                                and a.optionname = 'READ')) ORDER BY position



查询二级菜单,一级菜单为300000
SELECT * FROM (
(select t.position ID,
                    ELEMENTTYPE appType,
                    t.headerdescription description,
                    '' apptable,
                    m.position PID
               from maxmenu t,
                    (select t.position, mod.module
                       from maxmenu t, maxmodules mod
                      where t.keyvalue = mod.module
                        and t.menutype = 'MODULE'
                        and t.elementtype = 'MODULE'
                        and t.visible = 1
                        and t.moduleapp in
                            (select m.moduleapp
                               from maxmenu m
                              where m.menutype = 'MODULE'
                                and m.elementtype = 'APP'
                                and m.keyvalue in
                                    (select distinct a.app
                                       from applicationauth a
                                      where a.groupname in
                                            (select g.groupname
                                               from groupuser g
                                              where g.userid = 'ADMIN')
                                        and a.optionname = 'READ'))) m,                                       
                          (select POSITION,MODULEAPP,COUNT(1) CONUNTNUM from maxmenu m2,maxapps app where m2.keyvalue=app.app and m2.Elementtype='APP'
                          and M2.keyvalue in
                          (select m.keyvalue
                             from maxmenu m
                            where m.menutype = 'MODULE'
                              and m.keyvalue in
                                  (select distinct a.app
                                     from applicationauth a
                                    where a.groupname in
                                          (select g.groupname
                                             from groupuser g
                                            where g.userid = 'ADMIN')
                                      and a.optionname = 'READ'))
                           GROUP BY POSITION,MODULEAPP HAVING COUNT(1)>0) CON
              where t.menutype = 'MODULE'
                and t.elementtype = 'HEADER'
                and t.moduleapp = m.module
                AND t.position=CON.POSITION
                AND T.moduleapp=CON.moduleapp
                and t.visible = 1
                and m.position='300000'
                and t.moduleapp in
                    (select m.moduleapp
                       from maxmenu m
                      where m.menutype = 'MODULE'
                        and m.keyvalue in
                            (select distinct a.app
                               from applicationauth a
                              where a.groupname in
                                    (select g.groupname
                                       from groupuser g
                                      where g.userid = 'ADMIN')
                                and a.optionname = 'READ')))

            union all
            (select t.position ID,
                    ELEMENTTYPE appType,
                    t.headerdescription description,
                    p.maintbname apptable,
                    m.position PID
               from maxmenu t,
                    maxapps p,
                    (select t.position, mod.module
                       from maxmenu t, maxmodules mod
                      where t.keyvalue = mod.module
                        and t.menutype = 'MODULE'
                        and t.elementtype = 'MODULE'
                        and t.visible = 1
                        and t.moduleapp in
                            (select m.moduleapp
                               from maxmenu m
                              where m.menutype = 'MODULE'
                                and m.elementtype = 'APP'
                                and m.keyvalue in
                                    (select distinct a.app
                                       from applicationauth a
                                      where a.groupname in
                                            (select g.groupname
                                               from groupuser g
                                              where g.userid = 'ADMIN')
                                        and a.optionname = 'READ'))) m
              where t.keyvalue = p.app
                and t.menutype = 'MODULE'
                and t.elementtype = 'APP'
                and t.moduleapp = m.module
                and t.subposition = 0
                and t.visible = 1
                and m.position='200000'
                and t.moduleapp in
                    (select m.moduleapp
                       from maxmenu m
                      where m.menutype = 'MODULE'
                        and m.keyvalue in
                            (select distinct a.app
                               from applicationauth a
                              where a.groupname in
                                    (select g.groupname
                                       from groupuser g
                                      where g.userid = 'ADMIN')
                                and a.optionname = 'READ'))))
                                ORDER BY ID
                               

查询三级菜单,二级菜单为304000
select t.position ID,
                    ELEMENTTYPE appType,
                    p.description description,
                    p.maintbname apptable,
                    pa.position PID
               from maxmenu t,
                    maxapps p,
                    (select t.position, M.module
                       from maxmenu t,
                            (select t.position, mod.module
                               from maxmenu t, maxmodules mod
                              where t.keyvalue = mod.module
                                and t.menutype = 'MODULE'
                                and t.elementtype = 'MODULE'
                                and t.visible = 1
                                and t.moduleapp in
                                    (select m.moduleapp
                                       from maxmenu m
                                      where m.menutype = 'MODULE'
                                        and m.elementtype = 'APP'
                                        and m.keyvalue in
                                            (select distinct a.app
                                               from applicationauth a
                                              where a.groupname in
                                                    (select g.groupname
                                                       from groupuser g
                                                      where g.userid = 'ADMIN')
                                                and a.optionname = 'READ'))) m
                      where t.menutype = 'MODULE'
                        and t.elementtype = 'HEADER'
                        and t.moduleapp = m.module
                        and t.visible = 1
                        and t.moduleapp in
                            (select m.moduleapp
                               from maxmenu m
                              where m.menutype = 'MODULE'
                                and m.keyvalue in
                                    (select distinct a.app
                                       from applicationauth a
                                      where a.groupname in
                                            (select g.groupname
                                               from groupuser g
                                              where g.userid = 'ADMIN')
                                        and a.optionname = 'READ'))) PA
              where t.keyvalue = p.app
                and t.menutype = 'MODULE'
                and t.elementtype = 'APP'
                and t.moduleapp = PA.module
                AND T.position = PA.position
                and t.visible = 1
                and PA.position='304000'
                and t.keyvalue in
                    (select m.keyvalue
                       from maxmenu m
                      where m.menutype = 'MODULE'
                        and m.keyvalue in
                            (select distinct a.app
                               from applicationauth a
                              where a.groupname in
                                    (select g.groupname
                                       from groupuser g
                                      where g.userid = 'ADMIN')
                                and a.optionname = 'READ'))
分享到:
评论

相关推荐

    maximo系统附件上传功能的实现

    在“安全”> “角色和资源”中,检查用户的权限配置,确保他们有权访问并操作“附件”相关菜单和功能。 4. **前端界面配置** - 在Maximo的UI界面,你需要确保附件上传按钮和链接可见且可操作。这通常涉及到定制...

    MAXIMO拔高培训

    学习如何自定义主菜单,可以根据不同角色和权限分配不同的菜单项,提高用户体验。 - **自定义菜单**:通过创建自定义菜单,可以为特定用户组或角色提供个性化的功能入口,方便管理和操作。 4. **启动中心的使用** ...

    maximo个人经验总结——魏慧

    了解MAXMENU表的列名对于理解Maximo菜单结构至关重要。魏慧不仅解释了这些列名的意义,还介绍了如何利用这些信息来隐藏不需要显示的菜单项。 ### 更改Oracle IP地址 在某些情况下,可能需要更改Maximo所连接的...

    maximo开发应用程序设计的顺序

    在Maximo开发中,理解并熟练掌握这些步骤是至关重要的,它们确保了应用程序能够有效地与数据库交互,提供用户友好的界面,并遵循组织的权限策略。通过细致的设计和合理的权限控制,可以构建出满足业务需求的高效工作...

    Maximo EAM平台开发笔记2

    **2.19 在高级搜索及列表TAB页面上根据前面查询的设置值过滤后面字段的选择范围** - **实现方法**: 1. 在前端捕获用户的查询设置。 2. 动态调整后续字段的选择范围。 **2.20 导入设备数据后选择不了父设备** - ...

    mam71_app_dev_guide.pdf

    开发者需要确保安装了合适的 Maximo 版本,并且具备相应的权限来访问 Application Designer。 ##### 使用规则和推荐做法 为了确保应用程序的一致性和稳定性,开发者应遵循以下规则和推荐做法: - 遵循 Maximo 的...

Global site tag (gtag.js) - Google Analytics