Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Regarding Function module

Former Member
0 Likes
892

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
804

SCMS_BINARY_TO_TEXT

SRET_BINARY_TO_TEXT

Use Tcodes CG3Y and CG3Z

6 REPLIES 6
Read only

Former Member
0 Likes
804

Hi,

Check these FM

SCMS_BINARY_TO_STRING

SCMS_BINARY_TO_TEXT

SCMS_BIN_TO_TEXT

Read only

Former Member
0 Likes
805

SCMS_BINARY_TO_TEXT

SRET_BINARY_TO_TEXT

Use Tcodes CG3Y and CG3Z

Read only

GauthamV
Active Contributor
0 Likes
804

This FM may solve your problem.

SCMS_BINARY_TO_TEXT

Read only

Former Member
0 Likes
804

Hi,

Check if TR_CONVERT_LOG is useful.

Thanks,

Jyothi

Read only

Former Member
0 Likes
804

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

Read only

Former Member
0 Likes
804

Thanks you all for your valuable replays !!!!!

Ravikanth