F4IF_INT_TABLE_VALUE_REQUEST

F4IF_INT_TABLE_VALUE_REQUEST 這個搜索幫助的時候,get_field 畫面上綁定的字段的值裏最好不要帶* 和+,這兩個字符會被認爲是特殊字符,影響搜索app

 

form f4if_int_table  tables pt_help structure ls_f5
                                    using give_field
                                          get_field.
  data:field_value   like dynpread,
       dynpro_values type table of dynpread,
       return_tab    type table of ddshretval,
       ls_return_tab type ddshretval.
  data:mapping type table of dselc.
  clear:field_value,
        dynpro_values[],
        return_tab[],
        ls_return_tab.

  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    exporting
      retfield         = give_field "lt內表裏面的字段
      dynpprog         = sy-repid
      dynpnr           = sy-dynnr
      dynprofield      = get_field "畫面上綁定字段
      value_org        'S'
      callback_program = sy-repid
      callback_form    'FRM_SOINFO_FORM'
    tables
      value_tab        = pt_help "須要顯示幫助的值內表
      return_tab       = return_tab
    exceptions
      parameter_error  1
      no_values_found  2
      others           3.

endform.
spa

 

******frm_soinfo_form 用於顯示多列搜索相關的數據orm

form frm_soinfo_form tables record_tab structure seahlpres
                 changing shlp type shlp_descr
                          callcontrol like ddshf4ctrl.
  datainterface like line of shlp-interface.
  read table shlp-interface into interface index 1.
  interface-shlpfield+4(1'1'."字段
  interface-valfield 'VBAK-ZCID'.
  append interface to shlp-interface.
  interface-shlpfield+4(1'3'."字段
  interface-valfield 'VBAK-ZTELEP'.
  append interface to shlp-interface.
  interface-shlpfield+4(1'4'."字段
  interface-valfield 'GV_ZSHXH'.
  append interface to shlp-interface.
  interface-shlpfield+4(1'5'."字段
  interface-valfield 'GV_ZSHDZ'.
  append interface to shlp-interface.
endform.
get

本站公眾號
   歡迎關注本站公眾號,獲取更多信息