RFVIKOTCH is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Check Internal Condition Types The report checks the unique assignment of the condition types to an internal condition category...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RFVIKOTCH into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FOKOTCH - Check Internal Condition Categories
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: P_SIKOT = Internal cond. category
Selection Text: P_VARI = Layout
Title: Program RFVIKOTCH
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_VARIANT_DEFAULT_GET CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET' EXPORTING I_SAVE = G_SAVE CHANGING CS_VARIANT = GX_VARIANT EXCEPTIONS NOT_FOUND = 2.
ASSIGNMENT_SKOART_SKOTYP_TABLE CALL FUNCTION 'ASSIGNMENT_SKOART_SKOTYP_TABLE' EXPORTING IP_SIKOTYP = P_SIKOT * IP_CHECK_NONAMBIG = 'X' * IP_EMESSAGES_SHOW = ' ' IP_EMESSAGES_ITAB = 'X' TABLES ET_SKOTYPART_TAB = LOC_SKOTYPART_TAB ET_MESG = LOC_MESG * CHANGING * EFLG_NONAMBIGUOUS = * EXCEPTIONS * NO_SIKOTYP_ASSIGNED = 1 * NO_SKOART_ASSIGNED = 2 * NO_SKOARTTYP_MAINTAINED = 3 * NO_SKOTYP_MAINTAINED = 4 * ERROR_IN_MESSAGE_SET_DEF = 5 * ERROR_IN_MESSAGE_STORE = 6 * ERROR_IN_MESSAGE_SHOW = 7 * OTHERS = 8 .
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' I_CALLBACK_PROGRAM = G_REPID * I_CALLBACK_PF_STATUS_SET = ' ' * I_CALLBACK_USER_COMMAND = ' ' I_STRUCTURE_NAME = 'SMESG' * IS_LAYOUT = * IT_FIELDCAT = * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' I_SAVE = G_SAVE IS_VARIANT = G_VARIANT * IT_EVENTS = * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES T_OUTTAB = LOC_MESG * EXCEPTIONS * PROGRAM_ERROR = 1 * OTHERS = 2 .
REUSE_ALV_VARIANT_F4 CALL FUNCTION 'REUSE_ALV_VARIANT_F4' EXPORTING IS_VARIANT = G_VARIANT I_SAVE = G_SAVE * it_default_fieldcat = IMPORTING E_EXIT = G_EXIT ES_VARIANT = GX_VARIANT EXCEPTIONS NOT_FOUND = 2.
REUSE_ALV_VARIANT_EXISTENCE CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE' EXPORTING I_SAVE = G_SAVE CHANGING CS_VARIANT = GX_VARIANT.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.