2008 Dec 29 9:29 AM
Hi,
Can anybody let me know what is the difference in Moveout and actual moveout date in SAP?
vishal
2008 Dec 29 10:25 AM
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
2008 Dec 29 10:28 AM
ok...then what is the significance of field Actual moveout date in tcode EC55E.
vishal
2008 Dec 29 10:41 AM
Customer Moves out date = Actual move-out date.
move-out date = Contract expires date.
Regards,
Shiva Kumar
2008 Dec 29 12:01 PM
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...
2008 Dec 29 12:16 PM
in this scenario it is a contract ( move-out date = Contract expires date ).
Regards,
Shiva Kumar
2008 Dec 30 5:19 AM
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
2008 Dec 30 2:42 PM
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
2009 Dec 30 9:15 AM