Category: ABAP Programs
Program to find Armstrong Number in ABAP
Preface – This post is part of the ABAP Programs series. Sometimes, there is a need to know if the number provided by user is Armstrong number. In that case we program to find Armstrong Number in ABAP. It is not a question that is merely asked in an interview but an important keyword that is…
Program to Check Palindrome in ABAP
Preface – This post is part of the ABAP Programs series. Sometimes, there is a need to check palindrome of a number provided by user. In that case we program to check palindrome in ABAP. It is not a question that is merely asked in an interview but an important keyword that is used in day…
Calculate Power of Number in ABAP
Preface – This post is part of the ABAP Programs series. Sometimes, there is a need to know the power of a number provided by user. In that case we program to calculate power of number in ABAP. It is not a question that is merely asked in an interview but an important keyword that is…
Program to Reverse A String in ABAP
Preface – This post is part of the ABAP Programs series. Sometimes, there is a need to know the reverse of a string provided by user. In that case we program to reverse a string in ABAP. It is not a question that is merely asked in an interview but an important keyword that is used…
String Length in ABAP
Preface – This post is part of the ABAP Programs series. Sometimes, there is a need to know the length of string provided by user. In that case we program to find string length in ABAP. It is not a question that is merely asked in an interview but an important keyword that is used in day…
Concatenate in ABAP
Preface – This post is part of the ABAP Programs series. Concatenate in ABAP is used to join two different strings together. It can be used to join any two string, number, special character or all together. In this article we will learn about the keyword CONCATENATE and its implementation in an example program. Introduction Sometime we…
Leap Year Program in ABAP
Preface – This post is part of the ABAP Programs series. Leap Year Program in ABAP is a mathematical expression based algorithm that is common across all other programming languages. In this article, we will discuss what is a leap year and how to write ABAP program to find if a year is a leap year…
Type Conversion in ABAP
Preface – This post is part of the ABAP Programs series. Introduction Type conversion in ABAB means converting the type of a variable. In ABAP programs sometime we need to convert a variable from one type to other. This can be achieved with the help of type conversion or type casting. The same concept is illustrated…
Program to check vowel or consonant in ABAP
Preface – This post is part of the ABAP Programs series. Program to check vowel or consonant in ABAP or in any other computer language utilizes its ASCII values. ASCII stands for American Standard Code for Information Interchange. It is defined to represent every character on electronic communication in an encoded form. You can find list of all ASCII…
Swapping of Two Numbers in ABAP
Preface – This post is part of the ABAP Programs series. Swapping of Two Numbers in ABAP is a way to interchange the value of two variables with each other. It is rarely used in coding but it is an important topic for interviews. In this article we will cover both: swapping using third variable and swapping without…