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: 

to reduce the size of each row in an interanal table

Former Member
0 Kudos

Hi

my internal table is taking 255 characters of data for each record

I need to pass only 80 characters of data remaining characters dont want display and dont want to occupy the space also.

i cant change at internal table decleration level.

so is there any other way ??

any way at the time of appending

or

at the time of passing data to work area

accept any kind of inputs

Regards

2 REPLIES 2

former_member585060
Active Contributor
0 Kudos

Declare a table with reduced structure and use, MOVE-CORRESPONDING statement to move all the data from that table.

Former Member
0 Kudos

Hello,

I understand that you require only few of the Characters to be displayed / passed to the Internal Table. So, here is what I think.

Specify the Offset. Append wa_tab-field+0(80) to ITAB so that only required number of characterstics are appended / displayed.

Thanks and Regards,

Venkat Phani Prasad Konduri