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

EXCEPTIONS IN SAP ABAP

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 EXCEPTIONS 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

JAVASCRIPT Declarations

External JS files can be referenced in tag using src attribute Both relative and absolute binding are supported Remote resources can also be used Locally defined JS code is added between tags More than one script tags can be used In HTML5, type attribute is not mandatory anymore Executed automatically (DOM is not ready yet!) Coding … Continue reading JAVASCRIPT Declarations