最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

sorting - SORT Issue in SAP ABAP - Stack Overflow

programmeradmin2浏览0评论

Even though I am sorting the internal table LT_DATA by the FKDAT field, the POSNR field is still being sorted in an unexpected order. For example, in the original data of the internal table, POSNR value '1' appears first, followed by POSNR value '2'. However, after sorting by FKDAT, the order of POSNR changes as well, which I didn’t expect. Please refer to the highlighted section of the image for clarification.

I'm trying to understand the internal logic behind how the sorting is being handled.

When I modify the code to: SORT lt_data BY fkdat vbeln posnr.

I get the desired output.

Can you help explain why POSNR is being sorted in the first case, and how the sorting logic works internally?

TYPES: BEGIN OF lty_data,
         fkdat TYPE vbrk-fkdat,
         vbeln TYPE vbrk-vbeln,
         posnr TYPE vbrp-posnr,
       END OF lty_data.`

DATA: lt_data TYPE STANDARD TABLE OF lty_data.


lt_data = VALUE #( ( vbeln = '1203002977' posnr = '000001' fkdat = '20240407' )
                   ( vbeln = '1203002977' posnr = '000002' fkdat = '20240407' )
                   ( vbeln = '1203002977' posnr = '000003' fkdat = '20240407' )
                   ( vbeln = '1203002977' posnr = '000004' fkdat = '20240407' )
                   ( vbeln = '1203003080' posnr = '000001' fkdat = '20240515' )
                   ( vbeln = '1203003080' posnr = '000002' fkdat = '20240515' )
                   ( vbeln = '1203003080' posnr = '000003' fkdat = '20240515' )
                   ( vbeln = '1203003080' posnr = '000004' fkdat = '20240515' )

                   ( vbeln = '1205010163' posnr = '000001' fkdat = '20240406' )
                   ( vbeln = '1205010163' posnr = '000002' fkdat = '20240406' )

                   ( vbeln = '1205010254' posnr = '000001' fkdat = '20240424' )
                   ( vbeln = '1205010254' posnr = '000002' fkdat = '20240424' )
                   ( vbeln = '1205010254' posnr = '000003' fkdat = '20240424' )
                   ( vbeln = '1301012394' posnr = '000001' fkdat = '20240429' )
                   ( vbeln = '1301012394' posnr = '000002' fkdat = '20240429' )
                   ( vbeln = '1323000956' posnr = '000001' fkdat = '20240510' )
                   ( vbeln = '1323000956' posnr = '000002' fkdat = '20240510' )
                   ( vbeln = '1323000967' posnr = '000001' fkdat = '20240513' )
                   ( vbeln = '1323000967' posnr = '000002' fkdat = '20240513' )
                   ( vbeln = '1323000982' posnr = '000003' fkdat = '20240516' )
                   ( vbeln = '1323000982' posnr = '000004' fkdat = '20240516' )
                   ( vbeln = '1323000982' posnr = '000005' fkdat = '20240516' )
                   ( vbeln = '1323001014' posnr = '000001' fkdat = '20240527' )
                   ( vbeln = '1323001025' posnr = '000001' fkdat = '20240606' ) ).

SORT lt_data BY fkdat.

Output:

Even though I am sorting the internal table LT_DATA by the FKDAT field, the POSNR field is still being sorted in an unexpected order. For example, in the original data of the internal table, POSNR value '1' appears first, followed by POSNR value '2'. However, after sorting by FKDAT, the order of POSNR changes as well, which I didn’t expect. Please refer to the highlighted section of the image for clarification.

I'm trying to understand the internal logic behind how the sorting is being handled.

When I modify the code to: SORT lt_data BY fkdat vbeln posnr.

I get the desired output.

Can you help explain why POSNR is being sorted in the first case, and how the sorting logic works internally?

TYPES: BEGIN OF lty_data,
         fkdat TYPE vbrk-fkdat,
         vbeln TYPE vbrk-vbeln,
         posnr TYPE vbrp-posnr,
       END OF lty_data.`

DATA: lt_data TYPE STANDARD TABLE OF lty_data.


lt_data = VALUE #( ( vbeln = '1203002977' posnr = '000001' fkdat = '20240407' )
                   ( vbeln = '1203002977' posnr = '000002' fkdat = '20240407' )
                   ( vbeln = '1203002977' posnr = '000003' fkdat = '20240407' )
                   ( vbeln = '1203002977' posnr = '000004' fkdat = '20240407' )
                   ( vbeln = '1203003080' posnr = '000001' fkdat = '20240515' )
                   ( vbeln = '1203003080' posnr = '000002' fkdat = '20240515' )
                   ( vbeln = '1203003080' posnr = '000003' fkdat = '20240515' )
                   ( vbeln = '1203003080' posnr = '000004' fkdat = '20240515' )

                   ( vbeln = '1205010163' posnr = '000001' fkdat = '20240406' )
                   ( vbeln = '1205010163' posnr = '000002' fkdat = '20240406' )

                   ( vbeln = '1205010254' posnr = '000001' fkdat = '20240424' )
                   ( vbeln = '1205010254' posnr = '000002' fkdat = '20240424' )
                   ( vbeln = '1205010254' posnr = '000003' fkdat = '20240424' )
                   ( vbeln = '1301012394' posnr = '000001' fkdat = '20240429' )
                   ( vbeln = '1301012394' posnr = '000002' fkdat = '20240429' )
                   ( vbeln = '1323000956' posnr = '000001' fkdat = '20240510' )
                   ( vbeln = '1323000956' posnr = '000002' fkdat = '20240510' )
                   ( vbeln = '1323000967' posnr = '000001' fkdat = '20240513' )
                   ( vbeln = '1323000967' posnr = '000002' fkdat = '20240513' )
                   ( vbeln = '1323000982' posnr = '000003' fkdat = '20240516' )
                   ( vbeln = '1323000982' posnr = '000004' fkdat = '20240516' )
                   ( vbeln = '1323000982' posnr = '000005' fkdat = '20240516' )
                   ( vbeln = '1323001014' posnr = '000001' fkdat = '20240527' )
                   ( vbeln = '1323001025' posnr = '000001' fkdat = '20240606' ) ).

SORT lt_data BY fkdat.

Output:

Share Improve this question edited Apr 1 at 19:15 Sandra Rossi 13.8k6 gold badges25 silver badges56 bronze badges asked Apr 1 at 5:11 Prabhand ReddyPrabhand Reddy 754 bronze badges 1
  • As already answered, sorting is "unstable" by default. Avoid using the word STABLE if one column can be used to order the lines, because it's always best to be explicit in the code. Also, I would recommend using SORTED or HASHED tables instead of STANDARD, hence no SORT needed anymore. – Sandra Rossi Commented Apr 2 at 11:02
Add a comment  | 

2 Answers 2

Reset to default 3

https://help.sap/doc/abapdocu_752_index_htm/7.52/en-US/abapsort_itab.htm

What you miss:

"Sorting is unstable by default, which means that the relative order of rows that do not have different sort keys is not preserved when they are sorted. The order can be different depending on the platform or when sorted multiple times."

This simply means, if you sort by one field only (fkdat), the rest will be random and could vary.

Sorting isn't stable by default. But you can use the STABLE addition.
This should work:

SORT lt_data STABLE BY fkdat.
发布评论

评论列表(0)

  1. 暂无评论