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

Leave To List Processing

Former Member
0 Likes
734

Hi Guys/Dolls

I'm using classes and function groups.

I've come across the command "leave to list-processing" and using that but the problem is that when my data is displayed on the screen the 1st line it outputs is "SV Parameter" - I have no idea why.

so the data is displayed as follows:-

SV Parameter

-


Hello World

Do any of you guru's have any ideas?

A small snippet of my code is as follows:-

IF g_f_ft_section = 'Funder'.

      SUPPRESS DIALOG.
      SET PF-STATUS space.
      NEW-PAGE LINE-SIZE 255.
      PERFORM write_hello_world.                            "ok this is for test purposes

      LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
  ENDIF.


FORM write_hello_world.

   Write:/ 'Hello World'.

ENDFORM.

1 ACCEPTED SOLUTION
Read only

amit_khare
Active Contributor
0 Likes
703

use NO STANDARD HEADING (Just recheck the command with F1) with you REPORT <name> command.

5 REPLIES 5
Read only

amit_khare
Active Contributor
0 Likes
704

use NO STANDARD HEADING (Just recheck the command with F1) with you REPORT <name> command.

Read only

0 Likes
703

Thanks for that worked a treat.

For My Info.

=========

Used the command on the

FUNCTION-POOL zrc_config_sapgui NO STANDARD PAGE HEADING.

which is resident within LZRC_CONFIG_SAPGUITOP.

Read only

Former Member
0 Likes
703

Have you given this as short message in the attributes of your program? Just check it.

Read only

Former Member
0 Likes
703

Hi,

Try this

Sample code

REPORT zfv_amex_inb NO STANDARD PAGE HEADING

LINE-SIZE 200

MESSAGE-ID zf.

Regards

krishna

Read only

Former Member
0 Likes
703

SV_PARAMETER is the description that you have given during creation of the report which is by default shown in the output as you said.

Yes you can use

no standard heading

as an addition to your report statement.

Effect: Suppresses output of the standard page header

Regards,

Lalit Mohan Gupta.