Application Development and Automation 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: 
Read only

single field

Former Member
0 Likes
467

Hi all,

like here we disply all the table contents so if we want to display only a single perticular field then what to do other than write optn. like using any function module..?

thanxxx

CALL FUNCTION 'HR_IT_SHOW_ANY_TABLE_ON_ALV'

TABLES

table = ntab.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
441

So you mean instead of printing the entire internal table, you have to print one field.

Create a new internal table and copy the required field to that and give the new internal table to function.

2 REPLIES 2
Read only

Former Member
0 Likes
442

So you mean instead of printing the entire internal table, you have to print one field.

Create a new internal table and copy the required field to that and give the new internal table to function.

Read only

Former Member
0 Likes
441

OK