cancel
Showing results for 
Search instead for 
Did you mean: 

How to check the status of IGS

Former Member
0 Kudos

Since I don't IGS is always an optional component for the Web application server , I hope the user will not see the dump information if the IGS is not installed properly or the service is not started .

I use the following way to check , but it seems that it's always so right,can any body help me ?

@btw , what is the IGS_RFC_DEST refer to ? should it be changed according the different ip address for the IGS server ?

Regards ,

DATA : l_dest TYPE char32 VALUE 'IGS_RFC_DEST'.

DATA : g_igs_data TYPE REF TO cl_igs_data.

DATA : l_table_count type i .

DATA : l_message type c .

create object g_igs_data.

call method g_igs_data->reset.

call method g_igs_data->send

exporting

rfcdestination = l_dest

farm_type = 'ADM:STATUS'

importing

tables = l_table_count

msg_text = l_message

exceptions

rfc_communication_error = 1

rfc_system_error = 2

internal_error = 3

others = 4.

if sy-index NE 0.

WRITE 'IGS is error'.

ELSE.

WRITE 'IGS is right'.

endif.

Accepted Solutions (1)

Accepted Solutions (1)

JPReyes
Active Contributor
0 Kudos

Hi Blake,

You can monitor your IGS by using the info here,

http://help.sap.com/saphelp_nw04s/helpdata/en/69/a6d43ac66e1f08e10000000a114084/frameset.htm

Regards

Juan

Please reward with points if helpful

Answers (0)