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: 

Selecting the data from maintainence view V_T077S

Former Member
0 Kudos

Hi All,

How to select the data from maintainence view V_T077S because normal select statement will not work on maintainence view. Please help me with a piece of code.

Thanks in advance.

Regards,

Srinivas.

1 ACCEPTED SOLUTION

amit_khare
Active Contributor
0 Kudos

You can directly write select on table T077S.

2 REPLIES 2

amit_khare
Active Contributor
0 Kudos

You can directly write select on table T077S.

Former Member
0 Kudos

Hello,

Make a direct select from the tables:

T077S

T077Z

Or use the FM

CALL FUNCTION 'VIEW_MAINTENANCE_CALL'
       EXPORTING
            ACTION                       = 'U'
*            SHOW_SELECTION_POPUP         = SUBFIELD
            VIEW_NAME                    = VNAME
       TABLES
            DBA_SELLIST                  = I_SEL
       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.

Cheers,

Vasanth