OIJ_TKT_ITEM_LIST_POP 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 OIJ_TKT_ITEM_LIST_POP into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
OIJT_IO
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'OIJ_TKT_ITEM_LIST_POP' "Ticket item list for popup
* EXPORTING
* dynnr = " t185v-dynnr Screen number
* i_oijnomh = " oijnomh Nomination Header
* i_oijnomi_t_exclude = " oijnomi_t exclude nomination from selection
* i_fcode = " sy-ucomm Screens, function code triggered by PAI
CHANGING
ct_oijnomi = " oijnomi_t Nomination Item Table Type
. " OIJ_TKT_ITEM_LIST_POP
The ABAP code below is a full code listing to execute function module OIJ_TKT_ITEM_LIST_POP 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).
DATA(ld_ct_oijnomi) = 'Check type of data required'.
SELECT single DYNNR
FROM T185V
INTO @DATA(ld_dynnr).
DATA(ld_i_oijnomh) = 'Check type of data required'.
DATA(ld_i_oijnomi_t_exclude) = 'Check type of data required'.
DATA(ld_i_fcode) = 'some text here'. . CALL FUNCTION 'OIJ_TKT_ITEM_LIST_POP' * EXPORTING * dynnr = ld_dynnr * i_oijnomh = ld_i_oijnomh * i_oijnomi_t_exclude = ld_i_oijnomi_t_exclude * i_fcode = ld_i_fcode CHANGING ct_oijnomi = ld_ct_oijnomi . " OIJ_TKT_ITEM_LIST_POP
IF SY-SUBRC EQ 0. "All OK ENDIF.
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_ct_oijnomi | TYPE OIJNOMI_T , |
| ld_dynnr | TYPE T185V-DYNNR , |
| ld_i_oijnomh | TYPE OIJNOMH , |
| ld_i_oijnomi_t_exclude | TYPE OIJNOMI_T , |
| ld_i_fcode | TYPE SY-UCOMM . |
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 OIJ_TKT_ITEM_LIST_POP or its description.
OIJ_TKT_ITEM_LIST_POP - Ticket item list for popup OIJ_TIME_CONSTRAINTS_ALV - OIL-TSW: Call time dependent constraints ALV OIJ_TC_WORKLIST_CHECKS - Call TSW Worklist checks OIJ_TC_SE_TO_RQ - Service Trading Order Request OIJ_TC_SAVE_TSW_DETAILS - Save TSW details OIJ_TC_PASS_DATA - Pass data to function group OIJ_EL_C