• sap去除后缀0方法


    原贴地址:http://fuhesap.com/SAP/179.html

    SHIFT str LEFT DELETING LEADING '0'.
    如果要在layout显示不出前面的0 格式: &字段(zc)&
    如果要在layout显示不出小数点后面的0 格式:   &字段(.0)&

    去,号
    REPORT z_m.
    DATA curr TYPE c.
    curr='123,456,789.00 '.
    while sy-subrc=0.
    replace ',' with '' into curr.
    endwhile.
    condense curr no-gaps.

    去掉后置0

       
    data p_number(20) value '56.500'.


    CALL FUNCTION 'STRING_REVERSE'
      EXPORTING
        string          = P_number
        lang            = '1'
     IMPORTING
       RSTRING         = P_number
     EXCEPTIONS
       TOO_SMALL       = 1
       OTHERS          = 2
              .
    IF sy-subrc <> 0.
     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    shift P_number left deleting leading '0'.

    CALL FUNCTION 'STRING_REVERSE'
      EXPORTING
        string          = P_number
        lang            = '1'
     IMPORTING
       RSTRING         = P_number
     EXCEPTIONS
       TOO_SMALL       = 1
       OTHERS          = 2
              .
    IF sy-subrc <> 0.
     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    write:/ P_number.

  • 相关阅读:
    python的mysql-connector和pymysql
    java知识整理
    Spring——使用自定义标签
    Eclipse maven 错误修正方法:An error occurred while filtering resources
    设计模式--模板模式
    编译Spring源码
    Lunix 命令
    (转)设计模式——策略模式
    JVM(一)
    SenjuFamily项目总结 之 Activiti 学习总结(一)
  • 原文地址:https://www.cnblogs.com/ruingy/p/3392124.html
Copyright © 2020-2023  润新知