Video 17: OO ABAP - Exceptions Part 1

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ก.ย. 2024
  • Explained the concepts about exceptions in OO ABAP. Showed the syntax to raise and captured the exceptions in the different hierarchy level. Described the basic design of an exception class along with attributes and message text.
    Created examples with local and global exception class, and showed different options to captured the same.

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

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

    what an excellent method of explanation of each point. it is very easy to understand through your video Ganesh. really awesome technique first you explained topic Then you design in PPT and Finally you touch the SAP system, real Teacher only do this, Hats off man

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

    Hi Sir , Really your channel is excellent . thank god I come to know about your channel . my confusions and doubts are cleared . thank you sir .

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

      Welcome, and glad videos are useful.

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

    Hi ganesh bro.ur channel is excellent.i dnt know how many frnds and collegues i shared ur channel link.keep go ahead.

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

    Excellent.. the concepts explained in such a simple and comprehensive manner..

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

      Thank you and glad my videos are useful.

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

    Very good explanation. greetings from germany 🙂

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

      Thank you, and glad my videos are useful.

  • @usharaniponugoti
    @usharaniponugoti 3 หลายเดือนก่อน

    hiii ganesh garu,how can we pass the range of values to the parameters in se24?please can you explain it.

    • @just2shareji
      @just2shareji  2 หลายเดือนก่อน

      Hope you might find the video for the same now.

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

    thank you sir , video is perfect

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

    Hi Ganesh, Can I get this code please?

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

      Sorry it's not in place, let me try

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

    awesome lesson

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

    Where are video 14,video 15 and video 16.. Please share links if you have ..thanks

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

      Those are under the playlist called OOABAP - Design Patterns

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

      @@just2shareji thanks

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

    Hello Sir, how to reach out uou

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

      Please reach me through ji2share@gmail.com

  • @ViacheslavShubenkov-zl1ed
    @ViacheslavShubenkov-zl1ed 11 หลายเดือนก่อน

    Thank you a lot. I would like to add that the exception on "level_1" can be captured if the exception raising is not declared in the method definition of called class, for instance:
    class ZCL_ABAP_OOM_4 definition
    public
    final
    create public .
    public section.
    methods GET_USR_DETAILS .
    protected section.
    private section.
    method implementation:
    method GET_USR_DETAILS.
    data(lt_value) = 1 / 0.
    ENDCLASS.
    main program:
    data(obj_ZCL_ABAP_OOM_4_1) = new ZCL_ABAP_OOM_4( ).
    TRY.
    obj_ZCL_ABAP_OOM_4_1->get_usr_details( ).
    CATCH cx_root INTO data(exp_obj).
    WRITE / 'Exception captured'.
    data(lv_text) = exp_obj->get_text( ).
    WRITE / lv_text.
    ENDTRY.
    the dump will not happen.

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

      Awesome, thank you for the sharing the info here.