[绝对原创] 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.

 

 

目录
相关文章
|
前端开发 API uml
SAP Commerce Cloud 里的 User 模型和 Restriction 的关系
SAP Commerce Cloud 里的 User 模型和 Restriction 的关系
|
JavaScript API 开发工具
SAP 电商云 Spartacus UI 同 SAP Customer Data Cloud 的集成
SAP 电商云 Spartacus UI 同 SAP Customer Data Cloud 的集成
|
5月前
|
存储 安全 数据管理
SAP 产品 data archive 数据归档的重要性
SAP 产品 data archive 数据归档的重要性
|
5月前
|
存储 数据采集 监控
如何在 SAP S4HANA 中使用 Data Volume Management 工具来确定哪些数据需要归档
如何在 SAP S4HANA 中使用 Data Volume Management 工具来确定哪些数据需要归档
|
SQL 缓存 Linux
什么是 SAP ABAP FDA - Fast Data Access 技术?
什么是 SAP ABAP FDA - Fast Data Access 技术?
|
5月前
|
搜索推荐
关于 SAP ABAP 系统的 User parameter COM_IOITF_DEBUG
关于 SAP ABAP 系统的 User parameter COM_IOITF_DEBUG
|
监控 安全 搜索推荐
关于 SAP Commerce Cloud 本地安装用 root user 执行安装脚本的问题
关于 SAP Commerce Cloud 本地安装用 root user 执行安装脚本的问题
|
存储 供应链 数据库
SAP S/4HANA New Simplified Data Model (NSDM) 模型介绍
SAP S/4HANA New Simplified Data Model (NSDM) 模型介绍
|
12月前
|
设计模式 SQL 数据建模
SAP Virtual Data Model 和 CDS View 的关联关系
SAP Virtual Data Model 和 CDS View 的关联关系
|
12月前
|
存储 数据处理 数据库
关于 SAP CRM User Status 处理的示例 ABAP 代码
关于 SAP CRM User Status 处理的示例 ABAP 代码