RCL_CREATE_INIT_LAYOUT 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 RCL_CREATE_INIT_LAYOUT 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: CL_KLART = Class Type
Selection Text: INHERIT = With Inherited Chars
Selection Text: LAYOUT = Overwrite Layout
Selection Text: MERKMALE = Characteristics of Class
Selection Text: OBJ_DESC = Object Description
Selection Text: OBJ_TYPE = Object Type
Selection Text: PROTOCOL = Log
Selection Text: R_CLASS = Class
Selection Text: SORTCHAR = Sort By Characteristics Only
Selection Text: STATUS = Status
Title: RCL_CREATE_INIT_LAYOUT
Text Symbol: 001 = Initial Layout Created for These Classes:
Text Symbol: 010 = Columns in Layout
Text Symbol: 020 = Char.
Text Symbol: 030 = Object
Text Symbol: 031 = Description
Text Symbol: 032 = Obj. Type
Text Symbol: 033 = Status
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CLSE_SELECT_KLAH_VIA_NAMERANGE CALL FUNCTION 'CLSE_SELECT_KLAH_VIA_NAMERANGE' TABLES IMP_EXP_KLAH = gt_class NAMERANGE = r_class EXCEPTIONS NO_ENTRY_FOUND = 1 OTHERS = 2.
LVC_VARIANT_DEFAULT_GET CALL FUNCTION 'LVC_VARIANT_DEFAULT_GET' EXPORTING I_SAVE = 'X' CHANGING CS_VARIANT = GS_VARIANT EXCEPTIONS WRONG_INPUT = 1 NOT_FOUND = 2 PROGRAM_ERROR = 3 OTHERS = 4.
CLSE_SELECT_KSML CALL FUNCTION 'CLSE_SELECT_KSML' * EXPORTING * KEY_DATE = SY-DATUM * BYPASSING_BUFFER = ' ' * I_AENNR = ' ' TABLES IMP_EXP_KSML = gt_ksml EXCEPTIONS NO_ENTRY_FOUND = 1 OTHERS = 2.
CLME_FEATURES_OF_CLASS_INH CALL FUNCTION 'CLME_FEATURES_OF_CLASS_INH' EXPORTING CLASS = gt_class-class CLASSTYPE = gt_class-klart TABLES tfeatures = t_e_charact EXCEPTIONS OTHERS = 2.
LVC_VARIANT_SAVE CALL FUNCTION 'LVC_VARIANT_SAVE' EXPORTING IT_FIELDCAT = LT_FIELDCAT IT_SORT = LT_SORT IT_FILTER = LT_FILTER I_DIALOG = ' ' I_OVERWRITE = 'X' I_USER_SPECIFIC = ' ' CHANGING CS_VARIANT = GS_VARIANT EXCEPTIONS WRONG_INPUT = 1 FC_NOT_COMPLETE = 2 FOREIGN_LOCK = 3 VARIANT_EXISTS = 4 NAME_RESERVED = 5 PROGRAM_ERROR = 6 OTHERS = 7.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.