Requirement: To convert SRT_MMASTER table's MESSAGE_DATA field data into readable string format or in internal table.
I have tried different function modules to convert Byte String (Blob) data stored in SRT_MMASTER table's MESSAGE_DATA field but none of it returned readable string format or at least generate an XML file in return.
I have tried Function modules like :
SCMS_BINARY_TO_STRING,
SDIXML_XML_TO_DOM,
SDIXML_DOM_TO_DATA,
SMUM_XML_PARSE
and methods like :
cl_soap_xml_parser=>get_data
cl_soap_xml_parser=>get_formatted_data
CALL METHOD cl_bcs_convert=>raw_to_string
and more, but none were able to convert it to correct readable format.
Can you suggest which function module or class/method can be used to solve the purpose?