Recent Activity

    Make great software

    In the previous post, I wrote about the need for an 10 years old ABAP developer to update programming skills in order to align them with the market's current requirements, an important aspect in everyone's career, including both in-house and freelanc...

    BOPF Change Tracker

    This article describes BOPF Change tracker. This tool allows you to track any changes of any data in BOPF. We have similar functionality in BOPF Test UI but Change tracker is much stronger and generic. What problem it solves? Imagine a situation: so...

    Sample code for changing delivery address in purchase requisition with IF_EX_ME_PROCESS_REQ_CUST~PROCESS_ITEM

    The business requirement for this piece of coding was the following: a user-specific delivery address is to be created with transaction MEAN. The assignment of the address number to a user is stored in a z-table. When a purchase requisition is create...

    Explaining XVBEP/YVBEP and IVBEP/IVBEP1 behaviour for manipulation in custom code

    The behaviour of XVBEP and YVBEP global data is not very well documented. Hence the reason for this post. This is written with the learning obtained the hard way from the experience of developing enhancements in standard SD userexits so that it can s...

    kartefact by Active Participant
    • 11524 Views
    • 2 Comments
    • 6 Likes

    Adventures in Design Thinking

    As like most of my blogs, this one is going to be about the goings on at Barnsley MBC where I work.  We are currently going through a large digital transformation at Barnsley, with the intention of cutting costs, improving efficiency and improving da...

    Chantele by Active Participant
    • 1049 Views
    • 2 Comments
    • 1 Likes

    SAP Mentor Monday: ABAP troubleshooting - Collecting ABAP traces and performance traces using the Single Transaction Analysis tool ST12

    Abstract: Topic: - ABAP troubleshooting - Collecting ABAP traces and performance traces using the Single Transaction Analysis tool (ST12) Speaker – Marco Monteiro, Senior Support Engineer, works in Product Support, Toronto Office, CRM team. Host: ...

    ABAP on HANA - Step by step procedure to create a CDS view using input parameters to display multiple records.

    This blog shows how to display multiple records by using input PARAMETERS keyword, As there is no provision to use ABAP keyword SELECT-OPTIONS which display multiple records in CDS View. 1. Go to Dictionary => ABAP DDL Sources => New Data Definition ...

    Design Thinking Workshop for University students in Korea, AppHaus Korea, 5 November

    UA Korea, together with Design Thinking Community(DTC), hosted 15 students from 12 universities on 5 November. Together with 6 DTC members, a total of 21 participants got together on a Saturday! One of the DTC members took role as a main facilitator,...

    Hierarchies in CDS views

    Why do we need Hierarchies? The main purpose of a hierarchy in analytics is to aggregate facts and provide a high-level overview with the option to drill into the lower hierarchy branches and nodes. Facts are represented as CDS analytical views, whic...

    kayur_goyal by Product and Topic Expert
    • 53828 Views
    • 11 Comments
    • 16 Likes

    Step-by-Step procedure for creation, execution and storing of ABAP Managed Database Procedures in HANA

    ABAP Managed Database Procedure Database Procedures are stored and executed in the Database. We can create and execute database procedures in HANA database through ABAP using AMDP Class and AMDP Method called ABAP Managed Database Procedures. SQL SCR...

    SAP模块常用增强总结

    MM模块: 采购订单增强: BADI :ME_GUI_PO_CUST ME_PROCESS_PO_CUST 物料凭证增强: BADI:MB_DOCUMENT_BADI USER-EXIT:MBCF0002 实现功能1、当参照预留过帐时,检查填入数量是否小于预留数量 2、移动类型是***的时候,查看RSNUM是否为空 3、检查原始单据工厂和库存地点与物料凭证的工厂和库存地点一致 MBCF0009 实现功能1、当移动类型是***的时候,库存地点只能是**** 2、工单下达日期+时间...

    Empathy Leads to Action

    Well, it's confirmed (again) - the SAP community truly cares about empathy! On Nov 10th in Barcelona, the "Evening of Empathy" event welcomed a packed house of SAP customers, partners and colleagues eager to learn more about how empathy matters. A g...

    Jason_Cao by Product and Topic Expert
    • 1304 Views
    • 3 Comments
    • 4 Likes

    SAP NetWeaver AS for ABAP 7.51 Innovation Package - Overview and Product Highlights

    This presentation gives an overview of the main capabilities delivered with SAP NetWeaver Application Server for ABAP 7.51 Innovation Package which is generally available to customers since October 14th, 2016. View the presentation (PDF) Related li...

    Displaying JSON

    Displaying XML data is rather simple. HTML browsers understand XML too. DATA itab TYPE TABLE OF i WITH EMPTY KEY. itab = VALUE #( ( 1 ) ( 2 ) ( 3 ) ). CALL TRANSFORMATION id SOURCE itab = itab RESULT XML DATA(xml). cl_abap_b...