ETag & Persistent table BDL RAP Part 17

  Рет қаралды 4,607

SAP TECHNOMANIAC

SAP TECHNOMANIAC

Күн бұрын

Пікірлер: 40
@Momo-jl6ii
@Momo-jl6ii 3 ай бұрын
Your dedication and commitment is commendable ! Outstanding as usual.
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 3 ай бұрын
Thank you so much 😀
@rajeshkura6452
@rajeshkura6452 6 ай бұрын
Thank you Ram Wow.. E-tag concept is like a magic
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 6 ай бұрын
You're Welcome 🙂
@vivekb8297
@vivekb8297 3 ай бұрын
Hi Ram, I followed your example closely for implementing F4 help, but I'm facing a problem. After selecting a value from the F4 help, it is not being populated into the corresponding field. Could you please help me figure out what I might be missing?
@vivekb8297
@vivekb8297 3 ай бұрын
I used the interface view I_CurrencyStdVH instead of I_Currency, and it worked
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 3 ай бұрын
Some time there is an issue you can create ur own F4 help or directly consume table
@lochovuuc7552
@lochovuuc7552 4 ай бұрын
Hello RAM, thanks for your sharing, I followed your instructions but had a problem, when creating and editing my TravelID and BookingID I couldn't import them, can you give me some advice?
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 3 ай бұрын
Can you check code which I put on github (available in channel heading) and Try to use latest version of eclipse .
@gabrielstein335
@gabrielstein335 10 ай бұрын
Thanks again for your Videos, it is very helpful.
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 10 ай бұрын
You are welcome!
@nikeshsingh3065
@nikeshsingh3065 Ай бұрын
For ETag, if we are creating an unmanaged scenario, and if we don't have the LastChangedAt field in the underlying standard SAP database table then how to handle the Etag?
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 28 күн бұрын
We have to update some fields in the custom table that can work as an ETag each time we do any update operation we should update and validate
@nikeshsingh3065
@nikeshsingh3065 28 күн бұрын
@@SAPTECHNOMANIAC What about a standard table? If my BO CDS are built on the standard table and that table does not have LastChangedAt, how can ETag be handled?
@devendrapatel6389
@devendrapatel6389 6 күн бұрын
Which is better Optimistic concurrency control or Pessimistic concurrency control ?
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 5 күн бұрын
The choice between Optimistic Concurrency Control (OCC) and Pessimistic Concurrency Control (PCC) depends on system requirements, workload patterns, and the likelihood of conflicts. Optimistic Concurrency Control (OCC) OCC assumes conflicts are rare, allowing transactions to execute without locks. Conflicts are detected at the commit stage (e.g., version checks). It’s ideal for read-heavy systems with minimal contention, as it avoids locking overhead, making it scalable and high-performing. However, it requires retrying transactions in case of conflicts, which can increase response times. OCC is best for applications prioritizing user responsiveness, like analytics dashboards or collaborative apps. Pessimistic Concurrency Control (PCC) PCC assumes conflicts are common and locks resources upfront to prevent them. It ensures data consistency and avoids anomalies, making it suitable for write-heavy systems with frequent updates or scenarios needing strict consistency (e.g., banking systems). However, it introduces locking overhead, risks deadlocks, and reduces concurrency, which may impact performance in read-heavy environments.
@saikatnath
@saikatnath 10 ай бұрын
Thank you @SAPTECHNOMANIAC for sharing this video. I've been eagerly anticipating its upload.😊😊
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 10 ай бұрын
Hope you enjoyed it!
@saikatnath
@saikatnath 10 ай бұрын
@@SAPTECHNOMANIAC yes i did !
@sonukumar-yj3gc
@sonukumar-yj3gc 4 ай бұрын
is it mandatory to include "last_changed_at" kind of field as part of table to apply eTag?
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 4 ай бұрын
Yes it is it have unique value each time during CUD
@sunilkb2849
@sunilkb2849 9 ай бұрын
Ram Nivas bhai, good to see your content. Hope you remember me... Good luck! Keep educating...
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 9 ай бұрын
Yes bro, Thank you 🙂
@sibatsyasahoo8289
@sibatsyasahoo8289 4 ай бұрын
My create not working, travel grid out help me to fix this
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 4 ай бұрын
Please check your code:- github.com/ramniwas04/SAP-TECHNOMANIAC-ALL-CODE/tree/main/Final%20Managed%20APP%20Backup
@metrickz1280
@metrickz1280 10 ай бұрын
thank you for video but is it not possible that you buy a better microphone ?
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 10 ай бұрын
You suggest some good microphone as of now I am using boya ...
@yury3484
@yury3484 10 ай бұрын
Hello Ram! what means "lock master" command?
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 10 ай бұрын
kzbin.info/www/bejne/r36nmouprNBkZ9k
@aakashgt3440
@aakashgt3440 7 ай бұрын
Hi ram, i'm getting blank fields for agency id and customer id alone how can i rectify this issue
@aakashgt3440
@aakashgt3440 7 ай бұрын
issue is sorted out this happen due to spelling mistake value help definition -> additional binding-> element name
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 7 ай бұрын
👍
@vivekb8297
@vivekb8297 3 ай бұрын
Thanks!
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 3 ай бұрын
Welcome!
@ebrahimmujawar3112
@ebrahimmujawar3112 4 ай бұрын
Hi I am creating same rap app but for create operation my travel field is disabled. Same goes for booking id field.
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 4 ай бұрын
Did you use readonly on create travel? If yes than you have to write early or late numbering method to fill travel.
@selvamanii6834
@selvamanii6834 4 ай бұрын
@@SAPTECHNOMANIAC Hi Ram, i am also getting the same issue, but your program is working without doing write only or late numbering( till 12:01 ) how?
@SAPTECHNOMANIAC
@SAPTECHNOMANIAC 4 ай бұрын
@@selvamanii6834 Not sure why you are getting this issue. Make sure you are using latest version of ADT
@XXX-z4x7n
@XXX-z4x7n 3 ай бұрын
in behavior u can check that, for travel entities u need to change -> field (readonly:update) TravelID so that u can create a new Travel ID. If you cant that in behavior it can be -> field (readonly) TravelID
@have_nice_tiem
@have_nice_tiem 3 ай бұрын
@@XXX-z4x7n hi, im facing same issue, tried field ( readonly ) TravelId; also tried field ( readonly:update ) TravelId; none worked..
RAP - Locking BDL RAP PART 18
14:02
SAP TECHNOMANIAC
Рет қаралды 2,4 М.
ABAP Behavior Pool & Derived Type RAP Part 16
30:03
SAP TECHNOMANIAC
Рет қаралды 4,3 М.
Metadata Extension (MDE) Managed RAP Application (4) Part 13
55:12
SAP TECHNOMANIAC
Рет қаралды 7 М.
ETag and Concurrency Control in OData Part 22
47:05
SAP TECHNOMANIAC
Рет қаралды 2,8 М.
Don’t Use UUIDs/GUIDs in Databases. Use this Instead
10:36
Nick Chapsas
Рет қаралды 49 М.
UUID vs INT: What’s Better For Your Primary Key?
9:40
Database Star
Рет қаралды 57 М.
DHH discusses SQLite (and Stoicism)
54:00
Aaron Francis
Рет қаралды 101 М.
Read Operation Business Object BDL RAP Part 21
46:47
SAP TECHNOMANIAC
Рет қаралды 3,2 М.
Unmanaged Save Managed  Final App RAP Part 32.1
40:23
SAP TECHNOMANIAC
Рет қаралды 2 М.
The effect of Random UUID on database performance
18:51
Hussein Nasser
Рет қаралды 72 М.
Three level Application RAP Part 14
1:08:53
SAP TECHNOMANIAC
Рет қаралды 6 М.