53 - ABAP Programming - Internal Table Operations - CLEAR , REFRESH and DESCRIBE TABLE

Поделиться
HTML-код
  • Опубликовано: 13 дек 2024

Комментарии •

  • @SAPTSConsulting
    @SAPTSConsulting 8 месяцев назад +2

    Excellent Rahul Bhai

  • @YashWankhedkar
    @YashWankhedkar 6 месяцев назад

    Sir, what about the concepts like LINES, OCCURS and KIND used in Describe operation?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  6 месяцев назад

      LINES is already explained which tells the number of rows in the internal table. KIND tells the type of internal table - T signifies standard table, S - Sorted, H - Hashed. OCCURS returns the initial size of the internal table.

  • @ehtashamather6574
    @ehtashamather6574 Год назад +1

    sir what about INSERT and UPDATE statements?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Год назад +6

      Hello Ehtasham - UPDATE is not a Internal Table operation, UPDATE is a Database Operation. UPDATE Operation is only applicable to Database tables, In future When I will cover the topic database operations, then I will cover UPDATE. For INSERT, this Internal table operation is applicable to Sorted Internal tale, When I will cover the topic, Types of Internal Table, then I will cover INSERT. The best way from the programming is to use APPEND to insert data to Internal table and MODIFY to update the contents of internal table.

  • @aarjoosingh7974
    @aarjoosingh7974 2 месяца назад

    Sir can you plz explain if clear and refresh both works the same way. Why can't we use refresh in the work area as well. Also why do we have two operations for the same objective?