2009 Jan 09 10:12 AM
HI all,
I have created table view zv_dtable , it is modify-I /O
is it possible to create transaction code for table view to avoid using standard sm30
2009 Jan 09 10:15 AM
hi ..
you will have to generate the table maintenance view if you want to assign a transaction to a view or a table.
2009 Jan 09 10:16 AM
2009 Jan 09 10:16 AM
HI,
CALL FUNCTION 'VIEW_MAINTENANCE_CALL'
EXPORTING
ACTION = 'U' " Update
VIEW_NAME = 'YOURTABLE'
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.
2009 Jan 09 10:16 AM
Hello Nick,
You need to create a Parameter Transaction for this through SE93.
Search SDN for parameter transaction for SM30. You will get many inputs.
BR,
Suhas
2009 Jan 09 10:29 AM
2009 Jan 09 10:30 AM
Hi,
It is possiblt to create transaction. Go to SE11 > Utilities-> maintain table maintenance generator to a view or a table.
Regards,
Jyothi CH.
2009 Jan 09 10:57 AM
Here is simple solution :
go to se93 input this
parameters to be given:
Transaction : SM30
and check skip intial screen.
at the bottom need to pass parameter values:
like
VIEWNAME = <table name>
UPDATE = 'X' " if u want to add, or change entries, just for display no need to put 'X"
2009 Jan 09 10:58 AM