81 - ABAP Dictionary - Transaction Code for Tables Maintained through SM30

  Рет қаралды 10,489

SAP ABAP by Rahul Mehta

SAP ABAP by Rahul Mehta

Күн бұрын

Пікірлер: 38
@sivakrishnaoruganti2298
@sivakrishnaoruganti2298 Ай бұрын
With the help of this video, I learned how to create a transaction code to maintain table. Thank you very much for doing this Video. And your explanation is can't explain in words sir, simply you are born for teaching 🙏
@sapabapbyrahulmehta
@sapabapbyrahulmehta Ай бұрын
Great. Thank you.
@childfunnyvideo1132
@childfunnyvideo1132 10 ай бұрын
Sir seriously I can't explain to you how you help me... it's very much helpful for me....I saw all your videos in all over abap topic ... thank you so much sir for this label of clarification...by heart thank you so much sir 🙏🙏🙏🙏🙏 you help me a lot also I learn oops and enhancement and all modularization techniques...... Also you reply all questions from my side...... thank you so much sir 🙏🙏🙏 god bless you for this.....
@sapabapbyrahulmehta
@sapabapbyrahulmehta 10 ай бұрын
Thank you very much for your encouraging feedback and blessings. Wishing same for you and a great success in your future endeavors.
@chaitanyakumarramireddy
@chaitanyakumarramireddy 5 ай бұрын
Hi Rahul Bro, Really blessed to have your videos, your narrative way was really attractive. Thank you and keep on educating us.
@sapabapbyrahulmehta
@sapabapbyrahulmehta 5 ай бұрын
Thank you very much Chaitanya for your encouraging feedback.
@chaitanyakumarramireddy
@chaitanyakumarramireddy 5 ай бұрын
@@sapabapbyrahulmehta Rahul bro, can you share idea about number range pointer creation for custom table like TMG events or other options.
@sapabapbyrahulmehta
@sapabapbyrahulmehta 5 ай бұрын
@@chaitanyakumarramireddy Hello Chaitanya - In the same playlist, TMG events is covered. For number range, we need to create a number range object through SNRO and then use the FM : NUMBER_GET_NEXT to get the next number.
@chaitanyakumarramireddy
@chaitanyakumarramireddy 5 ай бұрын
Thank you very helpful and my exact requirement is instead of function module, I need to use class and method to generate derivative id for the field. It would be very helpful if you help me.
@FahmiEshaq
@FahmiEshaq Жыл бұрын
Clear. Thank you. Can we auto-populate Enter Conditions value via parameter transaction?
@sapabapbyrahulmehta
@sapabapbyrahulmehta Жыл бұрын
Yes, We can use VIMDYNFLDS-LTD_DTA_AR for enter conditions.
@FahmiEshaq
@FahmiEshaq Жыл бұрын
@@sapabapbyrahulmehta thank you
@Narbnarb-zt1cz
@Narbnarb-zt1cz 7 ай бұрын
Thank you for the detailed explaination!
@sapabapbyrahulmehta
@sapabapbyrahulmehta 7 ай бұрын
Thank you for your feedback.
@NomanRaza-t2u
@NomanRaza-t2u 2 ай бұрын
Hi Sir! how are you doing today, you put the SM-30 T-code in the transaction input field because you are creating a custom transaction code to maintain table data against the SM-30 Transaction code I'm i right ??
@sapabapbyrahulmehta
@sapabapbyrahulmehta 2 ай бұрын
Yes. Correct understanding.
@ChitranshGurjar-wc9cv
@ChitranshGurjar-wc9cv 5 ай бұрын
hello rahul I am passing true for display but after opening through generated tcode initially it is in display but after that i can change from display to change is this passing 'true' value is for initial mode only ?
@sapabapbyrahulmehta
@sapabapbyrahulmehta 5 ай бұрын
Hello Chitransh - Yes, It is for initial mode only.
@meghsharma4368
@meghsharma4368 3 ай бұрын
While executing the tcode, I am getting dynpro_runtime_error. Screen SAPLZTEST 0001 could not be generated
@sapabapbyrahulmehta
@sapabapbyrahulmehta 3 ай бұрын
It means, the screen 0001 has syntax error. Check for the below observations. 1) You added extra field to the table, but not regenerated the TMG.( You can check this by simply pass the table name in SM30 and click on maintain, you will get the ) runtime error). 2 The table is not active. 3) You created the TMG events , but some part is still inactive.
@geethasettipalli3936
@geethasettipalli3936 Жыл бұрын
Hii Rahul, Can you please explain about lock object and type group in DDIC.
@sapabapbyrahulmehta
@sapabapbyrahulmehta Жыл бұрын
Hello Geetha. Lock Objects, Type Group and Table Buffering Will be covered in the future.
@geethasettipalli3936
@geethasettipalli3936 Жыл бұрын
​@@sapabapbyrahulmehtaokay thank you Rahul.
@TheJaebeomPark
@TheJaebeomPark 11 ай бұрын
thanks a lot. very detailed
@sapabapbyrahulmehta
@sapabapbyrahulmehta 11 ай бұрын
Thank you for your feedback.
@chetanatthuluri5745
@chetanatthuluri5745 7 ай бұрын
sir, there is any chance that we can give update and read at a time.
@sapabapbyrahulmehta
@sapabapbyrahulmehta 7 ай бұрын
Based upon my perception, it is not possible.
@monika8016s
@monika8016s Жыл бұрын
Thankyou Sir
@boomer-ek7gg
@boomer-ek7gg 11 ай бұрын
SIR , i did everything correctly but when i entered the custom transaction code , i am getting the error like "Table/view is not in the dictionary". Why?
@sapabapbyrahulmehta
@sapabapbyrahulmehta 11 ай бұрын
This error comes when we pass the wrong name of the table while creating the transaction code. Just cross check the name of the table which you are passing.
@sivaiahyadavalli579
@sivaiahyadavalli579 Жыл бұрын
Hello Sir, Can you please explain about the Type group in DDIC.
@sapabapbyrahulmehta
@sapabapbyrahulmehta Жыл бұрын
Hello Type Group is a group of Types. Suppose We have 10 Structure Type and Table Type and that is Widely used in Maximum programs. So we will create a group and declare all of them in that type group. Now whenever we want to use in any program we will write TYPE-POOLS : name of the type Group. The best example which is given by SAP- SLIS. Which is type group for ALV and in this SAP defined all types which we use in ALV. There is no need to declare those structure types and Table types in the program, We will pass the name of type group and program will recognise.
@sivaiahyadavalli579
@sivaiahyadavalli579 Жыл бұрын
@@sapabapbyrahulmehta Thanks for explanation ☺️
@i_zeelpatel
@i_zeelpatel Жыл бұрын
Sir please create videos on interface.. SPROXY, ODATA etc ..
@sapabapbyrahulmehta
@sapabapbyrahulmehta Жыл бұрын
As a part of Interface- BAPI and IDOC'S are available in Cross Applications Playlist. Will cover SPROXY and ODATA in the future.kzbin.info/aero/PLM3lhmHjSeISkL92sGgiobk4kh5HsBCZK
@i_zeelpatel
@i_zeelpatel Жыл бұрын
@@sapabapbyrahulmehta ok sir thank you
@childfunnyvideo1132
@childfunnyvideo1132 10 ай бұрын
One more request sir please also provide video on hana sir please guide us as fresher level on hana.....on real project
@childfunnyvideo1132
@childfunnyvideo1132 10 ай бұрын
But sir i can't understand bapi method
82 - ABAP Dictionary - Significance of Case Sensitive/Lower Case Checkbox in Domain
8:21
How to create LSMW in SAP- Mass upload data
16:55
KH Zeeds
Рет қаралды 146 М.
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 22 МЛН
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 12 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 37 МЛН
1 - SAP ABAP Guidance - Introduction to Playlist
8:13
SAP ABAP by Rahul Mehta
Рет қаралды 1,3 М.
SE16H - Everything you need to know about the SE16H
16:01
How to create an editable ALV in SAP ABAP using CL_GUI_ALV_GRID? [2024]
23:32
Goods Receipt In SAP | MIGO SAP | MIGO Transaction In SAP
8:55
My Support Solutions
Рет қаралды 621 М.
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 22 МЛН