Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

parameters of I_INTERFACE_CHECK function

Former Member
0 Kudos

Hello ABAPer,

I need parameters of I_INTERFACE_CHECK function .

I know some parmeters

but I need all parameters 's tasks

I must learn all parameters ...

6 REPLIES 6

Former Member
0 Kudos

Hi,

Is I_INTERFACE_CHECK is a standard FM coz for me its showing I_INTERFACE_CHECK does not exists?

So how can you check the parameters?

Thanks,

Nitesh Jain

Former Member
0 Kudos

Thank You answer Nitesh Jain ,

CALL FUNCTION 'I_INTERFACE_CHECK '

EXPORTING

  • I_INTERFACE_CHECK = ' '

  • I_BYPASSING_BUFFER =

  • I_BUFFER_ACTIVE =

i_callback_program = 'ZS0009RE_ALV1'

i_callback_pf_status_set = 'GUI'

i_callback_user_command = 'USER_COMMAND'

  • I_CALLBACK_TOP_OF_PAGE = ' '

  • I_CALLBACK_HTML_TOP_OF_PAGE = ' '

  • I_CALLBACK_HTML_END_OF_LIST = ' '

  • I_STRUCTURE_NAME =

i_background_id = ''

i_grid_title = 'Menkuller'

  • I_GRID_SETTINGS =

is_layout_lvc = gs_layout

it_fieldcat_lvc = gt_fcat

  • IT_EXCLUDING =

  • IT_SPECIAL_GROUPS_LVC =

  • IT_SORT_LVC =

  • IT_FILTER_LVC =

  • IT_HYPERLINK =

  • IS_SEL_HIDE =

  • I_DEFAULT = 'X'

  • I_SAVE = ' '

" is_variant = variante

  • IT_EVENTS =

  • IT_EVENT_EXIT =

  • IS_PRINT_LVC =

  • IS_REPREP_ID_LVC =

  • I_SCREEN_START_COLUMN = 0

  • I_SCREEN_START_LINE = 0

  • I_SCREEN_END_COLUMN = 0

  • I_SCREEN_END_LINE = 0

  • I_HTML_HEIGHT_TOP =

  • I_HTML_HEIGHT_END =

  • IT_ALV_GRAPHICS =

  • IT_EXCEPT_QINFO_LVC =

  • IR_SALV_FULLSCREEN_ADAPTER =

  • IMPORTING

  • E_EXIT_CAUSED_BY_CALLER =

  • ES_EXIT_CAUSED_BY_USER =

TABLES

t_outtab = gt_menkuller

  • EXCEPTIONS

  • PROGRAM_ERROR = 1

  • OTHERS = 2

.

this is my function I use ALV but I need another parameters

for example I_INTERFACE_CHECK = ' ' paramters

what is it task ?

thanks

0 Kudos

Hi,

I_INTERFACE_CHECK parameter Description:

So that the performance of the list output is not reduced due to interface consistency checks, these checks are performed in a special call mode.

If this parameter is set to 'X', interface consistency is checked when the function module is called and an error log is displayed.

You should only set this parameter for testing purposes during the development process (for example, for debugging).

You can also perform the interface check on the result list by entering function code &SOS.

THIS PARAMETER IS CURRENTLY NOT SUPPORTED IN FULLSCREEN MODE! As a workaround, go to the print preview from within the list and enter function code &SOS there.

Default it is SPACE

Regards

Jana

Former Member
0 Kudos

Thank You your answer very helpful

I must learn another parameters

have you got any document about this paramesters .

0 Kudos

Hi,

Please read the document of FM: REUSE_ALV_GRID_DISPLAY

I hope it would be more help for you.

Regards

Jana

Former Member
0 Kudos

Thank You Regards Jana your answer