Hi,
We need to order a BEX query by Invoice and Ascending Position (we need to see first the empty position #).
The type of the infoObject "Position" is NUMC (6).
We tried to convert it to char, but it didn't work.
We also ordered the query by position ascending, but the result we obtained is:
Invoice | Position | Material | Quantity |
1 | 1 | 930100 | 20 |
1 | 2 | 930200 | 30 |
1 | # | 50 | |
2 | 1 | 930200 | 70 |
2 | # | 70 | |
3 | 1 | 930200 | 35 |
3 | 2 | 930100 | 25 |
3 | # | 60 |
We need to obtain this result:
Invoice | Position | Material | Quantity |
1 | # | 50 | |
1 | 1 | 930100 | 20 |
1 | 2 | 930200 | 30 |
2 | # | 70 | |
2 | 1 | 930200 | 70 |
3 | # | 60 | |
3 | 1 | 930200 | 35 |
3 | 2 | 930100 | 25 |
Any ideas?
Thanks in advance,
Florencia