I have an internal table like:
TYPES: BEGIN OF gty_min_jobs,
orgeh TYPE zgerpt_rnk_min-orgeh1,
mnsty TYPE zgerpt_rnk_min-mnsty,
mshort TYPE zgerpt_rnk_min-mshort,
position TYPE hrp1001-sobid,
job TYPE hrp1001-sobid,
job_grade TYPE hrp9003-jobgr,
…
I am comparing the SELECT FOR ALL ENTRIES vs LOOP SELECT SINGLE and I am having a big difference between results.
Somebody can help me with this? What is the difference?
SELECT ekko~ebeln
ekpo~ebelp
ekko~bstyp
ekko~bsart
…
First off, I have no experience with ABAP, I'm operating on guesswork here.
I want to add a condition to a SELECT in an existing report.
The existing code looks like this:
SELECT SINGLE *
FROM EKPO
WHERE EBELN = GT_MSEG-EBELN
…