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

Smartforms

Former Member
0 Likes
390

How Can I export the Graphics stored in Document server?

The transaction SE78 allows only Importing of Graphics. Could anyone update me on this.

3 REPLIES 3
Read only

sudhindra_chandrashekar
Product and Topic Expert
Product and Topic Expert
0 Likes
367

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

Read only

Former Member
0 Likes
367

Solved myself.

Read only

Former Member
0 Likes
367

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