Your dedication and commitment is commendable ! Outstanding as usual.
@SAPTECHNOMANIAC3 ай бұрын
Thank you so much 😀
@rajeshkura64526 ай бұрын
Thank you Ram Wow.. E-tag concept is like a magic
@SAPTECHNOMANIAC6 ай бұрын
You're Welcome 🙂
@vivekb82973 ай бұрын
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?
@vivekb82973 ай бұрын
I used the interface view I_CurrencyStdVH instead of I_Currency, and it worked
@SAPTECHNOMANIAC3 ай бұрын
Some time there is an issue you can create ur own F4 help or directly consume table
@lochovuuc75524 ай бұрын
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?
@SAPTECHNOMANIAC3 ай бұрын
Can you check code which I put on github (available in channel heading) and Try to use latest version of eclipse .
@gabrielstein33510 ай бұрын
Thanks again for your Videos, it is very helpful.
@SAPTECHNOMANIAC10 ай бұрын
You are welcome!
@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?
@SAPTECHNOMANIAC28 күн бұрын
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
@nikeshsingh306528 күн бұрын
@@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?
@devendrapatel63896 күн бұрын
Which is better Optimistic concurrency control or Pessimistic concurrency control ?
@SAPTECHNOMANIAC5 күн бұрын
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.
@saikatnath10 ай бұрын
Thank you @SAPTECHNOMANIAC for sharing this video. I've been eagerly anticipating its upload.😊😊
@SAPTECHNOMANIAC10 ай бұрын
Hope you enjoyed it!
@saikatnath10 ай бұрын
@@SAPTECHNOMANIAC yes i did !
@sonukumar-yj3gc4 ай бұрын
is it mandatory to include "last_changed_at" kind of field as part of table to apply eTag?
@SAPTECHNOMANIAC4 ай бұрын
Yes it is it have unique value each time during CUD
@sunilkb28499 ай бұрын
Ram Nivas bhai, good to see your content. Hope you remember me... Good luck! Keep educating...
@SAPTECHNOMANIAC9 ай бұрын
Yes bro, Thank you 🙂
@sibatsyasahoo82894 ай бұрын
My create not working, travel grid out help me to fix this
@SAPTECHNOMANIAC4 ай бұрын
Please check your code:- github.com/ramniwas04/SAP-TECHNOMANIAC-ALL-CODE/tree/main/Final%20Managed%20APP%20Backup
@metrickz128010 ай бұрын
thank you for video but is it not possible that you buy a better microphone ?
@SAPTECHNOMANIAC10 ай бұрын
You suggest some good microphone as of now I am using boya ...
@yury348410 ай бұрын
Hello Ram! what means "lock master" command?
@SAPTECHNOMANIAC10 ай бұрын
kzbin.info/www/bejne/r36nmouprNBkZ9k
@aakashgt34407 ай бұрын
Hi ram, i'm getting blank fields for agency id and customer id alone how can i rectify this issue
@aakashgt34407 ай бұрын
issue is sorted out this happen due to spelling mistake value help definition -> additional binding-> element name
@SAPTECHNOMANIAC7 ай бұрын
👍
@vivekb82973 ай бұрын
Thanks!
@SAPTECHNOMANIAC3 ай бұрын
Welcome!
@ebrahimmujawar31124 ай бұрын
Hi I am creating same rap app but for create operation my travel field is disabled. Same goes for booking id field.
@SAPTECHNOMANIAC4 ай бұрын
Did you use readonly on create travel? If yes than you have to write early or late numbering method to fill travel.
@selvamanii68344 ай бұрын
@@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?
@SAPTECHNOMANIAC4 ай бұрын
@@selvamanii6834 Not sure why you are getting this issue. Make sure you are using latest version of ADT
@XXX-z4x7n3 ай бұрын
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_tiem3 ай бұрын
@@XXX-z4x7n hi, im facing same issue, tried field ( readonly ) TravelId; also tried field ( readonly:update ) TravelId; none worked..