SAP ABAP: OO ABAP--Static V/S Instance?

Sdílet
Vložit
  • čas přidán 10. 09. 2024

Komentáře • 21

  • @onliness9353
    @onliness9353 Před 29 dny

    Sooraj Thank you for KT your example are simple enough to understand the Big one .

  • @SoorajSasidharanABAP
    @SoorajSasidharanABAP  Před 4 lety

    Part 1 - OO ABAP
    czcams.com/video/-mgEDIMz8NA/video.html

  • @shweta9204
    @shweta9204 Před 3 lety +2

    Could you please make some videos,where u describe the instance attributes etc. in se24 screen and using some examples of existing badi (pr creation badi....etc) .U explain really well. it's very very helpful

  • @Inter-fail-03W
    @Inter-fail-03W Před 5 lety +1

    Nice explanation...please do more videos on ABAP OO.. please

  • @suvosom
    @suvosom Před 2 lety

    very nice explanation Sooraj!!!

  • @sivakumar-ot7ps
    @sivakumar-ot7ps Před 6 lety +1

    Nice explanation. Thank you for the video.

  • @nikhilpatil1712
    @nikhilpatil1712 Před 3 lety

    nice explanation sooraj.............

  • @stephenn4791
    @stephenn4791 Před 5 lety

    Nice explanation but if you explain the constructor in this session , everyone will understand the constructor functionality very well.

  • @nibeditaful
    @nibeditaful Před 2 lety

    The video screen is blurred, is it only for me or anyone faced the same challenge ?

  • @KiranKumar-xm3xs
    @KiranKumar-xm3xs Před 3 lety

    For me v1 and v2 are working same. Why is he saying v1 is having only single memory.?

  • @maruthis5461
    @maruthis5461 Před 5 lety +2

    At what situation we go for static..give one real-time business scenarios..

    • @Ayushpantap
      @Ayushpantap Před 4 lety +1

      unanswered question!!

    • @akshaymishra8542
      @akshaymishra8542 Před 3 lety

      If we are instantiatiating a class for more then one time and we want to use the same attribute everytime with different values, then we go for instance attribute

  • @subbusandy6618
    @subbusandy6618 Před 6 lety +1

    Good

  • @ThiyaguShanmugam
    @ThiyaguShanmugam Před 4 lety

    good explanation.

  • @ankitkakani2197
    @ankitkakani2197 Před 5 lety

    Don't we need constructor while calling Instance method ? As mentioned in earlier Video. Please comment.

    • @SoorajSasidharanABAP
      @SoorajSasidharanABAP  Před 5 lety

      Constructor is always implicitly called when u create an instance. If u want to write any logic inside the constructor method,then u can explicitly write the logic inside the constructor..Logic would mainly be to initialize the variables..

    • @ankitkakani2197
      @ankitkakani2197 Před 5 lety

      @@SoorajSasidharanABAP so you also called Static method without constructor, is constructor called implicitly here too ?
      If yes, why we wrote constructor method in previous video.

    • @jeevannileshwar
      @jeevannileshwar Před 5 lety +2

      Constructor is not to initialize variables but to initialize object itself.
      Neither constructor nor class constructor is called in the class unless you specifically defined it in the public section of a class.
      If you defined any of these inside a class, then a call by code is not required. Constructor will be executed automatically when instantiation happens.