SAP Managed Tags: ABAP Development well that wont work, this will remove exactly ONE comma. you´d need this addition "ALL OCCURRENCES" of statement replace. But still it wont wor cause then you wont have any commas at all in your string afterwards. Reply Former Member In response to...
After the firstCONCATENATEstatement, theresultcontains"Wehaveallthetimeintheworld", while after the second it contains"We have all the time in the world". DATA: t1 TYPE c LENGTH 10 VALUE 'We', t2 TYPE c LENGTH 10 VALUE 'have',
Concatenate multiple columns into one column in ABAP CDS Views S/4 HANA 1809 sirishag Explorer 2020 Jan 21 11:15 AM 0 Kudos 13,158 SAP Managed Tags: ABAP Development Hi Experts, could you please help em to concatenate multiple columns into one string. I am trying to do the...
SAP Managed Tags: ABAP Development Hi You can use CONCATENATE statement for it.. PRODUCT_NAME = 'ipod'. CONCATENATE 'http://google.com/' PRODUCT_NAME INTO LINK. Now the Link Variable will be having http://google.com/ipod Hope it will solve your problem.. Thanks & Regards ilesh 24...
the best thing to do is to concatenate those two fields into one variable and use that variable in your select statement regards, Peter Reply Former Member 2008 Jul 08 11:38 AM 0 Kudos 3,120 SAP Managed Tags: ABAP Development Hi Poonam, SELECT ebeln ebelp belnr vgabe bwart DM...
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, Try using a counter and also a loop statement. when counter = 10 append work area(should have a concatenated value i.e x1,x2,x3...) to itab and make the counter back to 1. **Reward if useful** Regards, Ruby. Reply Former Member 2008...
SAP Managed Tags: ABAP Development Hi All, In one of my method I am concatenating some text which includes few hyperlinks.But I am not able show these hyperlinks as links.They are also shown as text.How do I show them as link? I am using this code. CONCATENATE 'some text here' ...
SAP Managed Tags: ABAP Development Hi, Try using a counter and also a loop statement. when counter = 10 append work area(should have a concatenated value i.e x1,x2,x3...) to itab and make the counter back to 1. **Reward if useful** Regards, Ruby. Reply Former Member 2...