Very underrated channel.. Next level knowledge transferring
@SAPTECHNOMANIAC2 жыл бұрын
Glad you like the channel!
@calltobharath2 жыл бұрын
Excellent presentation, Ram. Thank you so much. You are awesome. Points that I specifically liked about this video: 1) You don't have the entire code written in a notepad and simply paste and execute it. You write the code as you talk which shows the possible errors that come up. You are clearing off these errors and explaining why those errors show up. Practical learning can't get any better than this. 2) You are calling out the shortcut keys that you are pressing like Shift F1 etc.. This helps us visualize what is happening on the screen and also comes as a handy reminder/refresher to keep these short cut keys in mind. I learnt a cool trick Control + 1 for renaming a variable. Being someone who is new to Eclipse, Control+Alt+Arrow down to copy an existing row is a new tip. I use Control+D in SAP GUI for the same function. Also we use F8 to execute the program in GUI. In Eclipse, we are using F9 to see the output in a console. If we single click on a method name or a variable name and press F2 in GUI, it is similar to double clicking that variable in GUI. We have to use F3 instead of F2 in Eclipse. We use control+less than to comment a line in GUI. In Eclipse, we are using Control+Shift+Less than. I am learning all these shortcuts only because you are clearly calling them out in your videos. So thank you for doing this. Question: 1) I saw that you quickly pulled out theory filter using Control space. I believe you had it typed already and were able to pull it on screen. This was cool. Can you please tell me how you had that comment section hidden and then pull up later? 2) I used debugger in Eclipse for the 1st time yesterday. I saw an icon called detach which helped me to move out the debugger in a separate popup window. I liked this feature. But I clicked minimize button in this screen to get more screen space. Now I don't see that debugger window anymore. I see that when I debug the program, the debugger perspective comes in the same window which looks like ABAP perspective. It would be nice if I can get that debugger popup detach option window that I got the 1st time around. Do you know how this can be done? I am watching all your videos 1 by 1. In case you have not already made a video on Eclipse debugger, it would be really helpful if you can explain this. I see options to keep breakpoint and watchpoint. If you can take a program with a deep structure and show us how to see the data in that in debug perspective and the options that we have in the debugger, it will be extremely helpful.
@SAPTECHNOMANIAC2 жыл бұрын
Answer 1: I used a template to create it .A short video on this you can watch on my channel. kzbin.info/www/bejne/m4mZhI2hbbWdeZo Regarding Debugging I will create a video on it which will help.ADT debugger still does not have many features which we can do in GUI. Program execution using F9 to open console only works when you use demo class Just to clarify.
@calltobharath2 жыл бұрын
@@SAPTECHNOMANIAC Ram, This is extremely helpful. Thank you so much for sharing the video about template. F9 option - Thank you for the clarification. ADT Debugger - Waiting for your video. I can already say that I am going to learn a lot from that video as I have learnt so many Eclipse shortcuts from your videos so far. Extremely thankful to you for generously giving your time to create these videos and sharing your knowledge. Much appreciated, Ram.
@yaminipriyadarshini76062 жыл бұрын
Thankyou for sharing your knowledge and contribute for SAP World
@SAPTECHNOMANIAC2 жыл бұрын
It's my pleasure
@bizzzzzzzzz9 ай бұрын
Danke!
@SAPTECHNOMANIAC9 ай бұрын
Thank you @bizzzzzzzzz 🙂...
@karthikmedisetty33882 жыл бұрын
Thank u so much for given detail explaination of concepts
@SAPTECHNOMANIAC2 жыл бұрын
It's my pleasure
@vinitjain7048 Жыл бұрын
Nice blog!👍🏻
@SAPTECHNOMANIAC Жыл бұрын
Glad you enjoyed!
@OmPrakash-sd7gb2 жыл бұрын
Thanks again for this valuable information!!!!
@SAPTECHNOMANIAC2 жыл бұрын
Glad it was helpful!
@gnick46112 жыл бұрын
Hi Ram, can you please let me know how to add the theory comments in eclipse? I cannot find it in my eclipse. Thank you!
@SAPTECHNOMANIAC Жыл бұрын
You can check out my shorts video and create your own using templates :- kzbin.infoeX6SZk8PjC8
@gnick4611 Жыл бұрын
@@SAPTECHNOMANIAC Thanks Ram for your guidance!
@mkarmakar5886 Жыл бұрын
Can you please upload some videos on ale idoc
@SAPTECHNOMANIAC11 ай бұрын
As of now no plan
@madhusapabap Жыл бұрын
Hi Ram, have a good day, i have one question, in new inline coding, can do the select statement in local internal table, ex. in select * from vbak into table @data(itab). for some other function i want to select some data in itab, can we do the select query in itab? may be dumb question, if i am wrong correct me
@SAPTECHNOMANIAC Жыл бұрын
Yes we can do but depends upon which version you working on It support from ABAP NW 7.52 and onwards :-- SELECT id , name FROM @itab AS numbers WHERE id = 2 INTO TABLE @result1.