cancel
Showing results for 
Search instead for 
Did you mean: 

Problem editing view V_T3130E...

Former Member
0 Kudos

I am currently developing some custom RF transactions. I went to add my screens to V_T3130C via the IMG. Whenever, I added my information I received the error telling me I would need to have entries in table T3130E. After doing some research I found OSS note 357329, which states to edit table T3130E I should use V_T3130E through SM30 to edit it.

Well, when I try that I get the error "View/table V_T3130E can only be displayed and maintained with restrictions". I can find no option within SM30 which will allow me to either display or maintain it.

I am on ECC 6.

Any help would be much appreciated.

Thanks,

Rocky

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member

Hi,

Just got the same problem on ECC600. No maintenance using SM30.

But you can force the maintenance call for the view by calling the function directly.

Regards

Flemming


*&---------------------------------------------------------------------*
*& Report  Z_V_T3130E_MAINTAIN
*&
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*

REPORT  Z_V_T3130E_MAINTAIN.

PARAMETERS: p_view like DD02V-TABNAME DEFAULT 'V_T3130E'.


START-OF-SELECTION.

CALL FUNCTION 'VIEW_MAINTENANCE_CALL'
  EXPORTING
    action                               = 'U'
*   CORR_NUMBER                          = '          '
*   GENERATE_MAINT_TOOL_IF_MISSING       = ' '
*   SHOW_SELECTION_POPUP                 = ' '
    view_name                            = p_view
*   NO_WARNING_FOR_CLIENTINDEP           = ' '
*   RFC_DESTINATION_FOR_UPGRADE          = ' '
*   CLIENT_FOR_UPGRADE                   = ' '
*   VARIANT_FOR_SELECTION                = ' '
*   COMPLEX_SELCONDS_USED                = ' '
*   CHECK_DDIC_MAINFLAG                  = ' '
*   SUPPRESS_WA_POPUP                    = ' '
* TABLES
*   DBA_SELLIST                          =
*   EXCL_CUA_FUNCT                       =
* 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
          .
IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

Former Member
0 Kudos

Hey Rocky, did you get a solution to this issue with updating the maintenance view V_T3130E.

Many thanks

Daniel

Former Member
0 Kudos

One possible solution can be creating a Z view copy of table T3130E and maintaining table from there.