SAP ABAP LOOP AT... GROUP BY | 2020 | Advanced ABAP Series

preview_player
Показать описание
In this video we look at the ABAP LOOP AT… GROUP BY statement and see how we can use it to group data in a meaningful way.

Please feel free to comment down below, and if you like the video, hit that LIKE and SUBSCRIBE button.

Thanks for watching!
Рекомендации по теме
Комментарии
Автор

I started coding in ABAP two month ago, and I really need to get something from your experience. You are really helping for thousands of people... thank you for your work, keep going!

sardorbekabdupattaev
Автор

I have started learning ABAP from last 3 months, your videos were really helping me a lot to get clarity on the concept and I am also learning a lot from your videos. Thank you so much for sharing your knowledge. I have a small request for you...Can you please make some videos on HRFORMS [(Time statement, payslip) like adding fields in the payslips, calculating the leaves left out for the users] . Please try to make a video on HRFORMS. Thank you in advance.

seeramnymisha
Автор

Please make more videos! I haven't found anyone on youtube as helpful in SAP or ABAP as you! Love your videos. Thank you so much!

IcedCupcakes
Автор

Thanks a lot ! that solution saved me asf !

Risbo__
Автор

good simple and effective explanation, Thanks!

angelacosta
Автор

Hello, Brandon! Thanks for your videos! Could you explain deeper about up cast and down cast?

daniilmileev
Автор

Hi, thanks for the information. I want to ask, how to open Sap Gui at 2:50 ?

MehmetAliEr
Автор

Thanks Brandon. A small doubt, how is it different from using GROUP BY in SELECT statement directly?

nehasao
Автор

Hey Brandon, sadly you didnt post anymore video.
wondering what happened..

SHAILESH
Автор

Hi Brandon...good one thanks...can you show us how to use read with Binary search and exit loop using new syntax..thanks subba

subbakrishna
Автор

Good stuff. What is the editor that you use ?

GadgetsAIreview-
Автор

Hi Brandon, is it a replacement for at endat? Can't we just group by while selecting the data? And then achieve this with control statements.

arunkamath
Автор

There is a favor If I may ask, I know it might sound very beginner content to put on your channel, but this could have been beneficial for many starters if you could start teaching with these important topics like...Read table, Loop at, For all entries... as an experienced I would like to know which way is a time and performance efficient, at what kind of situations would you recommend to use ..

I wrote a code which had select single inside loop and it did really drop the performance when I received more than hundred data ... at times when we can't use read table, which way would be preferably, , , , Thank you in advance!

sardorbekabdupattaev
Автор

hi~i just have a question...
VS code can execute SAP GUI after press F5 key ?
thanks your usefull video ^^*

holimabc
Автор

Small simplification suggestions:
LOOP AT lt_spfli REFERENCE INTO DATA(lr_group)
GROUP BY ( carrid = lr_group->carrid cityfrom = lr_group->cityfrom )
ASCENDING.
lt_members = VALUE #( FOR <member> IN GROUP lr_group ( <member> ) ).
cl_demo_output=>write( lt_members ).
ENDLOOP.

frankb