1. 程式人生 > >Smartforms 中更改預設編輯器…

Smartforms 中更改預設編輯器…

朋友的建議是:1、I18N->I18N Customizing ->MS Word as Editor ->double click                              去掉SAP script 和Smart form前的對勾 ->Activate。 2、SE38中執行RSCPSETEDITOR,勾掉SMARTFORMS和SAPSCRIPT前面的勾就可以了! 啟用後SMARTFORM中的文字編輯器就改為SAP預設的了! 下面的內容轉自:http://www.cnblogs.com/clsoho/archive/2010/07/27/1785949.html 支援原作者版權。

Method 1:

T-code: I18N

 I18N->I18N Customizing ->MS Word as Editor ->double click

Smartforms <wbr>中更改預設編輯器的兩種方法(Tow <wbr>Methods <wbr>of <wbr>smartform's <wbr>d

去掉SAP script 和Smart form前的對勾 ->Activate

Method 2:

Use report .

T-code: se38

 New report->code below.

report ztest_mod_editor01.

*更改SMARTFORMS編輯為SAP預設編輯器
      call method cl_i18n_system_settings=>maintain_tcp0i
        exporting
          im_history = space
          im_name    = cl_i18n_system_settings=>c_tcp0i_name_smartforms_editor
          im_value   = SPACE.

report ztest_mod_editor02.
*更改SMARTFORMS編輯為MSWord
      call method cl_i18n_system_settings=>maintain_tcp0i
        exporting
          im_history = space
          im_name    = cl_i18n_system_settings=>c_tcp0i_name_smartforms_editor
          im_value   = 'MSWord'.

Method 2 for I18N not useful or I18n have no such options.