Recent Activity

    ABAP Geek 15 - ADBC

    ADBC is the abbreviation for "ABAP Database Connectivity" that is a class-based API for the Native SQL interface of the Application Server ABAP. ADBC allows object orientated and dynamic access to the Native SQL interface and can always be used whe...

    Object Oriented Design Principles (OODP): Single Responsibility Principle (SRP)

    In the previous post of the series Object Oriented Design Principles, we have seen: 1) Object Oriented Design Principles (OODP): Open-Closed Principle(OCP)2) Object Oriented Design Principles (OODP): OCP with Business Scenario 3) Object Oriented Des...

    Object Oriented Design Principles (OODP): Dependency Inversion Principle (DIP)

    In the previous post of the series Object Oriented Design Principles, we have seen: 1) Object Oriented Design Principles (OODP): Open-Closed Principle(OCP) 2) Object Oriented Design Principles (OODP): OCP with Business Scenario   Definition: By D...

    Simple ABAP Clone Hunter

    In this period I'm involved in many upgrade projects and one of the biggest effort is to adjust ABAP copied from SAP standard ones that I call CLONEs.In my experience pure custom ABAPs require few adaptations (obsolete statements, obsolete function ...

    _IvanFemia_ by Active Contributor
    • 5859 Views
    • 11 Comments
    • 3 Likes

    Type safety - why should we use TYPES defining parameters for ABAP forms?

    Consider the following fragment of coding.DATA: v_matnr TYPE matnr,      v_ekgrp TYPE ekgrp,      v_count TYPE i,      v_value TYPE p LENGTH 8 DECIMALS 2....PERFORM myform USING v_matnr v_ekgrp v_count v_value....FORM myforum USING i_matnr           ...

    matt by Active Contributor
    • 4389 Views
    • 2 Comments
    • 2 Likes

    ABAP Easter Egg

    Give it a try ...   ... or use direct links: http://help.sap.com/abapdocu/en/abenabap.htm http://help.sap.com/abapdocu/de/abenabap.htm http://help.sap.com/abapdocu/en/abenabap.htm (Attention, it's the latest version of the documentation not...

    LSMW with RFBIBL00

    In the ABAP Forum, there are couple of questions unanswered related to LSMW using standard program RFBIBL00 to post the FI documents. That inspried me to write this Blog. Step 1: Maintain Object Attributes For creating the FI document with the RFB...

    Watermark in SAPScript

    On the other day, I was reading through SCN and this question came up. There wasn’t any suitable answer, which can get the watermark in SAPScript. So, I decided to give a try. I have tried couple of times with different techniques like calling the s...