Execute Function in external ORACLE Database

Hi Gurus,
I'm working with Native SQL, trying to execute a function (NOT a procedure) present in an Oracle Database.
I have the DBCO table ready and the conection is working fine, but when I want to execute the function I get the following error (with short dump):
Database error text: "ORA-00900: invalid SQL statement"
Database error code: 900
Triggering SQL statement:
:VALIDO := cai_valido_i   ? , ? , ? , ? , ? , ? )"
Looks like this is a syntax error when i'm trying to use the function. I try to call the function with EXECUTE PROCEDURE, but another error appear, saying that the procedure doesn't exist.
This is the function that I need to call in Oracle:
cai_valido_i
   (ccai in number,
    ccuit in number,
    cfecha in date,
    ccod_tc in number,
    cpto_vta in number,
    cnro in number)   return number
I Hope somebody can help me with this.
Kind regards,
Roberto.-

Not sure how to call Functions but I executed procedures as below:
  EXEC SQL PERFORMING <SAP_SUBROUTINE>.
    SELECT <PROCEDURE>(
           :<IN_PAR1>,
           :<IN_PAR2>,
           :<IN_PAR3>)
      INTO :<OUT_PAR1>
      FROM DUAL
  ENDEXEC.
Thnaks,
Shashi Reddy

