[绝对原创] SAP Get User data by User ID

简介: [绝对原创] SAP Get User data by User ID   1, Table Go to table USR21 and get the person number, then u...

[绝对原创] SAP Get User data by User ID

 

1, Table

Go to table USR21 and get the person number, then use that person number number go to ADRP

2, View

view V_USR_NAME is a view over the USR21 and ADRP tables

 

3, Function module

You can alternatively use SUSR_USER_ADDRESS_READ.

The exporting parameter user_address would have the full name of the user in the field name_text.

    DATA: user_address LIKE addr3_val.

    CALL FUNCTION 'SUSR_USER_ADDRESS_READ'

      IMPORTING

        user_name                    = sy-uname

*       READ_DB_DIRECTLY             = ' '

      EXPORTING

        user_address                 = user_address

*       USER_USR03                   =

      EXCEPTIONS

        user_address_not_found       = 1

        OTHERS                       = 2.

 

    IF sy-subrc = 0.

       write:/ user_address-name_text.

    ENDIF.

 

 

目录
相关文章
|
开发者
SAP WM初阶之移动类型设置里的Additional Data?
SAP WM初阶之移动类型设置里的Additional Data?
SAP WM初阶之移动类型设置里的Additional Data?
SAP QM 执行事务代码QA11 报错- Selected set code does not exist, or data entered is incomplete-
SAP QM 执行事务代码QA11 报错- Selected set code does not exist, or data entered is incomplete-
SAP QM 执行事务代码QA11 报错- Selected set code does not exist, or data entered is incomplete-
SAP RETAIL初阶MM41创建商品主数据BASIC DATA里的Valuation Class
SAP RETAIL初阶MM41创建商品主数据BASIC DATA里的Valuation Class
SAP RETAIL初阶MM41创建商品主数据BASIC DATA里的Valuation Class
Sap Ds Data is not available. Increase the time-out interval values in Debug | Options
Sap Ds Data is not available. Increase the time-out interval values in Debug | Options
272 0
SAP RETAIL商品主数据Basic Data视图里几个让人莫名惊诧的字段(二)
SAP RETAIL商品主数据Basic Data视图里几个让人莫名惊诧的字段(二)
SAP RETAIL商品主数据Basic Data视图里几个让人莫名惊诧的字段(二)
SAP RETAIL商品主数据Basic Data视图里几个让人莫名惊诧的字段(一)
SAP RETAIL商品主数据Basic Data视图里几个让人莫名惊诧的字段(一)
SAP RETAIL商品主数据Basic Data视图里几个让人莫名惊诧的字段(一)
|
存储 供应链 BI
SAP MM 物料主数据Plant Data Storage 1视图里的Storage Bin
SAP MM 物料主数据Plant Data Storage 1视图里的Storage Bin
SAP MM 物料主数据Plant Data Storage 1视图里的Storage Bin