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

sorting view

Former Member
0 Likes
332

hi all,

I have help view for a search help.

I want to display the list values sorted by a column.

Is there any method to do it in help view/search help?

regards

Jose

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
307

HI,

you can do this over the user-exit in the search-help.

SE11

e.g.

itab_vmvaa[] = record_tab[] .

SORT itab_vmvaa BY vbeln posnr.

DELETE ADJACENT DUPLICATES FROM itab_vmvaa COMPARING vbeln posnr.

SORT itab_vmvaa BY vbeln posnr.

CLEAR record_tab[].

record_tab[] = itab_vmvaa[] .

Points if helpfull, pls

Nicole

Edited by: Nicole Lorenz on May 6, 2008 1:35 AM

Edited by: Nicole Lorenz on May 6, 2008 1:35 AM

1 REPLY 1
Read only

Former Member
0 Likes
308

HI,

you can do this over the user-exit in the search-help.

SE11

e.g.

itab_vmvaa[] = record_tab[] .

SORT itab_vmvaa BY vbeln posnr.

DELETE ADJACENT DUPLICATES FROM itab_vmvaa COMPARING vbeln posnr.

SORT itab_vmvaa BY vbeln posnr.

CLEAR record_tab[].

record_tab[] = itab_vmvaa[] .

Points if helpfull, pls

Nicole

Edited by: Nicole Lorenz on May 6, 2008 1:35 AM

Edited by: Nicole Lorenz on May 6, 2008 1:35 AM