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' )
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
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?
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
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.
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.
Don't know what will I do without your videos in my career.😅 Thanks Rahul.
Me too bro......❤❤❤❤❤
Thank you very much Ayush.
Thank you Santanu.
@@sapabapbyrahulmehta for vbeln field domain having this alpha of conversion routines this concept suits for vbeln field only sir
@@KANNANKANNAN-vu9rq There are so many domains which has ALPHA conversion routine. VBELN is one of the example.
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' )
Great.
Thank you Rahul for this great content, very informative!
Thank you very much.
thank you brooooo 😇😇
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
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.
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?
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
@@sapabapbyrahulmehta thank you sir
sir how to specify length in inline declaration like here you gave 10 but through inline its not giving desired output for lv_input1
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.
@@sapabapbyrahulmehta thanks for clarifying sir
Hello Rahul is it possible to send Ppt to my mail id ?
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.