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

interactive report

Former Member
0 Likes
934

hi,

is it possible to insert a different page heading for each interactive report then how to do it. is it possible in smartforms?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
889

Hi

What does it mean "for each interactive report"?

You can manage the page heading by the event TOP-OF-PAGE and TOP-OF-PAGE DURING LINE-SELECTION, so you can decide what has to be listed.

In smartform you can insert different TOP window for each page.

Max

8 REPLIES 8
Read only

Former Member
0 Likes
889

You will have to use event - TOP-OF-PAGE-DURING-LINESELECTION to insert a different page heading for each interactive report.

with regards,

nelson

Read only

Former Member
0 Likes
890

Hi

What does it mean "for each interactive report"?

You can manage the page heading by the event TOP-OF-PAGE and TOP-OF-PAGE DURING LINE-SELECTION, so you can decide what has to be listed.

In smartform you can insert different TOP window for each page.

Max

Read only

0 Likes
889

hi thanks max,

can u give me a sample code for this method

thanks,

kiran....

Read only

0 Likes
889

Hi

TOP-OF-PAGE.

WRITE: 'First Page'.

TOP-OF-PAGE DURING LINE-SELECTION.

CASE SY-LSIND.

WHEN 1. WRITE: 'Hello'.

WHEN 2. WRITE: 'Bye Bye'.

.............

ENDCASE.

Max

Read only

Former Member
0 Likes
889

Hi kiran,

1. Using the top-of-page command during line-selection, you can have a different heading for each different page.

2. Yes it is possible for smart form too.

for each new page you will enter the different header.

Regards,

Kunal.

Read only

Former Member
0 Likes
889

HI

I DONT THINK THAT IT IS POSSIBLE TO HAVE DIFFERENT PAGE HEADING IN EVERY SCREEN O FTHE INTERACTIVE REPORT.

YES IT IS POSSIBLE IN THE SMARTFORMS.

THANKS

MRUTYUN

Read only

Former Member
0 Likes
889

Hi

It is possiable in intractive report but i have dought in samrtform.

Here is the syntex for display diffrent heading in intractive report

if sy-lsind = '1'.

<b>top-of-page during line-selection.</b>

elseif sy-lsind = '2'.

<b>top-of-page during line-selection.</b>

endif.

this is how you can do so on till 20 detail list.

regards,

Hiren Patel

Read only

0 Likes
889

hi patel

can u explain me little more.............