Could any guru give sample code for the following function module: SCMS_XSTRING_TO_BINARY SCMS_BINARY_TO_STRING. Thanks a lot
I have a RAWSTRING xxx (get from DB) and want download it using GUI_DOWNLOAD. According to some posts, I call 'SCMS_XSTRING_TO_BINARY' data: data_tab type table of x255.
Need to Convert Binary Data(PDF data or DOC data or TXT data) into String. Procedure: lt_phio_content is a binary table of Table Type SDOKCNTBIN CALL FUNCTION 'SCMS_BINARY_TO_STRING' EXPORTING input_length = v_fsize IMPORTING text_buffer = lv_string TABLES binary_tab = lt_phio_content...