Top "Abap" questions

ABAP is the programming language of SAP softwares R/3, S/4HANA, CRM and many others.

ABAP Short Dump on append of a sorted table

Why does my ABAP program short dump when I append a line to a sorted table? ST22 Shows ITAB_ILLEGAL_…

abap
SELECT FOR ALL ENTRIES vs LOOP SELECT SINGLE in ABAP

I am comparing the SELECT FOR ALL ENTRIES vs LOOP SELECT SINGLE and I am having a big difference between …

loops select abap opensql
ALV is not refreshed after edit. Why?

I know my problem has been asked hundred times. But I still cannot find any suitable solution for me I …

abap alv dynpro
Multiple conditions in a SELECT statement?

First off, I have no experience with ABAP, I'm operating on guesswork here. I want to add a condition to …

abap opensql
Move FMOIX/FMCOX structures into Internal Table

I am a newbie to ABAP (3 days experience) and I am currently on a task to write reports using ABAP …

structure abap sap-erp
get one field from itab with read table TRANSPORTING

I trying to get one field from interal table like this: READ TABLE tbl_peps TRANSPORTING ususap INTO lv_responsable …

abap
Assigning Inline declared table to Field Symbols

There is an inline-declared table generated from a SELECT statement as below: SELECT * INTO TABLE @DATA(lt_result) FROM scarr. …

abap custom-data-type
What's the meaning of ?= in ABAP operators?

My question is just as the title has, What's the difference between = and ?= in ABAP operators?

abap
Count itab rows that meet some condition?

I get a internal table from a FUBA call that has ~ 100 rows. About 40% of the rows are not relevant to …

sap abap internal-tables
GROUP by aggregation does not calculate SUM

I have to aggregate in my query SUM of AMUNT field according to WERKS, DATUM and UZEIT I try to …

abap opensql