‎2008 May 10 5:42 AM
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.
‎2008 May 10 5:43 AM
please send code if u have done any modifications on this program
‎2008 May 10 6:16 AM
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
‎2008 May 10 6:21 AM
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.
‎2008 May 10 6:40 AM
‎2008 May 10 6:41 AM
‎2008 May 10 10:58 AM
‎2008 May 10 11:09 AM
‎2008 May 10 11:44 AM
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.
‎2008 May 10 11:59 AM
what happens in FM 'ZPRAVEEN' ? Anything of interest or even useful?
‎2008 May 10 12:51 PM
'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.