SAP Function Modules

ISPAM_HINT_LIST SAP Function module







ISPAM_HINT_LIST 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 ISPAM_HINT_LIST into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: JHFS
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM ISPAM_HINT_LIST - ISPAM HINT LIST





CALL FUNCTION 'ISPAM_HINT_LIST' "
* EXPORTING
*   in_sammg = SPACE            " jhtak-sammg
*   in_t185 = SPACE             " t185
*   in_t185f = SPACE            " t185f
*   in_t185v = SPACE            " t185v
*   in_tj180 = SPACE            " tj180
*   in_variant_prot =           " disvariant
*   in_callback_ucomm = 'CB_HINT_UCOMM'  " slis_formname
*   in_callback_status_set = 'CB_HINT_STATUS'  " slis_formname
*   in_callback_top = 'CB_COLL_PROC_TOP'  " slis_formname
*   in_callback_eol = 'CB_COLL_PROC_EOL'  " slis_formname
*   in_titlebar = SPACE         " clike
*   in_screen_start_col = 0     "
*   in_screen_start_line = 0    "
*   in_screen_end_col = 0       "
*   in_screen_end_line = 0      "
*   in_no_key_info = SPACE      " sy-batch
    .  "  ISPAM_HINT_LIST

ABAP code example for Function Module ISPAM_HINT_LIST





The ABAP code below is a full code listing to execute function module ISPAM_HINT_LIST 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).

 

SELECT single SAMMG
FROM JHTAK
INTO @DATA(ld_in_sammg).

DATA(ld_in_t185) = 'Check type of data required'.
DATA(ld_in_t185f) = 'Check type of data required'.
DATA(ld_in_t185v) = 'Check type of data required'.
DATA(ld_in_tj180) = 'Check type of data required'.
DATA(ld_in_variant_prot) = 'Check type of data required'.
DATA(ld_in_callback_ucomm) = 'Check type of data required'.
DATA(ld_in_callback_status_set) = 'Check type of data required'.
DATA(ld_in_callback_top) = 'Check type of data required'.
DATA(ld_in_callback_eol) = 'Check type of data required'.
DATA(ld_in_titlebar) = 'Check type of data required'.
DATA(ld_in_screen_start_col) = 'some text here'.
DATA(ld_in_screen_start_line) = 'some text here'.
DATA(ld_in_screen_end_col) = 'some text here'.
DATA(ld_in_screen_end_line) = 'some text here'.
DATA(ld_in_no_key_info) = 'some text here'. . CALL FUNCTION 'ISPAM_HINT_LIST' * EXPORTING * in_sammg = ld_in_sammg * in_t185 = ld_in_t185 * in_t185f = ld_in_t185f * in_t185v = ld_in_t185v * in_tj180 = ld_in_tj180 * in_variant_prot = ld_in_variant_prot * in_callback_ucomm = ld_in_callback_ucomm * in_callback_status_set = ld_in_callback_status_set * in_callback_top = ld_in_callback_top * in_callback_eol = ld_in_callback_eol * in_titlebar = ld_in_titlebar * in_screen_start_col = ld_in_screen_start_col * in_screen_start_line = ld_in_screen_start_line * in_screen_end_col = ld_in_screen_end_col * in_screen_end_line = ld_in_screen_end_line * in_no_key_info = ld_in_no_key_info . " ISPAM_HINT_LIST
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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_in_sammg  TYPE JHTAK-SAMMG ,
ld_in_t185  TYPE T185 ,
ld_in_t185f  TYPE T185F ,
ld_in_t185v  TYPE T185V ,
ld_in_tj180  TYPE TJ180 ,
ld_in_variant_prot  TYPE DISVARIANT ,
ld_in_callback_ucomm  TYPE SLIS_FORMNAME ,
ld_in_callback_status_set  TYPE SLIS_FORMNAME ,
ld_in_callback_top  TYPE SLIS_FORMNAME ,
ld_in_callback_eol  TYPE SLIS_FORMNAME ,
ld_in_titlebar  TYPE CLIKE ,
ld_in_screen_start_col  TYPE STRING ,
ld_in_screen_start_line  TYPE STRING ,
ld_in_screen_end_col  TYPE STRING ,
ld_in_screen_end_line  TYPE STRING ,
ld_in_no_key_info  TYPE SY-BATCH .


SELECT single SAMMG
FROM JHTAK
INTO ld_in_sammg.

ld_in_t185 = 'some text here'.
ld_in_t185f = 'some text here'.
ld_in_t185v = 'some text here'.
ld_in_tj180 = 'some text here'.
ld_in_variant_prot = 'some text here'.
ld_in_callback_ucomm = 'some text here'.
ld_in_callback_status_set = 'some text here'.
ld_in_callback_top = 'some text here'.
ld_in_callback_eol = 'some text here'.
ld_in_titlebar = 'some text here'.
ld_in_screen_start_col = 'some text here'.
ld_in_screen_start_line = 'some text here'.
ld_in_screen_end_col = 'some text here'.
ld_in_screen_end_line = 'some text here'.
ld_in_no_key_info = 'some text here'.

Contribute (Add Comments)

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 ISPAM_HINT_LIST or its description.