ABAP 函数VIEW_MAINTENANCE_CALL调用替代SM30视图维护

ABAP 函数VIEW_MAINTENANCE_CALL调用替代SM30视图维护

ABAP调用函数 VIEW_MAINTENANCE_CALL实现 SM30:

                 call function 'VIEW_MAINTENANCE_CALL'
                      exporting
                           action                       = 'U'
                           view_name                    = 'IACORDES'
                           no_warning_for_clientindep   = 'X'
                      exceptions
                           client_reference             = 1
                           foreign_lock                 = 2
                           invalid_action               = 3
                           no_clientindependent_auth    = 4
                           no_database_function         = 5
                           no_editor_function           = 6
                           no_show_auth                 = 7
                           no_tvdir_entry               = 8
                           no_upd_auth                  = 9
                           only_show_allowed            = 10
                           system_failure               = 11
                           unknown_field_in_dba_sellist = 12
                           view_not_found               = 13
                           others                       = 14.

你可能感兴趣的:(ABAP 函数VIEW_MAINTENANCE_CALL调用替代SM30视图维护)