After you have imported the required function modules, you must modify the SAP standard function HELP_START in program LSHL2U01.
This will provide the F1 help call of ARIS Online Guide. To do this, you need a developer key and possibly an object key. You can obtain these keys via OSS.
Procedure
If required, log in to the relevant SAP system.
Execute executable SE37.
DATA: l_error_msg LIKE iwerrormsg. " DHB
DATA: l_action LIKE sy-xcode. " *17i
DATA: exit_flg.
DATA: save_help_info_call LIKE help_infos-call.
DATA: ihelpinfo TYPE help_info.
DATA: lv_help_mode TYPE char1.
DATA: lv_window_name TYPE sydatar.
DATA: a_msgv1 LIKE help_infos-msgv1,
a_msgv2 LIKE help_infos-msgv2,
a_msgv3 LIKE help_infos-msgv3,
a_msgv4 LIKE help_infos-msgv4.
* help center
DATA: l_flag_hc_called TYPE as4flag. "note 1135202
*------- CALL MODIFICATION ARIS Online Guide
DATA: loaded TYPE c,
bothhelp TYPE c.
IF help_infos-call CN 'TMV' AND help_infos-call CO 'D' AND help_infos-object IS
NOT INITIAL.
CALL FUNCTION '/IDS/START_ARIS_ONLINE_GUIDE'
EXPORTING
i_program = help_infos-program
IMPORTING
e_help_loaded = loaded
e_both_help = bothhelp.
IF bothhelp NE 'X' AND loaded = 'X'.
EXIT.
ENDIF.
ENDIF.
***************** end of insertion***************
*} INSERT
---Additional code. ---
The F1 help call of ARIS Online Guide is available.
After you have imported support packages into the SAP system, this modification may be missing in some cases. The F1 help call of ARIS Online Guide is no longer available then. In this case, modify LSHL2U01 again.