51 - ABAP Programming - Internal Table Operations - MODIFY

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

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

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

    Excellent explanation Bhai. Keep uploading new topics 😊😊

  • @VeCodes
    @VeCodes 6 месяцев назад +1

    sir what if I want record which is ono no 1 and pm N is only to be modified precisely i want to check 2 conditions then in if statment what is syntax or i have to use nested if condition

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

      You need to write - IF lwa_data-ONO = 1 and LWA_DATA-PM = 'N'.
      The modify logic.
      endif.

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

      that means we can use logical operators
      thank you sir

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

    Sir good afternoon. I have a question. let's suppose that the customer want to modify table and put some fields BLANK, (after i made a select inside my internal table). I suppose that i need to refer ONO field (video) on field PM (video) and then put it blank i guess?
    thanks sir

  • @EkanshDubey21
    @EkanshDubey21 7 месяцев назад

    Hir sir, in MODIFY after TRANSPORTING does the order of specifying columns matters? Or we can give in any random order

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

      It does not matters, but it is good to follow the sequence.

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

    sir report programming is already covered or yet to cover??i dont see in playlist..
    cant thank u enough for ur content😊

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

      Report Programming is not available as of now. In this playlist, I will cover in the upcoming days.

    • @anithamdg
      @anithamdg Год назад

      @@sapabapbyrahulmehta eagerly waiting

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

    hello sir, ,I've one question regarding 'Modify'. If you want to modify 2 records.....For example in your program if you want to modify ono.1 and ono.2 to pm 'N' and pm 'M' respectively then what to do. I tried different logic but I failed. Will you please give me any hint. thank you....

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

      To Modify Multiple Records, The syntax is Modify database table name from table Internal table. You can pass your multiple Records to internal Table, It will update in the table.

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

      Ok thanks a lot sir ☺