INTO result SEPARATED BY space. Addition 3 ... RESPECTING BLANKS Effect The additionRESPECTING BLANKSis only allowed when strings are processed and respects the trailing blanks for data objectsdobj1, dobj2 ...or rows in the internal tableitab. If this addition is not used, the blanks are ...
Verkettung einzelner Bytes aus einer internen Tabelle in einen Bytestring. TYPES hex TYPE x LENGTH 1. DATA itab TYPE TABLE OF hex WITH EMPTY KEY. itab = VALUE #( ( CONV hex( '48' ) ) ( CONV hex( '65' ) ) ( CONV hex( '6C' ) ) ...
SAP Managed Tags: ABAP Development > > hi experts,> i have one problem when concatenate string.> { for example:> > condition 1: values of f1 = thane> f2 = mumbai> f3 = delhi> concatenate f1 ',' f2 ',' f3 ',' into f separated by space.> then f = thane , mumbai , delhi...
REPLACE cl_abap_char_utilites=>horizontal_tab WITH space INTO text. Regards, Raj Reply Former Member 2006 Dec 28 7:44 PM 0 Kudos 531 SAP Managed Tags: ABAP Development Hi Kirsten, Use CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB instead of delim in unicode system. concatenate wa1 CL_A...
take a screenshot of that error along with the CDS view and paste it here? Reply Sandra_Rossi Active Contributor 2020 Jan 21 1:37 PM 3 Kudos 5,951 SAP Managed Tags: ABAP Development Please use the CODE button to format your code so that it's shown in a more user-...
SAP Managed Tags: ABAP Development Hi, If you know the exact number o blanks that you need, you can try the SQL Function for Strings: CONCAT_WITH_SPACE( arg1, arg2, spaces ). Former Member Options 2020 Feb 224:37 PM 2Kudos ...
concatenate name1 name2 into name separated by space. Declare a field 'name' to display in your ALV. Reply Former Member 2008 Mar 20 9:01 AM 0 Kudos 343 SAP Managed Tags: ABAP Development Hi, You can try like this: Make an output table say gt_output with field NAME. ...
CONCATENATE (ABAP Keyword) introduction & details CONCATENATE Basic form CONCATENATE f1 … fn INTO g. Addition … SEPARATED BY h Effect Places the fields f1 to fn after g . With the fields fi (1 <= i <= n), trailing blanks are ignored, i.e. these fields are considered only to have...
SAP Managed Tags: ABAP Development hi, I HAVE USED concatenated sting in "where" condiion of selct query , it works.. it was some thing like.. concatenate 'kunnr' 'eq' var2 into str seperated by space. now the select query was.. select... where str. "here str is the string va...
SAP Managed Tags: ABAP Development Try with ' ' (space within Quotes) Else Do normal Concatenation with single space and then use SPLIT keywork (SPLIT wher the space is there) and the again Concatenate. the flow is CONCATENATE (with single space) then SPLIT (at space) then CONCATENATE (...