FBZP: How to allow ALL currencies be piad with a single payment method

Hello Gurus,
can you advise on this query please? We are configuring the Auto SAP Payment Run. We would like to allow our Payment Methods in each company code to be able to handle ALL currencies. These payment methods are for overseas/non-domestic payments.
Is there a way to tell the system that a payment method can handle ALL currencies? We tried to leave the currency specification for CURRENCY for the particular payment method BLANK under:
FBZP -> Bank Determination -> Ranking Order -> leave CRCYwith BLANK for the payment method
FBZP -> Bank Determination -> Bank Accounts -> leave CURRENCY with BLANK for the payment method
FBZP -> Bank Determination -> Available Amounts -> specify an Available Amount for the Currency of the particular House bank Account
This seemd to work OK for any local (Domestic) payment methods. The system is then able to pay out ANY currency through the House Bank Account when using the local payment method.
But it does not work for the Overseas payment methods. The Payment Proposal says it cannot find an entry for Available Amount (ie under FBZP -> Bank Determination -> Available Amounts ) for the particular currency.
The Local payment Method and the Overseas Payment Method are setup exactly the same. They both 'ALLOW FOREIGN CURRENCY' and they are not limited to any specific currency under FBZP -> Setup Payment Methods Per Currency.
The only difference we can see is that for the local payment method it goes through a House bank Account that is in the currency of the company code in question. This seems to then allow the paymnet method to handle any foreign currecny.
For the non-local payment method, it will route payments through a House bank that is in a different currency to that of the company code in question.
Can you advise please:
1) is it possible to allow a payment method to cater for ALL possible currencies by making ONE entry for currency. Or must you explicitly define all the possible currencies that a payment method can be allowed for?
2) if it is possible to make one entry to cater for all currencies, can you provide the steps to do this please?
3) is there a difference between how the system will handle a payment method for local payments which routes through a House bank Account in the Company Code currency as opposed to a payment method that is for non-local payments and therefore routes through a House bank that is not in the company code currency?
Thank you for any guidance you can provide on any of these queries.
Regards
Michael Ryan.

Hi,
We have already maintained that the currency is BLANK at country level on the payment method.
Just to confirm the situation again:
- we have 2 payment methods in Sweden; 1 for local payment and 1 for overseas.
- each payment method has been left BLANK for currency at the Country level and has the flag 'Foreign Currency Allowed' ticked. Also ecah payment method has been left BLANK for currency under FBZP -> Bank Determination -> Ranking Order and under FBZP -> Bank Determination -> Bank Accounts.
- the system will not allow a BLANK entry to be maintained for Currency under FBZP -> Bank Determination -> Available Amounts for any payment method; the currency must be specified.
- the local payment method goes through a House Bank/Account ID with the home country Sweden (SE) on the House Bank and with the home currency (SEK) specified on the Account ID
- the overseas payment method goes through a House bank/Account ID with the country GB on the House bank and with the currency EUR on the Account ID
- the system allows the local payment method to accomodate any currency via the SEK account.
- the system will not allow any currency through the EUR account. It only allows EUR via the EUR account and not any other currency.
If I want to pay another currency via the EUR account I need to explicitly specify for each currency the Days Life in the system under FBZP -> Bank Determination -> Available Amounts. This is not good because I then will have to specify all possible currencies under FBZP -> Bank Determination -> Available Amounts that can go through the EUR account, which will be many.
Is there a 'block' on the system that limits the currency that can be paid through a House Bank/AccounttID when that House bank/AccountID is not in the home country/home currency? Or how can we get around tghis?
Thanks for you further help on this.
Regards
Michael

