How to check which currency is assigned to Bank in Vendor Master

Hi,
Good Morning to All.
We have a requirement. We like to know the details for currencies in Bank accounts maintained in Vendor Master.
For ex.
For XYZ vendor we have assigned ABC bank for country GB along with the IBAN,SWIFT, A/C No, etc....now how can we be sure while making payment to vendor that the bank account maintained in vendor master is relevant to currency USD and not to GBP or any other curreny.
As we are planing to make automation payment to vendors, we are not able to find any currency linked to Bank account in vendor master.
We have more that 10K vendors and its impossible to check with all of them regarding the currency and update the vendor master.
Do we have any way to find out the link between the Vendors Bank Account & Currency the bank account tagged too.
Thanks in advance for your assistance.
Do revert.
Rex

Hi Rex,
The Currency in which the Vendor has maintained the Bank account is an information that you will get only from the vendor.. and then you can update in the vendor master.. From SAP system you will not get this info anywhere..
In FBZP.. we maintain Our Bank Accounts and not the Vendor Bank Accounts.. For Vendors, we only maintain the Bank key in our system in T-Code Fi01 and his Bank details in the vendor Master.
When you update the Partner Bank Type in vendor master with Currency in which the Vendor has maintained his bank account with the Bank, you can write the logic in BTE to pick up logically in APP.
Hope it clarifies..
Regards,
SAPFICO

