SAP Function Modules

Share |

SUSR_USER_ADDRESS_READ SAP Function module - Output user address data

Pattern for FM SUSR_USER_ADDRESS_READ - SUSR USER ADDRESS READ
Associated Function Group: SUSM
Released Date: Not Released
CALL FUNCTION 'SUSR_USER_ADDRESS_READ' "Output user address data
  EXPORTING
    user_name =                 " usr01-bname   User name
*   cache_results = 'X'         " char01        Hold Selected Data in Internal Cache
  IMPORTING
    user_address =              " addr3_val     Address data in CAM structure
    user_usr03 =                " usr03         Address data in USR03 structure
  EXCEPTIONS
    USER_ADDRESS_NOT_FOUND = 1  "               User name not found
    .  "  SUSR_USER_ADDRESS_READ

SAP Documentation for FM SUSR_USER_ADDRESS_READ


FUNCTIONALITY

With the introduction of Business Address Services (BAS), table USR03 (Address in User Master) becomes obsolete. Since some programs access table USR03 directly, this function module displays the address data for a user (USER_NAME) in a USR03 structure (USER_USR03).
The same data (USER_ADRESS) is also displayed in the new BAS structure,
ADDR3_VAL.
Documentation extract taken from SAP system, Copyright (c) SAP AG






Share |