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 Thanks Harsh. The i need to convert PDF to Xstring is because i need to upload a PDF document using FM : HRRCF_MDL_CAND_ATT_CREATE' This Fm only takes Xsting as input. This is a case in E Recruitement when i want to create attachments to ...
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...
first you have to convert the xstring to string using the following code data: xcontent type xstring . (file content ) data: content type string . data: rows type standard table of string , wa_rows type string . DATA: conv TYPE REF TO CL_ABAP_CONV_IN_CE. conv = CL_ABAP_CONV_IN...
l_regex TYPE string. DATA : l_tab TYPE c VALUE cl_abap_char_utilities=>horizontal_tab. CALL FUNCTION 'HR_KR_XSTRING_TO_STRING' EXPORTING * FROM_CODEPAGE = '8500' in_xstring = file_content * OUT_LEN = IMPORTING out_string = ls_string. ...
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_...
SAP Managed Tags: ABAP Development This will work: data: hex type x VALUE '20', "for space character ascii type i. ascii = hex. write: / 'Hex:' x, 'Ascii: ' ascii. OR please take as WRITE-statement this: write: / 'Hex:', hex, 'Ascii: ', ascii Edited by: Neha Thukral on...
NotificationsYou must be signed in to change notification settings Fork0 Star1 Code Issues Files develop .changeset .github .husky __test__ bin lib .eslintrc.cjs .gitignore .prettierrc.json CHANGELOG.md LICENSE README.md package.json
Convert the xstring to binary. SCMS_XSTRING_TO_BINARY Then Binary to String SCMS_BINARY_TO_STRING regards, Nazeer Reply MichaelH1 Explorer In response to Former Member 2009 Dec 28 9:44 AM 0 Kudos 543 SAP Managed Tags: ABAP Development Hi Nazeer, thanks for your answer. Your...
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...