• ABAP如何读取地址信息


    sap从4.0开始将地址信息数据存储到ADR*数据表中,其中ADRC为主表,其他为从表,如:ADR2 (Phone) and ADR3 (Fax) 。程序可以从这些数据表中直接读取数据,亦可使用ADDR_GET函数来提取数据。

    例如: 销售机构的地址

      gv_fb_addr_get_selection-addrnumber = tvko-adrnr.             "SADR40A
      call function 'ADDR_GET'
           exporting
                address_selection = gv_fb_addr_get_selection
                address_group     = 'CA01'
           importing
                sadr              = sadr
           exceptions
                others            = 01.

    例如: 客户地址

                select single name1 adrnr from kna1
                                    into corresponding fields of ls_kna1
                                    where kunnr = it_h_knb1-knrze.

                if sy-subrc = 0.
                  ls_selection-addrnumber = ls_kna1-adrnr.
                  call function 'ADDR_GET'
                    exporting
                      address_selection = ls_selection
                    importing
                      address_value     = ls_central_addr
                    exceptions
                      parameter_error   = 1
                      others            = 2.
                endif.

     
  • 相关阅读:
    2017 湖南省赛 K Football Training Camp
    一些相似单词的区别之处
    LeetCode301. Remove Invalid Parentheses
    算法刷题细节点总结
    LeetCode765. Couples Holding Hands
    LeetCode741. Cherry Pickup
    LeetCode312. Burst Balloons
    LeetCode679. 24 Game
    LeetCode862. Shortest Subarray with Sum at Least K
    LeetCode818. Race Car
  • 原文地址:https://www.cnblogs.com/xiaomaohai/p/6157290.html
Copyright © 2020-2023  润新知