SAP Reports / Programs | Basis Components | Installation Tools(BC-INS) SAP BC

INST_BCCUST_CHECK SAP ABAP Report - INSTBCCUSTCHECK







INST_BCCUST_CHECK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Check that the Installation Reports Are Correctly Executed Checks the results of installation reports that are executed as part of a Smart Implementation...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 INST_BCCUST_CHECK into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT INST_BCCUST_CHECK. "Basic submit
SUBMIT INST_BCCUST_CHECK AND RETURN. "Return to original report after report execution complete
SUBMIT INST_BCCUST_CHECK VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: CHECKFKT = A = total, N = new, " " = old
Selection Text: COMP = Software component
Selection Text: DISP_LOG = Y = yes, N = no
Text Symbol: T01 = Screen display
Text Symbol: T02 = Log output on screen?
Text Symbol: T03 = Check procedure
Text Symbol: T04 = Software component
Text Symbol: F02 = Routine: &
Text Symbol: 001 = No check errors found
Text Symbol: 002 = Error making the basic settings
Text Symbol: 003 = Check routines performed
Text Symbol: 004 = Error occurred during check routines
Text Symbol: E98 = Execute report INST_BCCUST_CHECK
Text Symbol: E99 = Check routine found errors
Text Symbol: F01 = Check routine does not exist


INCLUDES used within this REPORT INST_BCCUST_CHECK

INCLUDE INST_INCLUDE3.
INCLUDE INST_CONSTANTS.
INCLUDE INST_FUNC_MODULES.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

TR_READ_AND_DISPLAY_LOG CALL FUNCTION 'TR_READ_AND_DISPLAY_LOG' EXPORTING IV_LOG_TYPE = 'FILE' IV_LOGNAME_FILE = PROTFILE IV_LANGUAGE = SYST-LANGU EXCEPTIONS INVALID_INPUT = 1 ACCESS_ERROR = 2 OTHERS = 3.

TR_APPEND_LOG CALL FUNCTION 'TR_APPEND_LOG' EXPORTING MASTER_LANGU = 'E' TABLES XMSG = PROTTAB EXCEPTIONS FILE_NOT_FOUND = 1 WRONG_CALL = 2 OTHERS = 3.

TR_INITIALIZE_LOG_WITH_FILE CALL FUNCTION 'TR_INITIALIZE_LOG_WITH_FILE' EXPORTING FILE = PROTFILE EXCEPTIONS OTHERS = 99.

POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING DEFAULTOPTION = 'Y' TEXTLINE1 = ' ' TEXTLINE2 = TEXT-T02 TITEL = TEXT-T01 CANCEL_DISPLAY = ' ' IMPORTING ANSWER = DISP_LOG EXCEPTIONS OTHERS = 1.

UPG_GET_COMPONENT_RELEASES CALL FUNCTION 'UPG_GET_COMPONENT_RELEASES' TABLES TT_CVERS = TT_CVERS EXCEPTIONS NO_RELEASE_FOUND = 1 COMPONENT_RELEASE_NOT_FOUND = 2 OTHERS = 3.

BUILD_FILE_PATH CALL FUNCTION 'BUILD_FILE_PATH' EXPORTING INPATH = CHECK_PATHIN FILE = CHECK_FILEIN IMPORTING OUTPATH = CHECK_PATHOUT EXCEPTIONS OTHERS = 5.

BUILD_FILE_PATH CALL FUNCTION 'BUILD_FILE_PATH' EXPORTING INPATH = CHECK_PATHIN FILE = CHECK_FILEIN IMPORTING OUTPATH = CHECK_PATHOUT EXCEPTIONS OTHERS = 5.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name INST_BCCUST_CHECK or its description.