Recent Activity

    The case of statics

    Hi all, There are occasions where we have a code that looks like this: FORM loop_with_select .  DATA: t01 TYPE i ,        t02 TYPE i ,        dif TYPE i .  DATA: it_sflight TYPE TABLE OF sflight .  FIELD-SYMBOLS: <st_sflight> LIKE LINE OF it_sflight ...

    Have fun with system log - your debugging activity is being recorded by System

    Hi developers,I guess most of you have ever changed the variable content in the debugger every day, right?Suppose you are doing some evil thing ( for example, bypass the authorization check via debugger ) in a system where you have enough authorizati...

    JerryWang by Product and Topic Expert
    • 18273 Views
    • 15 Comments
    • 27 Likes

    Resumable exceptions

    Resume code execution after an exception has been thrown can be very useful in several different scenarios (i.e. processing multiple materials and you want to process all but skip only those where there's an error) This can be solved quite easily usi...

    ABAP Channels Part 1: WebSocket Communication Using ABAP Push Channels

    Introduction For introduction to ABAP Channels please refer to Introduction to ABAP Channels. For tangible examples in the system see also the blog ABAP Channels Examples. See also FAQ - ABAP Channels. This blog focuses on the WebSocket integration ...

    Enhancement in IW31

    Hello Experts, I Am new to ABAP Field, Though the below information may be simple,thought of sharing with you Since this was one of my requirement in my first object that i completed successfully. I had a requirement of validating the partner fun...

    ABAP Dumps

    Dumps happen when an ABAP program runs and something goes wrong that cannot be handled by the program. Dumps that happen in the customer namespace ranges (i.e. own-developed code), can usually be fixed by the programmer. Dumps that happen in SAP st...

    matt by Active Contributor
    • 69806 Views
    • 13 Comments
    • 33 Likes

    Security of the SAProuter

    On https://service.sap.com/securitynotes -> News you can find a new spotlight news from 12.11.2013 about Security Notes concerning the SAP Router:Important security fixes for SAP Router; new malware variantThis news refers to security notes published...

    COLOR WARS

    On August 23rd, 2013, T-Mobile filed a Complaint in the United States District Court for the Southern District of Texas against AIO wireless, a subsidiary to AT&T. AIO is offering pre-paid, low cost service similar to T-Mobile, but the business model...

    Estimation - ABAP

      Effort Estimate  is used to denote measure of use of workforce and is defined as totaltime that takes members of a development team to perform a given task. It is usually expressed inunits such as man-day/ Person-day, man-month, man-year. This valu...

    JoffyJohn by Active Contributor
    • 9146 Views
    • 5 Comments
    • 5 Likes

    Program To display the triangle using special character

                 Program To display the triangle using special character                                  (By Polu Sreedevi) Developed the program to display thetriangle using any special characters like ‘!@#$%^&*’. Here in selectionscreen I am passin...

    Tree ALV - Message Popup.

    Required Functionality Select the vendor invoice records for posting and click on Post Invoices ButtonEach vendor invoice will be posted and return messages will be shown or the reason for not posting the invoice will be returned.Click on the hotspot...

    JoffyJohn by Active Contributor
    • 2762 Views
    • 0 Comments
    • 0 Likes

    A real example: how to leverage ABAP breakpoint with type "Exception"

    Hi friends,     most of the time when your application does not work as you expected and you want to debug to find root cause. Unfortunately there is no hint in your application which can guide you to the right way of trouble shooting( if there is so...

    JerryWang by Product and Topic Expert
    • 13538 Views
    • 0 Comments
    • 13 Likes

    IoC implemented

    ChallengeYesterday we had an interesting discussion about the following requirement: There is an application which consists of a webdynpro UI and a backend model. The backend model is described by an interface ZIF_SOME_BACKEND_MODEL which is implemen...