Hi ram.. I love the way you are explaining everything in detail .. much appreciated.. waiting for the rest of the vlogs for RAP series. YOU ARE THE BEST. Waiting for your next video ❤
@SAPTECHNOMANIAC11 ай бұрын
Thank you so much 🙂 ! Next video coming Soon...
@rajich80222 ай бұрын
Fantastic Ram❤❤❤❤ as usual I can say thanks is not enough. I hold you and cry with joy if I meet you in person ❤. You are doing a great job , God bless you.
@SAPTECHNOMANIAC2 ай бұрын
Thank you so much 😀
@devendrapatel63899 күн бұрын
Amazing work! Thank you Ram.
@saurabhakumbhare11 ай бұрын
Amazing work Ram. I cannot wait for more videos. If possible, try to expedite this series as there is a long way to go, example ODATA extensions and other things. I want to learn only from you mate.
@SAPTECHNOMANIAC11 ай бұрын
Working on it alongside of my project work :)
@shubh_das16 күн бұрын
great work ram. u r vdo helped me a lot. i used to see d videos at 1.5 x speed. i can suggest one enh, in video that bg is sometimes feel very monotonous. some moving objects or something else should help maintain the attention of viewers.
@SAPTECHNOMANIAC10 күн бұрын
Appreciate your suggestion, I'll keep that in mind for future videos.
@vivekkumar-os1sl Жыл бұрын
Great work ram sir And thank you so much , waiting for your next videos of this series
@SAPTECHNOMANIAC Жыл бұрын
Very soon
@rajeshkura64527 ай бұрын
Its very good explanation Ram. Thank you for share the knowledge with all of us.
@SAPTECHNOMANIAC7 ай бұрын
My pleasure
@saradhabollineni9 ай бұрын
Thank you so much Ram for all your efforts and your series are very helpful to us
@SAPTECHNOMANIAC9 ай бұрын
Thank You and Glad to hear that!
@KarthikaIyankannu Жыл бұрын
Thank you Ram. I follow your videos and enjoy learning.
@SAPTECHNOMANIAC Жыл бұрын
You're most welcome
@mohitjain67952 ай бұрын
Thank you, Ram, to share your knowledge Please create some tutorial on Fragment Adobe form.
@SAPTECHNOMANIAC2 ай бұрын
You are welcome . Adobe from in my bucket I will create in future ...
@shubh_das16 күн бұрын
Ram i have a doubt at 12.41 you said we can't create association so we will create composition. Y we cant in assoc. we define cardinality as 0..* so 0 entries can stay in booking for a travel right ? Can you please help me understand this
@SAPTECHNOMANIACСағат бұрын
We can create an association in this case, but that would mean there would be no dependencies between travel and booking. This would allow creating a booking without a corresponding travel, which is not the desired behavior. To enforce the dependency and ensure that a booking cannot exist without a travel, we need to create a composition.
@gurmukh5504 Жыл бұрын
Highly appreciate your way of teaching as don't waste time on unnecessary stuff and don't promote your other videos
@SAPTECHNOMANIAC11 ай бұрын
Thank You 🙂
@Raju-th2dc Жыл бұрын
Great Work Ram.. Thank you
@SAPTECHNOMANIAC Жыл бұрын
Thanks and welcome
@sonukumar-yj3gc4 ай бұрын
Thank you again, Ram. 😊
@SAPTECHNOMANIAC4 ай бұрын
Always welcome
@tituscheriyan4300 Жыл бұрын
Thanks!
@SAPTECHNOMANIAC Жыл бұрын
Most Welcome!
@Ratan_tata_jii7 ай бұрын
I have one doubt ,how to give foreign key relationship in ABAP restful application programming
@whatever62727 ай бұрын
Why do we need to create persistent tables? How exactly it stores data ?
@SAPTECHNOMANIAC7 ай бұрын
It is not necessary to create a persistent table for MANAGED scenario unmanaged save that I explain in the upcoming video . Framework class save data using framework methods ...
@RajasekharMalladi-i2v11 ай бұрын
Hi Ram How did you inserted data into those custom tables could you explain.
@SAPTECHNOMANIAC11 ай бұрын
" delete existing entries in the database table DELETE FROM ztravel_tech_m. DELETE FROM zBOOKING_tech_m. DELETE FROM zbooksupp_tech_m. COMMIT WORK. " insert travel demo data INSERT ztravel_tech_m FROM ( SELECT * FROM /dmo/travel_m ). COMMIT WORK. " insert booking demo data INSERT zbooking_tech_m FROM ( SELECT * FROM /dmo/booking_m * JOIN ztravel_tech_m AS z * ON booking~travel_id = z~travel_id ). COMMIT WORK. INSERT zbooksupp_tech_m FROM ( SELECT * FROM /dmo/booksuppl_m * JOIN ztravel_tech_m AS z * ON booking~travel_id = z~travel_id ). COMMIT WORK.
@KarthikaIyankannu Жыл бұрын
Waiting for your next video.
@SAPTECHNOMANIAC Жыл бұрын
Coming soon
@thomasm6693 Жыл бұрын
Great Work. Thank you very much.👍
@SAPTECHNOMANIAC Жыл бұрын
Welcome 👍
@dilitthakkar55847 ай бұрын
Hello Ram, First of all, thanks a ton for such amazing tutorials. I was actually trying to download the code from git hib but the page is not available. Could you please help me with the code
We will do and cover lot of unmanaged thing in managed scenario example numbering, authorization etc,...
@whatever62727 ай бұрын
Is it mandatory to create persistent table everytime
@SAPTECHNOMANIAC7 ай бұрын
No in Unmanaged scenario and Managed scenario with unmanaged save we no need to create persisted table. I cover this in upcoming video
@akashthakre.875111 ай бұрын
Hey Ram , how you added data in custom table ?
@SAPTECHNOMANIAC11 ай бұрын
Please use below code to add data :- " delete existing entries in the database table DELETE FROM ztravel_tech_m. DELETE FROM zBOOKING_tech_m. DELETE FROM zbooksupp_tech_m. COMMIT WORK. " insert travel demo data INSERT ztravel_tech_m FROM ( SELECT * FROM /dmo/travel_m ). COMMIT WORK. " insert booking demo data INSERT zbooking_tech_m FROM ( SELECT * FROM /dmo/booking_m * JOIN ztravel_tech_m AS z * ON booking~travel_id = z~travel_id ). COMMIT WORK. INSERT zbooksupp_tech_m FROM ( SELECT * FROM /dmo/booksuppl_m * JOIN ztravel_tech_m AS z * ON booking~travel_id = z~travel_id ). COMMIT WORK.
@akashthakre.875110 ай бұрын
@@SAPTECHNOMANIAC thanks ram
@apekshapatle524620 күн бұрын
@@SAPTECHNOMANIAC this is a independent/ seperate activity which we need to perform to load the data into custom table right ?
@SAPTECHNOMANIAC19 күн бұрын
@@apekshapatle5246 yes
@apekshapatle524619 күн бұрын
@@SAPTECHNOMANIAC Is it possible to directly fetch the data from standard tables in cds root view entity instead of separately loading the data to custom table ?