New And Value Operator in ABAP 7.4 / 7.5 and onwards

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ส.ค. 2024

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

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

    THANK YOU!!!!!!! for explaining this topic in many different approaches and ways:) I have a better understanding about the new and value operator:) I will continute to watch also other videos from you :)))

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

    Your way of explaining and knowledge is very good.Please keep on posting new videos on new learning.

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

      I will try my best. Please share with others as well.

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

    that's very interesting and helpful session..

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

    Thank you Guru ji. Learning alot things from you

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

    very nice and informative session Ram!!!!

  • @mr.bharathkumar2106
    @mr.bharathkumar2106 ปีที่แล้ว

    Awesome content Brother. Thank you.

  • @user-yy8we5vc3t
    @user-yy8we5vc3t 6 หลายเดือนก่อน

    dont have words to thank you

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

    Hi Ram, Thank you for the videos you shared here, I loved your explanation, I have one question, Can we use BASE operator for any reference table to add new entries in it?

    • @SAPTECHNOMANIAC
      @SAPTECHNOMANIAC  หลายเดือนก่อน +1

      Yes, you can DATA(lt_itab) = VALUE t_itab(
      BASE lt_itab
      ( field1 = 'Value1' field2 = 'Value2' )
      ( field1 = 'Value3' field2 = 'Value4' )
      ).

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

      @@SAPTECHNOMANIAC Thank you Ram, however I am getting some error so pasting code here
      TYPES :BEGIN OF lty_test,
      fld1 TYPE char5,
      fld2 TYPE char10,
      END OF lty_test.
      TYPES : tt_tab1 TYPE TABLE OF lty_test WITH DEFAULT KEY.
      data(lt_itab) = new tt_tab1( ( fld1 = '1' fld2 = 'Test1' )
      ( fld1 = '3' fld2 = 'Test3' ) ).
      For below I am getting error if I keep same name if I change the name it is giving
      "The type of "LT_ITAB" cannot be converted to the type of "LT_ITAB1"
      DATA(lt_itab or LT_ITAB1) = VALUE tt_tab1(
      BASE lt_itab
      ( field1 = '2' field2 = 'Value2' )
      ( field1 = '4' field2 = 'Value4' ) ).

    • @tirumularaochinni3305
      @tirumularaochinni3305 หลายเดือนก่อน +1

      @@SAPTECHNOMANIAC It is working with below
      DATA(lt_itab2) = NEW tt_tab1(
      BASE lt_itab->*
      ( fld1 = '2' fld2 = 'Value2' )
      ( fld1 = '4' fld2 = 'Value4' ) ).

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

    Thank you 😊

  • @GauravSingh-lz8mb
    @GauravSingh-lz8mb ปีที่แล้ว

    Hello sir big fan of your work. Could you please make one video on how to manage the best performance of a report. This is the most frequent asked questions in the interview.

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

      As of now no plan in future may be .. ST12 ,ST05 , Binary search, Parallel cursor these all should me in your answer ...

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

    Really good session #TableinABAP750

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

    I want to know how to debug operators (filter, reduce, value) step by step. Fir example I am using value operator and my table is getting 5 more records. I want to check those data record by record. Please explain how to debug it

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

      i would also be interested how to debug operators!!!:)

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

      @@gordanaspicer879 I will create a video on this soon

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

      I will create a video on this soon

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

      @@SAPTECHNOMANIAC thank youvery much:))) i love your videos i am contirnung to watch them and like them :))

  • @KoushikPal-ub8xt
    @KoushikPal-ub8xt ปีที่แล้ว

    Thank you for this. I have one question - how to create one empty internal table from another internal table ( generated in inline declaration in a Select Query) ?
    Eg. Select vbeln, posnr from Vbap into table @data(lt_vbap).
    Now I want to have another empty table as same structure as lt_vbap.
    I can do it following way - data(lt_vbap1) = lt_vbap. clear lt_vbap1.
    But, please let me know if there is any other efficent way?

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

      After your select declare that:- DATA lt_vbap1 like lt_vbap.

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

    I am not able to create a report program in trl_en project? May i know why?

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

      Yes You can use class and INTERFACES:
      if_oo_adt_classrun. to display result in console