cancel
Showing results for 
Search instead for 
Did you mean: 

MCIZ - Vehicle Consumption analysis calculation

former_member494495
Active Contributor
0 Kudos

Hi Dears,

Configuration

My calculation method is KML Kilometer / Litre

I created two measuring point with counter

ALTFUEL

DISTANCE

In IFCU, First I entered the values for the vehicle FORKLIFT

Consumed Qty

5 L

Counter Reading (Distance)

25 KM

In MCIZ, i found

Miles/km 25 km

Fuel Volume 5 L

Consumption Distance 20.00

Costs per route

Total Act costs

My Question

1. What is to be done to display costs per route and Total Act costs ?

2. The calculated value is correct or not ? What about my KML ie.., Kilometer per litre? 25/ 5 = 5.00

3. what is consumption distance?

Please guide me.

Regards,

M.Alagesan

Edited by: M.Alagesan on Feb 9, 2010 1:15 PM

Edited by: M.Alagesan on Feb 9, 2010 2:18 PM

Edited by: M.Alagesan on Feb 10, 2010 5:19 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

The Figure Consumption Distance: 20 is correct because it is consumption per 100 Km

Cost per route, you will get only when there is something in Total Actual costs as well as miles/km columns.

First important thing is the goods movement cost through IFCU should flow to the standing maintenance order for that equipment. This means, the goods movement of fuel should happen against this maintenance order. Then check if this maintenance order has got the costs in it after you perform IFCU.

Then you need to check your value categories, assignment of cost elements to value categories, assignment of value categories for updating key figures.

Regards,

Vijay

former_member494495
Active Contributor
0 Kudos

Hi

Thanks for the reply.

I had created maintenance order for that vehicle

Goods issue done to the order

In MCIZ i found the costs are displaying successfully.

But the Goods issued 5 Litre is not adding.

Should it be entered again through IFCU

Alagesan

douglas_capretz
Discoverer
0 Kudos

Hi M.Alagesan,

Look at sapnote 0000662197 (this note explain how to change the function that calcs the consuption)

In some few words:

STEP 1. Transaction code SE37 - Function: MCI1_GET_FIGURE_IAFUELDIST

Ask to ABAP Consultant to create a copy from this function and change this parts:

Delete:

  • prevent division by zero

CHECK NOT ( <ptr_srcfn1> IS INITIAL ).

CHECK NOT ( <ptr_srcfn1> = 0 ).

Insert:

  • prevent division by zero

CHECK NOT ( <ptr_srcfn2> IS INITIAL ).

CHECK NOT ( <ptr_srcfn2> = 0 ).

...

Delete:

<ptr_keyfn> = l_target_src2 * 100 / l_target_src1.

Insert:

<ptr_keyfn> = l_target_src1 / l_target_src2.

...

STEP 2. Configuration:

SPRO --> SAP Customizing Implementation Guide --> Plant Maintenance and Customer Service --> Information Systems for Plant Maintenance and Customer Service --> Configure Measurement Document Update

Mark Key Figure Name: IAFUELDIST

Click Functions and Arguments (Ref. Ind. 'B')

Assign a new function (create in step 1)

Best Regards,

Douglas Capretz