Manage SAP Application Interfaces Framework

SAP Application Interface Framework (AIF) is a solution to build, manage, and monitor application interfaces centrally.It provides a message monitor for complete visibility of interfaces and their processing status.Business users can directly correct errors, making error handling faster and more efficient.It clearly separates technical and business aspects of monitoring, reducing dependency on IT.Overall, AIF helps … Continue reading Manage SAP Application Interfaces Framework

Understanding ‘me’ Variable in OO ABAP

Often times you might have come across me variable in OO ABAP today with an small example we will see how it is being used in the programs *&---------------------------------------------------------------------**& Report y_class_basics*&---------------------------------------------------------------------**&*&---------------------------------------------------------------------*report y_class_basics.class abap_basics definition.public section. data : num type i value '10'. methods display.endclass.class abap_basics implementation. method display. data : num type i value '200'. … Continue reading Understanding ‘me’ Variable in OO ABAP

Understanding BDCDATA in SAP BDC Programs

What is use of BDCDATA ? While writing a BDC program, standard structure ‘BDCDATA’ is used to collect this information. The BDCDATA structure includes the following fields: PROGRAM DYNPRO DYNBEGIN FNAM FVAL BDCDATA structure is used to create an internal table in the BDC program which collect the above information for an entire transaction. Syntax … Continue reading Understanding BDCDATA in SAP BDC Programs

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

ABAP OBJECT ORIENTED INTRODUCTION

OBJECT ORIENTED PROGRAMMING TERMINOLOGIES in ABAP Below are some of the important concepts of OOPS ABAP:- What is a Class ? A class is a user defined data type with attributes, methods, events, user-defined types, interfaces etc. for a particular entity or business application What are Objects ? Objects are nothing but instances of classes, each object … Continue reading ABAP OBJECT ORIENTED INTRODUCTION