技术开发 频道

ABAP常用函数

    【IT168 技术文章】

    获取生产定单状态

    -----------------------------------------------------

    call function 'STATUS_TEXT_EDIT'

    EXPORTING

    flg_user_stat    = 'X'

    objnr            = LO_OBJNR

    only_active      = 'X'

    spras            = sy-langu

    IMPORTING

    line             = ls_statu

    EXCEPTIONS

    object_not_found = 01.

    使用:objnr 状态对象号,only_active  激活的 ,

    -----------------------------------------------------

    --------------------------------------------------

    获取每个月的最后一天

    ---------------------------------------------------

    CALL FUNCTION 'LAST_DAY_OF_MONTHS'

    EXPORTING

    day_in            = date

    IMPORTING

    last_day_of_month = date1.

    -------------------------------------------------------

    --------------------------------------------------------------

    去掉前面0

    *&--------------------------------------------------------------------*

    *&      Form  frm_alpha_output  去零

    *&--------------------------------------------------------------------*

    DEFINE alpha_minus.

    call function 'CONVERSION_EXIT_ALPHA_OUTPUT'

    exporting

    input  = &1

    importing

    output = &1.

    END-OF-DEFINITION.

    ---------------------------------------------------

    前面加0

    ---------------------------------------------------

    call function 'CONVERSION_EXIT_ALPHA_INPUT'

    exporting

    input  = &1

    importing

    output = &1.

    ------------------------------------------------

   

1
相关文章