SAP Reports / Programs

RWRF_FIND_UNASGN_LM SAP ABAP Report - Find Layout Modules Without Assortment Assignment







RWRF_FIND_UNASGN_LM is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use this report to find layout modules that are not assigned to an assortment...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 RWRF_FIND_UNASGN_LM into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RWRF_FIND_UNASGN_LM. "Basic submit
SUBMIT RWRF_FIND_UNASGN_LM AND RETURN. "Return to original report after report execution complete
SUBMIT RWRF_FIND_UNASGN_LM VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_AT_A = LayMod without Assignment
Selection Text: P_AT_D = LayMod w/o Direct Assignment
Selection Text: P_AT_I = LayMod w/o Indirect Assignment
Selection Text: SO_TWML = Layout Module from:
Title: Find Layout Modules Without Assortment Assignment
Text Symbol: 001 = No layout modules without assortment assignment could be found


INCLUDES used within this REPORT RWRF_FIND_UNASGN_LM

INCLUDE RWRF_FIND_UNASGN_LM_TOP . " GLOBAL DATA


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

WRF_GET_ASSORTMENT_FOR_LM call function 'WRF_GET_ASSORTMENT_FOR_LM' exporting pi_laymod = ls_twml-laygr pi_asgmt = pi_asgmt exceptions laymod_not_found = 1 no_asgmt_found = 2 others = 3.

WRF_TWML_SINGLE_READ call function 'WRF_TWML_SINGLE_READ' exporting twml_laygr = ls_twml-laygr twmlt_spras = sy-langu importing wtwmlt = ls_twmlt exceptions not_found = 1 desc_not_found = 2 others = 3.

REUSE_ALV_LIST_DISPLAY call function 'REUSE_ALV_LIST_DISPLAY' exporting * I_INTERFACE_CHECK = ' ' * I_BYPASSING_BUFFER = * I_BUFFER_ACTIVE = ' ' * I_CALLBACK_PROGRAM = ' ' * I_CALLBACK_PF_STATUS_SET = ' ' * I_CALLBACK_USER_COMMAND = ' ' * I_STRUCTURE_NAME = * IS_LAYOUT = it_fieldcat = lt_fcat * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' * I_SAVE = ' ' * IS_VARIANT = * IT_EVENTS = * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = tables t_outtab = lt_laygr * EXCEPTIONS * PROGRAM_ERROR = 1 * OTHERS = 2 .



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RWRF_FIND_UNASGN_LM or its description.