Application Development 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: 

Top of Page issue ..

Former Member
0 Kudos

Hi all,

I am having a starnge requiremnet from the client side . They want the Top of Page Text at the right hand side I dont know its possible but then if somebody has some suggestion or some way please help me out for the same.

Thanks in advance

Regards

Shankar

1 ACCEPTED SOLUTION

former_member188685
Active Contributor
0 Kudos

is it a normal report, or ALV report..?

5 REPLIES 5

former_member585060
Active Contributor
0 Kudos

Hi,

Just specify the position of the text you are printing.

TOP-OF-PAGE

WRITE 😕 55 'HELLO'.

Regards

Bala Krishna

former_member188685
Active Contributor
0 Kudos

is it a normal report, or ALV report..?

0 Kudos

Its an ALV report

0 Kudos

then check this weblog for Grid function

for ALV OO check this weblog

former_member585060
Active Contributor
0 Kudos

Hi,

Just before the variable to get displaced use

ALT+255 for space

_______________________________________________________

FORM SUB_COMMENT_BUILD USING I_TOP_OF_PAGE TYPE SLIS_T_LISTHEADER.

DATA: LS_LINE TYPE SLIS_LISTHEADER.

DATA : W1(30) TYPE C.

DATA : LV_VENDOR(20) TYPE C VALUE 'Vendor :',

CLEAR LS_LINE.

CONCATENATE 'vendor : ' 'Alt +255' 'Lifnr1' into l_list.

LS_LINE-TYP = 'S'.

LS_LINE-INFO = L_LIST.

APPEND LS_LINE TO I_TOP_OF_PAGE.

-


use 20 to 30 times Alt+255 so that it gets enough space to move right.

Regards

Bala Krishna