18 - SAP ABAP New Syntax - ALPHA Keyword With IN or OUT As a Replacement of Conversion FM's

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

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

  • @ayushdwivedi6736
    @ayushdwivedi6736 7 месяцев назад +1

    Don't know what will I do without your videos in my career.😅 Thanks Rahul.

    • @santanughosh7089
      @santanughosh7089 7 месяцев назад +1

      Me too bro......❤❤❤❤❤

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

      Thank you very much Ayush.

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

      Thank you Santanu.

    • @KANNANKANNAN-vu9rq
      @KANNANKANNAN-vu9rq 5 месяцев назад +1

      ​@@sapabapbyrahulmehta for vbeln field domain having this alpha of conversion routines this concept suits for vbeln field only sir

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

      @@KANNANKANNAN-vu9rq There are so many domains which has ALPHA conversion routine. VBELN is one of the example.

  • @mahmoudel-gohary353
    @mahmoudel-gohary353 2 месяца назад

    thanks for explanation of using conversion_exit_alpha_output , i used the ltrim function in the select statement to remove the leading Zero from Materil numbers ex. ltrim ( matnr , '0' )

  • @avdol7427
    @avdol7427 7 месяцев назад +1

    Thank you Rahul for this great content, very informative!

  • @SamvishwaC-di5ur
    @SamvishwaC-di5ur 7 месяцев назад +2

    thank you brooooo 😇😇

  • @chaitanyakumarramireddy
    @chaitanyakumarramireddy 5 месяцев назад

    Very helpful Rahul bro! In my case, I have a Numc field with no data, still in contents it shows zeros, but I don't want zeros to display, I need empty or space, do we have alternate to write logic in events? Thank you

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

      Try this. It is working fine.
      DATA : lv_data(10) TYPE N VALUE 0000000000.
      REPLACE ALL OCCURRENCES OF '0' IN lv_data WITH space.
      WRITE : / lv_data.

  • @silent_shadow97
    @silent_shadow97 4 месяца назад

    Sir i want to use internal table , can i directly use internal table , instead of using loop and passing data through wa , can we pass internal table
    I found this syntax online, working but data is not filling inside , can you help with it
    converted_table = VALUE #( FOR unconverted
    IN unconverted_table
    ( column_a = |{ unconverted-column_a ALPHA = IN }| )
    ).
    or should we go with loop and pass wa?

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

      Use this link. They explained very clearly.
      community.sap.com/t5/application-development-blog-posts/how-to-use-any-conversion-routine-in-abap-7-4-new-syntax/ba-p/13554531

    • @silent_shadow97
      @silent_shadow97 4 месяца назад

      @@sapabapbyrahulmehta thank you sir

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

    sir how to specify length in inline declaration like here you gave 10 but through inline its not giving desired output for lv_input1

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

      Based upon my knowledge, Inline data declarations captures the length based upon data, so we pass 5 length data, so it will take the length 5. So in this case, we need to specify the length explicitly.

    • @silent_shadow97
      @silent_shadow97 7 месяцев назад +1

      @@sapabapbyrahulmehta thanks for clarifying sir

  • @prathapy5087
    @prathapy5087 Месяц назад +1

    Hello Rahul is it possible to send Ppt to my mail id ?

    • @sapabapbyrahulmehta
      @sapabapbyrahulmehta  Месяц назад +1

      The reading material(PPT + notepad) for all the topics, practice exercises and sample capstone projects are available at below mentioned link.
      drive.google.com/drive/folders/1gyxhxZpjKajbk44MyiC8G-zLP6dUi7jZ?usp=drive_link
      This reading material is intended for learning purposes only.