October 2007

  • More ABAP Technical Interview Questions

    ABAP Technical Interview Questions(1-103) 1. What is the typical structure of an ABAP program? 2. What are field symbols and field groups.? Have you used “component idx of structure”…

  • ABAP Interview Questions

    ABAP/4 INTERVIEW QUESTIONS(1-139) 1 What is sap R/3 ? 2 What are the programming standards followed ? 3 What are the contents in technical specifications ? 4 What is…

  • 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…

  • Send email to many users

      REPORT Z_SEND_EMAIL_to_Users. TABLES: USR02. DATA: C(15). DATA: SENT LIKE SONV-FLAG. DATA: EMAIL_ID LIKE SOFOLENTI1-OBJECT_ID. DATA: BEGIN OF EMAIL_DATA. INCLUDE STRUCTURE SODOCCHGI1. DATA: END OF EMAIL_DATA. DATA: BEGIN OF…

  • 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.…