Skip to Content
0
Former Member
Apr 28, 2009 at 03:30 PM

displaying the function location no. in task bar

24 Views

Hi All,

Please help me in displaying the function location no. in task bar as message.

Following is the code I am using :-

CALL FUNCTION 'ENQUEUE_EZIFLO'

EXPORTING

  • MODE_IFLOT = 'E'

  • MANDT = SY-MANDT

TPLNR = IFLOT-TPLNR

  • X_TPLNR = ' '

  • _SCOPE = '2'

  • _WAIT = ' '

  • _COLLECT = ' '

  • EXCEPTIONS

FOREIGN_LOCK = 1

SYSTEM_FAILURE = 2

OTHERS = 3

.

IF sy-subrc <> 0.

write : IFLOT-TPLNR.

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

WITH IFLOT-TPLNR.

ENDIF.

Thanks

Gautam