Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

slis

Former Member
0 Likes
634

what are the functions of these events and how to use these.

SLIS

SLIS_T_FIELDCAT_ALV

SLIS_FIELDCAT_ALV

SLIS_T_EVENT

SLIS_ALV_EVENT

SLIS-SELFIELD

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
608

Hi Madhav,

<b>SLIS</b> is a <b>type group</b>. Basically a type group contains datatypes and constants. Since the <b>type group</b> is present in the Dictionary, it can be used in any program to declare variables or constants based on the datatypes present in the Type Group.

One more point here to note is every datatype or constant of a perticular Type Group has its ( type group ) name in the beginning followed by a _ (underscore) in the beginning. Thats why you will find all the datatypes in SLIS, starting with SLIS_ .

One more point is, if you want to declare a variable in the program, using the Type group's datatype, then in your program you need to use <b>TYPE-POOLS</b> statement.

ex: TYPE-POOLS SLIS.

Regards,

Abdul

P.S: Mark Points, if useful.

3 REPLIES 3
Read only

Former Member
0 Likes
608

hi,

SLIS: is a type group (pool of predefined data types)

rest of them are all the data types in slis

1) SLIS_T_FIELDCAT_ALV is used to build a fieldcatalog which will be list of fields to be displayed in alv.

2) is the structure

3) to build events table in alvs

4) str for the above

5) is useful in usercommand

santhosh

Read only

anversha_s
Active Contributor
0 Likes
608

hi,

SLIS----


> Its nothing but abap code,

where some bunch of

TYPES (data types) and some data declaration,

is already done.

(which we can use in other programs)

SLIS_T_FIELDCAT_ALV --> field catalog internal table

SLIS_FIELDCAT_ALV --> structure of field catlog

SLIS_T_EVENT ---> capture the events inside the ALV

SLIS_ALV_EVENT ---> event structure

SLIS-SELFIELD -


> will capture the selected field in a row.

for sample programs..

chk this link.

http://www.sapdevelopment.co.uk/reporting/alv/alvgrid.htm

you will get good idea

regards

Anver

Read only

Former Member
0 Likes
609

Hi Madhav,

<b>SLIS</b> is a <b>type group</b>. Basically a type group contains datatypes and constants. Since the <b>type group</b> is present in the Dictionary, it can be used in any program to declare variables or constants based on the datatypes present in the Type Group.

One more point here to note is every datatype or constant of a perticular Type Group has its ( type group ) name in the beginning followed by a _ (underscore) in the beginning. Thats why you will find all the datatypes in SLIS, starting with SLIS_ .

One more point is, if you want to declare a variable in the program, using the Type group's datatype, then in your program you need to use <b>TYPE-POOLS</b> statement.

ex: TYPE-POOLS SLIS.

Regards,

Abdul

P.S: Mark Points, if useful.