SAP Reports / Programs

EAN_CHECK SAP ABAP Report - Include EAN_CHECK







EAN_CHECK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.

If you would like to execute this report or see the full code listing simply enter EAN_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 EAN_CHECK. "Basic submit
SUBMIT EAN_CHECK AND RETURN. "Return to original report after report execution complete
SUBMIT EAN_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: OPT_1 = All Fitting EAN Categories
Selection Text: OPT_2 = Does EAN Fit EAN Category?
Selection Text: OPT_3 = Determine Check Digit
Selection Text: OPT_4 = Control Check Digit
Selection Text: OPT_5 = Check EAN Prefix
Selection Text: P_I_OR_E = 'I'nternal,'E'xternal,or'B'oth
Selection Text: P_PRFZ = Check Digit Attached
Selection Text: P_EAN = D .
Selection Text: P_TYPE = D .
Title: Include EAN_CHECK
Text Symbol: 001 = Options
Text Symbol: 002 = Details on EAN
Text Symbol: 003 = List of Fitting EAN Categories for EAN:
Text Symbol: 004 = With Check Digit:


INCLUDES used within this REPORT EAN_CHECK

No INCLUDES are used within this REPORT code!


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:

EAN_TYPE CALL FUNCTION 'EAN_TYPE' EXPORTING i_ean = p_ean i_flg_prfz = p_prfz i_intext = p_i_or_e TABLES e_tab_eantp = it_eantp.

EAN_TYPE CALL FUNCTION 'EAN_TYPE' EXPORTING i_ean = p_ean i_flg_prfz = p_prfz i_intext = p_i_or_e TABLES e_tab_eantp = it_eantp.

EAN_TYPE CALL FUNCTION 'EAN_TYPE' EXPORTING i_ean = p_ean i_flg_prfz = '' i_intext = 'B' TABLES e_tab_eantp = it_eantp.

EAN_GET_PRFZA CALL FUNCTION 'EAN_GET_PRFZA' EXPORTING i_numtp = p_type IMPORTING e_prfza = l_prfza.

EAN_DETERMINE_CHECKDIGIT CALL FUNCTION 'EAN_DETERMINE_CHECKDIGIT' EXPORTING i_ean = p_ean IMPORTING e_ean = l_ean.

EAN_VERIFY_CHECKDIGIT CALL FUNCTION 'EAN_VERIFY_CHECKDIGIT' IMPORTING checkdigit_ok = l_flg_format CHANGING i_ean = p_ean.

EAN_PREFIX_CHECK CALL FUNCTION 'EAN_PREFIX_CHECK' EXPORTING i_prefix = l_prefix i_spras = sy-langu EXCEPTIONS not_found = 1 OTHERS = 2.

EAN_PREFIX_CHECK CALL FUNCTION 'EAN_PREFIX_CHECK' EXPORTING i_prefix = l_prefix2 i_spras = sy-langu EXCEPTIONS not_found = 1 OTHERS = 2.



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