Dynamic Internal Table Creation using RTTS
Shows how to use the RTTS to create a dynamic internal table. Lets Checkout how we can create internal table at run time using RTTS. From the ABAP release 6.40, SAP has provided RTTS – Run Time Type...
View ArticleDynamic Internal Table with Deep structure
We have seen how we can use Run Time Type Services (RTTS) to create a dynamic internal table in the post: . On the other day, after publishing the post , I was thinking how I can apply these color...
View ArticleDynamic Internal Table Creation using class CL_ALV_TABLE_CREATE
Describes how to show the Dynamic Internal Table Creation using class CL_ALV_TABLE_CREATE In the post and , we have seen how we can use the RTTS – Run Time Type Services to create dynamic internal...
View ArticleDynamic Internal Table
Describes a way to create a dynamic internal table from coding. This is also can be used when RTTS is not supported or class CL_ALV_TABLE_CREATE is not available. You can find all Dynamic ITAB...
View ArticleGenerate Subroutine Pool – Best way to concatenate Dynamic Internal table
Generate Subroutine Pool is a very strong statement when used properly. The code snippet here shows how to use ABAP Generate Subroutine pool to concatenate dynamic table field content. Quite few time...
View ArticleDynamic ITAB migration from create_dynamic_table to RTTS
RTTS is around for years in ABAP now. Code Snippet to generate Dynamic Internal Table using RTTS which was previously developed using Field Catalog. RTTS is available from release 640 but many...
View ArticleABAP RTTS – Get Type of an Attribute from Class
Code snippet to demonstrate the use of ABAP RTTS Runtime Type Services to get type of an Attribute available in the class. Preface RTTS is very powerful for dynamic programming. This code snippet, lets...
View Article