zoukankan      html  css  js  c++  java
  • abap全局类信息读取的过程分析

    一、读取该类的所有信息
       call function 'SEO_CLASS_TYPEINFO_GET'
          * - get attributes
              call function 'SEO_ATTRIBUTE_READ_ALL'
                 * get all attribute originals from db(seocompo/seoo_cmptype_attribute)
                 * fetch attribute definitions(seocompodf)
                 * fetch texts(seocompotx)
                    * care of attributes without description in modification language
                    * if not found logon language,return DE language
              *extract aliases from attributes
          *-Get  Method
              call function 'SEO_METHOD_READ_ALL'
                 * get all method originals from db(seocompo/seoo_cmptype_method)
                 * fetch method definitions(seocompodf)
                 * fetch texts(seocompotx)
                    * care of method without description in modification language
                    * if not found logon language,return DE language
              *extract aliases from methods
          *- Get Events
              call function 'SEO_EVENT_READ_ALL'
                 * get all attribute originals from db(seocompo/seoo_cmptype_event)
                 * fetch event definitions(seocompodf)
                 * fetch texts(seocompotx)
                    * care of event without description in modification language
                    * if not found logon language,return DE language
              *extract aliases from event
          *- Get Events
              call function 'SEO_EVENT_READ_ALL'
                 * get all attribute originals from db(seocompo/seoo_cmptype_event)
                 * fetch event definitions(seocompodf)
                 * fetch texts(seocompotx)
                    * care of event without description in modification language
                    * if not found logon language,return DE language
              *extract aliases from event
    =================================================
          *- Get event and method's subcomponents
    =================================================
          *- Get Types
              call function 'SEO_TYPE_READ_ALL'
                 * get all type originals from db(seocompo/seoo_cmptype_type)
                 * fetch type definitions(seocompodf)
                 * fetch texts(seocompotx)
                    * care of event without description in modification language
                    * if not found logon language,return DE language
          *- Get parent class
              call function 'SEO_INHERITANC_READ'
                 * get inheritance(iseometarel/seor_reltype_inheritance)
                 * fetch redefinitions(seoredef)
          *- Get interface implementations
              call function 'SEO_IMPLEMENTG_READ_ALL'
                 * get implementings(iseometarel/seor_reltype_implementing)
                 * fetch implementing detail(seoredef)
          *- Get typegroup usages
              call function 'SEO_TYPEPUSAGE_READ_ALL'
                 * get typegroup usages(seotypepls/seot_tputype_typepusage 0)
          *- Get class deferreds
              call function 'SEO_CLSDEFERRD_READ_ALL'
                 * get implementings(seotypepls/seot_tputype_classdeferred 1)
          *- Get interface deferreds
              call function 'SEO_INTDEFERRD_READ_ALL'
                 * get implementings(seotypepls/seot_tputype_interfacedeferred 2)
    =================================================
          * explore inheritance if requested
                  'SEO_CLASS_TYPEINFO_GET'
          * explore interfaces if requested
                 call function 'SEO_INTERFACE_TYPEINFO_GET'
    =================================================

    二、读取该类的所有父类(abap是单类继承)的信息,并添加到相关数据内表
       call method explore_relations
       *Get Superclass and all implement interfaces's attribute(attribute,Method,event,types,implement.alias....)
            * inherited components
             call function 'SEO_CLASS_RESOLVE_INHERITANCE'
                  call function 'SEO_CLASS_INHERITANCE_PATH_GET'
                  loop
    ×取父类的所有信息
                      call function 'SEO_CLASS_TYPEINFO_GET'
    ×删除私有不可见的属性
                     delete atts where exposure = seoc_exposure_private.
                     delete mets where exposure = seoc_exposure_private.
                     delete mets where cmpname = seok_mtdname_constructor.
                     delete mets where cmpname = seok_mtdname_class_constructor.
                     delete mets where cmpname = seok_mtdname_destructor.
                     delete eves where exposure = seoc_exposure_private.
                     delete typs where exposure = seoc_exposure_private.
                     delete alis where exposure = seoc_exposure_private.
    ×将可见的属性添加合并到类信息内表
                     insert lines of:
                             atts into attributes    index 1,
                             mets into methods       index 1,
                             eves into events        index 1,
                             typs into types         index 1,
                             imps into implementings index 1,
                             alis into aliases       index 1.
                  endloop.

    三、读取该类所有实现类的信息,并添加到相关数据内表
            * implemented interfaces
             call function 'SEO_CLASS_RESOLVE_IMPLEMENTGS'
    ×取所有的实现接口
                 call function 'SEO_CLASS_TYPEINFO_GET'
                      exporting
                         clskey        = clskey
                         version       = version
                         state         = state
                      importing
                         implementings = implems.
    ×循环提取所有的实现接口的信息
                  loop implems.
                     call function 'SEO_INTERFACE_TYPEINFO_GET'
    ×将可见的属性添加合并到类信息内表
                     insert lines of:
                            atts into attributes index 1,
                            mets into methods    index 1,
                            eves into events     index 1,
                            alis into aliases    index 1,
                            pars into parameters index 1,
                            excs into exceps index 1.
                  endloop. 

    相关函数和数据表信息参见:http://blog.csdn.net/CompassButton/archive/2007/12/07/1922844.aspx

  • 相关阅读:
    基于jQuery的自定义插件:实现整屏分页转换的功能
    蝶恋花
    js中面向对象编程
    移动端web页面列表类上拉加载,查看详情,iframe嵌套第三方页面遇到的问题以及解决办法
    控制使用jquery load()方法载入新页面中的元素
    bootstrap-daterangepicker双日历控件开始日期选择问题
    点击select下拉框获取option的属性值
    bootstrap table表格前台分页,点击tab选项,重新刷新表格
    jquery中使元素显示和隐藏方法之间的区别
    jquery对象和DOM对象的相互转换
  • 原文地址:https://www.cnblogs.com/xiaomaohai/p/6157130.html
Copyright © 2011-2022 走看看