Search

Coding Blues

Tag

ABAP

Table Expressions In New ABAP

While READ statement is valid, ABAP has opened a new approach to fetching values from the internal table based on conditions. This is a more simplistic approach aiming at compact coding. Reading a table with index can be simplified as... Continue Reading →

More On Data Declaration In New ABAP

Expanding on the subject last touched upon, following are a few more examples of how data declarations have been updated. For a method, originally parameters would have to be individually declared prior to usage. Any change in the method of... Continue Reading →

Data Declaration In New ABAP

Consider a select with 10 fields out of a list of 30. The standard approach is to declare a Type, define an internal table or work area based on that Type and populate the internal table or work area in... Continue Reading →

Optimizing Custom ABAP For HANA

Optimizing Custom ABAP code for HANA upgrade can be visualized as a three-act structure - Detect, Optimize and Innovate. What Needs Optimization? Before HANA implementation/migration, an assessment on current code needs to be made in order to understand which objects... Continue Reading →

Epoch – OData Date Format

While dealing with OData JSON format, sometimes users come across a number in following shape - 1532696073 - which is confusing as they are expecting a date/timestamp. This is Epoch/Unix/POSIX time format which is an alternate approach to display date... Continue Reading →

Extracting XML In Internal Table

In a standard course of development, extracting an XML into SAP is not ideal. Most of the interfaces involve PI which is more adept and accurate in handling XML files and pass the data in a structure. On the other... Continue Reading →

Modify Domain Information On F4 Of Selection Screen

Problem: Bruce is a functional consultant who wants that a selection screen should allow only values coming from Domain in the Status Field except for value S which is not applicable. He places the request with Harvey who is the... Continue Reading →

Events In Module Pool Programming 

Unlike Reports, Module Pool Programming use ingenious use of programming to display the output in the form a collection of screens, flow, and events. It is written in ABAP and needs logical thinking of processes before etching down the code.... Continue Reading →

Understanding Foreign Key Relationship In ABAP

Foreign Key by definition is a key relationship between two distinct tables. It establishes a relationship between a combination of fields in one table with primary key fields of another table acting as check table. Consider Table T1 and T2.... Continue Reading →

Website Powered by WordPress.com.

Up ↑