How to Top up Bank account with cash

Hi Experts,
                Can you give us a Configuration method to top up the Bank account with cash? i.e., I need to top-up the house bank with some money.
With Regards
Siva

Hi,
T.code F-02.
pst key 40       Bank GL account           Amount
Pst key 50       Cash Account                Amount
Save
Regards,
Raj

Similar Messages

  • Living in Japan and I'm an American who just signed up with Soft Bank the phone service here and spent a TON of money on an iPhone. I can't figure out how to connect my bank account at home to my app account so I can Skype my family. Please help!!!!

    Living in Japan and I'm an American who just signed up with Soft Bank the phone service here and spent a TON of money on an iPhone. I can't figure out how to connect my bank account at home to my app account so I can Skype my family. Please help!!!! I don't have a credit card nor do they gove debit cards to foreigners here, or at least it's really hard so I'm using my bank at home and still have a debit there. My phone number is 8 numbers plus the country code which is strange! Another thing is I was given a phone email that I was told to use for texting but I'm not sure how that works!! It's so frustrating too because no one speaks English here and I'm not very tech savvy. God bless you if you can help :)

    whichever app store you are connecting to, hyou need a credit card with an address in that country. Also, itunes gift cards must be in local currency too.
    If you are in japan, you need to use the japan app store

  • HT201303 Someone uses my apple ID to purchase, I have changed my password but not work . How can I disassociate my bank account with my APPLE ID?

    Someone uses my apple ID to purchase, I have changed my password but not work . How can I disassociate my bank account with my APPLE ID?

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    For non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
     Cheers, Tom

  • Pogramm update for Vendor's bank account with duplicate No.

    HI Guru's,
    This program will perform the Vendor's bank account with
    duplicate No. on both level on higher level as well company code level. but field lfa1-loevm not shwoing in the report..
    if i put delection flag at company level or centrel level : lfa1-loevm.. will not showing in report.. how to modify any one can help me..
    TABLES: lfa1,
            lfb1,
            lfbk,
            t077y.
    DATA: BEGIN OF fi_vendor,
          bukrs     LIKE lfb1-bukrs,   "company code
          vendor_no LIKE lfbk-lifnr,   "Vendor No"
          name      LIKE lfa1-name1,   "Vendor name
          bank_no   LIKE lfbk-bankn,   "Bank account no.
          bankc_key LIKE lfbk-banks,   "Bank control key
          bank_key  LIKE lfbk-bankl,   "Bank account
          create_n  LIKE lfa1-ernam,   "Created by
          createon  LIKE lfa1-erdat,   "Created on
          acct_group LIKE lfa1-ktokk,  "Vendor group name
          deletion   LIKE lfa1-loevm,  "deletion flag
          nodel    LIKE lfa1-nodel,  "Central deletion block
          sperr      LIKE lfa1-sperr,  "Posting Block
          no_account TYPE i.
    DATA: END OF fi_vendor.
    DATA: vendor  LIKE lfb1-lifnr,
          name    LIKE lfa1-name1,
          bank    LIKE lfbk-bankn,
          company LIKE lfb1-bukrs,
          bc_key  LIKE lfbk-banks,
          b_key   LIKE lfbk-bankl,
          cre_by  LIKE lfa1-ernam,
          cre_on  LIKE lfa1-erdat,
          ven_group LIKE lfa1-ktokk,
          dele    LIKE lfa1-loevm,
          nodel   LIKE lfa1-nodel,  "Central deletion block
          sperr   LIKE lfa1-sperr,  "Posting Block
          number TYPE i.
    DATA: fi_vendor_dupli LIKE fi_vendor OCCURS 0 WITH HEADER LINE.
    DATA: fi_vendor_dupli1 LIKE fi_vendor OCCURS 0 WITH HEADER LINE.
    CONSTANTS: a1sg(5) VALUE 'AH',
               w1sg(5) VALUE 'IMH',
               n1sg(5) VALUE 'NUH',
               t1sg(5) VALUE 'TTSH',
               q1sg(5) VALUE 'HQ',
               h1sg(5) VALUE 'PHARM',
               e1sg(5) VALUE 'NETC',
               p1sg(5) VALUE 'POLY',
               d1sg(5) VALUE 'DIAG'.
    Limiting the select option to company code.
    *SELECT-OPTIONS: bukrs FOR lfb1-bukrs.
    START-OF-SELECTION.
      PERFORM bank_detail.
    TOP-OF-PAGE.
      PERFORM header_detail.
    *&      Form  BANK_DETAIL
          text
    FORM bank_detail.
    *To get the duplicate bank account.
      SELECT  lfbk~bankn COUNT( * ) INTO (bank, number)
                       FROM lfbk
                       INNER JOIN lfa1
                       ON lfa1lifnr EQ lfbklifnr
    WHERE loevm NE 'X
                                          GROUP BY lfbk~bankn.
        IF sy-subrc EQ 0.
          IF number > 1.
            MOVE: bank       TO  fi_vendor_dupli-bank_no,
                  number     TO  fi_vendor_dupli-no_account.
            APPEND fi_vendor_dupli.
            CLEAR fi_vendor_dupli.
          ENDIF.
        ENDIF.
      ENDSELECT.
    *vendor created on higher level
      LOOP AT fi_vendor_dupli.
        SELECT alifnr abanks abankl abankn INTO
                            (vendor,bc_key, b_key, bank)
                            FROM lfbk AS a
                            INNER JOIN lfa1 AS c
                            ON alifnr EQ clifnr
                            WHERE a~bankn EQ fi_vendor_dupli-bank_no
    AND c~loevm EQ space.
          IF sy-subrc EQ 0.
            CASE company.
              WHEN 'A1SG'.
                company = a1sg.
              WHEN 'W1SG'.
                company = w1sg.
              WHEN 'N1SG'.
                company = n1sg.
              WHEN 'Q1SG'.
                company = q1sg.
              WHEN 'H1SG'.
                company = h1sg.
              WHEN 'E1SG'.
                company = e1sg.
              WHEN 'P1SG'.
                company = p1sg.
              WHEN 'D1SG'.
                company = d1sg.
              WHEN 'T1SG'.
                company = t1sg.
            ENDCASE.
            MOVE: company    TO fi_vendor_dupli1-bukrs,
                  vendor     TO fi_vendor_dupli1-vendor_no,
                  bc_key     TO fi_vendor_dupli1-bankc_key,
                  b_key      TO fi_vendor_dupli1-bank_key,
                  bank       TO fi_vendor_dupli1-bank_no,
                  fi_vendor_dupli-no_account TO
                         fi_vendor_dupli1-no_account.
            APPEND fi_vendor_dupli1.
            CLEAR fi_vendor_dupli1.
          ENDIF.
        ENDSELECT.
        CLEAR company.
      ENDLOOP.
    *Vendor created under company code level eg. employee group.
      SELECT alifnr bbanks bbankl bbankn
                      INTO (vendor,bc_key, b_key, bank)
                      FROM lfb1 AS a
                      INNER JOIN lfbk AS b
                      ON alifnr EQ blifnr
                      FOR ALL ENTRIES IN fi_vendor_dupli1
                      WHERE a~lifnr EQ fi_vendor_dupli1-vendor_no.
        IF sy-subrc EQ 0.
          IF company NE space.
            MOVE: vendor     TO fi_vendor_dupli1-vendor_no,
                  bc_key     TO fi_vendor_dupli1-bankc_key,
                  b_key      TO fi_vendor_dupli1-bank_key,
                  bank       TO fi_vendor_dupli1-bank_no.
            MODIFY fi_vendor_dupli1.
          ENDIF.
        ENDIF.
      ENDSELECT.
      LOOP AT  fi_vendor_dupli1.
        SELECT name1 ernam erdat ktokk loevm nodel sperr
                     FROM lfa1
                     INTO (name, cre_by, cre_on, ven_group, dele, nodel,
                     sperr)
                       WHERE loevm EQ space
                       AND lifnr = fi_vendor_dupli1-vendor_no.
          MOVE: name   TO fi_vendor_dupli1-name,
                cre_by TO fi_vendor_dupli1-create_n,
                cre_on TO fi_vendor_dupli1-createon,
                ven_group TO fi_vendor_dupli1-acct_group,
                dele      TO fi_vendor_dupli1-deletion,
                nodel   TO fi_vendor_dupli1-nodel,
                sperr  TO fi_vendor_dupli1-sperr.
          DELETE ADJACENT DUPLICATES FROM fi_vendor_dupli1
                              COMPARING vendor_no.
          MODIFY fi_vendor_dupli1 TRANSPORTING name
                                               bukrs
                                               create_n
                                               createon
                                               acct_group
                                               vendor_no
                                               deletion
                                               nodel
                                               sperr.
        ENDSELECT.
      ENDLOOP.
      SORT fi_vendor_dupli1 BY bank_no vendor_no.
      DATA: cnt TYPE i.
      LOOP AT  fi_vendor_dupli1.
        SELECT SINGLE * FROM t077y WHERE ktokk EQ
                                  fi_vendor_dupli1-acct_group
                                  AND spras EQ 'EN'.
    WRITE: /1    fi_vendor_dupli1-bukrs,
            WRITE: /5   fi_vendor_dupli1-vendor_no,
                15   fi_vendor_dupli1-name,
                50    t077y-txt30,
                70   fi_vendor_dupli1-bank_no,
                90   fi_vendor_dupli1-bankc_key,
                95   fi_vendor_dupli1-bank_key,
                105  fi_vendor_dupli1-create_n,
                115  fi_vendor_dupli1-createon,
                128  fi_vendor_dupli1-deletion,
                134 fi_vendor_dupli1-nodel,
                158 fi_vendor_dupli1-sperr.
                ENDLOOP.
      ULINE.
    ENDFORM.                    "BANK_DETAIL
    *&      Form  HEADER_DETAIL
          text
    FORM header_detail.
    WRITE: /1 'Company',
      WRITE: /40 sy-title,
              110 'Page',sy-pagno.
      SKIP TO LINE 3.
      WRITE: /5 'Vendor No',
             15 'Vendor Name',
             50 'Acct Group',
             70 'Bank Account',
             87 'Country',
             95 'Bank Key',
             105 'Create By',
             115 'Create on',
             127 'Del.Flag',
             130'Central deletion flag',
             155'Block for Post.'.
      ULINE.
    ENDFORM.                    "HEADER_DETAIL
    regards
    JK

    solved

  • When I try to sign in to iTunes, it tells me that my Apple ID has not yet been used with the iTunes Store. How do I use my account with the iTunes Store?

    When I try to sign in to iTunes, it tells me that my Apple ID has not yet been used with the iTunes Store. How do I use my account with the iTunes Store?

    Hello Daijalove97,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Using an existing Apple ID with the iTunes Store and Mac App Store
    http://support.apple.com/kb/HT2589
    To use your Apple ID at the iTunes Store
    Open the latest version of iTunes.
    Choose Store > Sign In from the Store menu.
    Enter your Apple ID and password, then click Sign In.
    Click Review when asked to review your information.
    Enter your billing information, a credit card will be required.
    Click Continue when you're done entering your credit card and billing information.
    Best of luck,
    Mario

  • How can i erase an account with relationship with some class of tax

    how can i erase an account with relationship with some class of tax

    Hi Enrique,
    I am not sure what you mean by this, can you please explain in more detail? You cannot erase accounts that already have transactions posted to it.
    Hope it helps,
    Adele

  • TS1424 there are 43 available apps' update  which couldn't be made with my current account. How i can find the account with which i bought them in order to update them

    there are 43 available apps' update  which couldn't be made with my current account. How i can find the account with which i bought them in order to update them

    Use get info in iTunes on your Mac.

  • How do i reset bank account information in apple account

    how do i reset bank account information in apple account

    If you mean that you want to change or remove your payment details then on your computer's iTunes you should be able to edit your payment info by going into the Store > View Account menu option and logging into your account, and on your account's details page there should be a payment link.  If you are doing it on an iOS device (iPad, iPhone or iPod Touch) then tap on your id in Settings > iTunes & App Store (Settings > Store on iOS 5 and below) and tap on 'View Apple ID' on the popup and log into your account  - that should also give you a payments link on your account's page.
    Changing payment info : Change or remove your payment information from your iTunes Store account (Apple ID)
    If you want to remove your payment details and aren't getting the 'none' option on the payment details screen : Why can’t I select None when I edit my Apple ID payment information ?

  • How can update my sync account with my latest desktop settings

    i have recent bookmarks and addons on my mozilla browser
    when i try to sync with my account i get back all the old staff which i do not need
    please tell me how can I update my account with ONLY my current desktop setting
    thank you

    Hi kvarkado,
    You would have to remove the profile with the old settings. If it is on another device you will have to set up sync with a new profile and with the current profile on the device you set it up. [[Use the Profile Manager to create and remove Firefox profiles]]

  • System should allow to post to bank account with the available cash for cash account in fbl3n

    Hi Friends,
    User is posting Bank account Dr to
                           Cash account Cr
    If cash account balance is 40000 in FBL3N, and if user posting more than that amount, then system should not allow to post
    in F-02 and FB50 transactions.
    Pl help me out
    Thanks,

    Hi Mahesh,
    I think we cannot go for cash Journal, because for the below entry i should make the cash account
    settings as post automatically only in FS00 transaction.
    Bank account Dr to
    Cash account Cr
    If that is the case then we cannot post manually to the cash account.
    I think we need to go for some exit in validation.
    correct me if iam wrong.
    Thanks

  • How do I share itunes account with my wife who just got an iphone?

    How can I share my itunes account with my wife who just got her iphone 3gs but doesn't have an itunes account yet?

    hi, thanks but when i connect my wife's iphone to the pc it does a three step synch at the end of which nothing has transfered to her phone.
    asking it to synch on the dropdown menu top left pf itumes page or asking for synch after going into the icon for her iphone on top right does same three step synch with no result. i have no set up my itunes library on a separate pc (notebook) and put her apple id and password into the share function, and her id and passwoed onto share function on this pc. that gets my 'library' up via the share menu top left but it doesnt synch onto her phone either...

  • How do i sync Itune accounts with out loosing all of my music on one account

    I am a new Itunes account user and would like to sync with my mothers account because that is where all of my music is but i do not know how to sync two seperate accounts to do so. If you know how or have anny other way of helping please do so. Thank you

    If it is purchased music, it will stay with her account.  Purchased from the iTunes store.  If the music is from stuff you or she ripped (imported from) cd's, that can be synced to your phone using iTunes.
    HTH

  • Loading bank accounts with invoices using Payables Open Interface Import

    Dear Gurus,
    We are on 11.5.10.2.
    We create invoices in the 3rd party system, then load them into oracle using payables open interface import process.
    When users create invoices, they choose Vendor and Site first. If the Vendor Site has multiple bank accounts assigned, users may select the one that is non-primary.
    When we load the invoices into Oracle, it finds the PRIMARY account for the particular vendor site, and assigns it to the invoice.
    Is it possible to load bank accounts assigned to invoices into Oracle AP?
    Many Thanks,
    Iana

    Hi,
    No issues for me on Payables Open Invoice Interface with 12.0.6 - and yes make sure you match up the invoice_id on invoice, lines interface tables.
    Regards,
    Gareth

  • How to change my iCloud account with only access to the Apple ID

    Hello everyone
    Im using my previous company ipad and i dont have access to the registered iCould account.
    How to change my icloud account to a new email account that i own.
    I have access to the Apple ID Account but i dont have access to the iCloud account in it.
    The Security Question was made by the tech admin of the company not by me, so not even that way its possible.
    Thank You in advance,
    Frederico

    I wish Apple improves this Security measures so that it lets remove features with both logins, Apple or iCloud credentials.
    Also the iCloud needs improvements, it should use the Apple ID not some other different login. The email part of icloud should be in iCloud but most people don't use iCloud mail so the rest of the features should be in the same email credentials as Apple ID.
    This way im not sure if i take the risk on Restoring the iPad, i could end up beeing locked out of my own device.
    All this hierarchic credentials are confusing. I would only need the Apple ID that is being used on the iPad to clean it up or turn off options like iCloud account currently on the device.

  • How to create 2 icloud accounts with one apple id

    I would like to find out how to create 2 iCloud accounts using the same apple id. Currently, my husband's iphone4S and my iPhone 4 have merged contacts which we don't want, and when he texts it shows that it is from me.

    You can't do that.  One of you will have to create a new icloud account with a new ID and connect the device to it.
    TO GET DATA FROM ONE ACCOUNT TO A NEW ACCOUNT:
    When connected to the account you want to GET data from, Go to Settings>iCloud and turn all data that is syncing with iCloud (contacts, calendars, etc.) to Off. 
    When prompted choose to keep the data on the iPhone. 
    After everything is turned off, scroll to the bottom and tap Delete Account.  Next, set up a new iCloud account using a different Apple ID and turn iCloud data syncing for contacts, etc. back to On.  When prompted, choose Merge.  This will upload the data to this new account.
    Note that this only affects the "Apple data" like contacts, calendars, reminders, etc.  Many third party apps also use iCloud to store data files there.  These files may be lost in the process, unless the apps also keep the data locally on the device.
    NOTE:  Photos in the photo stream (if you use it) will not transfer to the new account.  It is advised that you save the photos to a computer before performing the account switch. 
    CREATING A NEW ID:
    Each user should have their own icloud account, otherwise they end up getting the same emails, contacts, calendars, notes, reminders, etc. - usually not what you want.  But if all have been sharing the same itunes ID, keep it that way, you can have different IDs for itunes and icloud.
    If you already have another icloud account, and want to set it up on a device, then go to Settings>icloud, scroll to bottom of screen and tap Delete Account.  This only disconnects the device from that account, no data is lost on icloud.  Then enter the account ID that you want to use.
    To create a new icloud account, go to
    http://www.apple.com/icloud/setup/

Maybe you are looking for