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

GRAPH implementation

Fabian_Kegel
Product and Topic Expert
Product and Topic Expert
0 Likes
1,014

Hi,

I am looking for an implementation of a graph in ABAP OO. Could you give me some hints where I can find a standard implementation?

Best regards,

Fabian

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
953

Hi,

Use transaction GRAL as reference..

Also the reports that start with GFW_PROG_*

Hope this helps..

Sri

9 REPLIES 9
Read only

Former Member
0 Likes
954

Hi,

Use transaction GRAL as reference..

Also the reports that start with GFW_PROG_*

Hope this helps..

Sri

Read only

Former Member
0 Likes
953

Hi,

There is atest program :

GFW_PROG_PIE is using method to call graphics.

Read only

Former Member
0 Likes
953

Check the Package <b>SGRB</b> in SE80.

There you can See lot of programs .

Read only

Fabian_Kegel
Product and Topic Expert
Product and Topic Expert
0 Likes
953

Hi,

sorry but I think I described my problem not detailed enough. I am looking for an implementation of a graph model, where I can set nodes and their edges. I am not looking for graphics implementations.

Best regards,

Fabian

Read only

0 Likes
953

Hi,

I dont think I still understand your requirement. Are you talking about some thing like this sample program GFW_PROG_TIME_AXIS does?

Sri

Read only

Fabian_Kegel
Product and Topic Expert
Product and Topic Expert
0 Likes
953

Hi,

sorry.. I am not looking for something like that.

Maybe this helps. I am looking for an implementation of a graph like that: http://en.wikipedia.org/wiki/Graph_theory

Best regards,

Fabian

Read only

0 Likes
953

Hi Fabian,

Ok I understand it somewhat now.

I did not find any implementations in OO directly so far.

In any case, see sample program NETZOCX1. It is the nearest one I can think of..

Infact all sample programs that start with NETZ*

Hope this helps..

Sri

Message was edited by: Srikanth Pinnamaneni

Read only

Fabian_Kegel
Product and Topic Expert
Product and Topic Expert
0 Likes
953

Hi,

what do you think of this?

CL_DC_GRAPH_RFW

This seems to be an implementation of a graph. This class is part of the package RFW (ReconciliationFrameWork). I am not sure if I can use this class for my implementation. The class says that is is not internally released.

Best regards,

Fabian

Read only

0 Likes
953

Hi Fabian,

I am assuming you already started trying out the class.

I think you can use it for your implementation.

Did you check out the program RFW_GRAPH_SELFTEST?

Sri