In House Cash account balance did not reduce after executing F111

Hi,
This is regarding external payment via IHC.
Subsidiary 3000 with IHC account 3000010 is paying Vendor A.
3000 execute F110 payment run and AP open item is cleared.
Payment order is generated and posted. Payment request is created.
IHC 3000010 account balance decrease by the payment amount.
IHC 1000010 account balance increase by the payemnt amount.
Company code 1000 with IHC account 1000010 execute F111 to pay the external payment.
After payment request is executed. Balance in 100010 does not decrease.
Why is it so?
I dont think this is correct. Appreciate your response and assistance.
Cheers.

Hi,
This is regarding external payment via IHC.
Subsidiary 3000 with IHC account 3000010 is paying Vendor A.
3000 execute F110 payment run and AP open item is cleared.
Payment order is generated and posted. Payment request is created.
IHC 3000010 account balance decrease by the payment amount.
IHC 1000010 account balance increase by the payemnt amount.
Company code 1000 with IHC account 1000010 execute F111 to pay the external payment.
After payment request is executed. Balance in 100010 does not decrease.
Why is it so?
I dont think this is correct. Appreciate your response and assistance.
Cheers.

Similar Messages

  • Table space not reduce after delete in oracle 10g

    Hi..
    Based on my system, i have found that my oracle table space did not reduce after the deletion query. Why ?.. Could somebody help me. As your info, I am using oracle 10g.
    Thank you,
    Baharin

    After Delete the table space will not be set free. high water mark will not be reset. to regain the space you need to recognize the objects from which you deleted the data. This can be done in many ways.
    1) Move the objects.
    Alter table temp move --> optionally tablespace clause can be used. After this you need to rebuild table indexes.
    2) With 10g table can be shrinked or reorganize to free the space.
    alter table mytable enable row movement;
    alter table mytable shrink space;
    3) Export/Import
    export the objects and drop and recreate with import.

  • TS1702 I tried to purchase cityville hometown cash and it did not download. it said error try again later. I did that again and again 5 times. Now i got charged 5 times for something i didn't get! How do i tell apple to refund my money?

    How do i contact apple to refund my money? I tried to purchase cityville hometown cash and it did not download. It said error try again later, so i did that. I tried 5 times to buy cash for $13.99 and no download. My account was charged 5 times for something i didn't get. I contacted zynga and they said itunes at apple store can help. I tried apple support, nothing. Why is it so difficult to get a refund when you play these games? Makes me not want to play anymore! Please help!

    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
    Phone: 800-275-2273 How to reach a live person: Press 0 four times
    Hours of Operation: Mon-Fri: 9am-5pm ET
    Email: [email protected]
    How to report an issue with Your iTunes Store purchase
    http://support.apple.com/kb/HT1933
    How to Get a Refund from the App Store
    http://gizmodo.com/5886683/how-to-get-a-refund-from-the-app-store
    Canceling a Digital Subscription
    http://gadgetwise.blogs.nytimes.com/2011/10/14/qa-canceling-a-digital-subscripti on/
     Cheers, Tom

  • Prevent Petty Cash Account Balance to be negative

    Hi all,
       We've some Petty cash Accounts. It is observed that during the entries related to this cash accounts sometimes inbetween the day the cash balance becomes negative ( Due to the inappropriate order entry ).
       To force the Cash entries in exact order I want to put the check for cash account balance can't be negative.
      How to achive this ?

    Hi Naimish,
    You can use the following program to find the user exits in a transaction. Create this prog in your development as a local program.
    Just put the Tcode you are using in the selection screen and run it. It will list all the user eixts that are present . Do a trial and error till you get the exact user exit.
    Pls reward if useful.
    Laxman Nayak.
    *& Report  ZAK_FIND_USEREXIT                                           *
    REPORT  ZAK_FIND_USEREXIT  no standard page heading.
    Finding the user-exits of a SAP transaction code
    Enter the transaction code in which you are looking for the user-exit
    and it will list you the list of user-exits in the transaction code.
    Also a drill down is possible which will help you to branch to SMOD.
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
             tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
       select single * from tadir where pgmid = 'R3TR'
                        and object = 'PROG'
                        and obj_name = tstc-pgmna.
       move : tadir-devclass to v_devclass.
          if sy-subrc ne 0.
             select single * from trdir where name = tstc-pgmna.
             if trdir-subc eq 'F'.
                select single * from tfdir where pname = tstc-pgmna.
                select single * from enlfdir where funcname =
                tfdir-funcname.
                select single * from tadir where pgmid = 'R3TR'
                                   and object = 'FUGR'
                                   and obj_name eq enlfdir-area.
                move : tadir-devclass to v_devclass.
              endif.
           endif.
           select * from tadir into table jtab
                         where pgmid = 'R3TR'
                           and object = 'SMOD'
                           and devclass = v_devclass.
            select single * from tstct where sprsl eq sy-langu and
                                             tcode eq p_tcode.
            format color col_positive intensified off.
            write:/(19) 'Transaction Code - ',
                 20(20) p_tcode,
                 45(50) tstct-ttext.
                        skip.
            if not jtab[] is initial.
               write:/(95) sy-uline.
               format color col_heading intensified on.
               write:/1 sy-vline,
                      2 'Exit Name',
                     21 sy-vline ,
                     22 'Description',
                     95 sy-vline.
               write:/(95) sy-uline.
               loop at jtab.
                  select single * from modsapt
                         where sprsl = sy-langu and
                                name = jtab-obj_name.
                       format color col_normal intensified off.
                       write:/1 sy-vline,
                              2 jtab-obj_name hotspot on,
                             21 sy-vline ,
                             22 modsapt-modtext,
                             95 sy-vline.
               endloop.
               write:/(95) sy-uline.
               describe table jtab.
               skip.
               format color col_total intensified on.
               write:/ 'No of Exits:' , sy-tfill.
            else.
               format color col_negative intensified on.
               write:/(95) 'No User Exit exists'.
            endif.
          else.
              format color col_negative intensified on.
              write:/(95) 'Transaction Code Does Not Exist'.
          endif.
    at line-selection.
       get cursor field field1.
       check field1(4) eq 'JTAB'.
       set parameter id 'MON' field sy-lisel+1(10).
       call transaction 'SMOD' and skip first   screen.
    *---End of Program

  • Rebuild Database did not reduce the database size

    I just completed a rebuild database. The rebuild completed much quicker than anticipated and in the end the did not reduce in size.
    This is my first rebuild and since original installation I have deleted a number of masters. From my understanding thumbnails and previews are not deleted when the master is deleted. In order to delete the thumbnails and previews the db must be rebuilt. Is this correct?
    The db is over 31.1gb. The rebuild took approx 10 minutes and when completed the db size was still 31.1gb. There was a message during the rebuild that read "Recovering projects". I was expecting to see stats showing previews and thumbnails being generated in the activity window but don't see it. Has the db been rebuilt?
    Thanks for any assistance.

    Rebuilding the database is for disaster-recovery, not file maintenance. I certainly wouldn't do it unless something was fundamentally broken and the application didn't run.
    "rebuilding" the database seems to do the following:
    (1) remove the database file completely (not even to the trash, it destroys the database utterly)
    (2) run through the plist files and reconstruct a brand-new database from them all
    I checked this (on an empty library) using hard-links from the commandline, and step (1) above scared me sufficiently that I'd only rebuild the database as an absolute last resort.
    Now, 31GB seems a lot for a database that only took 10 minutes to rebuild - are you sure you're not telling us the size of the library (to find the database size, right-click on the library and select view-package-contents, then open the 'Aperture.aplib' folder and find the size of the 'Library.apdb' file. That's the file you're changing when you 'rebuild database'.)
    If you're telling us the size of the entire aperture library instead, then that size will be completely dominated by the master RAW files you've imported. I'd guess your library will be less than 10MB.
    My understanding is that previews are deleted (since they're stored as separate files alongside the master image, if you look in the folder hierarchy), but thumbnails aren't. The thumbnails are aggregated together into one-file-per-project (presumably for speed of access), and I'd guess the space is reclaimed for future use, but the file doesn't get any smaller. That's a classic trade-off for speed-of-access, and users like us are normally very keen on things being fast
    -=C=-

  • How can I get my money back I BUY the  Coins in the game fieldrunners 2 HD were cut $ 9.99 $ from my account and did not receive any coins?! No. process MHFQZV02X8 please  cancel the operation, collected coins and thank you

    How can I get my money back I BUY the  Coins in the game fieldrunners 2 HD were cut $ 9.99 $ from my account and did not receive any coins?! No. process MHFQZV02X8 please  cancel the operation, collected coins and thank you

    Apple does not have a presence here, this is a user to user forum. You would probably have more success contacting iTunes Support at http://apple.com/support/itunes/contact/.

  • HT4759 I want open my icloud  access my account but did not prospered, says the account has been suspended security reasons

    Hello dear sir I want open my icloud  access my account but did not prospered, says the account has been suspended security reasons and I'm the owner of the icloud account and I have passowrd
    Can you help me in to  open my account please
    Note I tried to re-change the password several times via e did not prospered
    <Personal Information Edited by Host>

    يا سيدي، الرجاء فتح حسابي وعدم حذف الصور هويتي
    مرحبا سيدي العزيز أريد فتح بلدي صول icloud حسابي ولكن لم ازدهرت، ويقول لقد تم تعليق حساب أسباب أمنية وأنا صاحب حساب icloud ولقد passowrd
    هل يمكنك مساعدتي في فتح حسابي من فضلك
    بلدي  هويتي التفاح أو icloud أو البريد  ملاحظة حاولت إعادة تغيير كلمة المرور، عدة مرات عن طريق البريد لم ازدهرت
    Message was edited by: stevemei
    <Personal Information Edited by Host>

  • TS1424 I have ringtones in my account that did not convert during my last two iphone updates.  Any suggestins?

    I have ringtones in my account that did not convert during my last two iphone updates.  Any suggestins?

    Welcome to the Apple Community.
    Try...
    iForgot.com

  • I applied for a Paid Books account, but did not receive a confirmation email.

    I applied for a Paid Books account, but did not receive a confirmation email. Now when I try to log in to upload another book, I get a message that says,
    "The iTunes Store account entered has already applied to distribute content on the iBookstore. To continue with this application, you must enter a different iTunes account." How do I even log in to the account that I already applied for???

    Did you use an existing Apple ID or create a new one just for paid books sales/distribution?

  • I sure hope iPad 2's prices are not reduced after I just bought a new one YESTERDAY.

    I sure hope iPad 2's prices are not reduced after I just bought a new one YESTERDAY prior to this new March 7th announcement!!! I saw that Best Buy reuced the price of their basic iPad (same one I bought) from $499 to $449.
    Not going to be very happy.
    Mattsells

    Skydiver119 wrote:
    Did you buy it at Best Buy? if so talk to them. THey may honor the price reduction. Bascially they are trying to reduce their inventory of 2's in anticipation of the 3 being announced next week or so.
    Indeed.  Best Buy just extended its return policy to 30 days.
    http://forums.macrumors.com/showthread.php?t=1331338

  • Table space not reduce after delete in oracle 11G

    Hi Team,
    I have a DB 11.1.0.7 on unix.
    I have execute delete tables on tablespace, but this not reduce.
    Thanks

    935299 wrote:
    What segment space management type is defined for the tablespace in question?
    MANUAL
    Then you should check out the documentation some more.
    But even if you shrink the table segement what is that going to do for the data file size?
    I don't undertand you.
    ThanksYour thread is titled "Table space not reduce after delete in oracle 11G" which implies to me that you are interested in reducing the size of a tablespace (which really means reducing the size of the underlying datafile(s)).
    So, if you shrink the size of the sys.aud$ table, will that cause the datafile(s) to become smaller? Will it accomplish your goal? What else, if anything, needs to happen?

  • Table size not reducing after delete

    The table size in dba_segments is not reducing after we delete the data from the table. How can i regain the space after deleting the data from a table.
    Regards,
    Natesh

    I think when you do DELETE it removes the data but
    it's not releasing any used space and it's still
    marked as used space. I think reorganizing would help
    to compress and pack all block and relase any unused
    space in blocks. Why do you think that? Deleting data will create space that can be reused by subsequent insert/ update operations. It is not going to release space back to the tablespace to make it available for inserts into other tables in the tablespace, but that's not generally an issue unless you are permanently decreasing the size of a table, which is pretty rare.
    Would you also please explain about different about
    LOB and LONG ? or point me to any link which explain
    baout it.From the Oracle Concepts manual's section on the LONG data type
    "Note:
    Do not create tables with LONG columns. Use LOB columns (CLOB, NCLOB) instead. LONG columns are supported only for backward compatibility.
    Oracle also recommends that you convert existing LONG columns to LOB columns. LOB columns are subject to far fewer restrictions than LONG columns. Further, LOB functionality is enhanced in every release, whereas LONG functionality has been static for several releases."
    LONG was a very badly implemented solution to storing large amounts of data. LOBs are a much, much better designed solution-- you should always be using LOBs.
    Justin

  • Percentage of used table space not reduce after deletion

    Hi..
    This is my query to delete data from database:-
    delete from $tb_data where to_char(partition_dt,'MON') = '$mm';
    The $tb_data and $mm is variable and the $tb_data will be read input table name (as example backup_nx160, backup_ngn and etc) and the $mm will be capture the input month.
    My question is why the percentage of used table space is not reduce after delete query was executed. Could somebody help me..
    Please help me..
    Thank you,
    Baharin

    baharin wrote:
    Hi..
    Is it the deleted space will be reused by the system ?Yes.
    .. How could i check the real free tablespace or real usage table space ?If you have gathered statistics on the schema recently, then sum (avg_row_len*num_rows) should give you the exact number of bytes that are being consumed - assuming all tables are in a single tablespace under consideration. You can subtract this value from sum (dba_data_files.bytes) figure for the tablespace, to know exact free space.

  • HT201412 My iPhone 5 did not on after when I upgrade

    My iPhone 5 did not on after I upgrade

    Try a reset, hold the power button and home button until you see the apple then let go.

  • Did not die after sending SIGKILL

    In the past 2 days, I've experienced significant slowdown.
    The only thing new is that I'm attempting to switch from Eudora to Mail.
    Here's what is repeating -- ENDLESSLY -- per Console:
    ...com.apple.launchd[1] (com.apple.RemoteDesktop.agent[74]): Did not die after sending SIGKILL 865 seconds ago...
    I have searched and there is no RemoteDesktop or ARD accessible on my machine!
    HELP

    Just FYI, all copies of Mac OS X since, I believe, 10.4 have the Remote Desktop client included.
    Check the Sharing preferences and see if either Remote Management or Screen Sharing are checkmarked. If either are, uncheck them and see if that stops the messages.
    I presume you've restarted your computer, yes?
    Regards.

Maybe you are looking for