EXIT_SAPLLMOB_995 is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name EXIT_SAPLLMOB_995 into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
XLRF
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'EXIT_SAPLLMOB_995' "USER EXIT - DATA TO CUSTOMER SCREEN (DUMMY 1807)
EXPORTING
i_vttk = " vttk Data to Display on Customer Screen
i_vekp = " vekp Data to Display on Customer Screen
i_vttp = " vttp Data to Display on Customer Screen
i_rlmob = " rlmob Data to Display on Customer Screen
i_likp = " likp Data to Display on Customer Screen
i_tap_init_size = " sy-tabix Internal Tables, Current Line Index
i_tap_total_lines = " sy-tabix Internal Tables, Current Line Index
i_tap_index = " sy-tabix Internal Tables, Current Line Index
i_temporary_index = " sy-tabix Internal Tables, Current Line Index
i_line_no_step_loop = " sy-tabix Internal Tables, Current Line Index
i_screen_fcode = " sy-ucomm Screens, function code triggered by PAI
i_current_field = " c
TABLES
tap_vttp = " vttp Shipment Item
. " EXIT_SAPLLMOB_995
The ABAP code below is a full code listing to execute function module EXIT_SAPLLMOB_995 including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| it_tap_vttp | TYPE STANDARD TABLE OF VTTP,"TABLES PARAM |
| wa_tap_vttp | LIKE LINE OF it_tap_vttp . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_i_vttk | TYPE VTTK , |
| it_tap_vttp | TYPE STANDARD TABLE OF VTTP , |
| wa_tap_vttp | LIKE LINE OF it_tap_vttp, |
| ld_i_vekp | TYPE VEKP , |
| ld_i_vttp | TYPE VTTP , |
| ld_i_rlmob | TYPE RLMOB , |
| ld_i_likp | TYPE LIKP , |
| ld_i_tap_init_size | TYPE SY-TABIX , |
| ld_i_tap_total_lines | TYPE SY-TABIX , |
| ld_i_tap_index | TYPE SY-TABIX , |
| ld_i_temporary_index | TYPE SY-TABIX , |
| ld_i_line_no_step_loop | TYPE SY-TABIX , |
| ld_i_screen_fcode | TYPE SY-UCOMM , |
| ld_i_current_field | TYPE C . |
The function transfers data to customer screen if the customer exit is
activated. Customer screen should be created in module pool SAPLXLRF.
...See here for full SAP fm documentation
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name EXIT_SAPLLMOB_995 or its description.
EXIT_SAPLLMOB_995 - USER EXIT - DATA TO CUSTOMER SCREEN (DUMMY 1807) EXIT_SAPLLMOB_994 - USER EXIT - DATA FROM CUSTOMER SCREEN (DUMMY 1806) EXIT_SAPLLMOB_993 - USER EXIT - DATA TO CUSTOMER SCREEN (DUMMY 1806) EXIT_SAPLLMOB_992 - USER EXIT - DATA FROM CUSTOMER SCREEN (DUMMY 1805) EXIT_SAPLLMOB_991 - USER EXIT - DATA TO CUSTOMER SCREEN (DUMMY 1805) EXIT_SAPLLMOB_990 - USER EXIT - DATA FROM CUSTOMER SCREEN (DUMMY 1804)