Note: There are several ways; this blog is written about one of them. :) Reading before this blog, check below blog:https://sapmdg.hashnode.dev/sap-mdg-x-abap-how-to-call-cr-number The below is the code. IF ls_table-usmd_creq_type = 'ZMDGCRTYPE'. "ls...
Note: There are several ways; this blog is written about one of them. In case of System Method Caller SELECT SINGLE * INTO @DATA(ls_table) FROM USMD120C WHERE usmd_crequest = @lv_cr_number. "lv_cr_number - in Signature Thank You,Sandeep Suggu.SAP C...
Note: The below abap code will be helpful at the time of requirement. SELECT ebeln FROM ekko INTO TABLE @DATA (lt_ebeln) UP TO 5 ROWS. WRITE: / 'NORMAL LOOPING'. LOOP AT lt_ebeln INTO DATA (LS_ebeln). WRITE:/ LS_EBELN-EBELN COLOR 1. ENDLOO...
Note: The below abap code will be helpful at the time of requirement. " Moving Data from one Internal Table to another table. TYPES: BEGIN OF TY MARA, MATNR TYPE MATNR, MTART TYPE MTART, MBRSH TYPE MBRSH, MATKL TYPE ...
DATA: lv_cr_id TYPE usmd_crequest, lv_cr_type TYPE usmd_crequest_type. cl_usmd_app_context->get_context( )->get_attributes( IMPORTING ev_crequest_id = lv_cr_id ev_crequest_type = lv_cr_type ev_crequest_step = ...
DATA: lv_cr_id TYPE usmd_crequest, lv_cr_type TYPE usmd_crequest_type. cl_usmd_app_context->get_context( )->get_attributes( IMPORTING ev_crequest_id = lv_cr_id ev_crequest_type = lv_cr_type ). Thanks,Sandeep Suggu.
❗️The Problem Everyone says “data is a strategic asset.”But in real projects, data is: copied into spreadsheets owned by nobody fixed manually lost in migrations That’s not asset management. That’s survival. Until you manage data with the same ...
❗️The Problem You can’t fix data if you don’t know: Who owns it Who changes it Who approves it Who is accountable when it’s wrong Most companies ignore this — until they face a data breach, a failed migration, or a compliance audit. Then they s...
❗️The Problem Everyone wants clean data, fast processes, and easy integration.But nobody maps how data flows, how it's structured, or where it breaks.So what happens? You duplicate logic You integrate the wrong fields You migrate garbage You rede...
❗️The Problem You see it everywhere: 5 fields for the same concept 10 reports with different totals “We need to clean data manually after migration” “The interface broke because the field wasn’t mapped right” That’s not bad luck.That’s bad mode...