‎2007 Feb 07 11:44 PM
Hi All,
I have a requirement to sort a internal table like below. Only the last 2 fields as descending. But when I check in debug it is not working. What is wrong in this syntax.
SORT i_conterms BY oicontnr posnr vkorg kunag kunwe werks matnr
ascending season_effdate season_expdate descending.
Thanks in advance for all your help.
Regards,
Chandra Kumar
‎2007 Feb 07 11:54 PM
Hi,
Try changing it like this:
SORT i_conterms BY oicontnr posnr vkorg kunag kunwe werks matnr
ascending
season_effdate <b>descending </b>
season_expdate <b>descending</b>.
regards
Subramanian
‎2007 Feb 07 11:54 PM
Hi,
Try changing it like this:
SORT i_conterms BY oicontnr posnr vkorg kunag kunwe werks matnr
ascending
season_effdate <b>descending </b>
season_expdate <b>descending</b>.
regards
Subramanian
‎2007 Feb 08 12:08 AM
Hi
You can also try descending fields frst then ascending fields
SORT i_conterms BY season_effdate season_expdate descending
oicontnr posnr vkorg kunag kunwe werks matnr
ascending.
Please mark Useful Answers
‎2007 Feb 08 12:22 AM
If not you can just give by this also.
sort I_CONTERMS by season_effdate season_expdate <b>descending</b>.
Regards
Gopi