Working with Internal Tables in SAP ABAP - Append, Insert, Modify and Delete [english]

Sdílet
Vložit
  • čas přidán 3. 07. 2021
  • This video is about internal tables in SAP ABAP. Internal tables are dynamic data objects that can store multiple rows of data with a common row type. To process records, each record must be copied from the internal table to a workarea. Further processing can then take place in this workarea.
    In addition, there are also control break statements. These statements are executed in the LOOP statement e.g. when the first record is processed in a loop, when a value of a column changes, or when the last record of a loop is processed.
    #sap #internal #table
    ▬▬ Literature 📚 ▬▬▬▬▬▬▬▬▬▬▬▬▬
    ▶ ABAP: An Introduction 2020 amzn.to/45CLTqk
    ▶ Complete ABAP 2023 amzn.to/45D5UNM
    ▶ ABAP to the Future 2022 amzn.to/42cgWGs
    ▶ Clean ABAP 2022 amzn.to/3KAqmow
    ▬▬ My Hardware 💻 ▬▬▬▬▬▬▬▬▬▬▬▬▬
    ▶ Microphone: amzn.to/3zj2UIz
    ▶ Headphone: amzn.to/3GUBRFg
    ▬▬ My Software (free) 💾 ▬▬▬▬▬▬▬▬▬▬▬
    ▶ Video Recorder: bit.ly/678fgh6
    ▶ Video Editor: bit.ly/38Rj9lb
    ▶ Thumbnail: bit.ly/CustAndCodeThumbnail
    ▶ Gamma AI: bit.ly/3nsdvgr
    ▬▬ Further Links 🔗 ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    ⭐Become my subscriber: bit.ly/CustAndCodeSub
    🎬All videos in English: bit.ly/CustAndCodeENG
    ☕Buy me a Coffee 😀: bit.ly/3dih2cl
    *The links are affiliate links. There are no additional costs.

Komentáře • 16

  • @jagadeeshbalaga4191
    @jagadeeshbalaga4191 Před rokem +1

    Great video with awesome explanation🥰finally I found best CZcams channel for Sap abap

    • @CustAndCode
      @CustAndCode  Před rokem +2

      Thank you so much for your kind words! I am thrilled to hear that you enjoyed the videos. I strive to provide good quality tutorials and explanations for SAP ABAP on my CZcams channel. 🤗😀

  • @_Marecki_
    @_Marecki_ Před 9 měsíci

    Excellent explanation. Thank you for sharing your knowledge! 👏🙋‍♂

    • @CustAndCode
      @CustAndCode  Před 9 měsíci

      Thank you very much and thanks for your comment and watching my videos! 🤗😀

  • @nazilariaz9476
    @nazilariaz9476 Před rokem +2

    Hii.good presentation and information

  • @manzaralam1740
    @manzaralam1740 Před 2 lety +2

    Excellent explanation. Can you explain deep structure and how to update it and some dynamic programming

    • @CustAndCode
      @CustAndCode  Před 2 lety

      Thank you for the feedback, 🤗 i will put it on my todo list 🙂

  • @user-og1hu4ew2t
    @user-og1hu4ew2t Před rokem +1

    Hello thanks for the video, can i use this method to copy SAP standard table data to my custome table'?

    • @CustAndCode
      @CustAndCode  Před rokem +1

      Sure! Just read the data in an internal table and then insert or update the records in one of your Z-Tables. 🤗

  • @roger8057
    @roger8057 Před rokem

    I got an error in cl_demo_output is not defined on the first part of displaying the lt_sfight

    • @CustAndCode
      @CustAndCode  Před rokem +2

      be careful with the operator here: you have surely used "->" but the right operator is "=>"
      ✅ cl_demo_output=>display( ).
      ❌ cl_demo_output->display( ).

    • @roger8057
      @roger8057 Před rokem

      @@CustAndCode got it. But why you didn't use the alv grid. What is the difference of the two?

    • @CustAndCode
      @CustAndCode  Před rokem

      @@roger8057 The difference between ALV and SALV? To output or display data I find SALV easier and faster to use. I use ALV only when I need to edit rows or cells. 🤗

    • @roger8057
      @roger8057 Před rokem

      @@CustAndCode hello, now i got an error saying the above code is not defined.
      Edit: it is okay now. :)

    • @CustAndCode
      @CustAndCode  Před rokem

      @@roger8057 Great! 😀