如何访问SAP的Domain的Value Range详解编程语言

访问Domain的Value Range有两种方法:

1、直接访问表
dd07l和dd07T
   select * from dd07l
          where domname   = ‘domname’ and
                as4local   = active.

2、使用SAP的标准函数 
      call function ‘DD_DOMVALUES_GET’
           exporting
                domname        =  p_domname
           importing
                rc             = l_subrc
           tables
                dd07v_tab      =  l_dd07v
           exceptions
                wrong_textflag = 1
                others         = 2.

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/20045.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论