ABAP-在SMARTFORMS中取消使用WORD作为编辑器详解编程语言

运行TCODE:I18N
然后打开I18N Menu -> I18N Customing -> MS Word asEditor


 

 取消Smartforms前的勾选,然后点击上方的Activate按钮




Method 1:

T-code: I18N

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



去掉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默认编辑器
      callmethodcl_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
      callmethodcl_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 suchoptions.

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/19967.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论