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.
本文介绍了SAP系统从4.0版本开始如何管理和存储地址信息数据。主要通过ADR*系列数据表实现,其中ADRC为主表,ADR2和ADR3等为从表,分别存储电话和传真等详细信息。此外,还提供了ADDR_GET函数示例,用于从这些数据表中提取地址数据。
221

被折叠的 条评论
为什么被折叠?



