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

function module

Former Member
0 Likes
773

hi all,

can u tell me wht is functionality , how to pass parameters to this FM

CNET_GRAPHIC_NETWORK

Rewards points is awarded for correct answer.

5 REPLIES 5
Read only

Former Member
0 Likes
651

Refer

http://membres.lycos.fr/benjaminroger/pg_sap/abap/GRAPH/H_Network_Graphics_Without_Dialog.txt

* Calling SAP Network Graphics 
  CALL FUNCTION 'CNET_GRAPHIC_NETWORK'
       EXPORTING
            STAT      = STAT
       IMPORTING
            M_TYP     = M_TYP
       TABLES
            CLUSTERS  = CLUSTERS_TAB
            CVALS     = CVALS_TAB
            DELETIONS = DELETE_TAB

            INODES    = INODES_TAB
            LINES     = LINES_TAB
            LVALS     = LVALS_TAB
            NODES     = NET_NODES_TAB
            NVALS     = NVALS_TAB
            POSITIONS = POSITIONS_TAB.

Read only

Former Member
0 Likes
651

Hi,

Start network graphics

This module is a summary of the modules 'CNET_GRAPHIC_NETWORK_PBO', 'GRAPH_RECEIVE' and 'CNET_GRAPHIC_PAI'.

The short text can be taken from these modules.

<b>Reward points</b>

Regards

Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
651

Hi,

Check the report REMIG_OBJECT_HIERARCHY.

It has a documentation of the report. For this you can judge what purpose this FM is serving.

This module is a summary of the modules 'CNET_GRAPHIC_NETWORK_PBO', 'GRAPH_RECEIVE' and 'CNET_GRAPHIC_PAI'. The short text can be taken from these modules.

Regards,

Sesh

Regards,

Sesh

Read only

Former Member
0 Likes
651

hi,

program will accept Sales Order and Item as input and display

how raw material turned into finished goods with vendor information

then i want to submit this to sap network graphics.

Read only

Former Member
0 Likes
651

IMPORTING

*" VALUE(ABAP_CMD) LIKE NET_GRAPH-ABAP_CMD DEFAULT SPACE

*" VALUE(CONFIRM) LIKE NET_SET-CONFIRM DEFAULT SPACE

*" VALUE(PROFILE) LIKE NET_PROFIL STRUCTURE NET_PROFIL

*" DEFAULT 'SAP DEFAULT 0'

*" VALUE(PWDID) LIKE NET_GRAPH-PWDID DEFAULT SPACE

*" VALUE(SET_FOCUS) LIKE NET_GRAPH-FLAG DEFAULT 'X'

*" VALUE(SO_CONTENTS) LIKE SOS00-S_OBJDES DEFAULT SPACE

*" VALUE(SO_SEND) LIKE NET_GRAPH-FLAG DEFAULT SPACE

*" VALUE(STAT) LIKE NET_GRAPH-STAT DEFAULT SPACE

*" VALUE(STATUS_TEXT) LIKE NET_GRAPH-STATUSTEXT

*" DEFAULT SPACE

*" VALUE(SUPER) LIKE NET_GRAPH-SUPER DEFAULT SPACE

*" VALUE(TITLEBAR) LIKE NET_GRAPH-TITLEBAR DEFAULT SPACE

*" VALUE(WAIT_FOR_INPUT) LIKE NET_GRAPH-FLAG DEFAULT 'X'

*" VALUE(WINID) LIKE NET_GRAPH-WINID DEFAULT SPACE

*" EXPORTING

*" VALUE(GR_MES) LIKE NET_GRAPH-GR_MES

*" VALUE(GR_MODE) LIKE NET_GRAPH-GR_MODE

*" VALUE(GR_SEL_FIELD) LIKE NET_GRAPH-SEL_FIELD

*" VALUE(M_TYP) LIKE NET_GRAPH-M_TYP

*" VALUE(RWNID) LIKE NET_GRAPH-RWNID

*" VALUE(SETTINGS) LIKE NET_SET STRUCTURE NET_SET

*" TABLES

*" CLUSTERS STRUCTURE CNG_CLUSTR OPTIONAL

*" CVALS STRUCTURE NET_CVALS OPTIONAL

*" DELETIONS STRUCTURE NET_DELETE OPTIONAL

*" INODES STRUCTURE CNG_INODES OPTIONAL

*" LINES STRUCTURE CNG_LINES

*" LVALS STRUCTURE NET_LVALS

*" NODES STRUCTURE CNG_NODES

*" NVALS STRUCTURE NET_NVALS

*" POSITIONS STRUCTURE NET_POS OPTIONAL

*" EXCEPTIONS

*" ERR_IN_PROFILE

*" INV_PROFILE

*" INV_WINID

*" NO_BATCH

*" FRONTEND_ERROR

*" INV_COMMUNICATION

regards.....

Abhay

rewards if useful.............