call alv funcation modules
Well i going to cover all senario below topic
Reports : Alv Reports, Classical Report And interactive Reports
Forms : Scripts and Smart Forms Adove Forms
Interface : RFC BAPI ALE/IDCS
Converstion : BDC LSMW BAPI
Enhancement : User-EXITS BADI, Customer Exit
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program = sy-repid
i_callback_user_command = 'DISPLAY_ITEM'
i_callback_top_of_page = 'F_TOP_OF_PAGE'
i_grid_title = 'successfully updated record'
it_fieldcat = gt_fcat
* it_excluding = it_excluding
it_events = gt_events
* ES_EXIT_CAUSED_BY_USER =
TABLES
t_outtab = gt_sucess
* EXCEPTIONS
* PROGRAM_ERROR = 1
* OTHERS = 2
.
IF sy-subrc <> 0.
* Implement suitable error handling here
ENDIF.
Reports : Alv Reports, Classical Report And interactive Reports
Forms : Scripts and Smart Forms Adove Forms
Interface : RFC BAPI ALE/IDCS
Converstion : BDC LSMW BAPI
Enhancement : User-EXITS BADI, Customer Exit
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program = sy-repid
i_callback_user_command = 'DISPLAY_ITEM'
i_callback_top_of_page = 'F_TOP_OF_PAGE'
i_grid_title = 'successfully updated record'
it_fieldcat = gt_fcat
* it_excluding = it_excluding
it_events = gt_events
* ES_EXIT_CAUSED_BY_USER =
TABLES
t_outtab = gt_sucess
* EXCEPTIONS
* PROGRAM_ERROR = 1
* OTHERS = 2
.
IF sy-subrc <> 0.
* Implement suitable error handling here
ENDIF.
Comments
Post a Comment