RBDSEQMAT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for In
If you would like to execute this report or see the full code listing simply enter RBDSEQMAT into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
QL11 - Mat: Distribute Inspection Setup-ALE
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: WERKE = Plant
Selection Text: RECEIVER = Logical system
Selection Text: MATSEL = Material
Selection Text: DEL_ART = Inspection type or placeholder
Title: Send Inspection Setup
Text Symbol: TIT = Restriction for distribution of inspection setup
Text Symbol: Q04 = Distribute inspection setup of all materials from all plants?
Text Symbol: P03 = Number of materials per process
Text Symbol: NOS = You have not specified any selection criteria.
Text Symbol: ALL = Inspection setup distributed for all materials
Text Symbol: 004 = Delete inspection types generically (placeholder possible)
Text Symbol: 003 = Target system (opt.)
Text Symbol: 002 = Limit selection by material and plant
Text Symbol: 001 = Data is being selected
INCLUDE: MBDCONST, MBDSUBPS, LQAALEF00.
INCLUDE: MBDCONST, MBDSUBPS, LQAALEF00.
INCLUDE: MBDCONST, MBDSUBPS, LQAALEF00.
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING DEFAULTOPTION = 'N' DIAGNOSETEXT1 = text-nos "no criteria DIAGNOSETEXT2 = text-all "select all TEXTLINE1 = text-Q04 "do you really want to? TITEL = text-tit "filter for ALE * CANCEL_DISPLAY = 'X' IMPORTING ANSWER = l_answer.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = OUTPUT_TEXT.
MAP2E_QMAT_TO_BAPI1001004_QMAT CALL FUNCTION 'MAP2E_QMAT_TO_BAPI1001004_QMAT' EXPORTING QMAT = L_QMATTAB CHANGING BAPI1001004_QMAT = L_BAPIQMATTAB.
QAALE_IDOCS_CREATE CALL FUNCTION 'QAALE_IDOCS_CREATE' EXPORTING I_CP_FLAG = ' ' I_MESSAGE_TYPE = L_MESTYP TABLES T_BAPIQMATTAB = L_BAPIQMATTAB T_RECIPIENTS = L_RECIPIENTS.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.