‎2009 Apr 15 2:36 PM
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.
‎2009 Apr 15 2:38 PM
use NO STANDARD HEADING (Just recheck the command with F1) with you REPORT <name> command.
‎2009 Apr 15 2:38 PM
use NO STANDARD HEADING (Just recheck the command with F1) with you REPORT <name> command.
‎2009 Apr 15 2:55 PM
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.
‎2009 Apr 15 2:41 PM
Have you given this as short message in the attributes of your program? Just check it.
‎2009 Apr 15 2:42 PM
Hi,
Try this
Sample code
REPORT zfv_amex_inb NO STANDARD PAGE HEADING
LINE-SIZE 200
MESSAGE-ID zf.
Regards
krishna
‎2009 Apr 15 3:41 PM
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 headingas an addition to your report statement.
Effect: Suppresses output of the standard page header
Regards,
Lalit Mohan Gupta.