Similar Messages

  • How to group all the reports and execute like single application ?

    Hi,
    I am trying to develop some reports in Crystal Reports XIR2 , here i have Design and Preview options that is for every report i should see , how to group all the reports and execute like single application?
    any option is there to run the report
    i mean is it possible to have a home page from there have links to each report and when i click on the link corresponding report should be shown , if it is possible , How?
    Regards,
    kathyaini

    You will want to look into Crystal Reports Server, it does exactly what you describe and more:
    http://www.businessobjects.com/product/catalog/crystalreports_server/
    Download a trial of CR Server here:
    http://www.businessobjects.com/product/freetrials.asp

  • How do I email the iTunes support? In the payment method I can't turn it to "none", it always is either a credit card(visa,MasterCard, Amex) I can't turn it to none. Thanks Alot.

    How do I email the iTunes support? In the payment method I can't turn it to "none", it always is either a credit card(visa,MasterCard, Amex) I can't turn it to none.
    Thanks A lot!,
    BOB

    HI Bob...
    Use the email form here >  Apple - Support - iTunes Store - Contact Us

  • How to encrypt column of some table with the single method  on oracle7/814?

    How to encrypt column of some table with the single method on oracle7/814?

    How to encrypt column of some table with the single method on oracle7/814?

  • How to encrypt column of some table with the single method ?

    How to encrypt column of some table with the single method ?

    How to encrypt column of some table with the single
    method ?How to encrypt column of some table with the single
    method ?
    using dbms_crypto package
    Assumption: TE is a user in oracle 10g
    we have a table need encrypt a column, this column SYSDBA can not look at, it's credit card number.
    tha table is
    SQL> desc TE.temp_sales
    Name Null? Type
    CUST_CREDIT_ID NOT NULL NUMBER
    CARD_TYPE VARCHAR2(10)
    CARD_NUMBER NUMBER
    EXPIRY_DATE DATE
    CUST_ID NUMBER
    1. grant execute on dbms_crypto to te;
    2. Create a table with a encrypted columns
    SQL> CREATE TABLE te.customer_credit_info(
    2 cust_credit_id number
    3      CONSTRAINT pk_te_cust_cred PRIMARY KEY
    4      USING INDEX TABLESPACE indx
    5      enable validate,
    6 card_type varchar2(10)
    7      constraint te_cust_cred_type_chk check ( upper(card_type) in ('DINERS','AMEX','VISA','MC') ),
    8 card_number blob,
    9 expiry_date date,
    10 cust_id number
    11      constraint fk_te_cust_credit_to_cust references te.customer(cust_id) deferrable
    12 )
    13 storage (initial 50k next 50k pctincrease 0 minextents 1 maxextents 50)
    14 tablespace userdata_Lm;
    Table created.
    SQL> CREATE SEQUENCE te.customers_cred_info_id
    2 START WITH 1
    3 INCREMENT BY 1
    4 NOCACHE
    5 NOCYCLE;
    Sequence created.
    Note: Credit card number is blob data type. It will be encrypted.
    3. Loading data encrypt the credit card number
    truncate table TE.customer_credit_info;
    DECLARE
    input_string VARCHAR2(16) := '';
    raw_input RAW(128) := UTL_RAW.CAST_TO_RAW(CONVERT(input_string,'AL32UTF8','US7ASCII'));
    key_string VARCHAR2(8) := 'AsDf!2#4';
    raw_key RAW(128) := UTL_RAW.CAST_TO_RAW(CONVERT(key_string,'AL32UTF8','US7ASCII'));
    encrypted_raw RAW(2048);
    encrypted_string VARCHAR2(2048);
    BEGIN
    for cred_record in (select upper(CREDIT_CARD) as CREDIT_CARD,
    CREDIT_CARD_EXP_DATE,
    to_char(CREDIT_CARD_NUMBER) as CREDIT_CARD_NUMBER,
    CUST_ID
    from TE.temp_sales) loop
    dbms_output.put_line('type:' || cred_record.credit_card || 'exp_date:' || cred_record.CREDIT_CARD_EXP_DATE);
    dbms_output.put_line('number:' || cred_record.CREDIT_CARD_NUMBER);
    input_string := cred_record.CREDIT_CARD_NUMBER;
    raw_input := UTL_RAW.CAST_TO_RAW(CONVERT(input_string,'AL32UTF8','US7ASCII'));
    dbms_output.put_line('> Input String: ' || CONVERT(UTL_RAW.CAST_TO_VARCHAR2(raw_input),'US7ASCII','AL32UTF8'));
    encrypted_raw := dbms_crypto.Encrypt(
    src => raw_input,
    typ => DBMS_CRYPTO.DES_CBC_PKCS5,
    key => raw_key);
    encrypted_string := rawtohex(UTL_RAW.CAST_TO_RAW(encrypted_raw)) ;
    dbms_output.put_line('> Encrypted hex value : ' || encrypted_string );
    insert into TE.customer_credit_info values
    (TE.customers_cred_info_id.nextval,
    cred_record.credit_card,
    encrypted_raw,
    cred_record.CREDIT_CARD_EXP_DATE,
    cred_record.CUST_ID);
    end loop;
    commit;
    end;
    4. Check credit card number script
    DECLARE
    input_string VARCHAR2(16) := '';
    raw_input RAW(128) := UTL_RAW.CAST_TO_RAW(CONVERT(input_string,'AL32UTF8','US7ASCII'));
    key_string VARCHAR2(8) := 'AsDf!2#4';
    raw_key RAW(128) := UTL_RAW.CAST_TO_RAW(CONVERT(key_string,'AL32UTF8','US7ASCII'));
    encrypted_raw RAW(2048);
    encrypted_string VARCHAR2(2048);
    decrypted_raw RAW(2048);
    decrypted_string VARCHAR2(2048);
    cursor cursor_cust_cred is select CUST_CREDIT_ID, CARD_TYPE, CARD_NUMBER, EXPIRY_DATE, CUST_ID
    from TE.customer_credit_info order by CUST_CREDIT_ID;
    v_id customer_credit_info.CUST_CREDIT_ID%type;
    v_type customer_credit_info.CARD_TYPE%type;
    v_EXPIRY_DATE customer_credit_info.EXPIRY_DATE%type;
    v_CUST_ID customer_credit_info.CUST_ID%type;
    BEGIN
    dbms_output.put_line('ID Type Number Expiry_date cust_id');
    dbms_output.put_line('-----------------------------------------------------');
    open cursor_cust_cred;
    loop
         fetch cursor_cust_cred into v_id, v_type, encrypted_raw, v_expiry_date, v_cust_id;
    exit when cursor_cust_cred%notfound;
    decrypted_raw := dbms_crypto.Decrypt(
    src => encrypted_raw,
    typ => DBMS_CRYPTO.DES_CBC_PKCS5,
    key => raw_key);
    decrypted_string := CONVERT(UTL_RAW.CAST_TO_VARCHAR2(decrypted_raw),'US7ASCII','AL32UTF8');
    dbms_output.put_line(V_ID ||' ' ||
    V_TYPE ||' ' ||
    decrypted_string || ' ' ||
    v_EXPIRY_DATE || ' ' ||
    v_CUST_ID);
    end loop;
    close cursor_cust_cred;
    commit;
    end;
    /

  • How to view all the metalink notes in a single window?

    Friends,
    I have metalink access...i want to view all the metalink notes in a single shot.
    now i am searching the metalink notes by entering the artical id...is there any way to get all the documents in one shot ...
    like how we are seeing the forum threads here...
    thanks

    Do you also as a librarian for an overview of all the books? :-)
    Have you any idea how much information, knowledge, bug-reports, questions, patch-lists, documentation etc..etc. is on Metalink?
    That would give you a list of millions of rows. And how do you want them sorted, by version, by OS, by what??
    FJFranken

  • How to Inscribe all the error messages into a single package ??

    Hi,
    I want to Inscribe all the error messages into a single package., and call the concern package from the exception block in every sp by passing the error code to that package, which will return the Concern error message to the calling Sp.,
    Can any one help me out how to accomplish this ., ?
    regards
    Raja

    I want to Inscribe all the error messages into a single package., Why do you want to inscribe all the messages in a package?
    I would suggest you to store them in a table instead and you can write a functin to retrive the error messages required.
    But if your requirement is for 'Package' then assuming that you store all the error messages in a table 'error_table' (say) following code may help you .
    CREATE TABLE Error_Table (
      Error_Code VARCHAR2(10),
      Error_Desc VARCHAR2(1024));Now insert your error codes and descriptions in this table.
    CREATE OR REPLACE PACKAGE pkg_Error_Handler
    AS
      FUNCTION f_Get_Error_Message(p_Error_Code  Error_Table.Error_Code%TYPE) RETURN VARCHAR2;
    END pkg_Error_Handler;/
    CREATE OR REPLACE PACKAGE BODY pkg_Error_Handler
    AS
      FUNCTION f_Get_Error_Message
           (p_Error_Code  Error_Table.Error_Code%TYPE)
      RETURN VARCHAR2
      IS
        lv_Error_msg  Error_Table.Error_desc%TYPE;
      BEGIN
        BEGIN
          SELECT Error_desc
          INTO   lv_Error_msg
          FROM   Error_Table
          WHERE  Error_Code = p_Error_Code;
        EXCEPTION
          WHEN No_Data_Found THEN
            lv_Error_msg := 'No such error code '
                            ||p_Error_Code
                            ||' defined in the system';
          WHEN OTHERS THEN
            lv_Error_msg := p_Error_Code;
        END;
        RETURN lv_Error_msg;
      END f_Get_Error_Message;
    END pkg_Error_Handler;
    /and you can call this packaged funtion from any exception block to get the error description.
    Regards,
    Abhijit.
    N.B.: Code not tested

  • How to delete all bookmarks and replace with backup?

    Trying to sync my new iPad with my MacBook Pro and iPhone via MobileMe has created some fun new problems. For starters: I now have a full set of duplicate Safari bookmarks. Two of everything.
    Fortunately, I (think) I made a safe backup before performing the fateful merge (suggested by Sync) that caused the duplicates. So now I'd like to delete ALL my bookmarks and re-import the saved backup bookmarks.
    But I can't figure out how to delete all my bookmarks at once. It looks like my only choice is to delete them one at a time. Is there some way to simply trash the entire bookmarks file and re-import the ones I saved?

    HI Adam,
    You can use Safari Prairiefire to find duplicate Safari Bookmarks.
    http://www.balooba.se/baloobasoftware/index.html
    After you install the software which you can use in demo version to do this click the Get Bookmarks tab. Then from the menu click: Tools / Check Duplicates.
    I've had the same thing happen using my MobileMe account also.
    Carolyn

  • How to retrieve all the users along with their password from LDAP

    Hello,
    Can anyone let me know how to retrieve and list all the user along with their password from LDAP.
    Thanks

    Hi Prashant,
    I have limited experience with Synchronization, but I agree with you - if you need to synchronize Passwords, you need to have the Password in clear Text.
    If you trying to build your own Synchronization Solution using any of the avaliable LDAP APIs, I don't think you can ever retrieve a user's Password in clear text.
    However, I did come across an interesting article & I hope you find it useful :-
    http://www.oracle.com/technology/obe/obe_as_10g/im/configssl/configssl.htm
    I am not sure if SSL is necessary - If you have a look at Metalink Note 277382.1 ( How to Configure OID External Authentication Plug-In for Authentication Via Microsoft Active Directory (MS AD) ), teh question asked by oidspadi.sh for the same is asnwered as "N".
    Regards,
    Sandeep

  • HT1495 how to use multiple apple id's with a single itunes account

    I am looking to set up two iphones and a two ipads (one for me and one for my fiance) to a single itunes account to allow us to load music and apps from the same itunes account but be able to have seperate accounts for facetime on our phones and ipads.  Any recommendations on the best way to do this?

    You cannot do that. Each Apple ID needs to be tied to each separate account. Each of you must purchase your own copies of music and apps and sync to separate iTunes Libraries on the computer. The computer must have to user accounts set up - one for you and one for your fiance.
    Sharing Stuff From Different iTunes Accounts (or Computers)
    Here's how to do so using different computers:
    Transfer what content you want to the separate iTunes library on each computer. To transfer content from your library to another library do the following. We'll assume this is between husband and wife separate accounts and different Apple IDs.
    Launch iTunes under your wife's login;
    Sign her out of iTunes, then you sign in;
    Select iTunes -> Preferences -> Devices -> Disable auto-sync when an iPod/iPhone is connected;
    Connect your phone, DO NOT SYNC;
    Select Store -> Authorize this Computer (only have to do this once);
    Select File -> Transfer Purchases (all of the purchased content on your phone will be transferred to your wife's library);
    When complete eject your phone, sign out of iTunes, sign your wife back in.
    You can now sync whatever content you want to your wife's phone. Just remember all updates to apps obtained using your account must be done while signed in using your account: sign wife out, you sign in, update apps, you sign out, sign wife in, sync her phone.
    This way you can share content (permitted under the EUSLA) and still maintain your separate logins. Do the same on your computer if you want to share content from your wife's library.
    Just load whatever content you want to share on each others phones, transfer the content, then delete it from the respective phone if you don't want to keep it there.
    Contributed by user wjosten and modified by me.
    iTunes- How to share music between different accounts on a single computer

  • How to split numbers in a string with a single SQL on 10.2?

    Is it possible to to below action with a single SQL on 10.2?
    input > '3abc4de5f'
    output > '3,abc,4,de,5,f'
    Thank you.

    It might be a NLS issue. Follow the suggestion of Karthick_Arp and use [[:alpha:]] instead:Is is
    SQL> with t as (select 'a' l from dual union all
               select 'b' l from dual union all
               select 'A' l from dual)
    select * from t
    order by nlssort(l, 'NLS_SORT=GERMAN')
    L
    a
    A
    b
    3 rows selected.
    SQL> with t as (select 'a' l from dual union all
               select 'b' l from dual union all
               select 'A' l from dual)
    select * from t
    order by nlssort(l, 'NLS_SORT=DANISH')
    L
    A
    a
    b
    3 rows selected.You could also do a case insensitive match (As in TXT3)
    SQL> alter session set NLS_SORT=DANISH
    Session altered.
    SQL> with t as (select 'aADSFF3332abc4342de5Df' txt from dual
               union all
               select '3abc4de5f' from dual)
    select txt, regexp_replace(txt, '([0-9]{1,}|[a-z]{1,})', '\1,') txt2
               ,regexp_replace(txt, '([0-9]{1,}|[a-z]{1,})', '\1,', 1, 0, 'i') txt3
      from t
    TXT                            TXT2                           TXT3                         
    aADSFF3332abc4342de5Df         a,ADSFF,3332,abc,4342,de,5,Df, aADSFF,3332,abc,4342,de,5,Df,
    3abc4de5f                      3,abc,4,de,5,f,                3,abc,4,de,5,f,              
    2 rows selected.
    SQL> alter session set NLS_SORT=GERMAN
    Session altered.
    SQL> with t as (select 'aADSFF3332abc4342de5Df' txt from dual
               union all
               select '3abc4de5f' from dual)
    select txt, regexp_replace(txt, '([0-9]{1,}|[a-z]{1,})', '\1,') txt2
      from t
    TXT                            TXT2                         
    aADSFF3332abc4342de5Df         aADSFF,3332,abc,4342,de,5,Df,
    3abc4de5f                      3,abc,4,de,5,f,              
    2 rows selected.Regards
    Peter

  • How can one get FI postings number with a specific payment term

    Hey everyone,
    A short question on FI postings. I need to find postings, which include a specific payment term. I tried to check through the BSEG table but I can't filter the output with the parameter 'payment term' (field ZTERM). Any idea to get the info?
    Thanks!
    Stan B.

    Hi Stanislas,
    I think your search will be more efficiently if you search in table BSID for the open item customer document, BSAD for all the customer document.
    You can select the company and the payment term.
    Hope it will help you
    Valerie

  • TS2446 My account has bern disabled ! Due to payment info ! I dont want to have my visa info as a payment method on my apple id anymore ! So i change it ! How do i change it back to "none " as without payment method !

    My account has been disabled !
    Because of the payment method
    How do i change my payment method back to "none" !?

    To change the iCloud ID on your devices you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted (if using iOS 7), then sign back in with your current ID.
    If you don't know the password for your old ID, or if it isn't accepted, you will have to temporarily recreate it in order to delete the existing account.  To do this, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • TS1424 Credit card is all right but get the message that "payment method declined"

    After renewal of my credit card  app online store maintains that my payment method is declined, and asking for a different payment method . Any number of debit/credit cards I tried but invading have even tried for a new Apple id , and I was directed to take I tunes support for completion of the process. Can somebody help as how to resolve?
    Thanks

    Contact itunes support

  • How to install All-In-One software with network printer?

    I plugged my 7310xi into my Linksys WRT54G router. In Windows 7 64-bit I found the printer, installed the default drivers, and it's printing happily via the network.
    But I need to install the HP All-In-One software if I want more advanced functions like scanning to my computer. 
    Downloaded the software from the web. During installation I get to the part where it asks me to choose how the printer connects to the computer. I select "through the network," click next,and it just keeps on kicking me back to this screen and I can't proceed. Any ideas?
    Here's the error:
    Now Launching=X:\hpzdui40.exe -I XXX -f X:\DIVins??.DAT
    fail to load library X:\hpzscb01.dll
    CNetworkUIPlugInApp::InitInstance fail to initialize sacabod. Result = o;
    GetLastError = 193
    RUN: Driver UI Plug-In exits returning 50
    Exit code=50
    I've set it to run in Vista compatibility mode and Run as Admin.
    Message Edited by fuzzybabybunny on 08-06-2009 11:59 AM

    I had exactly the same problem with Windows 7 64-bit and HP Photosmart 2610xi. All you need to do is right click on the installation program, go to properties, go to compatibility mode, select Windows Vista SP2 and optionally check run as administrator. It worked after that.

Maybe you are looking for

  • How do I create a new iCloud account?

    I've tried to find out how to create an iCloud account for my nephew's new iPod touch.  When I look at the instructions online there's always sort of a catch 22. You need an apple ID, for that you need an emailaddress. I would want that to be a '[ema

  • Multiple users on same PC

    Hi: (XP, itunes 7.1) We have an ipod, a nano & a shuffle all sharing the same PC. How can I create separate music folders for each user? They want to access only their music & not the other persons. Currently, every time one of them plugs in their de

  • Condition Type for Rebate

    Hello All I am in the process of configuring the rebate processing in our system...this is my first experience...we are on ECC7.0...I am follwing the Rebate Processing configuration guide but I have a few questions... My requirement is the following

  • Lost Phone Numbers after Sync with Mac

    Hi Everyone, I am new to the Blackberry forum and to the Mac.  I love both of them but yesterday I used the new Desktop Manager for the Mac to sync with my Mac and it wiped all my phone numbers on the Blackberry.  I still have the numbers on my hands

  • Way to find CTM taking more time to plan a demand

    Hi, Normally a demand in CTM gets planned in less than 1 second. But sometimes there are abnormailities may be because of Data or system and CTM takes more time to plan a demand. Is there a way or method to find why a demand has been planned in more