‎2008 Apr 24 10:32 AM
Hi all
In the below statement what does * LINE-COUNT 065(001)* and MESSAGE-ID VR mean.
REPORT ZTEST LINE-COUNT 065(001) MESSAGE-ID VR.
Vijay
‎2008 Apr 24 10:42 AM
Hi Vijay,
The statement meant by that is 65 lines per page in that one line is for footer.message id is used to set the messages in the program at required place.
Regards,
Koti
‎2008 Apr 24 11:03 AM
hi vijay,
LINE-COUNT 065(001) .means in your report output it will displays 65 lines per page.in that '1' is for footer data.
if the report output doesn't reach 64 lines then it won't trigger the end-of-page event(i.e footer data).
MESSAGE-ID VR .
u can use messages defined in the message class VR in your report program when ever required.
example:
message e000(VR) with'process data'.
thanks,
raji
reward if helpful
‎2008 Apr 24 11:24 AM
Hi,
LINE-COUNT 065(001) means : It describes the length of the basic list.
When you set the linecount value a system field SY-LINCT is set with this value.
If you didnot mention any length then by default it will take 60,000 line.
The values in the brackets signifies the number of lines reserved for page footer,
Message ID : whenever you mention this in your program thenthere is no need of specifying the message class.
i.e in general we use message e001(class) . so no need of class.
Reward points if helpful.
Thanks and regards.