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

small report with timer

Former Member
0 Likes
993

dis is a program which displays time and displays a report.

REPORT ZST3PRO36_PM no standard page heading.

data : wa type zst3_emp_attend,

itab type table of zst3_emp_attend.

select * from zst3_emp_attend into corresponding fields of table itab up to 18 rows.

GET TIME.

WRITE: /01 'Application server time:', sy-uzeit.

uline.

CALL FUNCTION 'zpraveen'

STARTING NEW TASK 'pr'

PERFORMING start_refresh ON END OF TASK.

AT USER-COMMAND.

IF sy-ucomm = 'REFR'.

sy-lsind = sy-lsind - 1.

GET TIME.

WRITE: /01 'Application server time:', sy-uzeit.

uline.

loop at itab into wa.

write 😕 wa-slno,

wa-eid,

wa-ename,

wa-edate,

wa-eastatus.

endloop.

CALL FUNCTION 'zpraveen'

STARTING NEW TASK 'IF'

PERFORMING start_refresh ON END OF TASK.

ENDIF.

FORM start_refresh USING taskname.

SET USER-COMMAND 'REFR'.

paul.

10 REPLIES 10
Read only

Former Member
0 Likes
969

please send code if u have done any modifications on this program

Read only

Former Member
0 Likes
969

Hi,

Can you please send a genral code which we can execute and see the result in our system as well.

as you have used custome data type and functions which is not here in our system.

Regards

Bikas

Read only

0 Likes
969

REPORT ZST3PRO36_PM no standard page heading.

data : wa type mara,

itab type table of mara.

select * from mara into corresponding fields of table itab up to 18 rows.

GET TIME.

WRITE: /01 'Application server time:', sy-uzeit.

uline.

CALL FUNCTION 'zpraveen'

STARTING NEW TASK 'pr'

PERFORMING start_refresh ON END OF TASK.

AT USER-COMMAND.

IF sy-ucomm = 'REFR'.

sy-lsind = sy-lsind - 1.

GET TIME.

WRITE: /01 'Application server time:', sy-uzeit.

uline.

loop at itab into wa.

write 😕 wa-matnr,

wa-ersda,

wa-ernam.

endloop.

CALL FUNCTION 'zpraveen'

STARTING NEW TASK 'IF'

PERFORMING start_refresh ON END OF TASK.

ENDIF.

FORM start_refresh USING taskname.

SET USER-COMMAND 'REFR'.

paul.

Read only

0 Likes
969

Hi Paul,

Thankx it is really nice

Regards

Bikas

Read only

0 Likes
969

welcome yarr.

Read only

Former Member
0 Likes
969

can anyone update the code and send it.

Read only

0 Likes
969

so what do you want to be updated?

Read only

0 Likes
968

sorry,

not updation.... modification...

just check it with a 3 page report.

we wont get the display of 3 pages.

only the first page is getting refreshed.....

Paul.

Read only

0 Likes
968

what happens in FM 'ZPRAVEEN' ? Anything of interest or even useful?

Read only

0 Likes
968

'zpraveen' is just a name.

u can give your name too....

der is no such function module also...

the remaining part is interesting...

its actually doing the task of calling

subroutine to refresh the page.