Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Create transaction

Former Member
0 Kudos
94

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

8 REPLIES 8

Former Member
0 Kudos
64

hi ..

you will have to generate the table maintenance view if you want to assign a transaction to a view or a table.

Former Member
0 Kudos
64

Hello,

Yes,

Thank u,

santhosh

Former Member
0 Kudos
64

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.

SuhaSaha
Advisor
Advisor
0 Kudos
64

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

Former Member
0 Kudos
64

hi

go through the following link

link:[;

hope this help you...

Regards

Ritesh J

Former Member
0 Kudos
64

Hi,

It is possiblt to create transaction. Go to SE11 > Utilities-> maintain table maintenance generator to a view or a table.

Regards,

Jyothi CH.

0 Kudos
64

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"

Former Member
0 Kudos
64

solved