Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Adding custom columns in standard report RWBE

mcdear1968
Discoverer
0 Kudos
504

hi ,

I need to add a column to the report of RWBE transaction but did not find userexit to do this. Does anyone know a way to fix this?

Thank's

1 ACCEPTED SOLUTION

former_member196331
Active Contributor
0 Kudos
126

hi,

I checked it,

I hope little bit difficult,

Some report they use, List_display, Grid_display. In this they are using print for displaying the Data.

Columns are fixed int the program. They are not taking from any table. In case list display option in the program.

Program Name: RWBE1F03

In the above the below line You can check it. How they are displaying the Data.

FORMAT COLOR COL_KEY INTESIFIED.

In case Tree structure .Field Catalog also No of columns in program fixed

Program Name: RWBE1F09

In the above program You can check the below line how they add the number of columns.

PERFORM build_fieldcat USING p_kzlgo.

After adding the Columns then

Program Name: RWBE1F09
They use the Container.
Check the line::: L_CUSTOM_CONTAINER

1 REPLY 1

former_member196331
Active Contributor
0 Kudos
127

hi,

I checked it,

I hope little bit difficult,

Some report they use, List_display, Grid_display. In this they are using print for displaying the Data.

Columns are fixed int the program. They are not taking from any table. In case list display option in the program.

Program Name: RWBE1F03

In the above the below line You can check it. How they are displaying the Data.

FORMAT COLOR COL_KEY INTESIFIED.

In case Tree structure .Field Catalog also No of columns in program fixed

Program Name: RWBE1F09

In the above program You can check the below line how they add the number of columns.

PERFORM build_fieldcat USING p_kzlgo.

After adding the Columns then

Program Name: RWBE1F09
They use the Container.
Check the line::: L_CUSTOM_CONTAINER