ABAP on Cloud Exception Handling

Exceptions are way to communicate that something went wrong. An exception is a problem that arises during the execution of a program. When an exception occurs the normal flow of the program is disrupted and the program application terminates abnormally, which is not recommended, therefore these exceptions are to be handled. ABAP exception handling is built upon … Continue reading ABAP on Cloud Exception Handling

Instance vs Class Constructors: ABAP Explained

What is a constructor? Constructor is a special type of method for initializing the attributes of the class.It gets triggered automatically when an object is created.It never returns any value.It can be declared in the Public Section only. Instance Constructor An instance constructor in ABAP is specific to each object, meaning it is automatically executed … Continue reading Instance vs Class Constructors: ABAP Explained

SAP CO Organizational Structure – Key Elements Explained

The organizational structure in SAP Controlling (CO) defines how costs and revenues flow through your enterprise. Understanding this structure is essential for proper cost allocation, reporting, and analysis. Below is a breakdown of the key organizational units in SAP CO and how they interact. 1. Controlling Area (CO Area) What? The highest-level organizational unit in SAP … Continue reading SAP CO Organizational Structure – Key Elements Explained

Understanding Steampunk: An Overview of ABAP PaaS

What is steampunk ? Steampunk is nothing but ABAP Platform-as-a-Service or ABAP PaaS. The main Steampunk properties are:1. A dedicated stable public interface between platform and solutions on top, ensuring upgrades without hiccups. 2. An enterprise-ready environment for Cloud development, including a new ABAP language version and the ABAP RESTful Application Programming Model (RAP),3. A … Continue reading Understanding Steampunk: An Overview of ABAP PaaS

Networking : Some Points

1) What is Baud Rate ? ANSWER: The baud rate is the rate at which information is transferred in a communication channel"2400 baud" means that the serial port is capable of transferring a maximum of 2400 bits per second."For an asynchronous serial transmission it requires 1 start bit and 2 stop bits and for synchronous transmission … Continue reading Networking : Some Points

DBMS FUNCTIONAL DEPENDENCY

Functional Dependency Functional dependency (FD) is a set of constraints between two attributes in a relation. Functional dependency says that if two tuples have same values for attributes A1, A2,..., An, then those two tuples must have to have same values for attributes B1, B2, ..., Bn. Functional dependency is represented by an arrow sign … Continue reading DBMS FUNCTIONAL DEPENDENCY

Abstract Class, Interface and Proxy

Class in ABAP All of you already know what a class is and how it is created in ABAP. You can refer to the previous post to know basic terminologies. Here I will talk about some of the basics associated with these classes Abstract Class vs Interfaces Abstract Class is a special kind of class … Continue reading Abstract Class, Interface and Proxy

Filter in SAP ABAP

To filter out values based on a particular value The important point to note here is that the table on which you are going to apply filter must be sorted if not you have to use standard table with non unique keys which is sorted what i mean it will look something like this data … Continue reading Filter in SAP ABAP

Javascript Types

Equality Loose (non-)equality Checks for value equality with implicit coercion (coercion algorithm depends on types) One or both values are coerced (until the two types match) using a complex decision tree Strict (non-)equality Checks for both value and type equality (no coercion) Type Conversion Explicit coercion: controlled way of type conversion Using complex primitive type … Continue reading Javascript Types