‎2008 Jul 28 11:35 AM
Hi,
Can any one help me out in this,
I have requirement wher in i need to display the table maitanance from the selection screen where the user enters table name as input in the selection screen.
Regards,
naveen
‎2008 Jul 28 12:51 PM
hi,
use the function module "VIEW_MAINTENANCE_CALL"
and pass
ACTION : S for Display
U for maintain
T for transport
VIEW_NAME : table name
cheers!!
reward points if helpful
gautam
‎2008 Jul 28 11:40 AM
First create the Tablemaintenance , and then create the Trasnaction Code to the Table maintenance
You need to use the Function module to maintain the view using the program.
VIEW_MAINTENANCE_CALL
‎2008 Jul 28 11:45 AM
Sample program for testing purpose..
REPORT ZTEST_MAINTAIN.
parameters: p_view(30).
call function 'VIEW_MAINTENANCE_CALL'
exporting
action = 'S'
view_name = p_view
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
others = 14.
if sy-subrc <> 0.
endif.Regards
Vijay Babu Dudla
‎2008 Jul 28 12:51 PM
hi,
use the function module "VIEW_MAINTENANCE_CALL"
and pass
ACTION : S for Display
U for maintain
T for transport
VIEW_NAME : table name
cheers!!
reward points if helpful
gautam