cancel
Showing results for 
Search instead for 
Did you mean: 

FM to find TID using Message ID

former_member185846
Active Participant
0 Kudos

Dear Experts,

I need to find the TID of a message in SMQ3 using its Message Id. I found the standard FM QRFC_TID_RESOLUTION, which works the other way i.e. finds Message ID using TID. Could any of you provide me the details?

Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

sunilchandra007
Active Contributor
0 Kudos

>

> Dear Experts,

>

> I need to find the TID of a message in SMQ3 using its Message Id. I found the standard FM QRFC_TID_RESOLUTION, which works the other way i.e. finds Message ID using TID. Could any of you provide me the details?

>

> Thanks.

Hi Joe,

I am not sure about the exact FM, but you have option to use RFC_READ_TABLE as the Message Id (MSGGUID) and TID (EO_REFVAL) are maintained in table SXMSPMAST. Give it a try with following parameters :


QUERY_TABLE    SXMSPMAST
OPTIONS	       MSGGUID EQ 'input msg id here'
FIELDS	       EO_REFVAL

You would get the response in DATA.

Regards,

Sunil Chandra