PBO, PAI, POH and POV are the Module pool(screen)events. TMG events are the events while performing actions on the table - like insertion, deletion etc.
Demo's system does not have necessary configurations and SAP Gateway Client which is required for ODATA, so currently I will not be able to take this topic .
Hi Sir! how are you doing today my question is should I continue with this topic or should I go for learn programming first and then come back to TMG events personally I want to finish the data dictionary first then I want to move to ABAP programming what should I do now please help me ??
Hello Noman - I am doing good. Hope you are also fine. At this point if time , you can listen the video of TMG events and do the practical after gaining the knowledge on ABAP Programming Part-1 and ABAP Programming Part2.
Hai rahul mehta ji , I am getting 'FUNCTION GROUP ZORDH_28 CANNOT BE PROCESSED' error while deleting the TMG . What to do to rectify this error. THANKING YOU IN ADVANCE .
Hello Sivasai - Go to SE80 transaction code. Choose function group, pass name of the function group, right click and activate. Make sure you have closed the other sessions of TMG. After activation, then do the process.
sir, auto-filling field description taking makt standard table. what is the logic for it in TMG events? could you please write the logic in the comment box it's very helpful for me.
Ideally it need not to be there. You can go to the events through SE11. In the TMG screen. follow the path Environment-Modifications-Events. If this is also not working, check with your system provider/administrator.
@@ratnakishorekakaraparthi891 Events always triggers at their time, so depends upon the requirement, we use an event. We can not compare one event to another.
Hello Dilip - 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.
Hello, If you want to hide permanent, In the layout( Screen Painter), there is a property Invisible. If you want to make invisible based upon some condition, then we need to write the logic - LOOP AT SCREEN. ENDLOOP and we will set the active property to 1 or 0, based upon the condition.
Hi Sir, Thanks for your knowledge transfer. Can you help me to one of my requirement? I have a scenario to delete entries of a custom table which are more than 60 days by default. Really appreciate your inputs sir
Hello - Sorry for the late reply. System will not delete automatically. You need to create a program and schedule that program in the background which will run after every 60 days. In the program we can simply write the logic - DELETE (DBTAB) FROM work area. Where the work area type is same as that of database table. Fill the date field of work area as SY-DATUM - 60.
@sapabapbyrahulmehta Thank you for the response sir. Yes we are creating a program to delete the entries older than X days whenever user executes the related transaction. Can we execute the following statement, DELETE WHERE . We are not reading the data via select query so no involvement of work area. Can we delete the entries like this sir?
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. All the best for your learning and future endeavors.
@@sakshiwadhwa8226 You can refer the playlist of ABAP Programming Part-2 for classical reports. ruclips.net/p/PLM3lhmHjSeIQ34iXxfQl8J6Dr9twdO0XL&si=toM0_iZGmiHJBaAD You can refer the playlist of module pool programming( Dialog programming). ruclips.net/p/PLM3lhmHjSeITYl3Jz1dx1l0faMUsik8lV&si=jQeqTkHXxrJIJGi9
Hi sir may i know the difference between TMG EVENTS & PBO,PAI,POH,POV these are also events what makes TMG EVENTS is different?
PBO, PAI, POH and POV are the Module pool(screen)events. TMG events are the events while performing actions on the table - like insertion, deletion etc.
Thank u sir thank u god 🙏😇
Sir Authorization Object S_TABU_Nam is Not Show in My server but S_Tabu_Dis Show Why?
Hello Mohan - Is it impacting to do the practical part?
Hi sir , when will you start the odata training ?
Demo's system does not have necessary configurations and SAP Gateway Client which is required for ODATA, so currently I will not be able to take this topic .
Hi Sir! how are you doing today my question is should I continue with this topic or should I go for learn programming first and then come back to TMG events personally I want to finish the data dictionary first then I want to move to ABAP programming what should I do now please help me ??
Hello Noman - I am doing good. Hope you are also fine. At this point if time , you can listen the video of TMG events and do the practical after gaining the knowledge on ABAP Programming Part-1 and ABAP Programming Part2.
Hai rahul mehta ji , I am getting 'FUNCTION GROUP ZORDH_28 CANNOT BE PROCESSED' error while deleting the TMG . What to do to rectify this error.
THANKING YOU IN ADVANCE
.
Hello Sivasai - Go to SE80 transaction code. Choose function group, pass name of the function group, right click and activate. Make sure you have closed the other sessions of TMG. After activation, then do the process.
sir, auto-filling field description taking makt standard table. what is the logic for it in TMG events? could you please write the logic in the comment box it's very helpful for me.
In my system while opening se54, 'events' radio button not showing what can be the reason?
Ideally it need not to be there. You can go to the events through SE11. In the TMG screen. follow the path Environment-Modifications-Events. If this is also not working, check with your system provider/administrator.
How to regenerate the TMG with out data loss
Regeneration of TMG never results in to data loss. Table data remain as it is. Please refer the upcoming videos of TMG, you will get the idea.
@@sapabapbyrahulmehta ok. Thank you
@@sapabapbyrahulmehta which event is better for updating created on, created time, created by, changed on, changed at, changed by fields through TMG
@@ratnakishorekakaraparthi891 Events always triggers at their time, so depends upon the requirement, we use an event. We can not compare one event to another.
sir running notes available??
Hello Dilip -
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.
@sapabapbyrahulmehta sir sap hana covered in any of the playlist? Thanks for the materials 🙏
Hello sir. How to hide a particular field in Tmg.
Hello, If you want to hide permanent, In the layout( Screen Painter), there is a property Invisible. If you want to make invisible based upon some condition, then we need to write the logic - LOOP AT SCREEN. ENDLOOP and we will set the active property to 1 or 0, based upon the condition.
Hi Sir,
Thanks for your knowledge transfer.
Can you help me to one of my requirement? I have a scenario to delete entries of a custom table which are more than 60 days by default. Really appreciate your inputs sir
Hello - Sorry for the late reply. System will not delete automatically. You need to create a program and schedule that program in the background which will run after every 60 days. In the program we can simply write the logic - DELETE (DBTAB) FROM work area.
Where the work area type is same as that of database table. Fill the date field of work area as SY-DATUM - 60.
@sapabapbyrahulmehta Thank you for the response sir. Yes we are creating a program to delete the entries older than X days whenever user executes the related transaction. Can we execute the following statement, DELETE WHERE . We are not reading the data via select query so no involvement of work area. Can we delete the entries like this sir?
it was a good
Thank you Eish.
Can you share the slides
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. All the best for your learning and future endeavors.
@@sapabapbyrahulmehta Do you also have a playlist for the Course Programming User Dialogs with Classical Screens(Dynpros).
@@sakshiwadhwa8226 You can refer the playlist of ABAP Programming Part-2 for classical reports.
ruclips.net/p/PLM3lhmHjSeIQ34iXxfQl8J6Dr9twdO0XL&si=toM0_iZGmiHJBaAD
You can refer the playlist of module pool programming( Dialog programming).
ruclips.net/p/PLM3lhmHjSeITYl3Jz1dx1l0faMUsik8lV&si=jQeqTkHXxrJIJGi9