IT_API_CHAR TYPE TT_API_CHAR -> Table type for structure api_char_tab
  method clear_initial_line_api_vari.
    field-symbols: <ws> type any table.
    data: mt_api_vali type  tt_api_vali.
    data: f_name type string value '(SAPLCTMS)WS[]'.
    call function 'CTMS_DDB_HAS_VALUES_INTERNAL'
      exporting
        assigned_values      = 'X'
        allowed_values       = ' '
        valid_values         = ' '
        inconsistent_values  = ' '
        first_assigned_value = ' '
        default_values       = ''
        language             = sy-langu
        document_info        = ' '
        excl_knowledge       = ' '
        i_called_from_ddb    = ' '
      tables
        imp_characteristics  = it_api_char[]
        exp_values           = mt_api_vali[]
      exceptions
        not_found            = 1
        others               = 2.
    if sy-subrc eq 0.
      assign (f_name) to <ws>.
      if sy-subrc eq 0.
        refresh <ws>.
      endif.
    endif.
  endmethod.                    "clear_initial_line_api_vari



