There are some reports you can customize by changing their paramters:

You will find a folder called COMPANY_ID in the reports folder of the web server, normally C:\Program Files\edinn\edinnM2\Server\websrv\Apache\htdocs\edinnM2\rep\, with the reports you can customize:

    1. Duplicate this folder and rename te copy with the company id
    2. Remove the readme.txt of the copy
    3. Make the changes in the reports

1. Hourly Board

This is a sample of repHourlyBoard.php script.

<?php

$obj->LngPlanification = 1;

$obj->IntRatiosType = 1;

$obj->LngRatiosTypeTarget = 1;

$obj->LngBad = 1;

$obj->LngGood = 0;

$obj->LngDifference = 1;  

?>

You can contomize hourly board by changing the parameters:

LngPlanification: Indicates if the target are calculated using planned time usages (1) or actual ones (0).

IntRatiosType: Indicates if shown ratios are based on OEE (0) or PE (1).

LngRatiosTypeTarget: Indicates if the shown target is green target (0), yellow target (1) or green speed target (2).

LngBad: Indicates if the bad units (scrap + rework) are shown.

LngGood: Indicates if the good units are shown.

LngDifference: Indicates if the differences between good units and target units are shown.

2. Production Path

This is the sample of repProductionPath.php script.

<?php

$obj->BolOEE_target_line = 0;

$obj->BolOEE_green_target_line = 0;

$obj->BolOEE_yellow_target_line = 0;

$obj->BolPE_target_line = 0;

$obj->BolPE_green_target_line = 1;

$obj->BolPE_yellow_target_line = 1;

$obj->BolSchedule = 1;

$obj->BolStatuses_text = 0;

$obj->BolResults_text = 1;

$obj->BolSchedule_text = 0;

$obj->BolDot_in_lines = 0;

$obj->BolPossible_production_line = 0;

$obj->BolRestartOnResultChange = 0;

$obj->SngCanvasWidthReduction = 0;

$obj->SngCanvasHeightReduction = 0;

$obj->BolProductionAxisOnTheRight = 0;

?>

You can contomize production path by changing the parameters:

BolOEE_target_line: 1 To show OEE 100% line, 0 for not to show it.

BolOEE_green_target_line: 1 To show OEE green target line, 0 for not to show it.

BolOEE_yellow_target_line: 1 To show OEE yellow target line, 0 for not to show it.

BolPE_target_line: 1 To show PE 100% line, 0 for not to show it.

BolPE_green_target_line: 1 To show PE green target line, 0 for not to show it.

BolPE_yellow_target_line: 1 To show PE yellow target line, 0 for not to show it.

BolSchedule: 1 To show planned time usages line, 0 to actual time usages.

BolStatuses_text: 1 To show the statuses code and description, 0 for not to show it.

BolResults_text: 1 To show the results code and description, 0 for not to show it.

BolSchedule_text: 1 To show active order comment (if the comment includes the ":" character it will be shown in two lines)

BolDot_in_lines: 1 To show production dost in the lines, 0 for not to show it.

BolPossible_production_line: 1 To show possible prodution blue line, 0 for not to show it.

BolRestartOnResultChange: 1 To set the Y origin of path o zero every result change, 0 for not to do it.

SngCanvasWidthReduction = 0 to write the Y scales inside the graphic area, or a reduction of canvas width in parts per unit (for example 0.05) to write the Y scales outside of the graphic area.

SngCanvasHeightReduction = 0 to write the X scales inside the graphic area, or a reduction of canvas height in parts per unit (for example 0.05) to write the X scales outside of the graphic area.

BolProductionAxisOnTheRight = 0 to write the production Y scale on the left side of the graphic area (and the consumption Y scale on the right side), 1 to wirte the production Y scale on the right side.