Similar Messages

  • 64 bit SAP to 32 bit External Oracle Database connectivity failing

    Dear All,
    We are trying to connect to an external Oracle database thru DBCON method. We are able to connect to Oracle server from our IDES server which is a 32 bit server, but when we are trying to connect our development server which is a 64 bit server, the connectivity is failing.
    we copied the correct 64 bit *.lib file to the SAP server but still same result. We are getting the error message - Work Process restarted. Session terminated.
    the Oracle server we are trying to connect is 32 bit, can this create some problem ?
    kindly any one help us in this reagrd.
    thanks in advance,
    Saurabh.

    Hi Eric,
    thanks for the advice but I am a bit confused as where to execute that sqlplus command/query ?
    in the Oracle server or from SAP and what does system/password@DEV means ??
    can you elaborate on this please.
    here i would like to add that we have connected to the external Oracle server using linked server approach of MS SQL (our SAP default database) and so our connectivity is happening till SQL level i.e. I am able to connect to the Oracle and query it using OpenQuery syntax. the problem is appearing when I am trying to connect from the ABAP level.
    kindly suggest as to what can be the solution of this issue.
    thanks
    Saurabh.

  • Setup tcp connection to external oracle database

    Hello All,
    I have a requirement to setup a tcp connection in SM59 from BI 7 to an external oracle database.
    I am through with the first step of modifying the tnsnames.ora and now I am able to connect from OS level of BID server to this external oracle database O1.
    But, I want to know what options do I need to use to setup a tcp/ip connection?
    How should I register the program (if required)?
    Can anyone please advise whats the best way to resolve this issue?
    Thanks,
    Antarpreet

    Hi,
    Yes, We have installed Oracle Client.
    No, We couldnt find the libdora.dll file in the SAP Server system. From where can we find this file to install ??
    Thanks & Regards,
    Saurabh.

  • How to connect from SAP on DB2 for i5/OS to external oracle database

    Hello,
    I managed to retrieve data from an external DB2 for i5/OS database using ABAP Native SQL running on another i5/OS server.
    I also managed to retrieve data from an external oracle database using ABAP Native SQL running on another Windows/Oracle server.
    Now i want to use ABAP Native SQL running on an i5/OS and retrieve data from an external Oracle database?
    I suppose i need software to connect fron I5/OS to this oracle database like you need extra software when you want to connect to an i5/OS database if you are running SAP on Windows (read note 751451)
    Does anybody know?
    Thanks in advance
    Bertil Rebergen

    Hello Bertil,
    to access an Oracle database from within an SAP system you'll need SAP's database interface library specific for Oracle plus the Oracle database client library utilized by SAP's database interface library. Both need to be available for the operating system your application server runs on, i.e. IBM i5/OS in your scenario.
    Since the required Oracle database client software is not available for IBM i5/OS your SAP application servers on IBM i5/OS cannot access your Oracle database.
    To overcome this limitation you would need to add at least one additional SAP application server based on Windows or Linux/Power to your current SAP system utilizing IBM DB2 for i5/OS. Since the required software libraries are available for these two operating systems you will be able to solve your problem this way.
    Best Regards, Christian Hoelters, SAP AG.

  • Native SQL to an external oracle database

    Hello experts,
         I like to read some data from an external oracle database with native sql statements.
    Which prerequisites are neccessary to do so?
    In detail: which customizing must be performed?
    Wich authorizations are necessary on the local SAP-system and on the oracle-site?
    Many thanks for your help!
             Best regards
                                Elmar

    first, you need the SAP database library for Oracle. on Windows, filename is dboraslib.dll
    then, you create a user ID on your external database
    then ,you configure table DBCON
    read:
    https://forums.sdn.sap.com/click.jspa?searchID=9272762&messageID=1193314
    https://forums.sdn.sap.com/click.jspa?searchID=9272762&messageID=2806510

  • Does ORACLE functions work with Oracle Database 10G

    Hi,
    I am wondering if ORACLE functions work with Oracle Database 10G or is it mandatory to use OCI functions?
    Thanks in advance!

    I was able to run a simple query with ora_* functions using 10g on Windows.
    The Oracle OCI calls used by PHP's ora extension still exist in the Oracle 10g libraries
    But I cannot recommend this obsolete extension.
    -- cj

  • DATEDIFF function work in Oracle database or not ?

    Hai all,
    I like to know whether DATEDIFF function work in Oracle database or not.

    And to add to what Stew and Ranit have said... if you need the months between two dates, there's a special function for that...
    SQL> select months_between(sysdate, date '2011-04-18') from dual;
    MONTHS_BETWEEN(SYSDATE,DATE'2011-04-18')
                                    18.37051So, number of years between two dates can also be achieved with the same function and dividing by 12...
    SQL> select months_between(sysdate, date '2011-04-18')/12 from dual;
    MONTHS_BETWEEN(SYSDATE,DATE'2011-04-18')/12
                                     1.53087867

  • How to execute remote query by Oracle Database Link

    I use Oracle Database Link to query data from SQL Server. The query is like:
    select *
    from tableA@DL_SqlServer a
    join tableB@DL_SqlServer b
    on a.ID = b.ID*
    tableA and tableB is large and the result is relatively small. This query executes quickly in SQL Server since indexes are built both on the two tables. But it is very slow on Oracle Database Link to SQL Server.
    I guess the join operation is performed on Oracle side not on SQL Server side, thus the indexes are not used. Since I just need the joined result, I prefer to perform the query entirely on SQL Server and get the small result only. But I have no privilege to create views on SQL Sevrer.
    I konw that using SQL Server's linked server and OPENQUERY function can achieve this goal. I wonder how to do this on Oracle Database Link. Thanks!

    DO NOT DO THIS....specifically:
    "select *
    from tableA@DL_SqlServer a
    join tableB@DL_SqlServer b
    on a.ID = b.ID*"
    You would be better off to do the following:
    create a Materialized View in Oracle and once/day (or as frequently as you feel necessary) pull the data from SQLServer and then do the join locally by creating MV as TABLEA_MV and TABLEB_MV and then have views that have the REALTABLEA and REALTABLEB names that point to these MVs. This can be done without recompiling or changing your code. Trust me, I have seen this sort of thing in the past that completely crippled an IBM mainframe using DB2 along with a major network segment by having this sort of join via DB links. You must understand the ramifications of your "design" and I can tell you for certain that it is a very BAD!!! idea... Fix this before you are issuing another command: "alter DBA update resume/CV;"
    The app went into production at 7AM. By 9:30AM, the mainframe had executed more than 10Billion I/O's. It took > 15hrs for the mainframe to recover once we shutdown the app and implemented the view/MV described above.
    I will leave it as an excercise for the OP to develop the syntax for this.
    Edited by: onedbguru on Feb 15, 2013 7:27 PM

  • Connect SAP ECC6 with a external Oracle Database

    Hi guys
    I need to connect my ECC 6.0 (SID=UMD) System (MAXDB 7.6.00.035 over Linux RedHat 5.2 32 bits) with external database Oracle 10g (PROD). I follow the steps according the SAP Note 339092:
    1. Install the oracle client in the ECC server in the path /opt/oracle/oracle/product/10.2.0/client_3 (this client is the Oracle official client)
    2. Set the environment values for umadm with the command
    set ORACLE_HOME=/opt/oracle/oracle/product/10.2.0/client_3
    set NLS_LANG="AMERICAN_AMERICA.WE8ISO8859P1"
    set ORA_NLS33=$ORACLE_HOME/nls/data
    2. create in Oracle the user umdadm with the same password that in Linux
    3. in ECC 6.0 tx DBCO create a connection
    DB Connection ..... DBMS
    DBMS ..................ORA
    username...............umdadm
    Conn info ..............PROD
    permanent.............(no)
    Connection Limit ....0
    Optimum conns .....0
    4. Download the dboraslib.so for oracle-linux 32bits (extracted from SAPEXEDB.SAR 175 download from service marketplace) and put in /usr/sap/UMD/SYS/exe/run,  /sapmnt/UMD/exe and /usr/sap/UMD/DVEBMGS00/exe
    Then in the se38 run the report ADBC_TEST_CONNECTION, choose the DBMS connection and execute, this is the output error:
    M Tue Mar 24 14:32:17 2009
    M  TRACE FILE TRUNCATED (pid =     6160 )
    M sysno      00
    M sid        UMD
    M systemid   387 (Intel x86 with Linux)
    M relno      7000
    M patchlevel 0
    M patchno    175
    M intno      20050900
    M make:      single threaded, Unicode, optimized
    M pid        6160
    M
    M  kernel runs with dp version 241000(ext=110000) (@(#) DPLIB-INT-VERSION-241000-UC)
    M  length of sys_adm_ext is 576 bytes
    B
    B Tue Mar 24 14:32:28 2009
    B  create_con (con_name=DBMS)
    B  Loading DB library '/usr/sap/UMD/SYS/exe/run/dboraslib.so' ...
    M  *** ERROR => DlLoadLib: dlopen()= libclntsh.so.10.1: cannot open shared object file: No such file or directory -> DLENOACCESS (0,
    B  *** ERROR => Couldn't load library '/usr/sap/UMD/SYS/exe/run/dboraslib.so'
    [dbcon.c      4731]
    B  ***LOG BYG=> could not load library for database connection DBMS       [dbds#1 @ 1035] [dbds    1035 ]
    B  ***LOG BZY=> unexpected return code 8192       calling DBACDS     [dbacds#2 @ 1471] [dbacds  1471 ]
    Thanks in advance for your help in solve this error
    Alberto Gil
    Edited by: Alberto Gil on Mar 24, 2009 2:31 PM

    > set ORACLE_HOME=/opt/oracle/oracle/product/10.2.0/client_3
    > set NLS_LANG="AMERICAN_AMERICA.WE8ISO8859P1"
    > set ORA_NLS33=$ORACLE_HOME/nls/data
    > M  *** ERROR => DlLoadLib: dlopen()= libclntsh.so.10.1: cannot open shared object file: No such file or directory -> DLENOACCESS (0,
    > B  *** ERROR => Couldn't load library '/usr/sap/UMD/SYS/exe/run/dboraslib.so'
    You have to add the client library path (may be most likely /opt/oracle/oracle/product/10.2.0/client_3/lib) to the LD_LIBRARY_PATH variable in the .sapenv_<hostname>.csh or .sh script.
    Markus

  • Connect to External Oracle Database

    Hi, I'm beginner in this...
    I have a BI Java Connection and I'm using Visual Composer to get information from this database´s tables.
    But now, I want to do this with Web Dynpro and I can't find any basic example.
    Please, can you help me with this ?
    Thanks !!!

    Hi,
    Refer the following document which describes "Use SAP J2EE Database Pooling Service"
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/stu/use sap j2ee database pooling service
    This will help you in adding a new driver, creating a new datasource and accessing the same.
    Regards,
    Santhosh.C

  • Retrieve data from a synonym in oracle database through db connect

    Hi Everyone,
    I have created certain synonym for some tables in oracle. I want to retrieve data from it through db connect but where through source system and then selecting database tables, only tables and views are available.
    Synonyms are not available to create data sources and retrieve the data from it. Why is it so. Is this a limitation of db connect.
    Can anyone please let me know about it.
    Thanks,
    Joshua.

    Hi,
    You want to import data from an external Oracle database into your BW 3.X. To do this, you can connect the external database to the BW 3.X release as a source system using the external database connect. BW 3.X here represents BW 3.0, BW 3.1 and BW 3.5 because in other (DB relevant) parts, all 3 versions are based on the same source code.
    General information
    The above function allows you to load data from an external Oracle database (not a BW database) into your BW 3.0 system.
    There may also be constellations which cannot be used directly through the DB Connect access. However, it should be possible to find an adequate, customer-specific solution for most of these scenarios.
    In such situations, the resulting work falls into the area of Consulting and cannot be handled via Support.
    Successful implementation of a connection requires corresponding expertise and experience in the use of the source database in the areas:
                    - Tools
                    - SQL syntax
                    - DB-specific functions
    Corresponding knowledge of the source application is also required to ensure that semantically relevant data arrives in the BW system.
    Procedure
    You should execute the following steps to connect the source system (Q) to the BW system (BW):
    Installing the client software on an BW application server
                         Of course, you only need to install the client software if you are using BW with a non-Oracle database.
                         Use the Oracle setup program on the database CD (runInstaller on Unix) to start the OracleInstaller. Follow the program instructions and the DB installation instructions to install the Oracle Client software on BW.
    Testing connection setup from BW to Q
                         After you install the client software on BW, try to set up a connection from BW to the server on Q. You may need to adjust the tnsnames.ora or sqlnet.ora files for this, to introduce the Oracle systems (to which contact should be made) to BW. You can test the connection by executing the command "tnsping QDB" on BW to check whether the client has established contact to the QDB database on the Q system.
    Creating a separate U user in Q
                         We recommend that you create a separate U user in Q for connection to BW. This means that authorization and administration questions can be solved centrally.
    Displaying data sources in Q for the U user
                         To provide U data for users other than U, you can create views on other user tables as user U:
                         CREATE OR REPLACE VIEW viewname AS
                           SELECT * FROM QDB.tablename
                         You may have to grant SELECT privileges to user U in the QDB schema:
                            GRANT select ON QDB.tablename TO U
                         Of course, you can also restrict or reformat data in the view arrangement (for example, change from internal date format into the SAP date format). JOIN operations using several tables are also available.
                         !!! Synonyms do not yet work!!!
                         Synonyms that you can create as described below are another option for providing a complete table for the user U:
                           CREATE SYNONYM synoname FOR QDB.tablename
                         !!! Synonyms do not (yet) work!!!
                         After you have displayed the require data for user U, you can simply use
                           SELECT * FROM <view or table>
                         on the Q system to check which data is returned.
                         You can now open a link to Q as user U in the BW system with SQLPLUS and check, using the same SELECT, whether this data is also seen in the Oracle client. If this is not the case, there is probably a connection problem.
    Creating a connection from BW to Q in BW
    Including data sources of user U user in Q in BW.
    Solution
    Supported BW, Basis and BW 3.0B database versions, Basis 6.20 Support Package 2 (or higher)
          Oracle 8.1 (or higher, see below)
    Possible problems
    - Synonyms do not (yet) work!
    Up to now, only tables and views have been used as data sources for the DB Connect from the R3 Basis. As soon as synonyms are also used in the Basis, you will be able to convert created views (or even replicated tables) to synonyms as a workaround.
    With Basis 6.40 at the earliest, therefore as of BW 3.5, you will also be able to use synonyms. Until then, the following will help:
      CREATE VIEW <view_on_synonym> AS SELECT * FROM <synonym>
    - The source DB must have at least the release version of the BW DB.
    Oracle only ensures the support of client-server links if the version of the client is not higher than that of the server. So if BW has Oracle version 8.1 and, as in the case of Dbconnect, is run as a client against the server of the source database, the source database must have at least release Oracle 8.1 or higher.
    Of course, you have the option to install the Oracle client software of a lower version and then use this for the DB connect. This is also the procedure used to work with a DB connect on external databases of other vendors.
    Furthermore, the implementation of the DBconnect function in BW uses SAP Basis functions. Specifications of Oracle 8.1 database catalogs are used here. The source database must therefore have at least Version 8.1.
    - Oracle Client Software Version
    If you want to connect from an Oracle BW DB to an Oracle source DB, for the DB connect you naturally use the client software that you already installed on each application server.
    If you want to connect from a non-Oracle BW DB to an Oracle source DB, check item 3 of note 521230 to see which Oracle client software version is released with your BW R3 kernel and use this version.
    - Date and time fields in Oracle and their conversion into SAP-compatible column formats
    Example with a DATE field:
    Since a SAP table does not have a DATE field (date values are NUMC(8) and time specifications are NUMC(6)), we will use the Oracle DBA_TABLES system table as an example.
        SQL> desc dba_tables;
    The Oracle DBA_TABLES system table has a LAST_ANALYZED field. This is a DATE type field and is recognized as a date field of 7 characters by DBA_CONNECT. However, the import does not work because the DATE is a 7-byte conglomerate of "...century, year, month, date, hour, minute and second." (extract from the Oracle documentation).
    To make this DATE field legible for DB connect, you must use the TO_CHAR function in a VIEW. This should display the following examples:
    SQL> select LAST_ANALYZED from dba_tables
          where table_name like 'RS%' and rownum < 10 ;
    The formatting used here is the default used implicitly by SQLPLUS.
    SQL> select  to_char(LAST_ANALYZED,'YYYYMMDD') as dat from dba_tables where table_name like 'RS%' and rownum < 10 ;
    The result now has the SAP compatible format YYYYMMDD and should be loaded correctly by the DB connect as a date.
    SQL> select  to_char(LAST_ANALYZED,'HH24MISS') as tim from dba_tables where table_name like 'RS%' and rownum < 10 ;
    The result now has the SAP compatible format HHMMSS and should be loaded correctly by the DB connect as a time.
    You can use the following example for more detailed experiments:
    SQL> select  to_char(
           TO_DATE('03-FEB-2001 04:05:06','DD-MON-YYYY HH24:MI:SS'),
           'YY-MM-DD HH24-MI-SS') as datim from dual;
    with the result:
      DATIM
      01-02-03 04-05-06
    When you create a VIEW and use the TO_CHAR function (or other functions), you should easily be able to avoid problems with the interpretation of date/time specifications (and other reformatting).
    Details about the functions and the formats are contained in the Oracle documentation.
    - Special characters
    A words that contain special characters can only be imported correctly if the code pages in BW and in the source system are identical. If the code pages are not the same, DB Connect can be used if the characters to be imported appear under the first 127 characters of the character set.
    The use of multibyte code pages in the source system for saving data using character sets with more than 256 characters (Kanji, Katakana, Hiragana, Korean, Chinese, Tagalog, Khmer, Arabic, Cherokee, and so on) can cause the characters to become corrupt.
    For questions concerning the code pages, also refer to the FAQ note 606359 and question/answer 19 that appears there.

  • Connect to a oracle database in another server

    Hi people,
    I have to read some tables on a oracle database in another server.
    I know that I will have to use EXEC SQL command, but how can I make the connection between SAP and that oracle database.
    I have seen something about the DBCON table, but I am not sure if I can connect on another server from ther and how...
    Thanks...

    Dear,
    Check the below links:
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/connection-between-sap-system-with-external-oracle-database-with-tcode-dbco-1178583
    http://help.sap.com/saphelp_nwpi71/helpdata/en/df/455ec9747111d6b25100508b6b8a93/content.htm
    Hope it will help you.
    Regards,
    Alok Tiwari

  • External Oracle Databse connection from SAP

    Dear all,
    I know that this question has been asked before, but as i am facing some primitive issues so i am again posting my query.
    My requirement is to connect to an external ORACLE db from SAP and read data from that server. That ORACLE db is located in a different m/c altogether. I was trying to connect by making settings in DBCON -
    CON NAME= ORA_TEST
    DBMS= ORA
    USER NAME= administrator
    PASSWORD= (some pwd)
    CON ENV= ????? (what is to be put here)
    And I know that we have to make some corrections in tnsnames.ora file, but I am unable to find that file in SAP system. Where can I find this file ???
    Do we have to make one RFC connection as the SAP and ORACLE servers are in diff m/c and then do the connection, but this is just my guess??
    And if any RFC is at all required then what should be the parameters for that connection.
    Kindly help me in resolving the issue.
    1. CON ENV ?
    2. tnsnames.ora ?
    3. Any RFC needed ?
    Points will definately be rewarded.
    Thanks,
    Saurabh.

    Hi,
    I have done the required settings everywhere but the connection is failing.
    The tnsname.ora file is located in my Oracle client directory and the settings done there are -
    LEVEL2 =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST =  
                                192.167.40.54)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = level2)
    in DBCON i have made the following entry -
    1. DB Connection : NEWORA
    2. DBMS :             ORA
    3. User Name :       User Name external oracle database
    4. DB Password :   Password external oracle database
    5. Conn Info :         level2
    and my ABAP code looks like -
    DATA: BEGIN OF wa,
    ncli(20) TYPE c,
    num(20) TYPE c,
    END OF wa.
    DATA: dbs TYPE dbcon-con_name.
    DATA: con(20) TYPE c.
    DATA : ls_wa LIKE wa.
    dbs = 'NEWORA'. "DB Connection in DBCO
    EXEC SQL.
    connect to :dbs
    ENDEXEC.
    EXEC SQL.
    GET CONNECTION :dbs
    ENDEXEC.
    WRITE : dbs.
    EXEC SQL PERFORMING loop_output.
    select bundle_cnt, job_id from GHCBRMRT.RML_BUNDLE into :ls_wa
    ENDEXEC.
    FORM loop_output.
    WRITE: / ls_wa-ncli,
    ls_wa-num.
    now my dilemma is how SAP will recognize in DBCON what really "level2" means ?? as the settings are there in ORACLE directory and not inside SAP system.
    the dump error msg that I am getting is -
    Runtime Errors         DBIF_DSQL2_CONNECTERR
    Except.                   CX_SY_NATIVE_SQL_ERROR
    Date and Time          13.08.2008 10:20:47
    Short text
         Error setting up a secondary database connection
    What happened?
         Connection to database system not possible with 
          identifier "NEWORA".
    Missing Handling of System Exception
         Program                                 YY_NEW_CONN
    Kindly help in this regard as where I am going wrong.

  • TIME_OUT in SAP when accessing external Oracle table thru native SQL

    Hi,
    I have a problem in one of my native SQL statement. It takes a long time accessing the table considering that the number of records to be retrieved is only small.
    Something happened on the Oracle system. But, stilll to be confirmed. Before, there wasn't any issue. Looking further, I found that when the value in the where clause equated is a literal (meaning the value is not declared in DATA or CONSTANTS in the ABAP Program)
    Example
    1.
    EXEC.
    WHERE FIELD = '1'
    ENDEXEC.
    instead of
    2.
    CONSTANTS: c_1 value '1'.
    EXEC.
    WHERE FIELD = c_1
    ENDEXEC.
    i found that when the way of coding is same as Example 1, a time-out error occurs. But when in Example 2, no issue.
    Can someone explain this? is their something that could affect SAP with respect to Oracle configuration?
    Thanks!

    I wonder if you could share the outline of your code to access an external oracle database.   I've just been given the assignment to do just that, but don't know where to start.
    thx,
    Mike DeGuire

  • CURRENT_TIME and non-Oracle Database

    Folks !
    When I use CURRENT_TIME in JPA named query, TopLink (Essentials) translates it into a "sysdate" function - this doesn't work on non-Oracle database like Postgres.
    How do you get Toplink to substitute correct function for non-Oracle Database ?
    thanks,
    -Sanjay

    I set following in my persistence.xml:
    <property name="toplink.target-database" value="PostgreSQL" />
    Still no luck.

Maybe you are looking for

  • Windows 7 126 error after itunes install, why?

    ITunes runs well, however I get a windows 7 126 error. I don't know how to repair it. I've unintalled all the Apple files and reinstalled several times to no avail. please help and thanks in advance!

  • Hard drive not appearing in disk utility

    My hard drive on my MacBook crashed and I purchased a new one. I attempted to install the Mac OSX on the new hard drive, but have run into a couple issues. First issue I ran into was that I found out I had the wrong Install DVDs. I was able to format

  • Exchange rate maintainance-Suggestion please

    Hi, I have a following scenario regarding the exchange rates. I have following currencies maintained in my system Global Currency-USD Group Currency-SAR Company Code Currency-As per the country(for example AED for UAE) I have maintained following exc

  • Windows 7: probleme de "windows installer" lors de la mise à jour itunes10.5. La mise à jour ne peut donc pas se faire.

    Clic sur mise à jour itunes 10.5. L'installation est stoppée car une erreur -42032 s'est produite avec windows installer. Je ne comprend pas : toutes les mise à jour "windows update" sont ok. Que puis-je faire ?

  • Read SAML attributes in Proxy service

    Hi, I need to read SAML attributes in a proxy service in OSB. But the SAML is not available. The client call a service with encrypted SAML im Header, but when I read the header in Proxy service, the SAML is no more available. Client call with: Author