2009 Feb 24 4:18 AM
Hi experts,
How to change columns to rows and row to columns in executable program . Any function modules(se 37)
or any class(se24) are there please give me suggestions.
Thank you,
dinesh reddy.
Hi experts,
How to change columns to rows and row to columns in executable program . Any function modules(se 37)
or any class(se24) are there please give me suggestions.
Thank you,
dinesh reddy.
2009 Feb 24 4:24 AM
Hi:
Through the ABAP coding, you can do as you want.
Regards
Shashi
2009 Feb 24 4:26 AM
2009 Feb 24 4:28 AM
Hi Dude,
If the rows and coloums are fixed then you have to write a code to change the rows and coloums ...
If you dont know the number of rows you are going to get then you need to use field symbols and create the dynamic table and by using this you can handle this...
2009 Feb 24 4:28 AM
Hi,
Use this FM in your ABAP code
CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
EXPORTING
FILENAME = 'c:/test_data.xls'
I_BEGIN_COL = '1'
I_BEGIN_ROW = '1'
I_END_COL = '10'
I_END_ROW = '10'
TABLES
INTERN = it_tab
EXCEPTIONS
INCONSISTENT_PARAMETERS = 1
UPLOAD_OLE = 2
OTHERS = 3
.
Regards,
Jyothi CH.
2009 Feb 24 4:30 AM
2009 Feb 24 4:30 AM
Hi,
Try like this.
Select the data.
Right click, Copy
Right click, Paste Special, Transpose.
Thanks,
Neelima.
2010 Mar 15 9:42 AM
2010 Mar 15 9:42 AM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |