Application Development 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: 

uncheck Date,title,and page number checkbox in ALV grid format layout

Former Member
0 Kudos

Hi,

I am encountering a weird problem while turning off the printout with Date,title,and page number checkbox in the ALV Grid layout change screen in the display tab.I am encountering this rpoblem specifically when i display any query report in ALV format.The checkbox is appearing as ticked.When i turn it off and save the layout and rerun the report it turns itself on again.

When i do the same in MB51 ALV grid it just works fine.I dont know why is it behaving this way for ALV grid in Query report.If anyone has a clue on this do let me know.

Great Thanks in Advance.

Thanks,

Pawan.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

For releases 620 - 710, you may want to check out [Note 1112984|https://service.sap.com/sap/support/notes/1112984] which has symptom, "When you change from a variant with the stored parameter 'Printout with Date, Title, and Page Number' to a variant without this parameter, the system does not update or delete the checkbox on the 'Display' tab page of the 'Change Layout' dialog."

Note 1112984 changes the code in function LVC_TRANSFER_FROM_KKBLO so that the field es_print_info_lvc-prnt_info is always set to whatever value is stored in is_layout_kkblo-prnt_info. Prior to this Note, es_print_info_lvc-prnt_info was only being set to 'X' if and only if is_layout_kkblo-prnt_info also equals 'X'. That means that a blank value in is_layout_kkblo-prnt_info was not being moved to es_print_info_lvc-prnt_info. You can debug in your own system within this function module to see if this is also causing your issue. If so, Note 1112984 should solve the problem.

There is also an older Note for releases 46A - 46D, [Note 363914|https://service.sap.com/sap/support/notes/363914], with symptom, "Print of title, page number and date is being removed because this functionality cannot be made available for technical reasons.Basically, this information is to be output optionally by the application program at the time of TOP-OF-PAGE."

Best Regads,

Jamie

2 REPLIES 2

Former Member
0 Kudos

Hi,

For releases 620 - 710, you may want to check out [Note 1112984|https://service.sap.com/sap/support/notes/1112984] which has symptom, "When you change from a variant with the stored parameter 'Printout with Date, Title, and Page Number' to a variant without this parameter, the system does not update or delete the checkbox on the 'Display' tab page of the 'Change Layout' dialog."

Note 1112984 changes the code in function LVC_TRANSFER_FROM_KKBLO so that the field es_print_info_lvc-prnt_info is always set to whatever value is stored in is_layout_kkblo-prnt_info. Prior to this Note, es_print_info_lvc-prnt_info was only being set to 'X' if and only if is_layout_kkblo-prnt_info also equals 'X'. That means that a blank value in is_layout_kkblo-prnt_info was not being moved to es_print_info_lvc-prnt_info. You can debug in your own system within this function module to see if this is also causing your issue. If so, Note 1112984 should solve the problem.

There is also an older Note for releases 46A - 46D, [Note 363914|https://service.sap.com/sap/support/notes/363914], with symptom, "Print of title, page number and date is being removed because this functionality cannot be made available for technical reasons.Basically, this information is to be output optionally by the application program at the time of TOP-OF-PAGE."

Best Regads,

Jamie

0 Kudos

Thanks Jamie it was really helpful )