2008 Dec 29 5:58 AM
Hi,
I have developed a report which displays piechart as the output and saves the image on the presentation server. For that i have used the following code.
when 'SAVE'.
DATA : D TYPE GFW_EXP_DATA,
R TYPE SYMSGNO.
DATA: S TYPE STRING,
N TYPE I.
CALL METHOD GP_INST->IF_GRAPHIC_PROXY~EXPORT
EXPORTING
FORMAT =
IF_GRAPHIC_PROXY=>co_format_bmp
WIDTH = 50
HEIGHT = 200
name = 'C:\Documents and Settings.........'
IMPORTING
CONTENT_TYPE = S
CONTENT_LENGTH = N
CONTENT = D
RETVAL = R
.
I have a requirement where i have to save the output of the screen(piechart) in the application server directly with out using the presentaion server.
Is there any method to do so.
Thanks and regards,
Parvatha Reddy
Hi,
I have developed a report which displays piechart as the output and saves the image on the presentation server. For that i have used the following code.
when 'SAVE'.
DATA : D TYPE GFW_EXP_DATA,
R TYPE SYMSGNO.
DATA: S TYPE STRING,
N TYPE I.
CALL METHOD GP_INST->IF_GRAPHIC_PROXY~EXPORT
EXPORTING
FORMAT =
IF_GRAPHIC_PROXY=>co_format_bmp
WIDTH = 50
HEIGHT = 200
name = 'C:\Documents and Settings.........'
IMPORTING
CONTENT_TYPE = S
CONTENT_LENGTH = N
CONTENT = D
RETVAL = R
.
I have a requirement where i have to save the output of the screen(piechart) in the application server directly with out using the presentaion server.
Is there any method to do so.
Thanks and regards,
Parvatha Reddy
2009 Feb 06 5:41 AM
Hi parvatha ,
your question is really good.
Well i really haven't come across your scenario i many years . But my suggestion is to can use java code to achieve the same .
Or try to use hexadecimal type in your normal class to read the pie-chart and use transfer with same type .
2009 May 18 10:22 AM