‎2009 May 15 7:20 AM
Hi SAPGURUS,
Is their any Function module for conversion of binary format of error log data. any imputs will be highly appreciated
thanks & regards
ravi k
‎2009 May 15 7:25 AM
SCMS_BINARY_TO_TEXT
SRET_BINARY_TO_TEXT
Use Tcodes CG3Y and CG3Z
‎2009 May 15 7:25 AM
Hi,
Check these FM
SCMS_BINARY_TO_STRING
SCMS_BINARY_TO_TEXT
SCMS_BIN_TO_TEXT
‎2009 May 15 7:25 AM
SCMS_BINARY_TO_TEXT
SRET_BINARY_TO_TEXT
Use Tcodes CG3Y and CG3Z
‎2009 May 15 7:27 AM
‎2009 May 15 7:27 AM
‎2009 May 15 7:41 AM
Dear,
You can Use This Function module for conversion of binary format of error log data SCMS_STRING_TO_XSTRING
CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
EXPORTING
text = l_send
IMPORTING
buffer = l_attach_xstring
EXCEPTIONS
failed = 1
OTHERS = 2.
IF sy-subrc <> 0.
*Send the error message if binary conversion is failed
PERFORM zbc_message USING 'MAJOR'(001) 'TECH'(002) c_object g_text 'X'(004) 'X'(004).
ENDIF.
Cheers
fareed
‎2009 May 15 8:05 AM