cancel
Showing results for 
Search instead for 
Did you mean: 

Function module / Class to create incident Solman

former_member1413
Participant
0 Kudos

Does anyone know what is the name function module that is used bring used by Sap to create incident in solman.?

Accepted Solutions (1)

Accepted Solutions (1)

chupakebr
Advisor
Advisor
0 Kudos

Try to use class cl_ags_crm_1o_api.

I.E.:

data: lo_cd type ref to cl_ags_crm_1o_api.

cl_ags_crm_1o_api=>get_instance(
exporting
iv_process_mode = gc_mode-create
iv_process_type = 'ZMIN'
importing
eo_instance = lo_cd
).

lo_cd->save( changing cv_log_handle = lv_log_handle ).

Answers (1)

Answers (1)

ucabazz
Active Participant
0 Kudos