” BOOLC( )- Returns True(X) or False( ) for a given expresssion DATA ret. ret = boolc( sy–batch IS INITIAL ). WRITE ret. Step1. Step2. Output:
Category: Uncategorized
String Operation – Compare
Comparisons can be applied on strings with types C, D, N, and T. <operator> Meaning CO Contains Only CN Contains Not only CA
String Operation – Shift
SHIFTing- is likely to repositioning the string. In ABAP – Left shift, Right Shift and circular left and circular right shift. Step1. Code ” SHIFTING “ DATA :
String Operation – Replace
REPLACE: Replace changes the text with another text in the string. Step1. Execute the program. Step2. Mark the output:
String Operation – Condense
Condense – removes the extra spaces in a string. Step1. Execute the program. Step2. Observe the output. Step3. Execute the program. Step4. Observe the
String Operation- Length
STRLEN function calculates the length of the String. Step1. Execute the program. Step2. Mark the output..