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.