SDARCHLP 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 SDARCHLP 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: P_WORD = Password
Selection Text: P_FLOW = Set flow docs to status C
Selection Text: P_EGRP = Reset archive indicator
Selection Text: P_DAT_3 = Reset period [days]
Selection Text: P_DAT_2 = Reset period [days]
Selection Text: P_DAT_1 = Reset period [days]
Selection Text: IT_VBRK = Billing Document
Selection Text: IT_VBAK = Sales Document
Selection Text: IT_LIKP = Delivery
Title: SDARCHLP
Text Symbol: 106 = Report Canceled
Text Symbol: 105 = Caution
Text Symbol: 104 = Cancel
Text Symbol: 103 = Execute
Text Symbol: 102 = You Must Refer to Note 775540
Text Symbol: 101 = Execute this report at your own risk.
Text Symbol: 100 = The report makes database changes without business checks.
Text Symbol: 009 = Status Set to Complete for Billing:
Text Symbol: 008 = Status Set to Complete for Delivery:
Text Symbol: 007 = Status Set to Complete Orders:
Text Symbol: 006 = No. bill. docs
Text Symbol: 005 = No. of Deliveries
Text Symbol: 004 = NumberOfOrders
Text Symbol: 003 = Billing document
Text Symbol: 002 = Delivery
Text Symbol: 001 = Order
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = G_REPID I_CALLBACK_PF_STATUS_SET = L_PF_EVENT IS_LAYOUT = LS_LAYOUT IT_FIELDCAT = LT_FIELDCAT I_SAVE = GC_SAVE IT_EVENTS = LT_EVENTTAB TABLES T_OUTTAB =
EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_PROGRAM_NAME = G_REPID I_INTERNAL_TABNAME = IV_INTERNAL_TABNAME I_STRUCTURE_NAME = IV_STRUCTURE_NAME CHANGING CT_FIELDCAT = XT_FIELDCAT EXCEPTIONS INCONSISTENT_INTERFACE = 1 PROGRAM_ERROR = 2 OTHERS = 3.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING I_LIST_TYPE = IV_LIST_TYPE IMPORTING ET_EVENTS = XT_EVENTTAB.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING IT_LIST_COMMENTARY = IT_END_OF_LIST.
PAK_GET_SHORTTEXT_DTEL CALL FUNCTION 'PAK_GET_SHORTTEXT_DTEL' EXPORTING I_ELEM_KEY = GC_SIMUL I_LANGUAGE = SY-LANGU IMPORTING E_SHORT_TEXT = LV_TEXT.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING IT_LIST_COMMENTARY = IT_TOP_OF_LIST.
POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' EXPORTING * DEFAULTOPTION = '1' TEXTLINE1 = TEXT-100 TEXTLINE2 = TEXT-101 TEXTLINE3 = TEXT-102 TEXT_OPTION1 = TEXT-103 TEXT_OPTION2 = TEXT-104 ICON_TEXT_OPTION1 = 'ICON_EXECUTE_OBJECT' ICON_TEXT_OPTION2 = 'ICON_CANCEL' TITEL = TEXT-105 * START_COLUMN = 25 * START_ROW = 6 CANCEL_DISPLAY = ' ' IMPORTING ANSWER = LV_TEXT .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.