IS-U: Separate dunning processes for contracts after move out?

Hi all,
we are working with IS-U (water, wastewater etc.). After a move-out has been created, the dunning process changes for the whole contract account (VK), as defined in the Customizing area.
The problem is - if only one contract out of 2 or 3 has to be ended, the dunning process changes for all of them and not only for the one that really has ended. This leads to wrong letters to the customers and a high amount of complaints.
I found out that there is a new table entry VKKVKP-UMZMAHNV, but as far as I could find out, this changes the dunning process only for a whole VK, too.
Does anyone of you have had similar problems and could give me a hint?
Best Regards,
Stefanie

Hi Stefanie,
You can use FM ISU_S_CONTRACT_CHANGE for the purpose to update the Dunning Procedure at contract level using BOR Object MOVEOUTDOC.
Thanks,
Amlan

Similar Messages

  • Separate Dunning Letter for Individual line items

    Hi All,
    Please let me know if it is possible to produce a separate dunning notice for each individual line item in an invoice.
    Thanks,
    Naresh

    Hi,
    1.loop at Line item.
       Write_form.
        endloop.
    2.This will give the seperate dunning letter for each invoice line item.This can be write in the driver pg.
    Regards,
    Shiva Kumar

  • 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!

  • Approval process for requisitions after RFQ

    Hi there
    We are using the classic scenario to purchase items.  In many cases these items require an RFQ process to be followed to determine vendor and price.  The business requires that after a price change the initial shopping cart is updated and if the price is significant it goes through re-approval.  Has anyone got any suggestions on how this could be done cleanly in the system?
    My one thought is to combine the SC and P Req approvals - and final approval only occurs when the RFQ is complete and the correct information is added to the SC.  Is this possible?
    The business will not accept change release procedures on the purchase requisition due to high maintenance. 
    Thanks
    Roz

    Hi Venkatesh,
    1) Is it possible to read comments in UWL on a button Click? Is there any API available to achive this?
    Ans: There are no APIs as fas as I know. Normally you see comments after clicking the feedback button in the approvers inbox.
    2) If I store this comments in a repository, how can I set approver for that comment?. (Because approver is varying for each respository)
    Ans: You are having different reps on the basis of different criteria. Take this criteria also as input from user in the comment input form and place the comments in separate comment repositories.
    3) If Comments gets approval, it is needed to be display in comments column in KM Navigation iView.Is it Possible?
    Ans: I suggest you to make your own navigation iview having the "comments" column (or check if there is some configuration required to show comments on docs in a rep). You have to device a way for catching the "Approve" event and then make the contents of Comment repository visible in the navigation iview.
    Please see this [blog|https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1424].
    I know this is a complex solution.
    But, this is all what I have got.
    Hope it helps.
    Regards,
    Sumit

  • Lightroom processes for ages after withProlongedWriteAccessDo

    Hi,
    I am considering a switch from Expression Media to Lightroom, and I wrote for that a Lightroom plugin that imports all my metadata from an EM XML file. Functionaly, it works great.
    However, I have a performance issue problem: if I run the plugin on my whole photo collection (>30.000 items), then Lightroom gets crazy with the CPU and the memory after once my code returns.
    The processing time seems exponential. If I run the plugin with 1.000 items, the return is almost instantaneous. On 5.000 items, it takes several minutes. With 30.000 items, it still wasn't finished after 30min, I killed Lightroom.
    My guess is that Lightroom does some kind of post-processing, or maybe that's because Lightroom prepares the "undo".
    Is that a known problem ?
    Here is the skeleton of my code. Once doStuff2 returns, Lightroom does who knows what, and then doStuff returns too. This time seems exponential with the number of database changes my code causes.
    function doStuff2(context, progress)
         local catalog = LrApplication.activeCatalog()
         local photos = catalog:getTargetPhotos()
         parseXml()
         for completed, photo in ipairs( photos ) do
              if progress:isCanceled() then return end
              photo:addKeyword(...)
              setMetadata(...)
    end
    function doStuff()
         local catalog = LrApplication.activeCatalog()
         catalog:withProlongedWriteAccessDo(
                   title="Import from Expression Media",
                   func=doStuff2,
                   caption="Initializing plugin",
                   pluginName="Expression Media Import",
                   optionalMessage = "The plugin will first read your Expression Media XML file and then import the data into Lightroom for "
                        .. ( # catalog:getTargetPhotos() ) .. " photos"
    end
    import 'LrTasks'.startAsyncTask( doStuff )

    Very possibly.
    I've been really stoked with my new multi-phase catalog accessor - strongly recommend writing something like it for yourselves (see source code in other thread, or contact me for fresh stuff).
    Here's an example from my most recent plugin:
    local s, m = cat:update( 10, "Assure Folder Collection Set", function( context, phase ) -- 10 is seconds to get in.
        -- function can take parameters, but not used here.
        if phase == 1 then
            set = catalog:createCollectionSet( folder:getName(), parent, true )
            return false -- keep going
        elseif phase == 2 then
            leafPhotos = folder:getPhotos(false)
            if #leafPhotos > 0 then
                return false
            else
                return true -- done
            end
        elseif phase == 3 then
            coll = catalog:createCollection( str:fmt( '[^1]', folder:getName() ), set, true )
            app:logVerbose( "Created/assured \"Folder Leaf Photos\" collection ^1 in '^2'", folder:getName(), set:getName() )
            return false
        elseif phase == 4 then
            local collPhotos = coll:getPhotos()
            if #collPhotos > 0 then
                local collPhotoSet = tab:createSet( collPhotos )
                for i, photo in ipairs( leafPhotos ) do
                    if not collPhotoSet[photo] then
                        toAdd[#toAdd + 1] = photo
                    end
                end
            else
                toAdd = leafPhotos
            end
            if #toAdd > 0 then
                coll:addPhotos( toAdd )
            end
            return true
        end
    end )
    Note: each phase is a new transaction.
    In your case Oliver:
    local keyword
    local children
    local s, m = cat:update( 10, "Keyword business", function( context, phase )
         if phase == 1 then
              keyword = catalog:createKeyword( "Test", {}, true, nil )
              return false -- continue to 2nd phase.
        elseif phase == 2 then
              children = keyword:getChildren()
              -- do something to catalog with children
              return true -- or nil.
         end
    end )
    This would not make sense if nothing further involved catalog writes (in which case just exiting a simple single-phase with-do method would suffice), but you get the idea, no?
    R

  • "Error in Process" for POs after changing Tax codes and Vendor address

    All,
    We are in extended classic scenario and we have 2 POs with status "Error in Process"
    PO 1:
    The PO was ordered with 3 line items, Confirmed, Inovoiced. Later our accoutnig team realized there should not be tax for one of the line item in the PO. So they created Credit memo and asked our purchasing dept. to change PO from Taxable to Tax except.
    Now the porblem is, when PO chages to tax except in SRM, it is going to "Error in Process".
    What could be the reason?
    PO 2:
    The PO have 10 line items and Confirmed, No invoice is generated.
    Now the Purchsing want to change vendor address in the PO, they changed the vendor address in the PO.
    Now the porblem is, when PO changes in SRM, it is going to "Error in Process".
    I checked the RZ20 Traansaction in SRM, both POs have same errors:
    Backend application errors "Indicator for GR-based invoice verification used not allowed"*
    We removed 'Confirm Performance of Service/Goods Receipt' tick mark for the PO in SRM under follow on documents and it is throwing error saying it must be checked.
    Did any one got this error, what i need to check for this errors?. any help?
    Thanks
    Rams

    Hi,
    Once the PO is created . Confirmation made and invoice .Tax change will not be allowed.
    First reverse the Invoice.
    Cancel the confirmation
    then change in the P.O
    Do the Confirmation and invoice it will allow
    Regards
    G.Ganesh Kumar

  • Price determination process for contract

    Hi experts,
    I need to affect a new calculation schema to the header of the contract.
    How can I do this please ? Could you please give me steps to do this ?
    What procedure I need to change to manage new condition for the header of a contract ?
    Thanks in advance.

    Hi,
    Yes, I  have created a new procedure "Condition Supplement Header" based on the RM0001 schema. I put my new condition type (Discount % on Gross) but I do not know how to affect this new schema to the header of the contract.
    Thanks for your help

  • Best process for scoring my movie?

    Will I loose quality if I import my project to Garageband for the scoring and then use the output from Garageband (incl. video) for iDVD?
    I choose to remove the video and the video sound once I had done the scoring and then export it as an audio file.
    I added that to FCE.
    It became one big file of the full lenght movie.
    I noticed that FCE did not seem to accept ACC so I had to convert to MP3.
    Does anyone have some experiences and "best practice" ?
    Thanks / Christer

    Are you talking about loosing video quality?
    You won't loose video quality. GarageBand doesn't export the video, it uses the videos simply as a guide for you to score with. When you export, you export the audio not video.
    Remember to mark as helpful or solved.
    -benny

  • Mounted local NFS drives take down Finder after move out of network

    Hello,
    This is a basic scenario that happens to me often. At home, I mount several NFS drives from my linux server. They work fine. If i close my MBP, don't shutdown, and take it with me to a new location outside of my local network, I still see my NFS drives mounted. After a while, I will get a prompt saying that those drives are no longer available, or some such language.
    However, if I try and unmount them from the finder or try and access those drives, the is Finder done for, and all computer functions for that matter, like volume, brightness.
    I have left it that way for up a half-hour before hard re-starting.
    I know I should unmount the drives before I take the computer with me, but honestly, I will continue to forget.
    Is there a way to avoid this, like setting a timeout of a 1 minute or so, if the drive is not available?
    Thanks for your time,
    Chuck
    MBP Mac OS X (10.4.9)

    Hello,
    This is a basic scenario that happens to me often. At home, I mount several NFS drives from my linux server. They work fine. If i close my MBP, don't shutdown, and take it with me to a new location outside of my local network, I still see my NFS drives mounted. After a while, I will get a prompt saying that those drives are no longer available, or some such language.
    However, if I try and unmount them from the finder or try and access those drives, the is Finder done for, and all computer functions for that matter, like volume, brightness.
    I have left it that way for up a half-hour before hard re-starting.
    I know I should unmount the drives before I take the computer with me, but honestly, I will continue to forget.
    Is there a way to avoid this, like setting a timeout of a 1 minute or so, if the drive is not available?
    Thanks for your time,
    Chuck
    MBP Mac OS X (10.4.9)

  • ABAP MESSAGE_TYPE_X -DUmp Due to Change in hiring process for HK ?

    Hi,
    I changed the Hiring process , just added new infotype 0105 into the process for HK , after that i got an ABAP  "MESSAGE_TYPE_X" dump when i tried to save PA30 .
    See the below Error :
    with the key 50002134567880       9999123119712134256206528473C_VBA in
    table PA0342. It is possible that the record does not exist. The
    following are a few of the possible causes for this:
    o   The code in table PA0342 is not correctly specified in the data
        dictionary (SE11). Compare with another PAnnnn table.
    o   An infotype may have an additional view infotype for which the
        record is not available. This situation can occur when system
        settings for infotype views (T582V) are changed.
    o   Problems with database.
    o   There may be other causes.

    Try running the report rpu03420 for that pernr. Anyway 0342 is an infotype specific to HongKong.
    ~Suresh

  • Update dunning level and dunning details for a contract account

    Hi All,
    I need to update the dunning history details(dunning level) for a contract account.
    I am using the table FKKMAKO(dunning header).
    Let me know if there is a Function module/BAPI/ any other way to update the dunning history details
    Regards
    Shiva

    545315 - FAQ: Dunning
    [3] Question: How does the system determine the dunning level in the
                  master record?
           The master record stores the highest dunning level that has been
           determined for the account during the last dunning run.
           If an account receives several dunning notices (e.g. in the case
           of dunning by dunning level), make sure that you use ascending
           order when printing, since the master record is updated after
           each dunning notice.
    Note  838334 may also be the case.
    cheers,
    Jon

  • Process for return of Components after sales

    Dear Gurus,
    Plz inform regarding the following process:
    We require a process for return of the components ( part of the Finished goods that is sent to the customer) after the same is being returned by the customer  and then that needs to be replaced by a new part. Please inform how to take the material back in our stock and send a replacement in respect of the same.
    regards
    PUB

    Hi,
    Are you trying to say that first you sell material to the customer.
    Then your customer returns that material and then you do the modification to the material.
    And again send that material to the same customer.
    Is this what you are trying to say.
    But what about the price where you want to accommodate your pricing.
    The material which you are sending after rework is it free of charge delivery or you are charging some amount.
    You can do the process as follow
    Sales order u2013 delivery u2013 billing document u2013 return order wrt billing document u2013 done the PGR.
    Now create new sales order for the newly created material after rework.
    You have to create the sales and distribution BOM for your new sales order.
    In that you can give the details about the return material also.
    So that BOM will be exploded in the newly created order.
    And the pricing you can do as per you want.
    If its not working then please explain us the whole scenario for the better reply.
    Regards
    Raj.

  • Hi I update my I Phone 3 GS for IOS 6.1. but he asking activate Iphone after we process for activation he shown error. please do the needfull

    hi I update my I Phone 3 GS for IOS 6.1. but he asking activate Iphone after we process for activation he shown error. please do the needfull

    Try to restart or - if necessary - to restore the iPhone: 
    See this document:  iPhone: Troubleshooting activation issues
    Disable your Firewall and Antivirus software - it may be blocking the access to the server. Wait a day, maybe the server is down.
    If your iPhone cannot be activated, because it has been modified, we cannot help, see:  http://support.apple.com/kb/HT3743

  • Regarding change process for CRM Lease contracts

    Hi Frenzzzz,
    I need to create a standalone program which is used for change process for a lease contract.... The change process mainly used in my requirement is (Change of Location) & (Change of Ownership)....
    I found out two function modules CRM_FS_CP_PREPARE and CRM_FS_CP_MAINTAIN which is used for change process.. I donno how to use them (I mean the mandatory parameters which needs to be passed) or is there any other way that i can acheive this functionality
    Regards,
    Arvish.......

    Hi Vijay,
    have you tried to maintain the upselling product through the webUI?
    This would always be my first try because COMMPR01 does not necessarily support all new features.
    Settings to check in IMG:
    Have you assigned a method schema to your transaction type for Provider Contracts in:
    SAP Customizing Implementation Guide
    --> Customer Relationship Management
    --> Transactions
    --> Settings for Sales Transactions
    --> Product Proposals in Quotations and Orders
    --> Method Schemas for Product Proposals
    --> Assign Method Schema to Transaction Type
    Use a method schema that is based on SAP standard schema 000018 or at least contains module CRM_MKTPR_PP_US_GL_SC_READ ("Call the Solution Configurator to determine Global Up-Selling Products").
    Place to check in debugger:
    Trace the call to CRM_PRODUCT_PROPOSAL_DETERMINE triggered from CL_PROVDLPR_CHANGEPRODSR_IMPL->DO_PREPARE_OUTPUT()
    Hope this serves as a starting point for your analysis.
    Best regards
    Stefan

  • Any way to find out the backend still in Process for the record after saved

    once after we create a record and save here we are using many procs and functions from backend, after the record saved is there any way we will know still the backend is still in process for that record to insert into concerned tables for that module?
    we are getting an error after the first record is saved for some reason the form is not getting clearing after the record is saved there is clear_form code is also there in my save button.
    this is my prod problem please do help me out..
    thanks in advance..

    The Commit will not return control to the form until it is finished. So unless you are starting asynchronous operations with things like DBMS_JOB it is not going to be a timing problem.

Maybe you are looking for