How To Debug Pop-Up In SAP ABAP
Sometimes, there will be a case where you have to debug the process but that process is found after a click on popup. In such cases you cannot enter /h command to start debuggin…
Sometimes, there will be a case where you have to debug the process but that process is found after a click on popup. In such cases you cannot enter /h command to start debuggin…
REDUCE OPERATOR IN ABAP Used to calculate total and subtotals. Syntax: REDUCE <type>( INIT ... FOR... THEN... UNTIL... NEXT... ) INIT - Initial value FOR - Initialize iteratio…
Use VALUE AND FOR to Transfer Internal Table Entries. For example, we have an internal table with 2 columns, employee name and employee role. And I want to transfer only employee names from…