Application Development 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: 

Pop-Up with colours

Former Member
0 Kudos

Hi,

Need to make a pop up with different colours and description like we saw in T-Code co03.To see the example popup kindly follow this

T-Code co03give any order noentergoto-graphicgantt chart-legend.

Now u can view the pop up with diff colours and description,like that i need to create for my user to describe the colours for desired action.

Waiting for ur suggestion.

2 REPLIES 2

Former Member
0 Kudos

Do you need a Gantt Chart or a chart with colors?

You can use FM GRAPH_MATRIX_3D for charts.

DATA: BEGIN OF t_data OCCURS 0,
  dataname(15),
  quantity1 TYPE i,
  quantity2 TYPE i,
END OF t_data,

BEGIN OF t_opts OCCURS 0,
  option(20),
END OF t_opts.

CLEAR t_data.
t_data-dataname = 'Parameter_1'.
t_data-quantity1 = 10.
t_data-quantity2 = 20.
APPEND t_data.

t_data-dataname = 'Parameter_2'.
t_data-quantity1 = 30.
t_data-quantity2 = 15.
APPEND t_data.


CALL FUNCTION 'GRAPH_MATRIX_3D'
  EXPORTING
    col1 = 'Col_1'
    col2 = 'Col_2'
    titl = 'Title'
  TABLES
    data = t_data
    opts = t_opts.

0 Kudos

Thank You Uygar Çiçek,

Got some idea,but i neee a chart with colours.