2013 Mar 15 5:54 AM
Hi Gurus.............
I need a suggestion from u guys regarding the TMG. When ever we create a Ztable in se11 we ll usually used to create TMG too. But instead whenever i create a ztable in se11, TMG automatically want to be created. Even if any other ztable already existed but without TMG also automatically wants to be. So please suggest me an idea for my question
Thank You.
2013 Mar 15 10:31 AM
Hi Meenakshi,
Its not required that every ZTABLE needs a TMG. It definitely needs Technical Settings but not TMG. What exactly is your query? Did you face any issue which you can post here?
2013 Mar 15 10:31 AM
Hi Meenakshi,
Its not required that every ZTABLE needs a TMG. It definitely needs Technical Settings but not TMG. What exactly is your query? Did you face any issue which you can post here?
2013 Mar 15 11:03 AM
Hi Meenakshi,
What is your actual requirement? You want to create TMG automatically each time you create a table? I'm afraid that's not possible, as far as i know. Every table you create doesn't require a TMG. If you want to enter new values manually or Delete or Change entry then you go for TMG.
This is not needed if you are doing these operations programatically. In production system End-User won't have access to se11, so even in production system if the user wants to enter some values or change values directly into se11 table, we provide TMG.
If this was not your doubt, Please provide elaborated description of your requirement
Thank You
2013 Mar 15 11:33 AM
2013 Mar 15 11:33 AM
Hi pratheek.............thanx for your reply...............my requirement is.......in a report entry wen i call a ztable then the tmg of that table want to be displayed in the output of the report is it possible.
2013 Mar 15 6:15 PM
Yes you can do that
Use this
CALL FUNCTION 'VIEW_MAINTENANCE_CALL'
EXPORTING
action = 'U'
view_name = 'ZTABLE_NAME'
EXCEPTIONS
client_reference = 1
foreign_lock = 2
invalid_action = 3
no_clientindependent_auth = 4
no_database_function = 5
no_editor_function = 6
no_show_auth = 7
no_tvdir_entry = 8
no_upd_auth = 9
only_show_allowed = 10
system_failure = 11
unknown_field_in_dba_sellist = 12
view_not_found = 13
maintenance_prohibited = 14
OTHERS = 15.
You get Documentation for this FM. Hope this solves your problem
2013 Mar 16 4:17 PM
Thank U Pratheek........................a helpful reply.......