‎2006 Dec 28 5:03 AM
Hi Experts,
I am sending my code. could anyone tell me what might be the wrong in that? and how it could be solved?
PROGRAM zdemo9.
TABLES:ess_life_event_menu.
DATA:BEGIN OF itab OCCURS 0.
INCLUDE STRUCTURE ess_life_event_menu.
DATA:END OF itab.
CONTROLS:tc1 TYPE TABLEVIEW USING SCREEN 100.
CALL FUNCTION 'ESS_GET_LIFE_EVENT_MENU'
EXPORTING
ess_live_event = 'PZM3'
uname = sy-uname
IMPORTING
LE_DESC =
LE_OPEN =
LE_OPEN_M =
TABLES
ess_le_menu = itab
ESS_LE_COLOR_TABLE =
ERROR_MESSAGE =
ESS_LE_EP =
EXCEPTIONS
NO_PERNR = 1
OTHER = 2
OTHERS = 3
.
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
‎2006 Dec 28 5:07 AM
Insert your CALL FUNCTION statement inside any module called from either the PBO/PAI of your screen as per your requirement. The call can be nested as well.
‎2006 Dec 28 5:05 AM
‎2006 Dec 28 5:07 AM
Insert your CALL FUNCTION statement inside any module called from either the PBO/PAI of your screen as per your requirement. The call can be nested as well.
‎2006 Dec 28 5:08 AM
hi,
thisi is syntatically correct..where u r facing the problem exactly..and what is the error u r getting ?
regards,
pankaj singh
‎2006 Dec 28 5:13 AM