Hi,
Iam using the below code in PBO of the maintanence screen
PROCESS BEFORE OUTPUT.
MODULE LISTE_INITIALISIEREN.
MODULE sort . ---------------------------------->custom module created by me
In the above sort module iam using below code to sort
MODULE SORT.
DATA : IT_PVFTMAP LIKE ZHRPYT_PVFTMAP OCCURS 1 WITH HEADER LINE .
IT_PVFTMAP[] = TOTAL[].
SORT IT_PVFTMAP BY ZPERIOD+0(2) ZPERIOD+2(4)."F1 F2 F3.
TOTAL[] = EXTRACT[].
EXTRACT[] = TOTAL[].
ENDMODULE.
Any one could you please help me in sorting the TOTAL[] or EXTRACT[] in table maintanence.