‎2009 Apr 28 4:30 PM
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
‎2009 Apr 28 4:34 PM
Hi Gautum,
keep the message type as 'S' it will show the message in the task bar,,
MESSAGE ID SY-MSGID TYPE SY-MSGTY "Pass it as 'S"
NUMBER SY-MSGNO
WITH IFLOT-TPLNR.
Regards,
Prabhudas
‎2009 Apr 28 4:34 PM
Hi Gautum,
keep the message type as 'S' it will show the message in the task bar,,
MESSAGE ID SY-MSGID TYPE SY-MSGTY "Pass it as 'S"
NUMBER SY-MSGNO
WITH IFLOT-TPLNR.
Regards,
Prabhudas
‎2009 Apr 29 10:00 AM
Sorry Prabudas,
I am not getting the correct message, i.e function location in the task bar.
Thanks