‎2007 Jan 28 9:08 AM
Hi all,
my problem is how to do alignment on oop's alv In top of page .
this is display in my report program .
Report Id : YIBRK_BACO_VALIDATION
User Name : KPALETI
Date and Time : 28 . 01 . 2007 -- 10 : 05 . 56
Transaction Type :
For Period : .
GIN Number : 00000000
Country Grouping :
Status :
Plan Type :
Plan :
but i want alignment(like this).
Report Id : YIBRK_BACO_VALIDATION
User Name : KPALETI
Date and Time : 28 . 01 . 2007 -- 10 : 05 . 56
Transaction Type :
For Period : .
GIN Number : 00000000
Country Grouping :
Status :
Plan Type :
Plan :
it's urgent plz.
Regards,
kk.
‎2007 Jan 28 9:10 AM
hi the declaration for the top of page goes like this, followed by FORM TOP where u need to write your statements, I have written the code for some part of it, rest depends on the paremeters in your program
Dont forget to mark helpful answers.
DATA: WA_EVENTS TYPE SLIS_ALV_EVENT,
IT_EVENTS TYPE SLIS_T_EVENT.
WA_EVENTS-NAME = 'TOP_OF_PAGE'.
WA_EVENTS-FORM = 'TOP'.
APPEND WA_EVENTS TO IT_EVENTS.
CLEAR WA_EVENTS.
FORM TOP.
WRITE:/ 'Report Id :', SY-REPID.
WRITE:/ 'User Name : ', SY-UNAME.
WRITE:/ 'Date and Time : ', SY-DATUM, ' -- ' , SY-UZEIT.
WRITE:/ 'For Period : .', P_PERIOD.
ENDFORM.
‎2007 Jan 28 9:15 AM
hi rahul ,
this is doing in normal alv.
but i want to do oop's alv .allready o/p is comeing but its alignment.
thanks .
kk.
‎2007 Jan 28 12:39 PM
Hi paleti,
see my answer in your second posting.
Pleas close one of the two threads, thank you.
Regards,
Clemens