How ABAP series] [SAP S / 4 HANA is switched to the non SMARTFORMS word editor

No public: SAP Technical
Author: Matinal
 

 

The preface

We can focus on my public number, the number public in the layout better, read more comfortable.

Body part

SAP's new version of S / 4 HANA system, SMARTFORMS was forced to use as the default editor WORD

Because many people accustomed to using SAP in the original editor, so some are not accustomed to using the word

Implement solutions to switch to a non-word editor:

SE24: CL_COS_UTILITIES following places were found

CL_COS_UTILITIES => IS_S4H (), the position of the line 10 to the line 20

Set a breakpoint

The rv_is_s4h = gv_s4h-on_premise_on. Here modify the assignment is empty, can be realized.

If you do not want to set a breakpoint that way every time, you can directly modify the source code

S / 4 HANA was actually modify the source code does not need the access key

Plus the following code, can be achieved

IF SY-TCODE = 'SMARTFORMS'.
    RV_IS_S4H = ''.
    RETURN.
ENDIF.

​

If not enough, then please make table set with I18N TCP0I the value blank, as follows.

​
NAME(Parameter for i18n Sys Config)=smartforms_editor
ACTIVE(Indicator)=X
VALUE= SPACE

​

 

Guess you like

Origin www.cnblogs.com/SAPmatinal/p/11183247.html