Creating new external bank account.

I wanted to create a new external bank account. Please explain the steps in details.

Hi Jaya,
U will have to create posting rules for all the different tranactions that r there in the bank statement.
For eg if u have created the tcodes that the bank use as the posting rule, then new bank transactions would have new posting rules.
For all posting rules u will have to assgn ext trans types as per the logic that i have given.
The basic logic for posting rule is:
For Credit:
"C",1,40," ","<incoming account symbol>",," ","<main account symbol>","ZR",5
For Debit
"D",1,," ","<outgoing account symbol>",50," ","<main account symbol>","ZR",4
Regards,
Kiran

Similar Messages

  • Create a vendor bank account by BAPI with LFBK

    Hi forum
    Someone knows how to create a vendor bank account by BAPI ?
    with data from LFBK
    thnks
    Josué Cruz

    Check with below FM:
    FLBPC_MAINTAIN_VENDOR_SAVE
    Thanks
    Seshu

  • Create new InContext Editing accounts functionality unavailable starting Saturday Oct 31 at 7pm PDT until Sunday Nov 1 at noon PST

    The Adobe InContext Editing service will undergo scheduled maintenance starting on Saturday Oct 31 at 7pm PDT and end Sunday Nov 1 at noon PST. However, the service will be available during this time. The only area affected by this outage will be the new account creation. During this time, you won’t be able to create new InContext Editing accounts.
    We appreciate your patience and apologize for any inconvenience this may cause.
    -The Adobe InContext Editing Team

    This really should have gone out in an email to InContext users.  Not a huge deal, but I spent 20 minutes testing a site in various browsers, and looking on forums before i found this . . .
    Just an idea.
    Thanks.
    _T

  • Create New Apple ID Account

    when i create my new apple ID account i recive a message that told me This Apple ID has not yet been used in the ITunes Store and when i tap review it tells me that i must have a visa or master card or ITunes Gift Cards and i do not have anything, what shoud i do ??

    You need a valid credit card even for free apps. You won't be charged.

  • Create new external window and displays the viewdata as pdf?

    Hi,
    I have developped an application that will display some textviews and one table that displays 5 records,
    for this I want display as new External window and dispay in PDF the data what we have in view.
    advise me how to approach for external window and diplay as PDF.
    Thanks,
    Lohi.
    Message was edited by:
            Lohitha M

    Thanks for your reply,
    Here my problem is now I am getting the table values as output in the Jsp.
    In Jsp I want to create Button when I click that button I need to display an external window and display the table data what ever is available that will display new external pdf.
    I have developped the applcation by using of the three files table.java,tablebean.java,table.jsp and in portalapp.xml cretated the component.
    Now  how can I perform my action in that existed Jsp page and how to display extenal window i that how to generate the PDF.
    I am in learning stage in this.
    please elobarate with atleast some snippests.
    Thanks,
    Lohi.
    Message was edited by:
            Lohitha M

  • Can't create new free books account in iTunes Connect

    I am trying to create a new free books account so that I can publish my book to ibooks. I just keep getting the same error message over and over and all of the info I am inputting is correct."Error saving application"  What the???? where now.  I have created by book and I want to get it up and running.  Please advise.
    Thanks

    The solutiuon is here.....
    Apple have new requirements..... iTunes, iBooks Free and iBooks Paid each require a diferent  ID -  email address and passwords.
    Apple  do not seem to think  about chaning the website everytime they change rules and requirements. 
    For World renowned high tech products business.... at times they do nothing to  help their users!!

  • Create new Game Center account option not appearing on iPad mini or iPhone 6

    I Am trying to create a second Game Center account so that my son can keep his clash of clans village and I can keep mine.  When I log out of Game Center, though, no option to create a new game center account appears (as all the tutorials I have read indicate that it should).  I have tried logging out from app on both devices to no avail.  When I log out though the device settings under Game Center, my only options are to sign back in or follow a link for forgotten I'd or password...  I need help.

    Creating a new iTunes account does not remove any purchases made on a different account.
    If you want to create a new account : iTunes: How to set up an Apple ID within iTunes
    Or if you will want to use it in the stores and don't want to give credit card details : Create an iTunes Store, App Store, or iBooks Store account without a credit card or other payment method
    Or if you are not currently logged into an account in game centre then you should have a 'create a new Apple id' link at the bottom of the login screen in it.

  • Create new IMAP & SMTP account with AppleScript

    After reading a thread over here where some of you mentioned the problem creating a new mail account using AppleScript in fact there really seems to be a bug that doesn't allow to change authentication of a SMTP server to Password.
    So I ended up going this way using PListbuddy. Of course this is no complete script and you have to adapt it to your needs. But in general "automatic" creation of new accounts works fine. We're using it to provide this to our customers as Apple Mail does not support automatic creation of mail accounts using autoconfig or autoresponder.xml.
    set command1 to "/usr/libexec/PlistBuddy -c 'Add :DeliveryAccounts:0 dict' ~/Library/Preferences/com.apple.mail.plist"
    set command9 to "/usr/libexec/PlistBuddy -c 'Add :DeliveryAccounts:0:AccountName string " & theMail & "' ~/Library/Preferences/com.apple.mail.plist"
    set command2 to "/usr/libexec/PlistBuddy -c 'Add :DeliveryAccounts:0:AccountType string SMTPAccount' ~/Library/Preferences/com.apple.mail.plist"
    set command3 to "/usr/libexec/PlistBuddy -c 'Add :DeliveryAccounts:0:Hostname string " & servername & "' ~/Library/Preferences/com.apple.mail.plist"
    set command4 to "/usr/libexec/PlistBuddy -c 'Add :DeliveryAccounts:0:SSLEnabled string YES' ~/Library/Preferences/com.apple.mail.plist"
    set command5 to "/usr/libexec/PlistBuddy -c 'Add :DeliveryAccounts:0:ShouldUseAuthentication string YES' ~/Library/Preferences/com.apple.mail.plist"
    set command6 to "/usr/libexec/PlistBuddy -c 'Add :DeliveryAccounts:0:Username string " & username & "' ~/Library/Preferences/com.apple.mail.plist"
    set command7 to "/usr/libexec/PlistBuddy -c 'Add :DeliveryAccounts:0:uniqueId string " & myid & "' ~/Library/Preferences/com.apple.mail.plist"
    set command8 to "/usr/libexec/PlistBuddy -c 'Add :DeliveryAccounts:0:AuthenticationScheme string PASSWORD' ~/Library/Preferences/com.apple.mail.plist"
    do shell script command1
    do shell script command2
    do shell script command3
    do shell script command4
    do shell script command5
    do shell script command6
    do shell script command7
    do shell script command8
    do shell script command9
    tell application "Mail"
              set newimapac to make new imap account with properties {name:theDescription, user name:theUsername, uses ssl:true, server name:servername, port:"993", full name:theName, email addresses:{theMail}}
              tell newimapac
                        set authentication to password
                        set user name to username
                        set password to thePassword
              end tell
              set mysmtp to smtp server (theDescription)
              tell mysmtp
                        set password to mypass
              end tell
              set smtp server of newimapac to mysmtp
    end tell

    The following works exactly right, so far as I can tell (note that I made a copy of the Mail.app plist and renamed it
    com.apple.mail_copy.plist). what are you doing differently?
    set theMail to ""
    set servername to ""
    set myid to ""
    set username to ""
    set accountRecord to {AccountName:theMail, AccountType:"SMTPAccount", Hostname:servername, SSLEnabled:"YES", ShouldUseAuthentication:"YES", uniqueId:myid, |Username|:username, AuthenticationScheme:"PASSWORD"}
    tell application "System Events"
              set theMailPlist to property list file "~/Library/Preferences/com.apple.mail_copy.plist"
              tell theMailPlist
                        tell property list item "DeliveryAccounts"
                                  set newAccountItem to make new property list item at beginning with properties {kind:record, value:accountRecord}
                                  tell newAccountItem
                                              make new property list item with properties {kind:string, name:"Username", value:username}
                                  end tell
                        end tell
              end tell
    end tell
    to find a particular item in a list or directory, you use code like the following:
    tell application "System Events"
              set theMailPlist to property list file "~/Library/Preferences/com.apple.mail_copy.plist"
              tell theMailPlist
                        tell property list item "DeliveryAccounts"
                                  get every property list item whose (value of property list item "Username") contains "chump"
                        end tell
              end tell
    end tell

  • Lost progress in game center account after re-create new apple id account by same email

    My situation is that my apple id was locked (I have no idea why) but I failed when tried to unlock it by Send Email Authentication or Answer Secure question (I noted the questions & answers before, then I'm quite sure I have correct stuffs), no idea why it didn't work.
    At that time, I did a silly action that I created a new apple id with the same email address (I had thought that it had to be impossible because Apple ID don't allow to create apple id with an unavailable email address and my apple id was just locked, not deleted or changed email). Unfortunately, I could create a new apple id with the same email address of the old one, why it's possible
    Then, the new apple id (same email address, same id, even same password ) but all my stuffs on icloud, progress on game center was replaced by EMPTY . hjx, I have a Clash Of Clan account with level 113, I contacted Clash Of Clan admin, they replied that they just could help me to do any necessary query to support if apple require, but they could not restore my progress to the new apple id (new but old)
    I appreciate for any recommendation to help me get my stuff back.
    Thanks for reading!

    I was able to correct this by going into Safari privacy settings and changing the accept cookies from Never to only visited.

  • Create New Creative Cloud account to "rent" apps with

    My original account, this one has been compromised back in the great Adobe account pwning.
    So is it possible to create a different account from one of my co-workers, whos account was not pwned,
    in order to run Adobe Premiere Pro?
    Any every time I try to load Creative Cloud it asks to log in as me, and I want the following to
    happen.
    1) log in as the new account with credit card info
    2) Not attempting to log in as me, as my account was pwned.
    I even deleted CC earlier off my brand new machine and it insists on remembering my account, which I do not want
    to connect to a credit car due to the pwning.
    Will check in Monday for complete resolution.
    Thanks
    Message was edited by: Mark Pigott

    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • 10.5.3 Mail Creates New Message on Account Activation -Totally Bizarre

    Hi there - this is a weird one.
    I recently added a new pop account that had some ssl connection issues, but otherwise seemed fine. The account frequently goes offline during the day and whenever I take it back online, Mail grabs the last received email from any account, and places its contents into an email from one of my addresses to the same address.
    It's worth noting that Mail has been behaving slowly and crashing a lot since the 10.5.3 update. Is anyone else seeing the same bug, or have any ideas?
    Thanks

    Thanks Barry. I agree - corrupted preferences can be sources of strange behavior.
    It's been recommended to me that the combo updater should be applied before trying to rebuild the accounts and such as I'll have to if I scrap the preferences. I'll post the results here after I do so.

  • Creating new g/l account

    hello experts,
                         when i make downpayment request and downpayment invoice it error that not define downpayment request and invoice account.i try to set this accounts but i cant do.becoz before this entry i have made many transaction. now how can i set these 2 accounts. plz clarify my doubt

    Hii Rajan
                try this
                       administrationsetupfinancials---G/L account determination
               Sales tabTax(set up g/l account)
             Purchase tab-tax(set up g/l account)
    also setup Sales tab--accounts receavable (click on box)
                    purchase tab---accounts payable (click on box) and set up
                                  try it
                                                                   Good Luck
                                                                                    Riyaz

  • Creating new Att email account

    I just purchased a iPhone4 and wnt to set up my Att email account. How do I get an address assigned?

    Do you already have an AT&T email account? The iPhone does not include one.

  • HT1420 I am trying to create new I tunes account , but I had a age sting accunt under a deferent applies id

    Please help

    Hi azbaby2000,
    If you need to change the payment method associated with your Apple ID, use the steps in this article -
    Change or remove your payment information from your iTunes Store account (Apple ID) - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Bank account number not reflecting while creating invoice some parties

    Hi All,
    We are facing following issue while creating invoice's for some particular parties.
    Bank account number is not reflecting while creating invoice at invoice work bench from front end. Bank account details are properly attached at party site level.
    Kindly guide us regarding this.
    Thanks,

    Hi Team,
    If you are getting XXXX in place of Bank number then the issue is at (Setup > Payment >Payment Adminstrator).
    Log into Payments Setup > Shared Setup > System Security Options. Now you will find "External Bank Account Masking Setting" & Number of Digits to Disp . Now provide the numer of digits to display.
    Thanks
    Vinod K

