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

Alignment problem in Report Dispaly

Former Member
0 Likes
333

Hello All,

We have a report which is copy of the program for ME57.In the output there is a custom field.When i execute the report this field is coming out of the layout of the report whereas when a differnt user excutes this the fild appears within the boundary.Is there any user setting that needs to be done?

Thanks,

Rakesh.

Hello All,

We have a report which is copy of the program for ME57.In the output there is a custom field.When i execute the report this field is coming out of the layout of the report whereas when a differnt user excutes this the fild appears within the boundary.Is there any user setting that needs to be done?

Thanks,

Rakesh.

1 REPLY 1
Read only

Former Member
0 Likes
309

hi

just try this code:

call function 'GET_PRINT_PARAMETERS'

exporting

destination = 'LPIN'

copies = 1

list_name = 'TEST'

list_text = 'Test NEW-PAGE PRINT ON'

immediately = 'X'

layout = 'X_65_255'

line_count = 65

line_size = 255

release = 'X'

mode = 'CURRENT'

no_dialog = 'X'

importing

out_parameters = l_params

valid = l_valid

exceptions

archive_info_not_found = 1

invalid_print_params = 2

invalid_archive_params = 3

others = 4.

hope this helps

regards

Aakash Banga