‎2005 Jul 14 6:46 AM
How Can I export the Graphics stored in Document server?
The transaction SE78 allows only Importing of Graphics. Could anyone update me on this.
‎2005 Jul 14 6:51 AM
Hi Bharath,
What is the exact requirement? if you want to use a logo that is there in one server in another then you can export it via the transport button in SE78. You will have to create a transport request and transport it and in the other server you will have to import the transport request and it will be available for use
Regards,
Sudhi
‎2008 Apr 24 6:46 PM
‎2008 Apr 24 7:51 PM
hi check this....
http://help.sap.com/saphelp_nw04/helpdata/en/5c/8db2f9555411d189660000e829fbbd/frameset.htm
fm to export graphics..
http://help.sap.com/saphelp_nw04/helpdata/en/52/67095b439b11d1896f0000e8322d00/frameset.htm
and check this program....
*&----
*
*& Report ZPAYROLL000
*&
*&----
*
*&
*&
*&----
*
REPORT ZGRAPH_TEST.
DATA: BEGIN OF TAB OCCURS 5,
CLASS(5) TYPE C,
VAL1(2) TYPE I,
VAL2(2) TYPE I,
VAL3(2) TYPE I,
END OF TAB.
DATA: BEGIN OF OPTTAB OCCURS 1,
C(20),
END OF OPTTAB.
MOVE: 'fan' TO TAB-CLASS,
12 TO TAB-VAL1, 8 TO TAB-VAL2, 15 TO TAB-VAL3.
APPEND TAB.
CLEAR TAB.
MOVE: 'cool' TO TAB-CLASS,
15 TO TAB-VAL1, 10 TO TAB-VAL2, 18 TO TAB-VAL3.
APPEND TAB.
CLEAR TAB.MOVE: 'DA' TO TAB-CLASS,
17 TO TAB-VAL1, 11 TO TAB-VAL2, 20 TO TAB-VAL3.
APPEND TAB.
CLEAR TAB.
OPTTAB = 'FIFRST = 3D'. APPEND OPTTAB. "// Grafik-Typ
OPTTAB = 'P3TYPE = TO'. APPEND OPTTAB. "// Objektart
OPTTAB = 'P3CTYP = RO'. APPEND OPTTAB. "// Farben der Objekte
OPTTAB = 'TISIZE = 2'. APPEND OPTTAB. "// Haupttitelgröße
OPTTAB = 'CLBACK = X'. APPEND OPTTAB. "// Background Color
CALL FUNCTION 'GRAPH_MATRIX_3D'
EXPORTING
COL1 = '1997'
COL2 = '1998'
COL3 = '1999'
DIM2 = 'Products'
DIM1 = 'Years'
TITL = 'Sales In Rs. Crores'
TABLES
DATA = TAB
OPTS = OPTTAB
EXCEPTIONS
OTHERS = 1.
LEAVE PROGRAM.
regards,
venkat