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

Sap Graph problem

ashish_goyal2
Participant
0 Likes
1,035

Hi Experts,

I have copied standard program "GRAPHICS_GUI_CE_DEMO" and make the changes in our 'Z' program. Below is the output.

My requirement is to show some values at the starting of the graph (Like Below in green circle)

Inside this program form "create_data_demo" is filling data for graph.

Please assist me.

Regards

Ashish

1 ACCEPTED SOLUTION
Read only

rosenberg_eitan
Active Contributor
0 Likes
992

Hi,

I think I found the solution .

I used the ChartDesigner to find out what kind of customization is required.

In the progrm Y_R_EITAN_TEST_41_05 note the use of:

CONSTANTS: c_series_01 TYPE string VALUE 'series_01' .

This is the customization id for the series .

Screens:

Regards.

4 REPLIES 4
Read only

rosenberg_eitan
Active Contributor
0 Likes
993

Hi,

I think I found the solution .

I used the ChartDesigner to find out what kind of customization is required.

In the progrm Y_R_EITAN_TEST_41_05 note the use of:

CONSTANTS: c_series_01 TYPE string VALUE 'series_01' .

This is the customization id for the series .

Screens:

Regards.

Read only

pavanm592
Contributor
0 Likes
992

Hi Ashish,

use this after the specification of  your chart type in perform  create_custom_demo

     l_element = p_ixml_doc->create_simple_element( name = 'ShowLabel' parent = l_series ).

     l_element->if_ixml_node~set_value( 'true' ).

and also in perform create_data_demo fill the label like this in lv_value

      l_element = p_ixml_doc->create_simple_element( name = 'S' parent = l_series ).

       l_element->set_attribute( name = 'label' value = lv_value ).

       l_element->if_ixml_node~set_value( lv_value ).

Regards,

Pavan

Read only

0 Likes
992

Thanks to all

Read only

0 Likes
992

Hi,

You are welcome .

Regards.