RN1SEOCREATE 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 create objects for classes (i...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 RN1SEOCREATE 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_PARTYP = Typing Method
Selection Text: P_PARTY = Reference Category
Selection Text: P_PARPAS = Transfer Type
Selection Text: P_PAROPT = 'Optional' Indicator
Selection Text: P_PARMET = Method
Selection Text: P_PARDES = Description
Selection Text: P_PARDEC = Declaration Type
Selection Text: P_PARAM = Parameter
Selection Text: P_METHOD = Method
Selection Text: P_METEXP = Visibility
Selection Text: P_METDES = Description
Selection Text: P_INHER = Inherits From (Class)
Selection Text: P_IMPLEM = Interface Implementation
Selection Text: P_CLSNEW = Create New Class
Selection Text: P_CLSEXP = Visibility
Selection Text: P_CLSDES = Description
Selection Text: P_CLASS = Class
Selection Text: P_ATTTYP = Typing Method
Selection Text: P_ATTTY = Reference Category
Selection Text: P_ATTRIB = Attribute
Selection Text: P_ATTEXP = Visibility
Selection Text: P_ATTDES = Description
Selection Text: P_ATTDEC = Declaration Type
Title: Create Methods/Parameters/Attributes
Text Symbol: T06 = Create Attribute
Text Symbol: T05 = Create Parameter
Text Symbol: T04 = Create Method
Text Symbol: T03 = Create Implementation Interface
Text Symbol: T01 = Class
Text Symbol: 007 = Implem. Interface
Text Symbol: 006 = Inheritance
Text Symbol: 005 = Class
Text Symbol: 004 = Attribute
Text Symbol: 003 = Parameter
Text Symbol: 002 = Method
Text Symbol: 001 = Created
INCLUDE RNDATA00.
No SAP DATABASE tables are accessed within this REPORT code!
SEO_CLASS_TYPEINFO_GET CALL FUNCTION 'SEO_CLASS_TYPEINFO_GET' EXPORTING clskey = ls_cls IMPORTING class = ls_class attributes = lt_attributes methods = lt_methods events = lt_events types = lt_types PARAMETERS = lt_parameters exceps = lt_exceps implementings = lt_implementings inheritance = ls_inheritance redefinitions = lt_redefinitions impl_details = lt_impl_details friendships = lt_friendships typepusages = lt_typepusages clsdeferrds = lt_clsdeferrds intdeferrds = lt_intdeferrds explore_inheritance = lt_explore_inheritances explore_implementings = lt_explore_implementings aliases = lt_aliases EXCEPTIONS not_existing = 1 is_interface = 2 model_only = 3 OTHERS = 4.
SEO_CLASS_CREATE_F_DATA CALL FUNCTION 'SEO_CLASS_CREATE_F_DATA' CHANGING class = ls_class EXCEPTIONS existing = 1 is_interface = 2 not_created = 3 db_error = 4 OTHERS = 5.
SEO_CLASS_TYPEINFO_GET CALL FUNCTION 'SEO_CLASS_TYPEINFO_GET' EXPORTING clskey = ls_cls IMPORTING class = ls_class attributes = lt_attributes methods = lt_methods events = lt_events types = lt_types PARAMETERS = lt_parameters exceps = lt_exceps implementings = lt_implementings inheritance = ls_inheritance redefinitions = lt_redefinitions impl_details = lt_impl_details friendships = lt_friendships typepusages = lt_typepusages clsdeferrds = lt_clsdeferrds intdeferrds = lt_intdeferrds explore_inheritance = lt_explore_inheritances explore_implementings = lt_explore_implementings aliases = lt_aliases EXCEPTIONS not_existing = 1 is_interface = 2 model_only = 3 OTHERS = 4.
SEO_INHERITANC_CREATE_F_DATA CALL FUNCTION 'SEO_INHERITANC_CREATE_F_DATA' CHANGING inheritance = ls_inheritance EXCEPTIONS existing = 1 is_comprising = 2 is_implementing = 3 recursion = 4 not_created = 5 db_error = 6 OTHERS = 7.
SEO_IMPLEMENTG_CREATE_F_DATA CALL FUNCTION 'SEO_IMPLEMENTG_CREATE_F_DATA' CHANGING implementing = ls_implementing EXCEPTIONS existing = 1 is_inheritance = 2 is_comprising = 3 not_created = 4 db_error = 5 OTHERS = 6.
SEO_METHOD_CREATE_F_DATA CALL FUNCTION 'SEO_METHOD_CREATE_F_DATA' CHANGING method = ls_method EXCEPTIONS existing = 1 is_event = 2 is_type = 3 is_attribute = 4 not_created = 5 db_error = 6 OTHERS = 7.
SEO_PARAMETER_CREATE_F_DATA CALL FUNCTION 'SEO_PARAMETER_CREATE_F_DATA' CHANGING parameter = ls_parameter EXCEPTIONS existing = 1 is_exception = 2 not_created = 3 db_error = 4 component_not_existing = 5 OTHERS = 6.
SEO_ATTRIBUTE_CREATE_F_DATA CALL FUNCTION 'SEO_ATTRIBUTE_CREATE_F_DATA' CHANGING attribute = ls_attribute EXCEPTIONS existing = 1 is_method = 2 is_event = 3 is_type = 4 not_created = 5 db_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.
RN1SEOCREATE - Create Methods/Parameters/Attributes RN1SEOCREATE - Create Methods/Parameters/Attributes RN1SBMJB - Job Control for Batch Input Data Transfer RN1SBMJB - Job Control for Batch Input Data Transfer RN1SAPSCRIPT - Program for Technical Use of SAPScript Texts RN1SAPSCRIPT - Program for Technical Use of SAPScript Texts