‎2008 May 06 6:23 AM
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
‎2008 May 06 6:34 AM
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
‎2008 May 06 6:34 AM
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