Deposit at notice- Accounting for Interest upon return of the deposit

Hi
The company has given Deposit at notice 52A 100 and after 6 months it got it back. How the system will calculate the interest and accounted for in the TM system.
Again refering the above, I have given the Deposit at notice 52A of 1million which is still outstanding as on 09/30/2009. I am running the accrual report  using tcode TBB4. I dont see any accrual posting being generated for this transaction. I dont think this is normal.  Is there any configuration which needs to be done for this?
Also what is the business process for bonus shares in TM.
Any inputs?
Regards
Sivakumar Gopalakrishnan
Edited by: Sivakumar Gopalakrishnan on Aug 20, 2009 2:08 PM

Hi,
I havent worked in deposits at notice.  But as far as my understanding goes, The number of half years you have mentioned in your transaction type is the period upto which only cash flows will be generated automatically.  if you have interest flow in seen in your cash flow then you can generate accrual.
For that go to your interest flow type and check the Rel for acc/def check box.  Then under TM -- general settings -- accounting -- accrual/deferral -- money market
Here for your flow type, define the accrual procedure and define the accrual flow types and the correspoding reset flow types.
Bonus shares are accounted as corporate actions.
Regards,
Ravi

Similar Messages

  • How to roll over deposit at notice with zero interest rate ?

    Hello All,
    There is a requirement from client that they want to roll over deposit at notice with zero interest rate (Tcode TM14).
    However when we enter zero in interest percentage rate field, system still ask us to enter the interest rate (Error message number T4034) being a mandatory field.
    Following are additional details:
    Product Type   = 52B
    Transactn Type = 100
    Condition Type = 1200
    Activity =  801
    Do you know how to roll over a deposit at notice with zero interest rate in TM14?
    Is it possible to create new condition type which will allow zero interest for a deposit at notice at the time of roll over?
    Thanks,
    Vaishali

    I am not able to check it, but my thoughts are - mandatory field status is a problem.
    It is possible to enter zero interest condition - just enter new condition starting from new date and leave percentage field empty or enter zero value ( zero value = empty field). But the problem is that percentage field is mandatory as you mentioned.
    Possible solution: switch off mandatory status and create implementation of BADI to check if field is filled (for example  Check entry of deal's data.) and if not - issue an error that there will be zero condition.

  • Example of hedge accounting for interest rate risk

    Hello
    Can anyoe give an example of hedge accounting for interest rate risk with values using a variable interest rate bond and a interest rate swap where a prospective and retrospective effectiveness test would be positive?
    Thanks,
    Arjan

    not precisely - the respective flow is still in status 'S' @ TPM13, so in this sense it looks consistent. what is though strange that if you look into the tab 'Cash flow' in the Posting view, you can see a status 'Interest rate not adjusted for flow', though there is interest adjustment executed as per the screenshot attached.
    /Renatas

  • How to Automate the Query Search Upon Return to the Calling Form?

    Greetings Ya’ll Gurus,
    Could you please share with me how to make the Query Search executed automatically each time, when database table is updated, upon return to the “Calling Form” (i.e. FormA in this posting) from the “Called Form” (i.e. FormB from here on)?
    I have FormA call_form to FormB. FormB may return to FormA. FormA allows users to enter the Query parameters and perform query Search to the database table with a list of search results afterward; whereas FormB allows users to add or delete the same database table records. Both form images are as follows:
    FormA:
    !http://dot.state.ak.us/nreg/jtomasic/FormA_DWR_SEL.GIF!
    FormA call_form to FormB by clicking PB “Daily Work Report” (see circled PB "Daily Work Report" in the above image.)
    FormB Image (FormB allows users to add and delete database records):
    !http://dot.state.ak.us/nreg/jtomasic/FormB_DWR.GIF!
    FormB EXIT_FORM and returns to FormA (see circled PB "DWR Selection" in above image).
    Currently, our users must press the PB “Search” on FormA each time to refresh the Query “Search” results after returning to FormA, and they request to have the "Search" done automatically/programmatically upon return to FormA each time when the database table is updated.
    If you have programming code on this and are willing to share or if you have any suggestion or thoughts on this, it would be most greatly appreciated.
    Thanks a lot & Happy Holidays!

    Thanks so much Andreas, and yes, your link for calling a form and passing a context is very helpful. I believe, your suggested use of the global variable for the saved database table will work for the automation of the Query Search. I am, however, not sure how to make the code and the trigger to automatically perform Query PB "Search". The code for our current "WHEN-BUTTON-PRESSED" Trigger for the PB-Search of FormA is as following:
    DECLARE
         alert_button     NUMBER;
         alert_id               ALERT;
      MY_WHERE VARCHAR2(2500);
      MY_DIST_ID         DIST.DIST_ID%TYPE     := :BLK_UPDATE.DIST_ID;
      MY_ORG_ID          DWR.ORG_ID%TYPE       := :BLK_UPDATE.ORG_ID;
      MY_ACTY_ID         DWR.ACTY_ID%TYPE      := :BLK_UPDATE.ACTY_ID;
      MY_ACTY_WORK_ID    DWR.ACTY_WORK_ID%TYPE := :BLK_UPDATE.ACTY_WORK_ID;
      MY_CNTY_ID         DWR.CNTY_ID%TYPE      := :BLK_UPDATE.CNTY_ID;
      MY_ASSET_GRP_ID    DWR.ASSET_GRP_ID%TYPE := :BLK_UPDATE.ASSET_GRP_ID;
      MY_ASSET_ID        DWR.ASSET_ID%TYPE     := :BLK_UPDATE.ASSET_ID;
      MY_RTE             DWR.RTE%TYPE          := :BLK_UPDATE.RTE;
      MY_BEG_MP          DWR.BEG_MP%TYPE       := :BLK_UPDATE.BEG_MP;
      MY_END_MP          DWR.END_MP%TYPE       := :BLK_UPDATE.END_MP;
      MY_FROM_DATE       DWR.DWR_DATE%TYPE     := :BLK_CONTROL.FROM_DATE;
      MY_TO_DATE         DWR.DWR_DATE%TYPE     := :BLK_CONTROL.TO_DATE;
      MY_FLAG_OFFSYS     VARCHAR2(11)          := :BLK_UPDATE.FLAG_OFFSYS;
      MY_FLAG_COMMENTS   VARCHAR2(11)          := :BLK_UPDATE.FLAG_COMMENTS;
      MY_SPECIAL_EVENT_SEQ_NO SPECIAL_EVENT.SPECIAL_EVENT_SEQ_NO%TYPE  := :BLK_UPDATE.SPECIAL_EVENT_DESCR;
      MY_FLAG_ACCDT      VARCHAR2(11)          := :BLK_UPDATE.FLAG_ACCDT;
    BEGIN
    :blk_control.dummy_flag := 1 ;
    :BLK_CONTROL.DUMMY_ERR_FLAG := 'N';
    VALIDATION_SELECTION;     -- Program Unit VALIDATES DWR SELECTION PARAMETERS PRIOR TO
                                                    -- PERFORMING THE SEARCH AND POPULATING THE DISPLAY BLOCK
    if :blk_control.dummy_flag = 1 then
      IF :BLK_CONTROL.DUMMY_ERR_FLAG = 'N' THEN
        MY_WHERE := BUILD_WHERE_CLAUSE(MY_DIST_ID,
                                       MY_ORG_ID,
                                       MY_ACTY_ID,
                                       MY_ACTY_WORK_ID,
                                       MY_CNTY_ID,
                                       MY_ASSET_GRP_ID,
                                       MY_ASSET_ID,
                                       MY_RTE,
                                       MY_BEG_MP,
                                       MY_END_MP,
                                       MY_FROM_DATE,
                                       MY_TO_DATE,
                                       MY_FLAG_OFFSYS,
                                       MY_SPECIAL_EVENT_SEQ_NO,
                                       MY_FLAG_ACCDT,
                                       MY_FLAG_COMMENTS);
        SET_BLOCK_PROPERTY('BLK_DISPLAY', DEFAULT_WHERE, MY_WHERE);
        GO_BLOCK('BLK_DISPLAY');
        CLEAR_BLOCK(NO_VALIDATE);
        EXECUTE_QUERY(ALL_RECORDS);
        IF :BLK_DISPLAY.DWR_SEQ_NO IS NOT NULL THEN
                   SET_ITEM_ON_OR_OFF('BLK_CONTROL.PB_PRINT', TRUE);
        ELSE
                   SET_ITEM_ON_OR_OFF('BLK_CONTROL.PB_PRINT', FALSE);
                   alert_id := FIND_ALERT('no_data_query');
                   IF ID_NULL(alert_id) THEN
                        error_msg(1000);
                   ELSE
                        set_alert_message(alert_id, 1040);
                        alert_button := SHOW_ALERT(alert_id);
                   END IF;
              END IF;
              GO_BLOCK('BLK_UPDATE');
              GO_ITEM('BLK_CONTROL.PB_SEARCH');
         END IF;
    end if;
    END;My questions are:
    After initializing, set and/or reset the global variable for the saved database table,
    do I copy the above code (i.e. the "entire" code in the "WHEN-BUTTON-PRESSED" Trigger for the PB-Search) to the WHEN-NEW-FORM-INSTANCE-trigger, or other trigger(s), of FormA to automate the Query Search whenever there is a successful database commit/save? Or
    is there a simple way to activate the code in the "WHEN-BUTTON-PRESSED" Trigger for the PB-Search of FormA? Or
    is there a simple way to activate the EXECUTE_QUERY(ALL_RECORDS) command in the WHEN-NEW-FORM-INSTANCE-trigger or other trigger(s) of FormA ?
    Thanks and always.

  • Can I use the same iTunes account for 2 iPads without having the same apps on both?

    Can I use the same iTunes account for 2 iPads without having the same apps on both? Everytime I try to sync my new iPad, it syncs all the apps that are on my account. If I can do this, can someone tell me how please???

    Yes you can, easily.  When you plug the first pad in to sync, note the name of the pad on the last pane.  Set up for that device whatever you want to sync.  When you are done, plug the second pad in.  Make sure it has a different name on the left pane.   Then sync to that pad whatever you want.  I tunes will remember what you did on each pad, and will start from there the next time you plug in.

  • HT201269 Can I set up two accounts for two different iPhones on the same iTunes account. Jimmy

    Hello,
    CanI set up two accounts for two different iPhones on the same iTunes account. Thanks JIMMY

    http://support.apple.com/kb/ht1495
    You can use the same apple id for two separate phoones to share apps/music, however you would need a separate apple id for both phone for imessage/facetime/icloud.

  • Is using one Apple Account for a family of two the best way to go?

    We are a family of two; at the beginning, I was the only Mc user (iPhone, MacBook Air and iMac). Then my wife got an iMac, an iPad and just ordered an iPhone. Our problem is that we are both using my same Apple Account and ID - which is fine because we want to share our calendars, phone book etc… Is this the best way to go, or should I create an Apple Account for her and then run the option Family Share ? What do you recommend ? How do I proceed with an eventual change ?

    Just sign out of the account on her devices, then sign into the new account, don't forget Find My Phone (it it is active)
    iCloud calendars can be shared.

  • I have an IPAD 2 that I use to view an IP camera over a Wifi network.  The Ipad is in a vehicle that leaves the Wifi range and then returns to the range.  Upon returning to the range, the Ipad has trouble connecting to the network. (30 seconds)

    I have an Ipad 2 that I use to view an IP camera over a Wifi network.  The Ipad is in a vehicle that leaves the Wifi range and then returns to the range.  Upon returning to the range, the Ipad has trouble connecting to the network. (30 seconds)  The Ipad will eventually connect to the network, but by this time the driver is frustrated.  I have moved the antenna to within 20' of where the vehicle comes to a stop.  My Iphone does not have a problem connecting or reconnecting when used side by side with the Ipad.  Both the Ipad and Iphone have Otter box covers.  Has anyone run into this problem or have any suggestions?

    30 seconds to reconnect to a WiFi network is not unusual, especially in an environment where other radio signals on similar frequencies are present.  Sorry about that.
    You might get better times by letting the WiFi base station pick another channel.  But you might not.

  • I was using my bros account for icloud, he changed & forgot the pass now i want to sign out & put mine but i'm not able to do that and he couldnt recover bcz he did it long time ago and apple support are not sending a recovery email to his email?

    i was using my bros account for icloud, he changed & forgot the pass now i want to sign out & put mine but i'm not able to do that and he couldnt recover bcz he did it long time ago and apple support are not sending a recovery email to his email... what shall i do now to sign out?

    Tell him to contact the Apple account security team for his country and ask for assistance changing the password: http://support.apple.com/kb/HT5699.  If his country isn't listed, he can try contacting iTunes store support by filling out this form: https://www.apple.com/emea/support/itunes/contact.html.

  • My ipod wont let me buy apps etc... keeps saying this is the first time this device has been used and to sign in and answer security questions. I have had this account for years but cant remember the answer to the security questions. How can i fix it?

    My iPod touch wont let me buy anything, i've beem using this account for a couple of years and now it says that this is the first ime this id has been used on my device... it's not.... and to sign in and answer security questions. i cant remember the answers to the questions. How can i fix this without making a new account and losing all my stuff???

    From a Kappy  post
    The Three Best Alternatives for Security Questions and Rescue Mail
       1. Use Apple's Express Lane.
    Go to https://expresslane.apple.com ; click 'See all products and services' at the
    bottom of the page. In the next page click 'More Products and Services, then
    'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Forgotten Apple
    ID security questions' and click 'Continue'. Please be patient waiting for the return
    phone call. It will come in time depending on how heavily the servers are being hit.
    2.  Call Apple Support in your country: Customer Service: Contact Apple support.
    3.  Rescue email address and how to reset Apple ID security questions.
    A substitute for using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • HT4436 can I have a second icloud account for my spouse and use the same apple account

    I was trying to find out if it is possible to set up a second icloud email account for my wife and both use the same apple ID so we can share bought apps without her receiving all of my calander notices, email alerts etc?

    Yes, you can delete your account from settings > iCloud.  Your data will be stored in your personal account (simply choose to delete all information from your iPad when prompted). Then make a new one (again, settings > iCloud) making an account for your class.  When you are done in the classroom, delete the iCloud account again and login with your personal account  When prompted, always delete the information.
    Kind regards,

  • I currently have one iTunes account for my personal iPod Touch and for my work iPhone and iPad.  Can I create a separate account for work and keep my current account for my personal use - on the same computers?

    I have an iTunes account for my personal iPod Touch - have had for several years.  When my work provided me with an iPhone and now and iPad 2, they all fall under my personal iTunes account.  Is it possible for me to create a separate account for my work devices and apps, while leaving my personal account intact?  I use both my compter at home and at work to sync occasionally.

    A much simpler solution would be to go into Settings > Store and turn off Automatic Downloads

  • How do you make separate ICloud accounts for people who all use the same Apple ID?

    Me, my brother and mam all use the same Apple ID (i.e. this one. I'm not Debra) so is it possible to create three different ICloud accounts? I only want my music, pictures etc to go to my IPad, IPhone and my account on the Mac. If it's not possible, is there a way to see all the activity from this Apple ID in one place and split it into three different ID's easily? Thank's for any replies

    Welcome to the Apple Community.
    You can't have 3 accounts with one ID.
    If the reason you want to keep a single ID is so you can share music and apps etc, then you should be aware that the iTunes account and iCloud accounts are different accounts, you can all share an iTunes account but have different iCloud accounts (each iCloud account would have its own ID).

  • I have the Huawei S7 tablet running Android 2.1-update 1 and when I try to launch Firefox for Android it returns to the home screen. Anyone else have this problem?

    I can install the application although it will not launch. I get the firefox logo before it returns to the application screen. When I check to see if it is running it is not listed.

    Thanks for the report. We haven't tested Firefox on this device, and I'm not sure why it is crashing on startup. If you'd like to help us find out more, you can try both the ARMv6 and ARMv7 nightly builds at https://wiki.mozilla.org/Mobile/Platforms/Android

  • Why am i being billed an early termination fee for a device returned within the 2 weeks?

    Why am I being billed for a device I returned within the two week period plus another 105 fees on top of that? This is appalling. My husband got cancer and I couldn't afford the extra devices we got on Black Friday so returned them within the two week period and are now being billed $280 in extra fees plus tax? I think this is fraudulent charges and I can get no help calling - I was sent to a disconnected number after waiting over 20 minutes.

    yes I did --- it was a PROMO and the reps lied to me. I've been a customer for over 10 years and am so disgusted I think I am going to have to change carriers. I run a PR firm and have NEVER been treated with such disregard and been subject to a bait and switch. It is no wonder Verizon is being taken to task for such unfair business practices.

Maybe you are looking for

  • Oddball WCS map issue !? help please

    Hi, have tried to create a perimeter on WCS map editor as a test to keep some of the assets from appearing way off the map. It made no real difference. Problem is to remove the perimeter I selected new perimeter (which erases last perimeter) and save

  • Performance Tuning 'Runtime Error' on Select statement

    Hi Experts, Good Day! I would like to ask some help regarding a custom program that will encounter 'Runtime Error' on the below codes on how to perform performance tunning especially number 1. 1. SELECT A~VBELN A~ERDAT A~AUART A~VKORG A~VTWEG A~SPART

  • JavaHelp to point to specific HTML Page

    Hi, Does anybody know how to display JavaHelp to point to a specific HTML page??? i.e when my JavaHelp opens, i want to display a component specific JavaHelp or rather a specific HTML page Help needed urgently on this Thanks kavita

  • Adobe LiveCycle Workspace "Save as Draft" option

    Hi,      I have XDP form designed using Adobe Form Designer 9.0.0.2 which has WSDL Data connections to fetch data from database to populate the form. This form has to be displayed in workspace for completion process with Reader Extension (Database an

  • Sound Blaster 5.1 Install iss

    I just purchased the basic Sound Blaster 5. sound card for my PC. I followed all the instructions and installed the drivers on my Windows XP (SP2) machine, but for some reason the sound card is not recognized when I click on "Sound and Audio Devices"