BAUP - Where do you get the file from

We are looking to load in all of the local (country specifc) house bank data into SAP via BAUP.
The question I have is does this come from SAP, or do you download it locally.
I can see SAP note 132012 seems to indicate you need to download it, but I was under the impression it was delivered.
Can anyone confirm what is the correct process?

Hi Dirk,
For Russia you need to check at the Russian central bank site. But there is hardly any information on the SWIFT tables.
I prefer to work with SWIFT and perhaps you can ask your company to buy the swift database
http://www.swift.com/biconline/index.cfm?fuseaction=display_bicproductdetails&product=bicproducts_productdetail_bankfile
Regards,
Sanjay

Similar Messages

  • HT201210 I installed latest iTunes software on my Windows 7 PC, and now I keep getting error messages. Mainly one stating that MSVCR80.dll is missing. Where do I get this file from?

    I installed the latest iTunes software on my Dell Windows 7 PC. Durring installation, when it got to the "Starting Services" part, I got an error message:
    iTunes
    Service 'Apple Mobile Device' (Apple Mobile Devices) failed to start. Verify that you have sufficient priveleges to start system services.
    Abort    Retry   Ignore
    "Ignore" was highlighted.
    I tried "Retry" but same message kept coming up, so I tried "Ignore"
    Install completed. But when I tried to start iTunes, I got message:
    "iTunes.exe
    The program can't start because MSVCR80.dll is missing from your computer. Try reinstalling the program to fix this problem."
    Followed by the message:
    "iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 126)."
    I have tried the install procedure (after uninstalling iTunes) several times with the same results. Where do I get the file MSVCR80.dll? How do I get past this?

    Click here and follow the instructions.
    (98783)

  • Can you use Easynews to download movies etc to IMac and how and where do you save the files?

    Can you useEasynews to download movies etc to IMac and how and where do you save the files?

    From your Apple menu at the left end of the menubar, select "About this Mac." You get a window similar to this:
    1) The Mac OS version is just under the big "MAC OS X" line. Post what that says.
    2) We can start to figure out what iMac you have if you post what that the "Processor" line says.
    We need to find out because Apple's poor labling choices for this forum, intended for iMacs made before 2006, causes people with newer and much more capable Macs to post here by mistake.
    Without some info from you, it's much like your calling an auto mechanic and asking if you can use a certain part without telling him the make, model, or year of your car. Quess what his first question will be? Works the same here.

  • Is there any way to get the files from other computer ?

    Hai all,
    I have 2 computers connected. I know the IP address of other computer. Is there any way to get the files from other computer. (for e.g. I want to get the files from specific folder. In Java netwroking is it possible? (Any programs)
    regards,
    Namanc

    Bro Take it easy.
    Think you need to send a Image file named ("abc.gif")
    now develop a server using ServerSocket and connect it in local IP and any PORT
    For example i think ur server is connected in "localhost" and 9000 port.
    Now make ur server educated using some commands.
    For example:
    FileName: <File Name String>
    [Means new file is sending by connected client]
    FileSize: <File size long or int value>
    [ So that ur server can determind about the total length of sender file]
    DataModeOpen
    [Now your client will send its image data, this command means your client software is sending data]
    fjadlkfjaofaijojfwoeiurfodkjflsajlfksa
    l23j4lj23lkjlasjfoq23j4rokjelfkjasldkf
    2o3j4lk2j3ljslakdjf2l3j4 l23kjlk23k4j
    DataModeClose
    [Means file sending finished]
    Close
    [Means your client connection is closed]
    Now develop a client supporting this command.
    For example(Server):
    String getFileName=null;
    long getFileSize=0;
    public handleCommand(String getCmd) {
        if(getCmd.startsWith("FileName")) {
                String[] splitData=getCmd.split(":");
                this.getFileName=   splitData[1];
                outPutStream.writeBytes("+OK");
        } else if(getCmd.startsWith("FileSize")) {
                String[] splitData=getCmd.split(":");
                this.getFileSize=Long.parseLong(splitData[1]);
                outPutStream.writeBytes("+OK");
        } else if(getCmd.startsWith("DataModeOpen")) {
               //data mode open so receive data
              receiveData();
              outPutStream.writeBytes("+OK");
        } else if(getCmd.startsWith("DataModeClose")) {
              //close client socket
             getClientSocket.close();
    }For client:
    DataInputStream dataIn=null;
    BufferedOutputStream bout=null;
    public sendFile(bytes[] getBytes) {
            //if ok found then do other or show error message
        if(sendCmd("FileName:"+getFileName)) {
            if(sendCmd("FileSize:"+getFileSize)) {
                if(sendCmd("DataModeOpen")) {
                   bout.write(getBytes);
                } else {
                   showError(3);
            } else {
                   showError(2);
       } else {
            showError(1);
    }i think it will help u

  • Functional module to get the File from a given Directory

    Hi all,
    I am using a FM name 'subst_get_file_list' to get the file from a given directory but it is accepting only 40 Character length file only my requirement is to accept file name other than 40 char,
    give me good sugestion
    regards
    paul

    Hi Paul,
    Check the Function Module Gayathri has given. ie. 'SO_SPLIT_FILE_AND_PATH'.
    In the exporting parameter FULL_NAME , give the path name and in the importing parameter stripped_name , you will get the filename.
    Check this code.
    REPORT ZSHAIL_SPLITFILE.
    data: it_tab type filetable with header line,
          gd_subrc type i.
    tables: rlgrap.
    data: path type string,
          file_name type string.
    parameters file_nam type rlgrap-filename .
    data: user_act type i.
    at selection-screen on value-request for file_nam.
    CALL METHOD cl_gui_frontend_services=>file_open_dialog
      EXPORTING
        WINDOW_TITLE            = 'select a file'
       DEFAULT_EXTENSION       = '*.txt
        DEFAULT_FILENAME        = ''
        FILE_FILTER             = '*.txt'
        INITIAL_DIRECTORY       = ''
        MULTISELECTION          = abap_false
       WITH_ENCODING           =
      CHANGING
        file_table              = it_tab[]
        rc                      = gd_subrc
        USER_ACTION             = user_act
       FILE_ENCODING           =
      EXCEPTIONS
        FILE_OPEN_DIALOG_FAILED = 1
        CNTL_ERROR              = 2
        ERROR_NO_GUI            = 3
        NOT_SUPPORTED_BY_GUI    = 4
        others                  = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    if user_act = '0'.
    loop at it_tab.
    file_nam = it_tab-filename.
    endloop.
    endif.
    path = file_nam.
    CALL FUNCTION 'SO_SPLIT_FILE_AND_PATH'
      EXPORTING
        full_name           = path
    IMPORTING
       STRIPPED_NAME       = file_name
      FILE_PATH           =
    EXCEPTIONS
      X_ERROR             = 1
      OTHERS              = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    at selection-screen.
    message i001(zmess) with file_name.
    Regards,
    SP.

  • Can you get the file name of the current executing TSQL script?

    Can you get the file name of the current executing TSQL script? I wrote entries to a generic log file and would like to include the script name.

    Okay, So What you can do is
    1. Read get the version from your  database and redirect it to a text file(SQLCMD outout can be directed to text file using -o option or windows redirection operator >)
    2. Now you can read this value from the text file either inside a batch file or a powershell script and decide what operations you can do. 
    Satheesh
    My Blog |
    How to ask questions in technical forum

  • Where do you get the Toshiba Vestel firmware update?

    Where do you get the toshiba (vestel) firmware updates from?
    They used to be on the tech website with the manuals but they have all dissapeared

    Hi
    here you can find the Toshiba Entertainment Support page:
    http://www.home-entertainment.toshiba.co.uk/Support/
    and here you can download the Firmware for Blueray players, LCD combo and TVs
    http://www.dl.toshiba.com/DLY/index.jsp?region=GB&lang=EN

  • Where do I get the download from iTunes button art, rather than just stealing from someones site

    where do I get the download from iTunes button art, rather than just stealing from someones site

    Interesting. It looks to be available from the iTunes Affiliates resources for everyone:
    Affiliate Logo Guidelines and Art
    ... although it also says you ought to be an affiliate to actually use it.
    It might be worth checking in with Apple Legal to see what the requirements are for using it, first. Here's contacts:
    http://www.apple.com/legal/contacts.html

  • How do you get the files to play continuously?

    How do you get the files to play continuously? I created multiple slide shows in IPHOTO. I added them to IDVD and I cannot get them to play one right after another. Instead it goes to the main menu after each slide show.

    Did you add them all at the same time into the slideshow area?
    First, click on the + sign on iDVD's main menu, then select 'Add slideshow' and put all of them into the drop area. Now they will play continuously.
    Here is a visual image from Old Toad that shows multiple videos in the slideshow drop so they will play one after the other, but it is the same for your slideshows:
    http://homepage.mac.com/toad.hall/.Pictures/Forum/iDVD8movieSS.png

  • Where do you get the offline Flash installer?

    Seriously, where can you get the current offline Flash
    installer? This should be easily accessible, but the download page
    is void of the info.

    Amen, saving flash player and then loading it offline may
    help some of the install problems.

  • Where do you get the history pallette in PS 5?

    Where do you get the history pallette in PS 5?

    Window>History.
    If you have the default workspace loaded, then the history panel should be just to the left of the Color panel
    and below the mini bridge icon (Mb). Just click on the icon to expand the history panel.
    I guess your talking about photoshop cs5, if you meant the old photoshop 5, then
    Window>Show History.
    MTSTUNER

  • I have an iphone5 and a macbook pro. How on earth do you get the movies from your iphone onto your macbook pro!!!

    I have an iphone5 and a macbook pro. How on earth do you get the movies from your iphone onto your macbook pro!!!

    ah thanks nick, i have found this sentence a couple of times....
    Turn on iPhone and connect it to your computer.
    How do you "connect"  your iphone to your macbook pro, the bluetooth just doen't work, is there a usb cable?

  • Where do you get the meial address to complain about really poor service

    Where do i get the email address to complain about very very poor service in Bristol uk

    I found the address and phone numbers! 
    I called 408-996-1010.  You'll have to add the country code if you want to call this number.  They told me to write to:
    Apple, Inc.
    Attn: Corporate Relations
    1 Infinity Loop
    Cupertino, CA 95014
    I did at the begining of March.   I receved a call from an Apple rep at the end of March, the  caller left me a voice mail.  I called returned the call withn 5 min left him a voice mail and never heard back from them.
    Best of luck!

  • Where do you get the ios update

    Where do you find the iOS update?

    iTunes will automatically get the iOS firmware for your iPhone.
    You can always download iOS from Apple directly.
    Here is the iOS 5.1.1 for iPhone 4S directly from Apple Server:
    http://appldnld.apple.com/iOS5.1.1/041-4346.20120427.1RuDG/iPhone4,1_5.1.1_9B206 _Restore.ipsw

  • Where can you get the power cord for a 2012 airport express?

    Where can you get a power cord for a 2012 airport express or the equivalent? I couldn't find one in the online store.

    I'm sure the OP found his solution, but I wanted to share mine in case it helps some future seeker.
    There are a lot of brand new cords on eBay for less than $10 including shipping, which is way cheaper than the $39 stereo connector kit or an AC adapter from a retailer.  I just bought a used-like-new one for $5.50.
    The cord is made by Volex, part number APC7Q.  The Apple part number is M9573LL/A.  If the seller got it from the stereo adapter kit, they'll probably list it under MD836LL/A, which is the kit's part number.  I got the best search results on eBay using just the Volex part number.
    Best of luck!

Maybe you are looking for

  • Why would a Shift-Click not open as SO in PS CC?

    I tried for the first time today to open a CR2 file as a smart object in Photoshop CC by the following steps: In Bridge use CTRL-R to open the image in Camera Raw 8.3 (pretty sure I got the v# right) and made adjustments. Placed mouse on Open and pus

  • Re: MOQ in sales Order

    Dear All, How can you restrict a MOQ and Max ord qty while creating a Sales Order for a Particular Customer. e.g: I have to create a sales orders for a customer ABC where the Min ord qty should be 5 and the max ord qty is 50. How can I restrict. In c

  • Partner Tyoe LI

    My sender system has partner type LI(Vendor).. but my sender system has partner type LS... is it  required that my receiver system also has to have partner type LI...

  • My older ipod touch says that it is disabled.  What does that mean

    ipod disabled.  what does that mean

  • TS3274 How do i reset my forgotten password?

    I have set restrictions on the kids' ipad but when i go to change them, i can't remember my 4 digit passcode. How do i reset it please?