cancel
Showing results for 
Search instead for 
Did you mean: 

Time axis scale Detailed Scheduling planning board

dunky
Active Participant
0 Kudos

Hi,

Actually, in the Detailed scheduling planning board I see only two time scales by chart. I think that is possible to show three time scales but I don't know how can I achieve it.

Please, ¿can you help me?

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Ocr,

It's very ambigue the explanation made by SAP (see "three independent time scale"). Well, I have tried but to add a new scale is not possible! 

Please see bellow:

http://help.sap.com/saphelp_scm700_ehp03/helpdata/en/2d/4ec95360267614e10000000a174cb4/content.htm

Thanks,

Regards, Marius

dunky
Active Participant
0 Kudos

Thanks Marius,

It's not an ambigue explanation but It's incorrect. I read that Sap Help and I tohought that was possible. In fact I tought I saw a third time scale but I guess I was wrong.

Thanks.

Regards.

Answers (2)

Answers (2)

prateek_dhawan18
Participant
0 Kudos

Hey

I know its late but still its better to have an answer than to wander.

yes , we can add new scale in DSPB and you will be amazed to know that we can add up to 6 scales but standard SAP has limited this to 2 scales.

You will have to create an enhancement implementation in include /SAPAPO/LCDPS_PRESENTATIONF02 , form ribbons_create . create an enhnacment at the end of this routine .

You can also default the scale .

Add the below code in your enhnacement implementation

PERFORM ribbon_line_create USING i_chart_id
                                     bc_const-week_unit
                                     g_ribbon_col_type_7_con
                                     g_ribbon_col_type_8_con
                                     g_ribbon_col_type_9_con.


  IF g_use_def_rvals_flg IS INITIAL.

    CALL FUNCTION '/SAPAPO/EINT_SETTINGS_GET'
      IMPORTING
        e_planning_table_prf          = l_plt_prof
      EXCEPTIONS
        no_current_profile            = 1
        planningtab_profile_not_found = 2
        OTHERS                        = 3.
    IF sy-subrc = 1
    OR sy-subrc = 2.
      MESSAGE i002.
      EXIT.
    ENDIF.


    PERFORM set_tbcr_attribs(saplbarc) USING g_screen_wa-winid
                                             l_plt_prof-pltpro_id
                                             l_plt_prof-help_id.


    endif.
<br>
RahulHanda
Active Contributor
0 Kudos

Hi Ocr,

If you right click on the same you can select more example weekly, monthly etc.

I hope this resolves your issue. Let me know the same.

Regards

Rahul

dunky
Active Participant
0 Kudos

Hi Raul,

I dont't want to change the time scale of the bar. I want to add a third bar with another time scale. I remember (and I've read in SAP documentation) that It's possible to add a new bar with another scale, for example, between the daily time scale bar and the time scale bar for hours.

Thank you.

RahulHanda
Active Contributor
0 Kudos

Hi Ocr,

Could you provide a real example what would you add between two time scales? What exactly you want to see and why? As mentioned above what would you add between daily and hourly?

Regards

Rahul

RahulHanda
Active Contributor
0 Kudos

Hi Ocr,

One more thing to add you can change the scales and have different ones, example one would be weekly other could be hourly. At least this is possible from Settings - Time scale - Resources chart and then you can define one scale as weekly and another as hour (see attached screen shot). Hope this is what you are looking for.

Check SAP note 592465, this will give more insight.

Regards

dunky
Active Participant
0 Kudos

Hi Raul,

Based on your screen shot I'd like to ADD another Scale (ADD a bar). I mean, I want an Scale 3 for months, an Scale 2 for weeks and an Scale 1 for hours.

Thanks.