Similar Messages

  • How to check which license is assign to current user?

    Hi all,
    I want to fire some action when a CRM user click on my sdk program but if a Prof user click on it, other action will be fire. May I know how to do it?

    Hi,
    I don't know the programming part how to access the information, but which licence is assigned to which user is stored in the file B1Upf.xml on the licence server.
    HTH, Sandra

  • How to check which version of hyperic is installed , hyperic 32 bit or 64 bit version on solaris

    how to check which version of hyperic is installed , hyperic 32 bit or 64 bit version on solaris

    If you have only a single home, the quickest/easiest way is probably just to check the properties of %ORACLE_HOME%\odp.net\bin\2.x\oracle.dataacess.dll
    Or are you asking how to check it at runtime?
    If you want to see externally what is actually loaded by an app you can use process explorer
    http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx
    If you want to check it in the app itself:
    http://stackoverflow.com/questions/383686/how-do-you-loop-through-currently-loaded-assemblies
    Hope it helps,
    Greg

  • How can check which patch install in oracle 10g

    hi experts,
    i have use oracle 10g , i hv patch information but how can check which patch install ?

    Run following command , it will give you list of patches installed on Oracle Home
    cd ORACLE_HOME/OPatch
    opatch lsinventory
    For patchset and CPU patch , check/query DBA_REGISTRY_HISTORY
    Virag

  • No check which could be assigned to a document was found

    Hi All,
    When i used FCHU then at the time of aasignment i have got this error msg
    "No check which could be assigned to a document was found "
    If checks already assigned than from where i can see it...?
    If i have by mistake used referense rather than assignement, can i change it..?
    Amit

    Hello,
    You can look into the assignment field of Check (bank) sub-account (payable) FBL3N.
    You can again run and update in reference field also. I will be updated in both the fields. There is no reversal for this program. Meaning that if you have erronously filled in assignment field, it cannot be reversed, other than mass change of documents in FBL3N.
    Regards,
    Ravi

  • How to check which version of Jdk installed on the machine?

    How to check which version of Jdk installed on the machine?
    & Which version of Oracle Insatlled on my machine?

    String version = System.getProperty("java.version"); %

  • How to update house bank in vendor master

    Dear Experts,
    Please suggest me how to update the house banks in vendor master?  and RTGS no. and IFSC code
    If i am having thousands of vendor  do i need to create thousands house banks?
    Regards
    chandu

    Hi Chandu,
    There is no need for you to create house banks for vendors, You need to directly do the assignment in the vendor master. You can run LSMW for updating all the vendors using XK02 (Change of Vendor Master) in that Bank Details.
    Coming to RTGS and IFSC code, there are no specific fields available for these two as they are only useful in INDIAN SCENARIO, you can use Bank Number field for updating either of RTGS or IFSC code and you need to decide to use another field which is not used by your client for updating the second one.
    Decide which fields are not used and update these RTGS and IFSC code in those.
    Hope u understood.
    Regards
    Srikanth

  • How to create automatic creation of BP from customer and vendor master data

    Hi gurus,
    can any one tell how to create automatic creation of BP from customer and vendor master data.
    Please give me the steps.
    Thanks
    Sasikanth.

    HI,
    Goto SPRO\ Cross application components \ Master data synchronization \ Synchronization control.
    Assign account groups of customer and vendors to respective BP grouping. This setting is enough to create BP in background while creating customer / vendor. But the fields groups are very much important, ensure mandatory fields should be sync.
    rgds,
    Srini

  • How to check which PSA is having more data

    Hi,
    I want to delete the PSA, and check which PSA is having huge space is occupied, from table RSTSODS we can check the availble psa`s how can we check PSA database.
    we have to configure in db02 ?
    Regards,
    Vamsi

    For checking the which PSA having more data then run ST14 tcode for getting top 30 objects which has PSA also
    in that case you have set a procedure to overcome that...by inlcuding those things in Process chain so that deletion will happen if the data gets older by certain days...if not you can go with any program where you can use FM's given SAP .. so that your system wont go into oversize...

  • How to check  which column data differs from master table and archive table

    Hi All,
    i have two tables, table a (a1 number,a2 varchar2,a3 varchar2) and table b (b1 number,b2 varchar2,b3 varchar2).
    how to check the data in both the table are same( including all columns).
    data in a.a1 is same as b.b1 and a.a2 is same as b.b2 like that.
    if they not same , i need to know which field differs.
    Kindly Share ur ideas.

    887268 wrote:
    thanks Sven W. ,
    above reply clearly shows what my question is.
    one column must be primary key, based on that key i need to find out which are the fields having different data..
    im strugling with this, i tried the following already, but not able to get.
    select the columns from a MINUS select the columns from b.
    -- from this i can find whether the difference occurred or not.
    but i cant able to get which are the fields value changed.Good. Then you would match the rows using the PK column and need to compare the columns
    Instead of a MINUS + UNION ALL + MINUS we can now use a FULL OUTER JOIN
    It is a little task to write out all column names, but 40 columns can be handled.
    This statement would show you both tables with matching rows on the same line.
    select a.*, b.*
    from a
    FULL OUTER JOIN b on a.id = b.idNow filter/check for mismatches
    select case when a.col1 != b.col1 then 'COL1 value changed'
                    when a.col2 != b.col2 then 'COL2 value changed'
                    when a.col3 != b.col3 then 'COL3 value changed'
             end as compare_result
            ,a.*, b.*
    from a
    FULL OUTER JOIN b on a.id = b.id
    /* return only non matching columns */
    where (a.col1,a.col2,a.col3) != (b.col1,b.col2,b.col3) You might need to add nvls to take care of null values. Test this!
    Another way could be to group upon the primary key
    select *
    from (
      select id 
               ,count(distinct col1)-1 cnt_col1
               ,count(distinct col2)-1 cnt_col2
               ,count(distinct col3)-1 cnt_col3
       from
         select 'A' source, a.*
         from a
         UNION ALL
         select 'B' source, b.*
         from b)
       group by ID
    /* only records with differences */
    where 1 in (cnt_col1, cnt_col2, cnt_col3)
    ;The count columns will hold either 1 or 0. If it is 1 then this column has a difference.

  • How to check which administrator had modified the AD Group properties

    Dear Sir,
    Some one had modified a Distribution group (removed email address). I checked it in group properties and last modified was on 22/09/14. How to find which administrator had modified.
    I dont have access to domain controller. Is there any way to find it?
    thanks in advance.
    Karan

    Hello,
    this will be logged on DCs and also auditing must be configured correct that this will show up in the event viewer from a DC.
    Without access to the DC contact your administrators and let them find out.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • How to check which query is consuming most resources....

    Hi guys how can i check which query is consuming most resources , run by which user and how to kill that....
    Khurana

    1)     At the first stage, login to the server and at the OS level I run commands like TOP and see the overall performance of the Server. From this one can know the Total CPU Memory, CPU Usage, Memory Available, and Swap Memory Available and how busy the CPU is.
    2)     Once you identify the top processes in the CPU, relate them to ORACLE using V$PROCESS.SPID = OS Process ID to get the V$PROCESS.ADDR and join this with the V$SESSION.PADDR to get the V$SESSION.SID and SERIAL# columns.
    3)     Then enable the Session Trace using DBMS_SYSTEM.SET_SQL_TRACE_IN_SESSION.
    4)     look on the Trace File using the TKPROF. During this sort the Trace File using various options like EXEELA/DSK, PRSELA/DSK, FCHELA /DSK.
    5)     Once you identify the expensive SQL statements, inform the user about it and KILL the respective job.

  • How to check which is th best method to use in LSMw and the file

    Hi all,
    I am new to LSMW,
    Can know me when i get the file , how to check the which is the Best method ( Batch input, Direct input,BAPI, IDOC)  have to use in LSMW .
    How to check the input file is completely filled and how to check whether it is correct and also how to Prevalidation check has to be done fior the file before uploading.
    Can you provide any documents LSMW also Apprecited.
    Regards,
    Madhavi

    Hi Madhavi,
    To check Correctness & completeness of the file:
    1. The input file structure should be same as source structure what you defined whicle creating LSMW.
    2. Check the following steps to assure the field mapping is done correctly.
    a) Maintain field mapping & conversion rule
    b) Check 'Display Read data'
    c) Check ' Display Converted data''
    Please note LSMW is a tool, which will simply upload the data whatever you are providing. So you need to be careful while making your file and validate it outside SAP ( before upload start)
    Pradeep D

  • How to check which table is used

    After creating RFQ , i want to check which table is used  in creating RFQ.
    how can i see that data has gone or not into the database table.

    Hi
    See the Table EKKO and EKPO only
    with EKKO-BSTYP = A
    Regards
    Anji

  • How to check which function was used in a function based index.

    Hi how can i check which function was used in a function based index created on a column.
    Thanks

    Hi,
    What is your requirement... !!
    Bascially performing a function on an indexed column in the where clause of a query guaranteed an index would not be used. From Oracle 8i onwards introduced Function Based Indexes to counter this problem.
    Any how check this..you will get an idea..
    http://www.akadia.com/services/ora_function_based_index_2.htm
    http://www.oracle-base.com/articles/8i/FunctionBasedIndexes.php
    -Pavan Kumar N

Maybe you are looking for

  • Custom fields position change in srm 7.0 in Purchase Order on WebDynpro

    Hi Experts, We are upgrading to SRM 5.0 to SRM 7.0 In Purchase order screen,under account assignment,we want to see the acocunt assignment detailed view as the default view under tab "ACCOUNT ASSIGNMENT".Click on the DETAILS button and then the detai

  • Problem Blackberry ID with BlackBerry Classic

    Hi everyone, I have a New BlackBerry Classic and i cant confirm My BlackBerry ID on my Phone. The login via web is not a Problem. So my Device does not send me a email confirmation. If i Type my correct password in to the Phone, it does not react. An

  • Embedding/linking director in flash?

    hi there, i have searched this forum and google but can't find a way to embed/link a project i did in Director MX to a Flash 8 movie. I found loads of ways to do it the other way around i.e. Flash in Director but not the way i need. Is there a way to

  • Help views ( search helps) in tables

    Hello Experts, we are creating customized infotypes.Can anyone tell me how to create help views ( search help ) in tables. Regards, Shilpa.

  • JCA adapter for lotus notes

    Hi, I am working for the integration of Lotus notes (R5) with weblogic server 7.0 using JCA.Can anyone please help me to know about the JCA Resource adapters that are available for Lotus Notes integration with Weblogic 7.0. with regards, Vinod