Maybe you are looking for

  • Nota Fiscal Modelo 11A com numeração  zerada e série em branco

    Prezados, bom dia! Estou em uma implementação de SAP onde o cliente continua emitindo  Nota Fiscal de Serviço  em formulário 1/1A. Quando na J1B3N gero a saída neste processo a Nota Fiscal não está recebendo o NFNUM e nem a série. Ela aparece na J1BN

  • Music not showing up in imovie

    I am trying to add a sound effect to my iMovie. I have imported it to my iTunes library and can play it in iTunes, but in iMovie it is not in the iTunes list. What am I doing wrong?

  • How to find standard function modules for IDOCs

    Hi, Can anyone tell me is there any way to find the standard function module for IDOC. I have checked BD60 but it's not available. For example  Idoc type WPUBON01 and I need to know the function module. Can anyone tell me the way out. Secondly, if an

  • Lumia Comparisons

    Hi Experts & Nokia Lovers, I did my research and comparison of Lumia 710 with the following: 1) Samsung Galaxy S Duos 2) HTC Desire X 3) HTC One V 4) HTC Desire V 5) Sony Xperios Go / U Lumia beats the above in most of the things except for two main

  • Where does VCS get passwords from when doing LDAP authentication

    I was wondering, if I were to configure VCS to do LDAP authentication while using an Active Directory as LDAP, which passwords would it be using?   Will it authenticate against domain password or will I need to fill in a separate password attribute (