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

How to do alignment

Former Member
0 Likes
458

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.

3 REPLIES 3
Read only

rahulkavuri
Active Contributor
0 Likes
426

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.

Read only

0 Likes
426

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.

Read only

0 Likes
426

Hi paleti,

see my answer in your second posting.

Pleas close one of the two threads, thank you.

Regards,

Clemens