SAP Managed Tags: ABAP Development Hello all, I've been trying to convert a variable declared as xstring into TEXT, but after trying many function modules, I'm still without a solution. My program reads an XLS file from BPC and the contents returns in a XSTRING variable. Since they ne...
SAP Managed Tags: ABAP Development Hi My web service call returns a string XML. My task is to retrieve the values in the different nodes, preferably in an internal table. Previous I have used Simple Transformation, but I am not sure if this is possible this time, since the structure of...
SAP Managed Tags: ABAP Development Hi experts, when CONVERT_STREAM_TO_ITF_TEXT is used to convert string containing Character & to inner table,the resulting inner table convert '&' to"<(>&<)>". I need the & not <(>&<)>. Does anybody know how we can get the expected results? Re...
SAP Managed Tags: ABAP Development data num type p decimals 2. data str type string. num = '3141.59'. call some_function_module exporting notation = 'X' num = num importing str. Depending on the notation X or Y or blank i would like to get 3.141,59 or 3,141.59. I'm searching ...
SAP Managed Tags: ABAP Development Check the image . Instead of text put Url. url.png 76 KB Reply SwadhinGhatuary Active Contributor In response to SwadhinGhatuary 2015 Jun 22 11:39 AM 0 Kudos 641 SAP Managed Tags: ABAP Development Hi, If you thing I am in wrong directi...
SAP Managed Tags: ABAP Development DATA itab_accontextdir TYPE TABLE OF ACCONTEXTDIR. DATA struct_accontextdir LIKE LINE OF itab_accontextdir. DATA l_o_error TYPE REF TO cx_root. DATA: filename type string , xmldata type xstring . DATA: mr TYPE REF TO if_mr_api. mr = cl_mi...
SAP Managed Tags: ABAP Development Hi Laura, there is a nice report posted by Thomas Jung which should help you: (Topic: Sendin Spool reports to an e-mail address. [In case link is not working]) In general: Create normal output by smartform (which can be send by email in 4.7 alre...
SAP Managed Tags: ABAP Development Try class CL_SWF_UTL_CONVERT_XSTRING method TABLE_TO_XSTRING. CALL METHOD cl_swf_utl_convert_xstring=>table_to_xstring EXPORTING i_table = my_internal_table i_size = size_of_my_internal_table RECEIVING r_stream = revceiving_string EXCEPTIONS invalid_...
SAP Managed Tags: ABAP Development Hi Experts, please give me solution about the Hoe to convert the data internal table to excel format.this level 1 issus can any one help me regarding this issus. I am trying to "sap_convert_to_xls_format" this function module but in this FM not have...
append <result string from FM> to stringtab . or Use below function module inorder to convert as string from a given internal table . CALL FUNCTION 'SCMS_TEXT_TO_XSTRING' EXPORTING FIRST_LINE = 0 LAST_LINE = 0 MIMETYPE = ' ' IMPORTING BUFFER = lv_XSTRING TABLES TEXT_TAB = LT_TEXT...