2 - ABAP OOPS - Usual ABAP Class Part1

  Рет қаралды 34,852

SAP ABAP by Rahul Mehta

SAP ABAP by Rahul Mehta

Күн бұрын

Пікірлер: 36
@shubhajitdas6286
@shubhajitdas6286 Жыл бұрын
He is genius..Thanks sir for your effort..
@sapabapbyrahulmehta
@sapabapbyrahulmehta Жыл бұрын
Thank you very much Shubhajit Das.
@tayfunsuna473
@tayfunsuna473 3 ай бұрын
The subject explanation is excellent.
@sapabapbyrahulmehta
@sapabapbyrahulmehta 3 ай бұрын
Thank you very much.
@RahulThakur-y1r
@RahulThakur-y1r Жыл бұрын
Very Helpful, Keep Continue sir🔥...I will suggest everyone to take a look on this playlist😍
@sapabapbyrahulmehta
@sapabapbyrahulmehta Жыл бұрын
Thank you very much Rahul for your kind words.
@dreamer9857
@dreamer9857 2 жыл бұрын
Very well explanation sir, keep continue.
@sapabapbyrahulmehta
@sapabapbyrahulmehta 2 жыл бұрын
Thank you.
@srikrishnakannaya
@srikrishnakannaya Жыл бұрын
MANDATORY LIKE ON EVERY VIDEO😍
@sapabapbyrahulmehta
@sapabapbyrahulmehta Жыл бұрын
Thank you for your support.
@sonalidongre4160
@sonalidongre4160 5 ай бұрын
lot and now I am resolving daily basis issues and really
@sapabapbyrahulmehta
@sapabapbyrahulmehta 5 ай бұрын
Great.
@Pvreddy4b3
@Pvreddy4b3 Жыл бұрын
Superb explanation sir
@niz18ns
@niz18ns 7 ай бұрын
Sir, pls provide some video tutorials on CDS/AMDP and ODATA. Your video materials are damn amazing, Helped me a lot in my learning progress
@sapabapbyrahulmehta
@sapabapbyrahulmehta 7 ай бұрын
Thank you for your feedback. You can learn these topics from www.zapyard.com/ . You will find excellent tutorials with screenshots.
@niz18ns
@niz18ns 7 ай бұрын
@@sapabapbyrahulmehta Sure, if you are recommending, then surely it will be beneficial 😊
@sk-c7q
@sk-c7q 17 күн бұрын
Thanks for your knowledge sharing sir. Can you please tell me which to use when?. How to decide which one we should go for static or instance?
@sapabapbyrahulmehta
@sapabapbyrahulmehta 16 күн бұрын
Hello - Please refer to the below mentioned link. It is an excellent link. Requesting you to please refer after creating the programs using instance and static methods. It will help you to understand better. www.linkedin.com/posts/activity-7263424466313981952-gBir/?
@phantom7318
@phantom7318 Күн бұрын
Sir, can we get this notes of oops abap
@syedAyman-t9j
@syedAyman-t9j 2 ай бұрын
how to get the notes sir?
@sapabapbyrahulmehta
@sapabapbyrahulmehta 2 ай бұрын
Hello Syed - 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.
@dhivyavetriselvan
@dhivyavetriselvan 2 ай бұрын
very helpful sir. Thank you
@sapabapbyrahulmehta
@sapabapbyrahulmehta 2 ай бұрын
Thank you Dhivya.
@pavithranjevthram4046
@pavithranjevthram4046 10 ай бұрын
Seriously this is the best youtube channel for ABAP Learning. You deserve more subscriber bro. Btw bro did you do have any video on IDOC? if yes can share me the link?
@sapabapbyrahulmehta
@sapabapbyrahulmehta 10 ай бұрын
Thank you for your feedback. Please refer the Cross Applications Playlist. Below is the link for the same. kzbin.info/aero/PLM3lhmHjSeISkL92sGgiobk4kh5HsBCZK&si=gZ8ejy53JJjv_ggM
@pavithranjevthram4046
@pavithranjevthram4046 10 ай бұрын
@@sapabapbyrahulmehta thanks man 😉 really appreciate it
@sairahulreddy9127
@sairahulreddy9127 9 ай бұрын
Hello sir i have a doubt 1. what is the difference between data x type i and data x type reference ??? 2.Why reference variable is created while creating the object ?? Plz explain me 3. Why class is called user defined datatype is it not similar to subroutine pool or function group ??
@sapabapbyrahulmehta
@sapabapbyrahulmehta 9 ай бұрын
Below are the answers. 1) Suppose I am writing - DATA : LO_OBJECT TYPE REF TO ZCLASS, it means LO_OBJECT is a object reference variable to ZCLASS. REFERENCE itself is saying - it will act as a pointer or reference to the class. When we compare to TYPE , suppose I am writing - DATA : LV_DATA TYPE I. It does not mean that LV_DATA is a reference or pointer variable. 2) Compare it to real world - You are passing your user name and password, Captcha always comes at run time. You are doing a transaction, OTP always comes at runtime. If OTP/Captcha is incorrect, transaction will not happen. Same is here, you are creating a object at runtime and that is calling our class methods, attributes etc. Security/data hiding is there that's why OOPS is preferable as everything happens at runtime with the help of object. 3) Yes, class is a user defined data type as we are creating a template having methods, attributes etc. and accessing that template with the help of object, same thing is with data type - data types are like templates which is used to declare n number of objects. So class is a user defined data type. Function group is a container for function modules which is only a container and you can not access through DATA statement, same is with Subroutine pool, so a class can not be compared to function group and subroutine pool.
@sayanroy6181
@sayanroy6181 8 ай бұрын
Hello sir, your videos are really helpful for me. But I have one doubt: During global class creation from SE11, there is one option named 'Instantiation' which has public, private, protected and abstract options. What is the provision or usability of the first three options. Like I know if we make this as private then we cannot access this class. Then why SAP has given these options while we already have options to make the methods and attributes as public, private or protected. Can you please be brief about it..
@sapabapbyrahulmehta
@sapabapbyrahulmehta 8 ай бұрын
Hello Sayan - Once you move forward in the same playlist, you will get the answer of these questions automatically. Suppose - When you will earn ALV by CL_SALV_TABE, this class instantiation is private, so we can not create the object outside the class using CREATE OBJECT statement, but we will use a static method Factory to return the static object and with the help of that we will call the public methods of the class.
@xrulzzz1892
@xrulzzz1892 Жыл бұрын
At first i thought my playback speed is at 0.5 😅😅 Btw the explanation is good👍
@sapabapbyrahulmehta
@sapabapbyrahulmehta Жыл бұрын
Hahahahaha. Thank you.
@apnastudyhub1233
@apnastudyhub1233 Жыл бұрын
sir where we can get your notes
@sapabapbyrahulmehta
@sapabapbyrahulmehta Жыл бұрын
The Notes of every topic is at the end of that playlist. If you need through mail, please drop a mail on rahul3620023@gmail.com, I will forward.
@kirranboinipally2212
@kirranboinipally2212 5 ай бұрын
RAHUL NEHRA 😎
@sapabapbyrahulmehta
@sapabapbyrahulmehta 5 ай бұрын
Thank you very much kirran. I received this many times that you look like Ashish Nehra.
3 - ABAP OOPS - Usual ABAP Class Part2
10:25
SAP ABAP by Rahul Mehta
Рет қаралды 30 М.
4 - ABAP OOPS - Usual ABAP Class Part3
10:37
SAP ABAP by Rahul Mehta
Рет қаралды 26 М.
It’s all not real
00:15
V.A. show / Магика
Рет қаралды 16 МЛН
1 - ABAP OOPS - Introduction
8:05
SAP ABAP by Rahul Mehta
Рет қаралды 78 М.
72 - ABAP OOPS - ALV by CL_SALV_TABLE (Factory Method) - Creation Part2
16:37
SAP ABAP by Rahul Mehta
Рет қаралды 6 М.
Fastest Way to Learn ANY Programming Language: 80-20 rule
8:24
Sahil & Sarra
Рет қаралды 927 М.
70 - ABAP OOPS - ALV by CL_SALV_TABLE (Factory Method) - Introduction
17:20
SAP ABAP by Rahul Mehta
Рет қаралды 10 М.