VALUE Operator Using in ABAP [7.40] [english]

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ส.ค. 2024
  • In today's video I will show you how to use the VALUE operator in ABAP. I show how you can quickly and easily fill ranges or internal tables with initial values.
    In my example today I use a range. A range in ABAP is basically a special internal table that is used in SELECT-OPTIONS or in SELECT statements with WHERE ... IN.
    #value #operator #abap740
    ▬▬ My Hardware ▬▬▬▬▬▬▬▬▬▬▬▬▬
    Microphone: amzn.to/3zj2UIz
    Headphone: amzn.to/3GUBRFg
    *The links are affiliate links. There are no additional costs.
    ▬▬ My Software (free) ▬▬▬▬▬▬▬▬▬▬▬
    Video Recorder: bit.ly/678fgh6
    Video Editor: bit.ly/38Rj9lb
    Thumbnail: bit.ly/CustAnd...
    ▬▬ Further Links ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    Become my subscriber: bit.ly/CustAnd...
    All videos in English: bit.ly/CustAnd...
    Buy me a Coffee 😀: buymeacoffee.c...

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

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

    Very helpful ,thank you , we need more videos like this

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

      Thanks! 😀 I will do my best! 🤗

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

    Thank you for the video. I'm new in ABAP, could you provide me a link to some abap best practices or abap language news?

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

      Thanks for your comment! 🤗 Thats a difficult question. There is so much Information about ABAP and SAP. ABAP was also evolving so it depends on which system you practise. Maybe the best is to get a senior to learn some from your enviroment. Hope you have this option. All the best! 🤗

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

    Большое, спасибо! 😄

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

    Could you please help me to transfer data from range table low value to internal table

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

      Should be something like this:
      lt_value = internal table of one row
      s_value = range
      lt_value = CORRESPONDING #( s_value MAPPING value = low ).
      🤗