@rageshwaran
Lean concept with me π
On a journey of continuous learning π I share the concepts I learn daily through blogs. Learn concepts with me β one topic at a time.
#LearningInPublic #ContinuousLearning
Nothing here yet.
Mar 5 Β· 6 min read Β· Intro This short Dayβ1 guide covers the essential ABAP syntax every beginner should know: program structure, basic statements and rules, comments, variable declarations, common data types, constants,
Join discussion
Feb 17 Β· 4 min read Β· Todayβs session is one of the most important practical topics in ABAP development. You will understand: Internal Table Operations (READ, APPEND, INSERT, DELETE, MODIFY, SORT) Memory Handling (CLEAR, FREE) CALL TRANSACTION HOTSPOT & Interactive Ou...
Join discussion
Feb 17 Β· 6 min read Β· 1. What is a Variable in ABAP? A variable is a named memory location used to store data during program execution. Its value can change while the program runs. β Syntax DATA variable_name TYPE data_type VALUE initial_value. β Example DATA gv_total TY...
Join discussion
Feb 17 Β· 5 min read Β· In SAP ABAP, programs follow an event-driven programming model, unlike traditional languages that execute line by line from top to bottom. Instead, ABAP programs respond to specific events triggered during execution. This allows developers to control...
Join discussion