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

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ก.ค. 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.

ความคิดเห็น • 16

  • @jagadeeshbalaga4191
    @jagadeeshbalaga4191 ปีที่แล้ว +1

    Great video with awesome explanation🥰finally I found best TH-cam channel for Sap abap

    • @CustAndCode
      @CustAndCode  ปีที่แล้ว +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 TH-cam channel. 🤗😀

  • @nazilariaz9476
    @nazilariaz9476 ปีที่แล้ว +2

    Hii.good presentation and information

    • @CustAndCode
      @CustAndCode  ปีที่แล้ว +1

      Thank you very much! 🤗

  • @_Marecki_
    @_Marecki_ 9 หลายเดือนก่อน

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

    • @CustAndCode
      @CustAndCode  9 หลายเดือนก่อน

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

  • @manzaralam1740
    @manzaralam1740 2 ปีที่แล้ว +2

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

    • @CustAndCode
      @CustAndCode  2 ปีที่แล้ว

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

  • @user-og1hu4ew2t
    @user-og1hu4ew2t ปีที่แล้ว +1

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

    • @CustAndCode
      @CustAndCode  ปีที่แล้ว +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 ปีที่แล้ว

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

    • @CustAndCode
      @CustAndCode  ปีที่แล้ว +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 ปีที่แล้ว

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

    • @CustAndCode
      @CustAndCode  ปีที่แล้ว

      @@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 ปีที่แล้ว

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

    • @CustAndCode
      @CustAndCode  ปีที่แล้ว

      @@roger8057 Great! 😀