0% found this document useful (0 votes)
620 views1 page

Sap Technical COM - Demo Program On Interactive ALV

This document describes a demo program that displays transaction codes from SAP in an interactive ALV (Application List Viewer) grid. The program fetches transaction code data from the SAP database table TSTC in batches of 25 records. When the user refreshes the ALV grid, it will display the next 25 records. The code includes subroutines to fetch the data, build the ALV field catalog and layout, and handle refresh events to display additional batches of records.

Uploaded by

Deepanjan Ray
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
620 views1 page

Sap Technical COM - Demo Program On Interactive ALV

This document describes a demo program that displays transaction codes from SAP in an interactive ALV (Application List Viewer) grid. The program fetches transaction code data from the SAP database table TSTC in batches of 25 records. When the user refreshes the ALV grid, it will display the next 25 records. The code includes subroutines to fetch the data, build the ALV field catalog and layout, and handle refresh events to display additional batches of records.

Uploaded by

Deepanjan Ray
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

SAPTechnical.COM - Demo program on interactiv... http://www.saptechnical.com/Tutorials/ALV/Intera...

Demo program on interactive ALV


By Swarna S, Tata Consultancy Services

*&---------------------------------------------------------------------*
*& Report z_tcoderefresh *
*& Author : Swarna.S. *
* Published at SAPTechnical.COM
*&---------------------------------------------------------------------*
*& AS : ALV report displaying all the transaction codes in SAP
*& User can click any tcode on ALV and go to the same .The ALV displays
*& first 25 records and on refreshing displays the next set
*& of 25 records and so on
*& *
*&---------------------------------------------------------------------*

REPORT zalv_tcoderefresh.

*type pools for alv declarations


TYPE-POOLS: slis.

*structure declaration for tstc table


TYPES : BEGIN OF ty_tstc,
tcode TYPE tcode,
pgmna TYPE program_id,
dypno TYPE dynpronr,
END OF ty_tstc.

* Internal table and workarea declarations for tstc


DATA: it_tstc TYPE STANDARD TABLE OF ty_tstc,
wa_tstc TYPE ty_tstc.

*data declarations for ALV


DATA: it_layout TYPE slis_layout_alv,
wa_fieldcat TYPE slis_fieldcat_alv,
it_fieldcat TYPE slis_t_fieldcat_alv,
it_eventexit TYPE slis_t_event_exit,
wa_eventexit TYPE slis_event_exit.

*initialisation event
INITIALIZATION.

*start of selection event


START-OF-SELECTION.

*subroutine to fetch data from the db table


PERFORM fetch_data.

*subroutine for output display


PERFORM alv_output.

*&---------------------------------------------------------------------*
*& Form fetch_data
*&---------------------------------------------------------------------*
* *subroutine to fetch data from the db table
*----------------------------------------------------------------------*
FORM fetch_data.

*Internal table and work area declaratin for TSTC (local tables)
DATA : lt_tstc TYPE STANDARD TABLE OF ty_tstc,
ls_tstc TYPE ty_tstc.

*Static field definition


*Reads the last tcode and stores it in l_tstc that on refresh further data
*beyond this value is fetched
STATICS l_tstc TYPE tcode.

* Selection from the tstc table


*we select till 25 rows and on further refresh next 25 are selected
*we select transactions having screen numbers only
SELECT tcode
pgmna
dypno
FROM tstc
INTO CORRESPONDING FIELDS OF TABLE lt_tstc
UP TO 25 ROWS
WHERE tcode GT l_tstc
AND dypno NE '0000'.

* Code for transferring the values of local table to output table


* for 25 rows as sy-tfill is 25.
*In case there are no records a message pops up.
IF sy-subrc EQ 0.
DESCRIBE TABLE it_tstc.
READ TABLE lt_tstc INTO ls_tstc INDEX sy-tfill.
l_tstc = ls_tstc-tcode.
it_tstc[] = lt_tstc[].
ELSE.
MESSAGE 'No Records found ' TYPE 'i'.
ENDIF.
ENDFORM. "read_data

*&---------------------------------------------------------------------*
*& Form alv_output
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
FORM alv_output.

*subroutine to refresh alv


PERFORM event_exits.
*field catalogue
PERFORM build_fieldcat.
*Layout for alv
PERFORM build_layout.
*output display
PERFORM alv_display.

ENDFORM. "alv_output

*&---------------------------------------------------------------------*
*& Form event_exits
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
*subroutine to refresh alv

FORM event_exits.

CLEAR wa_eventexit.
wa_eventexit-ucomm = '&REFRESH'. " Refresh

1 of 1 Monday 06 June 2011 08:53 AM

You might also like