ABAP

  • SAP Utility Programs

    SAP Utility Programs Gentran IDoc Data Definition File Generation Tool – Gentran’s mapping tool maps 1 structure to another structure. Typically, 1 structure is an EDI standard which is…

  • List of Infotypes configured in the SAP system – Simple ALV report

    *&———————————————————————————————————————–* *& Report ZINFOTYPE * *& Author : Swarna.S * *&———————————————————————————————————————–* *& * *& AS: This program lists all the infotypes maintained in SAP system * *&———————————————————————————————————————–* REPORT zinfotype…

  • Setting SAP History when pressed Back space or Spacebar

    Setting SAP History when pressed Back space or Spacebar

    How to make SAP remember last entered values and store the field history when entering spacebar or backspace? What if you do not get any values for all the…

  • Calling an Unauthorised transaction

    Calling an Unauthorised transaction

    SAP has a neat little trick which lets you skip a basic authority check by using this method which will basically let you skip the basic Authority check. you…

  • SAP Tips: Change Database tables directly

    SAP Tips: Change Database tables directly

    SAP is a very robust system has some flaws.. maybe they kept it intentionally so that we can play with it. Anyways, As far as I know there are…

  • SAP ABAP FAQ

    1. How do you call SAP script in reports & reports in SAP script? 2. What is different between SAP script & reports? 3. What is stack? 4. What…

  • ABAP Technical Interview Questions

    1. What is an ABAP data dictionary?- ABAP 4 data dictionary describes the logical structures of the objects used in application development and shows how they are mapped to…

  • SAP ABAP Keywords

    Complete List of all SAP ABAP Keywords. Alphabetical Overview of all SAP ABAP Commands or Keywords. A ADD for single fields Adds two single fields. Syntax ADD TO .…

  • How to debug from a Popup in ABAP Program

    This is a quick and easy method to debug from a ABAP Program for a Popup. There are many times when you get a popup or an error message…

  • ABAP FAQs – Series:1

    ABAP FAQs Q: Is ABAP program client dependent or independent? A: Independent. Q: What is the diffference between modifications and enhancements? A: Modification, we are modifying which is already…

  • ABAP program to connect to FTP server

    ABAP program to connect to FTP server

    This ABAP program will let you connect to a FTP host. This is done by using the function module FTP_CONNECT and you need to pass the user credentials in…

  • How to generate a long date like "2 januari 2007" from "20070102".

    How to generate a long date like "2 januari 2007" from "20070102".

    DATA my_date TYPE DATUM. my_date = ‘20070502’. DATA wa_dates LIKE TABLE OF T247 WITH HEADER LINE. DATA wa_date LIKE TABLE OF T247 WITH HEADER LINE. DATA long_date TYPE STRING.…