Understanding ABAP Cloud SELECT Syntax Changes

This is a short post to see how select works on ABAP Cloud Environment, although it mostly remains the same but there few small changes which every ABAPER should be aware about The main difference is introduction of the keyword called FIELDS , so either you specify your fields in the with the SELECT keyword … Continue reading Understanding ABAP Cloud SELECT Syntax Changes

Understanding Vectors in C++: Key Features

Vectors are Just like arrays but with some special Features that gives you some flexibility i.e If you want to add a element at a later stage ( like a dynamic array) etc. We define a Vector asvector<data type> variable_name(size); whereExample :  vector temperature(7); It defines a vector called temperature which is of type double and stores value … Continue reading Understanding Vectors in C++: Key Features

How to Determine Perfect Cubes Using Digital Roots

In order to check whether a number is a perfect cube or not, we find its prime factors and group together triplets of the prime factors. If no factor is left out then the number is a perfect cube. However if one of the prime factors is a single factor or a double factor then the number … Continue reading How to Determine Perfect Cubes Using Digital Roots

ABAP Git Integration: Download and Activation Steps

There are 2 versions of Git that we can use with ABAP standalone version and developer Downloading the standalone program   we are going to see the implement the standalone version version. First we need to download the standalone program You can download the latest report by clicking on the link –> ABAP CODE Instructions for creating the program … Continue reading ABAP Git Integration: Download and Activation Steps

Understanding Stateful vs Stateless Applications

Stateful and stateless are adjectives that describe whether a computer or computer program is designed to note and remember one or more preceding events in a given sequence of interactions with a user, another computer or program, a device, or other outside element. tateful means that the computer or the program keeps track of interactions, … Continue reading Understanding Stateful vs Stateless Applications

ABAP Internal Tables Explained: Types and Usage

Internal tables are structures which are used to store temporary data during processing of an ABAP program. Following are the different kind of internal tables STANDARD SORTED HASHED CategoryInternally managed byAccessPrimary table keyWhen to useHintsSTANDARDPrimary table index (that's why these tables are called index tables)Table indexTable keyAlways non-unique, i.e. duplicate entries are always allowedDefinition of an … Continue reading ABAP Internal Tables Explained: Types and Usage

Understanding ABAP Data Types: A Comprehensive Guide

The following built-in elementary data types of fixed length are available: Numeric types: Integers (b, s, i, int8), decimal floating point numbers (decfloat16, decfloat34), binary floating point numbers (f), and packed numbers (p) Character-like types: text fields (c) and numeric text fields (n) Byte-like type: byte fields (x) Character-like date and time types: date fields (d) and time fields (t) Time stamp type for time stamp fields (utclong). Variable … Continue reading Understanding ABAP Data Types: A Comprehensive Guide

Unlocking Regex Power in ABAP Programming

There are lot of blogs out there which tells about regex but the main aim of this blog is to tell others the powers of regex specially in ABAP where we are obsessed with keywords like loop endloop and operations like CS EQ etc. Example : Lets say you have string where you find a … Continue reading Unlocking Regex Power in ABAP Programming

SAP Interview Questions

The link below contains a variety of interview questions related to different SAP topics. Click on the link to explore and learn more about these questions SAP LABS and interview Questions Click Here. ABAP interview Questions Click Here. Tips for interview Click Here. New ABAP syntax interview Questions Click Here. CDS interview Questions Click Here. … Continue reading SAP Interview Questions