cancel
Showing results for 
Search instead for 
Did you mean: 

Name Of table for SAP ITSM Description Field

Former Member
0 Kudos

Hi Experts,

Does anyone know the name of the table in SAP ITSM that stores the description text. if the table cant be found can someone assist me on how to extract SAP calls on ITSM with the full description rather than the short text description.

Kind regards,

Zweli

Accepted Solutions (1)

Accepted Solutions (1)

former_member190736
Participant
0 Kudos

Hello,

You can do this with function below.

If you need check the object go to transaction S_AEC_66000055

Thanks,

Carlos Paiva.

Former Member
0 Kudos

Hi Carlos,

Thanks for your response. it worked i was able to get the long description text from the table. i will now get the ABAP team to write a small program up for me to extract the long descriptions from the table as currently you can only view one at a time.

Kind regards,

Zweli

Answers (1)

Answers (1)

former_member190736
Participant
0 Kudos

Hello,

If you want you can use this function too below;

data :
      lt_header_guid         TYPE CRMT_OBJECT_GUID_TAB,
      ls_header_guid      type CRMT_OBJECT_GUID,
      li_text                      type CRMT_TEXT_WRKT.

* To get the GUID go to table CRMD_ORDERADM_H



ls_header_guid = '000C2925915C1EE583C3762BDA01FD6D'.
APPEND ls_header_guid to  lt_header_guid.

CALL FUNCTION 'CRM_TEXT_READ_API'
   EXPORTING
     IT_GUID        = lt_header_guid
     IV_OBJECT_KIND = 'A'
   IMPORTING
     ET_TEXT        = li_text.

Thanks,

Carlos Paiva.