SAP for Utilities Discussions
Connect with fellow SAP users to share best practices, troubleshoot challenges, and collaborate on building a sustainable energy future. Join the discussion.
cancel
Showing results for 
Search instead for 
Did you mean: 

DIfference between Moveout and actual moveout!!!

Former Member
0 Kudos
322

Hi,

Can anybody let me know what is the difference in Moveout and actual moveout date in SAP?

vishal

8 REPLIES 8

Former Member
0 Kudos
283

Move-out Date :: If the move-out date is in a period for which one of the installations was already billed, the system does not permit you to create the move-out. You must reverse the billing before you can process the mov-out.

Regards,

Shiva Kumar

0 Kudos
283

ok...then what is the significance of field Actual moveout date in tcode EC55E.

vishal

0 Kudos
283

Customer Moves out date = Actual move-out date.

move-out date = Contract expires date.

Regards,

Shiva Kumar

0 Kudos
283

ok... But i still have a doubt in this..

I have a scenario where in I am doing move out with EC55E for a contract. Normally Move out date default to 12/31/9999 and actual move out date would be a value which is used for the moveout activity. In such a scenario what is the significance of moveout date?

The only significance that immediately comes to mind is a time bound contract which would have a value in moveout date which might or might not change while doing actual moveout.

please advice...

0 Kudos
283

in this scenario it is a contract ( move-out date = Contract expires date ).

Regards,

Shiva Kumar

0 Kudos
283

Hello,

Can anybody let me knoe the logic for the below requirement:

" First the workflow will need to check for active standing requests which can be done via table DFKKORDERPOS using the contract (VERTRAG) in field VTREF.

If a document exists in table DFKKORDERPOS for the contract that is ending, use that document number (ORDNR) in table DFKKORDERDUE to verify the last due date (LASTDATE) is greater than the move out date of the contract."

vishal

0 Kudos
283

I have used like this:

  • Get Bill Smoothing details

SELECT ordnr

bukrs

vkont

vtref

spart

betrw

FROM dfkkorderpos

INTO TABLE gt_dfkkorderpos

WHERE gpart = x_corresp-gpart

AND vkont = x_corresp-vkont

AND vtref = x_corresp-vtref.

  • Check initial internal table is populated are not.

IF NOT gt_dfkkorderpos[] IS INITIAL.

SELECT ordnr

versn

firstdate

lastdate

dueper

dueint

FROM dfkkorderdue

INTO TABLE gt_dfkkorderdue

FOR ALL ENTRIES IN gt_dfkkorderpos

WHERE ordnr = gt_dfkkorderpos-ordnr

AND lastdate = gc_ldate.

SELECT vkont

ezawe

ktokl

FROM fkkvkp

INTO TABLE gt_fkkvkp

FOR ALL ENTRIES IN gt_dfkkorderpos

WHERE vkont = gt_dfkkorderpos-vkont.

ENDIF.

Please work around in these query you will get your solution.

Regards,

Shiva Kumar

Former Member
0 Kudos
283

ok