美文网首页
SAP ABAP 随机生成字符串

SAP ABAP 随机生成字符串

作者: SmalltalkVoice | 来源:发表于2017-06-02 09:24 被阅读59次
    DATA: snum TYPE string.
    CALL FUNCTION 'CRR_GET_RANDOM_STRING'
         EXPORTING
                  number_chars = '20'  "此处指定随机字符串的长度
         IMPORTING
                  random_string = snum.
    

    相关文章

      网友评论

          本文标题:SAP ABAP 随机生成字符串

          本文链接:https://www.haomeiwen.com/subject/feiyfxtx.html