{"id":1660,"date":"2019-09-11T11:47:41","date_gmt":"2019-09-11T10:47:41","guid":{"rendered":"http:\/\/oprsteny.cz\/?p=1660"},"modified":"2019-09-11T11:47:41","modified_gmt":"2019-09-11T10:47:41","slug":"abap-get-all-sub-classes-of-a-super-class","status":"publish","type":"post","link":"https:\/\/oprsteny.cz\/?p=1660","title":{"rendered":"ABAP &#8211; Get all sub-classes of a super-class"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" data-attachment-id=\"358\" data-permalink=\"https:\/\/oprsteny.cz\/?attachment_id=358\" data-orig-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/SAP.jpg\" data-orig-size=\"44,50\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Picasa&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1365690880&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}\" data-image-title=\"SAP\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/SAP.jpg\" class=\"alignnone size-full wp-image-358 alignleft\" src=\"http:\/\/oprsteny.cz\/wp-content\/uploads\/SAP.jpg\" alt=\"\" width=\"44\" height=\"50\" \/>If you ever need to get a super class or all (global) sub-classes of a given ABAP (global) class, you can use the following approach<!--more--><br \/>\nUsing the following code you can get all details about a global class you need during runtime<\/p>\n<pre lang=\"abap\">DATA:\n  go_instance   TYPE REF TO cl_oo_class.\nCONSTANTS:\n  co_class_name TYPE seoclsname VALUE 'CL_OO_CLASS'.\n\ngo_instance ?= cl_oo_class=&gt;get_instance( co_class_name ).\n\nDATA(lt_subclasses) = go_instance-&gt;get_subclasses( ).\nLOOP AT lt_subclasses ASSIGNING FIELD-SYMBOL(&lt;ls_subclass&gt;).\n  WRITE:\/ &lt;ls_subclass&gt;-refclsname, AT 35 &lt;ls_subclass&gt;-clsname.\nENDLOOP.<\/pre>\n<div id=\"attachment_1661\" style=\"width: 406px\" class=\"wp-caption alignnone\"><a href=\"http:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_01.png\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-1661\" data-attachment-id=\"1661\" data-permalink=\"https:\/\/oprsteny.cz\/?attachment_id=1661\" data-orig-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_01.png\" data-orig-size=\"396,144\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Program result\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_01.png\" class=\"wp-image-1661 size-full\" src=\"http:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_01.png\" alt=\"\" width=\"396\" height=\"144\" srcset=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_01.png 396w, https:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_01-300x109.png 300w\" sizes=\"auto, (max-width: 396px) 100vw, 396px\" \/><\/a><p id=\"caption-attachment-1661\" class=\"wp-caption-text\">Program result<\/p><\/div>\n<p>Using this awesome <em>CL_OO_CLASS<\/em> class you can get also much more detailed info about a specific class:<\/p>\n<div id=\"attachment_1662\" style=\"width: 819px\" class=\"wp-caption alignleft\"><a href=\"http:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_02.png\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-1662\" data-attachment-id=\"1662\" data-permalink=\"https:\/\/oprsteny.cz\/?attachment_id=1662\" data-orig-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_02.png\" data-orig-size=\"809,588\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Methods of CL_OO_CLASS\" data-image-description=\"\" data-image-caption=\"&lt;p&gt;Methods of CL_OO_CLASS&lt;\/p&gt;\n\" data-large-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_02.png\" class=\"size-full wp-image-1662\" src=\"http:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_02.png\" alt=\"\" width=\"809\" height=\"588\" srcset=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_02.png 809w, https:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_02-300x218.png 300w, https:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_02-768x558.png 768w, https:\/\/oprsteny.cz\/wp-content\/uploads\/CL_OO_CLASS_02-413x300.png 413w\" sizes=\"auto, (max-width: 809px) 100vw, 809px\" \/><\/a><p id=\"caption-attachment-1662\" class=\"wp-caption-text\">Methods of CL_OO_CLASS<\/p><\/div>\n","protected":false},"excerpt":{"rendered":"<p>If you ever need to get a super class or all (global) sub-classes of a given ABAP (global) class, you can use the following approach<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[16,9,389],"tags":[221,17],"class_list":["post-1660","post","type-post","status-publish","format-standard","hentry","category-abap","category-development","category-sap","tag-oo-abap","tag-sap"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p3nYbe-qM","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/posts\/1660","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1660"}],"version-history":[{"count":3,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/posts\/1660\/revisions"}],"predecessor-version":[{"id":1710,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/posts\/1660\/revisions\/1710"}],"wp:attachment":[{"href":"https:\/\/oprsteny.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1660"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1660"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1660"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}