Skip to Content
0
Former Member
Apr 18, 2008 at 11:03 AM

What is the problem

500 Views

Hi all,

When I have called the function module:

CALL FUNCTION 'VIEW_MAINTENANCE_CALL'

EXPORTING

ACTION = 'S'

SHOW_SELECTION_POPUP = ' '

VIEW_NAME = 'CARS'

VARIANT_FOR_SELECTION = ' '

TABLES

DBA_SELLIST = dba_sellist

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.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

I am getting the subrc as 8 in debug and it does not return me anything. What is the problem with this.

What do I have to do?

Thanks.