Smartforms 中更改默认编辑器的两种方法(Tow Methods of smartform's default editor modification)

转贴地址: http://archive.cnblogs.com/a/1785949/

 

Method 1:

T-code: I18N

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

Smartforms 中更改默认编辑器的两种方法(Tow Methods of smartform's default editor modification)_第1张图片

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

Comments: 这种方法基本已经禁掉了,不知道SAP为什么喜欢用WORD来取代自己的编辑器,况且所见所务效果并不好,还不能拖动.

 

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.

 

Comments: 我记得还有一种方法是跑一个标准程序, 暂时未找到,回头补上来.

Updated @ 2012.05.10

终于找到了: MS Word Editor may also been enabled via report RSCPINST. (Note 742662) 

                       OR RSCPSETEDITOR.

你可能感兴趣的:(tcp,SAP,System,IM,Comments,methods)