ABAP Interview Questions
Tag: abap 7.51
ADT Support for ABAP Objects
« Previous Index Next » ADT supports a wide variety of ABAP Objects and this is expected too because Eclipse is part of SAP's future development offering. SAP is working on future WebIDE which should allow to do ABAP programming on HANA Cloud Platform. Well, we wait with the excitement. Good things take time to … Continue reading ADT Support for ABAP Objects
Searching in Eclipse ADT
« Previous Index Next » Searching is one of the most important activities which an ABAPer need to do during development as well as troubleshooting. We may try to search an ABAP Object, a transaction, Where-used-List etc. To be able to effectively use Eclipse ADT for everyday development tasks, it is essential that a developer … Continue reading Searching in Eclipse ADT
Eclipse for ABAPers
Table of Contents... Understand Eclipse for ABAPers!
Performance Comparison: New Open SQL vs CDS vs AMDP vs CTE
« Previous Index Next » It is a very common question nowadays, which one to chose when hitting the database? Option candidates are New Open SQL, CDS(Core Data Services), AMDP(ABAP Managed Database Procedure) or CTE(Common Table Expression). They all are designed for new enhanced ABAP and they all are made for delivering performance. Moreover, all … Continue reading Performance Comparison: New Open SQL vs CDS vs AMDP vs CTE
CDS Session Variables
« Previous Index Next » As of ABAP 7.51, CDS framework provides some runtime system variables which can be readily used to make CDS more optimal and feature-rich. These session variables sometimes also discard the need of parameterization of CDS view. $session.client is runtime SAP client which is equivalent to sy-mandt $session.system_date is current system … Continue reading CDS Session Variables
Table Function with Parameters
« Previous Index Next » Let’s create a Simple Table Function right away… Steps to create and test CDS Table Function which is always created along with AMDP class method: Right Click on Project > New > Other > Data Definition Provide Package, CDS name, and Description and Click Next Select Package if Package is … Continue reading Table Function with Parameters
CDS View with Association and Path Expressions
« Previous Index Next » Let's make ourselves familiar with some important keywords before we jump in to understand Association with examples: Association Association is different than join in that sense that association defines how two entities are connected to each other. It is sometimes understood as “Conceptual Thinking” also because its nature of linking … Continue reading CDS View with Association and Path Expressions
CDS View with Join
« Previous Index Next » CDS view allows following types of Joins: 1. Inner Join: Inner join requires each row in the two joined tables to have matching column values, and is a commonly used join operation in applications but should not be assumed to be the best choice in all situations. Inner join creates … Continue reading CDS View with Join