PEASHE01 is a standard ABAP INCLUDE 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 PEASHE01 into the relevant SAP transactions such as SE38 or SE80
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.
Title: Events
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
EDI_DOCUMENT_OPEN_FOR_READ CALL FUNCTION 'EDI_DOCUMENT_OPEN_FOR_READ' EXPORTING DOCUMENT_NUMBER = DOCNUM IMPORTING IDOC_CONTROL = T_EDIDC EXCEPTIONS DOCUMENT_FOREIGN_LOCK = 01 DOCUMENT_NOT_EXIST = 02 DOCUMENT_NUMBER_INVALID = 03.
EDI_SEGMENTS_GET_RANGE CALL FUNCTION 'EDI_SEGMENTS_GET_RANGE' EXPORTING DOCUMENT_NUMBER = DOCNUM FROM_SEGMENT = R_BEGIN TO_SEGMENT = R_END IMPORTING NUMBER_OF_MISSING_SEGMENTS = REST TABLES RANGE_EDIDD = T_EDIDD EXCEPTIONS DOCUMENT_NUMBER_INVALID = 01 NO_RANGE_OF_EDIDD = 02.
POS_EAN_REF_SHOW CALL FUNCTION 'POS_EAN_REF_SHOW' TABLES PI_EDIDD = T_EDIDD.
EDI_DOCUMENT_CLOSE_READ CALL FUNCTION 'EDI_DOCUMENT_CLOSE_READ' EXPORTING DOCUMENT_NUMBER = DOCNUM IMPORTING IDOC_CONTROL = T_EDIDC EXCEPTIONS DOCUMENT_NOT_OPEN = 01 PARAMETER_ERROR = 02.
EAN_HEADER CALL FUNCTION 'EAN_HEADER' EXPORTING PI_SEGMENT = T_EDIDD EXCEPTIONS ERROR_IN_APPLICATION = 1 OTHERS = 2.
EAN_LINE_ITEM_PREPARE CALL FUNCTION 'EAN_LINE_ITEM_PREPARE' EXPORTING PI_SEGMENT = T_EDIDD EXCEPTIONS ERROR_IN_APPLICATION = 1 OTHERS = 2.
EAN_LINE_ITEMS_POST CALL FUNCTION 'EAN_LINE_ITEMS_POST' EXCEPTIONS ERROR_IN_APPLICATION = 1 OTHERS = 2.
EAN_ERROR_MESSAGES_ISSUE CALL FUNCTION 'EAN_ERROR_MESSAGES_ISSUE' EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.