REGLOS03 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Sample Lot Breakup This report contains functions for lot breakup...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 REGLOS03 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.
Selection Text: LOS = D Lot
Title: Terminate lot
Text Symbol: 011 = Lot has not been entered in a device
Text Symbol: 013 = A general error has occurred
Text Symbol: T01 = Remove lot &1 from all devices
Text Symbol: 001 = Lot &1 was removed from the devices concerned
Text Symbol: 003 = No changes were made
Text Symbol: 005 = Error: lot or device in lot is blocked
Text Symbol: 007 = Error: lot does not exist
Text Symbol: 009 = Error: official lot - cannot be removed
INCLUDE: IEGDAT00, " ALLGEMEINE DATEN
No SAP DATABASE tables are accessed within this REPORT code!
ISU_LOT_BREAK_UP CALL FUNCTION 'ISU_LOT_BREAK_UP' EXPORTING X_LOS = LOS X_UPD_ONLINE = CO_FLAG_MARKED IMPORTING Y_DB_UPDATE = DB_UPDATE Y_COUNT = COUNT EXCEPTIONS FOREIGN_LOCK = 1 LOT_NOT_FOUND = 2 FUNCTION_FAILED = 3 DEVICE_NOT_FOUND = 4 OTHERS = 5.
RS_VARIANT_DELETE * CALL FUNCTION 'RS_VARIANT_DELETE' * EXPORTING * REPORT = CO_REPORT_NAME * VARIANT = VAR_NAME * FLAG_CONFIRMSCREEN = CO_FLAG_MARKED * FLAG_DELALLCLIENT = CO_FLAG_MARKED * EXCEPTIONS * OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.