博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[绝对原创] SAP Get User data by User ID
阅读量:5891 次
发布时间:2019-06-19

本文共 656 字,大约阅读时间需要 2 分钟。

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

 

 

转载地址:http://gnbsx.baihongyu.com/

你可能感兴趣的文章
Fix Project Properties.
查看>>
dom4j相当全的资料
查看>>
搭建SpringMVC开发环境
查看>>
二叉树的镜像
查看>>
HTTP 报文详解
查看>>
Active Directory 基础回顾 (一) 如何理解group的类型
查看>>
awk和sed字符串处理速度比较与处理速度的测试方法
查看>>
项目管理修炼之道之把握项目的节奏
查看>>
Android Studio打包.so文件教程
查看>>
Linux下MySQL表名不区分大小写的设置方法(抄袭别人的)
查看>>
windows下安装emacs及添加配置文件(网络整合收集)
查看>>
maven环境的搭建
查看>>
几个比喻让你彻底明白什么是HTML5
查看>>
Linux基础环境准备
查看>>
JS调用agent的方法
查看>>
4、Bash基础及配置、标准I/O、管道及shell编程基础;
查看>>
综合技术 --mybatis-config.xml文件
查看>>
Java的缓冲流内部实现及其效率探讨
查看>>
mysql+mycat实现读写分离
查看>>
http协议特点,web资源,url通用格式
查看>>