Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

in the final display list how can i change rows to columns
and vice versa

Answer Posted / vrushali

This is possible using dynamic internal table.
Declaration
DATA : IFCAT_TAB TYPE LVC_T_FCAT,
FCAT_TAB TYPE LVC_S_FCAT.

DATA : TLINS TYPE I.

FIELD-SYMBOLS : <LIST> TYPE TABLE, <L_LINE> TYPE ANY.
FIELD-SYMBOLS : <FVAL> TYPE ANY, <FPOV> TYPE ANY,
<TFVAL> TYPE ANY.

DATA : IDATA TYPE REF TO DATA,
NEW_LINE TYPE REF TO DATA.

LOOP AT ALV_FLDCAT_T INTO ALV_FLDCAT.
MOVE-CORRESPONDING ALV_FLDCAT TO FCAT_TAB.
APPEND FCAT_TAB TO IFCAT_TAB.
ENDLOOP.

After creating normal alv field catalogue we can add rows
info as column....

DELETE ADJACENT DUPLICATES FROM IFCAT_TAB COMPARING
FIELDNAME.

SORT IFCAT_TAB BY COL_POS ASCENDING. "FIELDNAME

CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
EXPORTING
IT_FIELDCATALOG = IFCAT_TAB
IMPORTING
EP_TABLE = IDATA.

ASSIGN IDATA->* TO <LIST>.

CREATE DATA NEW_LINE LIKE LINE OF <LIST>.

ASSIGN NEW_LINE->* TO <L_LINE>.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the role of ‘refresh’ in internal table?

1100


What is PS structure

2241


What is the table buffer?

1071


What is the abap program name to process the batch input session automatically? : abap bdc

1303


10) How to get Item Header in Sales Order?

2064


Business scenarios related to your objects( In my case -Rulebook and Pricing work flow)

1348


What are multiple use BADIS?

1540


What is the client concept in sap?

1159


What is the different between abap and ooabap? Why do we use ooabap?

1233


Differentiate between transparent tables, cluster tables and pooled tables

1166


What are the different types of view?

1177


What is the purpose of sum statement?

1049


What are the layers of data description in r/3? : abap data dictionary

1170


Interactive Report that list purchase order details of a vendor. When the user double clicks on material number it shows detail list with fields matkl, meins, brgew, ntgew, gewei.The selection screen consist of sales organisation, distribution channel and material number. plz mention the detail coding Tahnks, Rahul

3741


What is the project you are currently working and work that you are doing

1581