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...
Solved: Hi ABAP Experts, I have an Xstring coming from an CSV File Upload (from ABAP WebDynpro). Now I want to convert it into an internal table. Are there any helping
I am gonna cover only the conversion part of that csv to any internal table using dynamic internal table concept. Once you get the data in your internal table you can use it in any way. Once you get the xstring of csv file in back-end, you can use the below FM to extract data. ...
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 OTF is used for storing smartforms. It's an internal table with ITCOO structure (fields TDPRINTCOM 2 char + TDPRINTPAR 70 characters) If you want to copy internal table into xstring without transformation, first transform internal table into a string with...
SAP Managed Tags: ABAP Development Hi, Dummy code DATA ls_output_options_sf TYPE ssfcompop.DATA lv_function_module_name TYPE rs38l_fnam.TYPES: BEGIN OF ty_url, name(80), url TYPE string, END OF ty_url.DATA: lt_url TYPE TABLE OF ty_url, ls_url TYPE ty_url.CALL FUNCTION 'SSF_...
internal_error = 2 OTHERS = 3. loop at doc_table INTO wa_doc. CONCATENATE lv_content wa_doc INTO lv_content in BYTE MODE. ENDLOOP. Edited by: qiuguo wu on Apr 8, 2008 12:18 PM data:ls_xmloutputtypessfxmlout,lt_html_rawtypetsfixml.data:l_xstringtypexstring,"needed for HTTP res...
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...
SAP Managed Tags: ABAP Development call it one once return a rows ,this is not what I want. I want three rows without "<(>&<)>" I call CONVERT_STREAM_TO_ITF_TEXT tranfer a string to the internal table, then call CONVERT_ITF_TO_STREAM_TEXT tranfer the the internal table to the ...
use 'SCMS_STRING_TO_XSTRING' use 'SMUM_XML_PARSE'. by, sampath kuamr Reply Former Member In response to former_member185054 2015 Mar 20 5:37 AM 0 Kudos 2,227 SAP Managed Tags: ABAP Development Hi Experts , I don't want to convert XLM data into Internal table rather ...