Sort statement?
Answers were Sorted based on User's Feedback
Answer / sameer
yep its correct its is used for sorting internal table.
synatx :
SORT <itab> by <field> Ascending/descending.
Is This Answer Correct ? | 2 Yes | 0 No |
This statement sorts an internal table itab. As standard,
numeric and byte-type components are sorted by their value
and character-type components according to their binary
representation code page). Textual sorting of character-
type components is performed using the addition AS TEXT.
Syntax
SORT itab [STABLE]
{ { [ASCENDING|DESCENDING]
[AS TEXT]
[BY {comp1 [ASCENDING|DESCENDING] [AS TEXT]}
{comp2 [ASCENDING|DESCENDING] [AS TEXT]}
... ] }
| { [BY (otab)] } }.
Thank's and Regards,
Shreeshail Diggi
SAP Technical Consultant Infinite India
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / amrit
Shreeshail may or may not have good knowledge. bcoz he/she only does copy n paste works. That's really not good for career improvement.
ans should be simple n short.
SORT <itab> by <field> Ascending/descending.
Is This Answer Correct ? | 1 Yes | 0 No |
What are your ways to performance optimization?
What is a transaction variant and why are they used?
How to Modify the standard invoice and sales order form to generate purchase order for printing and upload the company logo. plz mention the detail coding Tahnks, Rahul
how to add a field to existing TMG with out deleting that TMG. tmg over riding techinique.
What is the step by step process to create a table in data dictionary?
Explain the difference between domain and data element?
What is the transaction code to display the payroll results
Define subtype ? : abap hr
Modes in Call Transaction?
Update function modules are classified as either v1 or v2. Which type of update is performed first and in what mode (asynchronously, synchronously or locally) can each type be processed in?
loop at itab. IF <cond>. Continue. Endif. Endloop. If continue triggers what will happen, it comes out of loop and endloop for further loop pass or just comes out of IF and Endif.
Program for Prime numbers and Matrix plz explain me the procedural method with steps