‎2006 Nov 21 9:59 AM
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
‎2006 Nov 21 10:19 AM
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.
‎2006 Nov 21 10:02 AM
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
‎2006 Nov 21 10:03 AM
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
‎2006 Nov 21 10:19 AM
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.