RCPMAPL1 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 RCPMAPL1 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: PLNNR = Group
Selection Text: PLNTY = Task list type
Title: Material Allocations to Task Lists
Text Symbol: 001 = Enter task list type and group
Text Symbol: 002 = Update not possible since group is locked
Text Symbol: 003 = Material allocations to task list successfully deleted
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ENQUEUE_EPPLKO CALL FUNCTION 'ENQUEUE_EPPLKO' EXPORTING PLNTY = PLNTY PLNNR = PLNNR EXCEPTIONS FOREIGN_LOCK = 01 SYSTEM_FAILURE = 02.
DEQUEUE_EPPLKO CALL FUNCTION 'DEQUEUE_EPPLKO' EXPORTING PLNTY = PLNTY PLNNR = PLNNR.
SCROLLING_IN_TABLE CALL FUNCTION 'SCROLLING_IN_TABLE' EXPORTING ENTRY_ACT = SCROLL-CURSOR ENTRY_FROM = RC27X-INDEX_STA ENTRY_TO = RC27X-ENTRIES LOOPS = RC27X-LOOPS OK_CODE = OK-CODE IMPORTING ENTRY_NEW = SCROLL-CURSOR EXCEPTIONS NO_ENTRY_OR_PAGE_ACT = 1 NO_ENTRY_TO = 2 NO_OK_CODE_OR_PAGE_GO = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.