FM :ISU_S_INSTLN_PROVIDE move-out

Hi All .
Requriment : When a move-out is carried out on a contract, the customer read meter reading unit (MRUs) (if existing) should be replaced by the Normal Meter reading unit in the installation automatically. Presently they are replaced manually. If the move-out is reversed then it should restore the Customer read meter reading unit in installation.
For that I am using the FM  "ISU_S_INSTLN_PROVIDE" to get the auto object & call FM "ISU_S_INSTLN_CHANGE" to pass back the data to the system.
Can anyone please let me know the functionlity & how to pass the parameters ?
Regards
Rahul

Hello,
You should modify following values in AUTO structure.. Also, depending on your need you need to modify other fields as well..
ls_auto-contr-use-okcode  =  'X' .
ls_auto-contr-okcode      =  'SAVE'.
You can alse try debugging standard transaction to see what parameters are passed to this FM.
Regards,
Minal

Similar Messages

  • How to deactivate creation of Interim MR Result on reversal of Move-out

    Hi
    I have performed a move-out for an installation on 30.11.2008 and provided the 03 (move-out) read.
    Processing for move-out reversal has been configured in the foregound .I have reversed the move-out.
    In the move-out reversal on the meter reading tab page system shows that 03 read has been reversed.
    On the reversal of 03 (Move-out) read, system automatically created a 09 (interim read without billing)
    Is there any customization setting, which can deactivate the creation of 09 reading?
    Best Regards
    Amit Rastogi

    Hi,
    We get the same problem when we created a Periodic MRO .
    Look Device Management-> Meter Reading-> Basic Settings-> Define Control Group for Creation of Multiple MR Orders  .
    Hope it will help you !
    Michael.

  • I am going to move out for college next year, should I get my own apple ID?

    My whole family shares the same apple ID, including one sister who is already moved out. If I understand correctly only 5 computers can be associated with an apple ID. So my thoughts are that as each of my siblings and I move out over the years and eventually have our own familys we will need to associate more and more computers with whatever apple ID we are using. So, it looks like we will need to creat our own apple IDs eventually.
    So if all that is correct, I guess my question is this: How can I keep all my familys music, apps, etc. (from the account we all currently use) and set up my own account? Because it seems that if I create my own account that I will lose access to all of the stuff we have already purchased.
    Thanks for any help!

    you have to create a new one...but you cannot transfer your purchases from the old account to the new one...its not allowed because only your old account owns the music purchased

  • I can't delete in the search/address bar on my cursor moves out of the box

    When I try to delete after typing a word in the search bar after the cursor moves out of the box I can't i have to reload the page before i can start typing again. Also happens when i just click off the box does not let me type any more without refreshing. I get a beep sound when i try to type or reload

    Clear Safari and the reset the iPad again. Settings>Safari>Clear history and website data. Now reset the iPad by holding down on the sleep and home buttons at the same time until the Apple logo appears on the screen.
    I would also reset the router by unplugging it for 30 seconds and then plug it in again.

  • I have the b200 error and can't get the cartirdges to move out so I can change it.

    I have a MX850 cannon. I have the b200 error and can see that the middle cartridge is empty but I can't get the ink cartridge holder tomove out. I have tried with power off but the ink cartridge holder won't move out.

    Hi ernja.
    The B200 error is a generic internal error code and could mean one of many things.  Based on this, your PIXMA MX850 would require service.  It is recommended that you contact live technical support . There is NO charge for this call.
    Please dial 1-866-261-9362, Monday - Friday 10:00 a.m. - 10:00 p.m. ET (excluding holidays).
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • How To stop the Security Deposited Calculation at the time of move out.

    Hi Guys,
    I am working on this issue from last week still unable to stop the calculation of SD in Final bill at the time of Move out, i have blocked the main and sub transaction, any help will be appreciated as early as possible, this issue has to be solved on weekend.
    Regards
    K. Shilpa

    Hi Shilpa,
    First thing I will say that if you reverse an actual payment from customer's account, there are many impacts on the customer side and on SAP side. I think you have already taken care all these things.
    Now for the first point if you want the open SD will not appear in the print document, you can do it by reversing the security deposit or by invoicing printing configuration. For the first option you can go to change security deposit (FPSEC2) and reverse it. To do this all the SD documents should be in open status.
    For the second option you can go to the following menu path:
    SPRO-SAP Utilities-Invoicing-Invoice Processing-Item Selection in Invoicing-Item Selection in Account Maintenance/ Define Sub-Items
    In the above menu path for clearing type R4 (Invoicing) and periodic billing (R41),  you can control the items which will be printed in the invoice. Select the clearing type and click on the 'Item selection on bill print out' on the left hand side. For the clearing category (maintained at contract account level) you can maintain the main and sub transaction of security deposit (might be 0020 / 0020) and you can see a field 'IP' (Item Will Be Printed on the Bill) where you should maintain it blank. If you do that, security deposit will not be picked up in the invoice document. However it will remain open in the account if you just stop the printing of SD and keep it in the account.
    However it totally depnds on the business requirement and related implications whether you want to reverse the SD or you want to keep this in account and do not want to show them on the bill.
    Now for the second point you have mentioned, you need to first decide what you will do with the SD payments made by customer.
    Either you can release the SD amount and refund it to customer or the amount can be adjusted with the next invoice. Again it depends on business requirement whether you will refund any payment made against SD or you will simply reverse all open security deposits.
    Also if you want to stop the SD creation process now onwards, you need to revert all SD configuration like main / sub transaction configuration for SD, default SD releted settings etc. There is no standard process for it. If you want to reverse the SD, you can write a custom program. The configuration related things need to be done manually.
    Since all the things will impact the business process or customer, I hope you will take care those things before coming to a conclusion.
    Thanks.
    Nirmalya

  • How to change the mouse cursor icon type when mouse moves out of client area ( propertysheet) WTL?

    I got stuck with an issue in property sheet .I want to load different cursor when the mouse position is within the client area and load another when moves out of the client area.
    In the porpetysheet I added four page. In the first page when I click next I am loading cursor of IDC_WAIT type and loading IDC_ARROW when the mouse moves out of the client area.
    In the page class I triggered the event for WM_MOUSEMOVE as follow:
        MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove)
    LRESULT OnMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    if(TRUE == m_bIsNextBtnClicked)
    ::SetCursor(LoadCursor(NULL, IDC_WAIT));
    else
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return TRUE;
    This event is getting triggered and absolutely had no issue with this. Similarly I tried adding `MESSAGE_HANDLER(WM_MOUSELEAVE, OnMouseLeave)` this event making an assumption that this will get triggered if the mouse moves out of the client area,  but
    this event did not get triggered at all.If this is not the mouse event to be triggered for mouseleave which event should I trigger?
    LRESULT OnMouseLeave(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return TRUE;
    Now when I click Next button , **I was actually calling a function which is taking sometime to return** . Before to this function I am loading IDC_WAIT cursor i.e., 
     `::SetCursor(LoadCursor(NULL, IDC_WAIT));` . 
    Now when move the mouse cursor on to the non-client area I want to load IDC_ARROW cursor i.e., 
        ::SetCursor(LoadCursor(NULL, IDC_ARROW)); 
    When the moves on to the non-client area I am handling the mouse event in sheet derived class as follows,
    MESSAGE_HANDLER(WM_NCMOUSEMOVE, OnNCMouseMove)
    LRESULT OnNCMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return 0;
    This event is not getting triggered until unless the function in the Next button event is executed.
    I want both of them to be done in parallel i.e, click Next button now hover mouse on the client area, Busy icon should come and when mouse moves out of the client area then IDC_ARROW icon should come.
    LRESULT OnWizardNext()
    ::SetCursor(LoadCursor(NULL, IDC_WAIT));
    m_bIsNextBtnIsClicked = TRUE;
    BOOL bRet = MyFun();
    m_bIsNextBtnIsClicked = FALSE;
    //Until this function(MyFun()) is executed **WM_NCMOUSEMOVE**
    //event is not getting triggered.But this event should get triggered and I
    //should be able to see the change of cursor within and out of client area.
    Can anyone kindly help me to solve this issue.
    SivaV

    Hello
    sivavuyyuru,
    For this issue, I am trying to involve someone to help look into, it might take some time and as soon as we get any result, we will tell you.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to calculate a renters move out date?

    Hi all, I have been working on a spreadsheet that helps me to calculate residents rent.
    attached is a screen shot of where I am up to
    You will see that I am trying to make the spreadsheet automate how much is owed depending on when someone has moved in or out.
    It is proving tricky mainly because the billing cycles start on the 15th of the month not the 1st.
    2 problems. In the peach coloured cells, You will see a problem with my move out formulas. in F4 of the bottem left table 'rent charged', 'Christop' has moved out on November 12 2011. The move out extra column in the top table, shows that Christop owes an additional amount for octobers rent, yet, he is still being charged for oct, nov, and dec in entirety. If I have someone move out, how can I get the main table to stop charging them those months?
    Can I use the column i've added called 'tick if tenant moves out' to trigger something?
    the other problem, in the green cells, is that these amount need to be negative.
    The numbers are the amount from jan 1 2012 to jan 14 2012, so seeing as this table is about 2011, they should be in negative, as the tenants have been charged the full cycles amount on dec 15.
    So maybe January needs another cost added on Jan 1st, representing the first 14 days of the year, and December charges less on Dec 15 charging only for the rest of december,
    The way we got this working for the move in fraction, when someone moves in after Jan 1st, is the following.
    =IF(LEN($A2)>0,IF($A2>=LOOKUP(D$1,Resi info for rent :: $Tenant,First billing cycle of year for tenant),LOOKUP(D$1,Resi info for rent :: $Tenant,Resi info for rent::$Rent),""),"") Perhaps a variation of this will sort out the 'peach' issue.
    I know I am coming at this from wierd angles, I don't have any experience on Numbers before this, so its getting tangled quickly.
    thanks to any who can help!
    Evan

    Xen Ochren wrote (ex forum):
    "The first (error) is created by changing Matts move in date, or 'first date of year tenant stayed' I get the error 'argument 1 must be no bigger than argument 2' in extra days owed B6."
    The error message is pretty much self explanatory.
    Column D is the move in date, Column E is the start of the "first (full) Billing Cycle of the year" for this tenant. Matt's dates are highlighted. In all the other rows, the column E value (second argument) is the first 'fifteenth' following the move in date in column D; a 'bigger' date than the move in date. In Matt's case, the column E value is the most recent 'fifteenth' before Matt's move in date, a 'smaller' date than the move in date.
    Set Matt's billing cycle date to Aug 15, 2011 and the error message disappears.
    You can avoid this type of error by using a formula to calculate the start date of the first full billing cycle from the move in date:
    =DATE(YEAR(D),MONTH(D)+IF(DAY(D)>15,1,0),15)
    Enter into E2 of table RiR and fill down to the row for the last tenant listed.
    A similar formula in G2 (and filled down) can be used to calculate the start date of the last billing cycle in column G of RiR:
    =DATE(YEAR(F),MONTH(F)-IF(DAY(F)<15,1,0),15)
    The second issue, a difference in the year's rent calculated as 12*monthly and the rent for the same period with the first two weeks charged on a daily rate calcualtion and the first two weeks of the next year refunded on a daily rate calculaton, is a bit more challenging.
    As you surmise,the issue arises from the varying length of months (with a touch of complication from the offset of the billing cycle from the calendar cycle).
    More on that in a direct note, tomorrow or Thursday.
    Here's a quick fix to the "Sam" problem on the 'extra days owed' table (last column).
    E2: =MIN(PRODUCT(D2,RiR :: C2),RiR :: B2)
    It works for Sam, where the move out charges are for 31 days, but doesn't address the issue of year end charges and (virtual) refunds tenants in residence for the full year.
    Note that filling the formula down from E2 will override the conditional formatting rules you have on these cells with the rule in E2.
    Regards,
    Barry

  • How to remove a meter from an installation after move-out

    Hi,
    Could anyone please tell me how to remove a meter from an installation after move-out and if the installation was blocked before move-out.
    I was trying to remove the meter from an installation which was blocked before move-out. And if i remove the blocking after move-out, it is still giving me this message that the installation is blocked.
    Thanks in advance.
    Mahavir

    Dear Birendra,
    You can NEVER remove a Device (for Billing Related or FULL removal), since you need to save a Removal read while doing the removal. Hence, you can not create a MR ( Reason 01/02/03/06/16/17/21/22), without a Active contract. This is a Basic Metering Rule.
    You will have to do the removal on the same day of the Move out.
    Any additional questions?
    KR,
    AAL!

  • How can I move out the char Θ

    hello.
    How can I move out the char Θ (unicode U+0398) оn Jspx-page used af:outputlabel.
    When I write <af:outputLabel value="27. char(Θ)" />, application auto replace on char "?".
    thx, Dema.

    Hello
    Probably an encoding problem.
    try changing your charset into your JSP:
    ex: <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    I tried it and it works for me
    Jack

  • Can't get movie out of FCP

    Hi, I have just created a fairly simple 75-minute movie in FCP 7, and for the life of me, I can't send it to Compressor to make files for creating a DVD. Compressor will do its thing for a few hours, then "Failed". Then out of curiosity, I tried to export it to a simple Final Cut Movie (not 'self-contained') and all I got was spinning pie. I just don't know what to try to get this movie out of FCP! Any suggestions would be most welcome.
    Thanks, Bob
    MacPro  10.6.6

    It will be useful if you give us some specifics.
    What is the codec of the source media? H.264, HDV, DVCProHD or ? (Quicktime is not a codec. It is a wrapper that can support a wide range of codecs.)
    Where is the media stored? System hard drive, second internal drive, external firewire drive, or ?
    What are the timeline setttings? What codec is it using?
    Your explaination of your process is very unclear. Have you tried exporting the project using "Current settings" and "self contained". Then take that file into Compressor.
    x

  • Move out issues

    Dear Experts,
    Can anyone explain complete move out process, while im dng move out iam getting error as no device found, no contract found,
    if is there all ready MR reason 22 exist, then if i do move out does it allow? or do i need to reverse that MR reason 22?
    can any one explain clearly.
    Cheers..

    Hi Avinsah,
    Thanks for reply, i am getting error msg as no contract found, and for some customers, no device found, can u tell reason y for this?
    and i have another big problem is, for some customers the bill doc has been generated,but while doing invoice its coming in crores, but now i cant reverse that bill cause it shows the proceeding doc was in archiving period. except changing retention period , any other option?
    i want to do move out with final bill. then its happening.
    thanks & cheers...

  • Return date of Security Deposit blank on move out bill

    Dear All,
    When a move out is done on a contract account, if no final bill is issued, the security deposit is released and the return date of the security deposit is filled with the move out date. Else if a final invoice is issued, the the security deposit is released but the return date remains blank.
    Is there some special configuration to be done so that the return date is populated in both cases.
    I am actually working on a statistics report for security deposits, FPD1 gives only summary and FPD2 is limited by BP or Contract Account. No dates or status available to restrict the search.
    Thanks and Regards
    Malini

    Note 1089152 corrects this problem

  • Changing order line item move-out date

    Hi All,
    I am pretty new on the CRM end. I have a requirement where- in i need to change the move-out date on the order line item.
    Could someone help me out what needs to be done in order to achieve the desired functionality.
    Thanks,
    Im

    Hi,
    Please check with the help of Abaper for the  USEREXIT_FIELD_MODIFICATION  why it is happening .
    Also try to check with adding 3 -4 line items and see whether it is happening for all the line item.
    Please post your result.
    Hope this will help you .
    Regards,
    Krishna O

  • Move-out possible even though the customer is still owing

    Hi Experts,
    Is there a way to control or block move-out if the business partner has open items on the contract account?
    Thank you in advance for your help.
    Mashudu

    Check out thid badi for move out.
    ECSBTO02
    You can add user defined checks here. I think this will solve your purpose.
    Edited by: nivedita_mumbai on Mar 23, 2010 11:33 AM

Maybe you are looking for

  • Constantly playing music even when itunes off!

    I was playing a radio station last night through itunes. I went to close itunes window and music still played, and continued to do so. I shut the computer down for the night. When I turned it back on this morning and rebooted it, low and behold music

  • Multiple VNICs in Solaris 11 Zone

    Is there a best way to create a vnic within a solaris 11 zone on top of the zone's interface. I was able to create a vnic from the ipmp interface but this may not be a proper way. Does multiple vnics within a zone need to be created outside the zone

  • Account code strategy

    Can anyone explain the account code strategy (mainly numeric) in chart of accounts of SAP B1 2005?

  • Error: TextFrame.fit() cannot work with instances of this class

    Hi, As I am very new to indesign scripting, I am getting very strange kind of error when fit textFrame in indesign document. can any one please help me to get ride of these strange looking error. Thanks in advance.

  • Delete the workitem in portal

    hi friends Am doing ESS leave request. my problem is that there are so many error work item in the portal inbox(development system). I want to delete all the work items in error states. How to do that. Is there any program to execute to delete all th