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

MSD ID

Former Member
0 Likes
1,037

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

3 REPLIES 3
Read only

Former Member
0 Likes
699

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

Read only

Former Member
0 Likes
699

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

Read only

Former Member
0 Likes
699

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.