Oracle log fn

Hi All,
I was trying to convert the sybase log function to oracle, was able to complie the below code. However the results are not mathcing, could any one plz help me in correcting this
log error
example from my code is as below( I am using oracle 11g db) on sqldeveloper and toad.
Sybase = ytd_alpha = ((power(convert(float,10), sum(log10(w_acct/100+1)))-1)*100
-(power(convert(float,10),sum(log10(w_bogie/100+1)))-1)*100)*100
Oracle =((power(cast(10 as number),sum(log(10,w_acct/100+1)))-1)*100
-(power(cast(10 as number),sum(log(10,w_bogie/100+1)))-1)*100)*100     
--Oracle results
select ((power(cast(10 as number),sum(log(10,753/100+1)))-1)*100
-(power(cast(10 as number),sum(log(10,508/100+1)))-1)*100)*100 from dual;
=24500
--Sybase results
select ((power(convert(float,10), sum(log10(753/100+1)))-1)*100
-(power(convert(float,10),sum(log10(508/100+1)))-1)*100)*100
=20000I need to get the sybase result 20000, using oracle matching available functions.
plz dont get confuse with the lengthy calculation, I just c/p from my env.
I suspect it is log function causing the difference as Power is directly availabe in both syb & ora.
Edited by: NeilCSE on Sep 21, 2011 12:37 PM
Edited by: NeilCSE on Sep 21, 2011 12:42 PM

Without wading too deeply through it, I beleive Oracle is correct, and Sybase is converting to int for at least some of the operations.
In Sybase:
1> select log10(753/100+1)
2> /
             0.903090
(1 row affected)In Oracle
SQL> select log(10,753/100+1) from dual;
LOG(10,753/100+1)
       .930949031Back to Sybase with an explicit cast to float:
1> select log10(convert(float, 753)/100+1)
2> /
             0.930949
(1 row affected)The int return from the log10 impacts the rest of the calculations. Taking it a step further, and stripping out the uneccessary sum in both, and the cast to number in the Oracle version:
Sybase as posted
1> select power(convert(float,10), sum(log10(753/100+1)))-1
2> /
             7.000000
(1 row affected)Oracle:
SQL> select power(10,log(10,753/100+1))-1
  2  from dual;
POWER(10,LOG(10,753/100+1))-1
                         7.53Sybase again with cast to float:
1> select power(convert(float,10), sum(log10(convert(float,753)/100+1)))-1
2> /
             7.530000As a side note, the Sybase and Oracle databases are on different LPARs of a single physical server, so no funny stuff with different O/S or CPU designs :-)
John

Similar Messages

  • ORACLE LOG ERRORS - Bug in oracle??

    Hi,
    we are using oracle log errors to capture oversized err records for varchar2 type fields. Sql is something like:
    INSERT INTO abc (col1,col2) VALUES ('asdsass','weqwewqee') LOG ERRORS INTO abc_err('1') REJECT LIMIT UNLIMITED;
    But, data captured in abc table is trimmed data. Right spaces present in source are being trimmed by oracle while capturing this error table. I have the following queries:
    -Has anyone else experienced this type of behavior?
    -Is it a bug in oracle log errors functionallity??
    -Is there any workaround to use oracle log errors functionality to catch untrimmed data?
    thanks,
    Edited by: user7036480 on Dec 11, 2008 4:22 PM

    user7036480 wrote:
    -Has anyone else experienced this type of behavior? Yes, described in that issue while "log errors into g_logtest_err(1) reject limit 1" (is it you?)
    -Is it a bug in oracle log errors functionallity?? Raise a SR to know.
    -Is there any workaround to use oracle log errors functionality to catch untrimmed data?No.
    Nicolas.

  • Does oracle log general errors

    Dear experts,
    I am using Oracle 11.2.0.3. I am researching on random ORA-00900:     invalid SQL statement error that we are seeing in production. Does oracle log such errors in alert.log or any tables? If not can we configure to log such errors?
    Thanks.

    Dont understand.... you are seeing ORA-00900 in production but don't know where to search this error? where do you see it?It is being logged from application in event log which I do not have access to. I wanted to check if oracle also logs such error some where.
    SQL Banner : SQL*Plus: Release 11.2.0.1.0 Production on Wed Nov 28 12:12:25 2012
    SQL :
    SELECT
    overload,
    DECODE (
    position,
    0,
    'RETURN_VALUE',
    NVL (argument_name, CHR (0))
    ) AS name,
    DECODE (
    in_out,
    'IN', 1,
    'IN/OUT', 3,
    'OUT', DECODE (argument_name, NULL, 6, 2),
    1
    ) AS direction,
    DECODE (
    data_type,
    'BFILE', 101,
    'BLOB', 102,
    'BYTE', 103,
    'CHAR', 104,
    'CLOB', 105,
    'DATE', 106,
    'DECIMAL', 107,
    'DOUBLE', 108,
    'INT16', 111,
    'INT32', 112,
    'INT64', 113,
    'INTERVAL DAY TO SECOND', 114,
    'INTERVAL YEAR TO MONTH', 115,
    'LONG', 109,
    'LONG RAW', 110,
    'NCHAR', 117,
    'NCLOB', 116,
    'NVARCHAR2', 119,
    'RAW', 120,
    'REF CURSOR', 121,
    'SINGLE', 122,
    'TIMESTAMP', 123,                              
    'TIMESTAMP WITH LOCAL TIME ZONE', 124,
    'TIMESTAMP WITH TIME ZONE', 125,
    'VARCHAR2', 126,
    'XMLTYPE', 127,
    'NUMBER', 107,
    126
    ) AS oracleType,
    DECODE (
    data_type,
    'BLOB', 0,
    'CHAR', 0,
    'CLOB', 0,
    'LONG RAW', 0,
    'NCHAR', 0,                              
    'NCLOB', 0,                              
    'NVARCHAR2', 0,
    'RAW', 0,
    'VARCHAR2', 2048,                                                            
    0
    ) AS length,
    NVL (data_precision, 255) AS precision,
    NVL (data_scale, 255) AS scale
    FROM
    all_arguments
    WHERE
    data_level = 0
    AND data_type IS NOT NULL
    AND owner = :schemaName
    AND package_name = :packageName
    AND object_name = :methodName
    ORDER BY
    overload, position
    ******************** EXCEPTION PROPERTIES ********************
    Errors: Oracle.DataAccess.Client.OracleErrorCollection
    Source: Oracle Data Provider for .NET
    Number: 900
    ErrorCode: -2147467259
    Data: System.Collections.ListDictionaryInternal
    TargetSite: Void HandleErrorHelper(Int32, Oracle.DataAccess.Client.OracleConnection, IntPtr, Oracle.DataAccess.Client.OpoSqlValCtx*, System.Object, System.String, Boolean)
    Edited by: spur230 on Nov 28, 2012 12:13 PM

  • FINANTIAL DOCUMENTS MISSING --- ORACLE LOGS FULL

    Hi Experts,
    9 documents are missing and when they were saved the system showed the message "update has been stopped". This was because of the Oracle LOGS (full).
    When Oracle problem was solved the documents were not found in SM13 to recovered.
    Any clue?
    On the other hand If a have finantial documents in QAS how can I put it on PRD?
    Regards.

    Hi,
    Schedule your backups according to the full backup time.
    Do a test of full backup and fine the time that it takes to complete the full backup. You can include "plus archivelog" if you want your archive logs to be backed up along with the full backup. This is most preferred as this makes restoration easy too.
    If your full backup takes, say, 4 hrs to complete and if you schedule your full backup at 00 00 hrs on your scheduler, then schedule the archive backups after 04 00 hrs. This will solve your problems with missing archive backups.
    >> "But from RMAN specialist I heard that this may cause problems with full backup. During full backup also archive logs are backed up (at the start and end) so there might be a problem with accessing the file that is used by another process. And this may cause problem with full backup - which we want to avoid especially."
    This will throw out errors if your input to full backup consists "delete input" for your archived logs, else the process will not have any problem and succeed.
    Also when one or more of backups run concurrently, "ORA-00230: operation disallowed: snapshot control file enqueue unavailable" error may occur but this is rare case.
    Thank you!!

  • Regarding SAP & Oracle logs deletion

    Hi,
    I have a concern on SAP & Oracle logs. I want to know what are all the logs mentioned below can be deleted and what are all the logs should be kept for the recovery of DB, if the system got crashed. Also how many days logs should be kept for the future purpose. In our landscape, we are running online backup job daily from the T-code DB13.
    sapbackup
    oraarch
    mirrlogA
    mirrlogB
    origlogA
    origlogB
    saparch
    sapcheck
    sapreorg
    saptrace\usertrace
    saptrace\background
    Kindly let me know the answer ASAP.
    Thanks & Regards,
    Mogileeswar Reddy

    That information is widely available.
    No research done
    No interview questions
    Please read the "Rules of Engagement"
    Regards
    Juan

  • Oracle log deletion

    Hi,
    I am wanting to save some space with the oracle logs which are created. I have zipped up the files and want to delete the logs until I actually have to use them. Does Oracle access these logs during normal operation or am I safe to delete them and extract them from the zip file if needed in the future?

    we dont do online operations we have created log
    files after backup and it has occupied large space in
    memory, we have created some log files is it save to
    delete these log files.I am kinda confused by the statment.
    What log files you created? with what command?
    occupied large space in memoryI suppose you mean diskspace not memory correct?

  • How to use oracle log ?

    Hello experts,
    what is oracle logs ? how these are helpful to identify the error and error messages ?
    thanks in advance
    yash

    yash_08031983 wrote:
    i take an example..
    i have a function or procedure, i executed it in some pl/sql block. and its generating some error.
    if i want to check, where is problem or which error generated, can i check it from logs.
    i want to use the oracle logs in daily practice while writing procedure and function or pl/sql pr sql statements.
    That error which is generated by some user-defined program is not an error that would be considered to go into the database logs(alert.log etc) but it would be passed on to the calling environment and based on that environment, that error details would be displayed. Have you not seen such error details shown while doing the coding of such programs? If you need to go more than that you would need to include some additional bits of code like dbms_utility and may have to call it's procedure format_error_backtrace .
    Just my 2 cents.
    Aman....

  • How to - write oracle logs to syslog

    Is there a method for writing some/all of the logs produced by oracle in syslog format? In the
    SANS oracle security class it was suggested to write oracle logs using syslog on unix systems.
    I am running 10g on RedHat.
    Has anyone done this before? Any pointers to reference material? My google search for
    variations of - syslog oracle unix logs was not helpful.
    thanks
    THeresa

    Is there a method for writing some/all of the logs produced by oracle in syslog format?What type of logs do you mean?
    Maybe following link will help you (Documentation - New Features):
    http://download-uk.oracle.com/docs/cd/B19306_01/network.102/b14266/whatsnew.htm#sthref34
    This is example if you want put all messages from alert log to syslog.
    You could use "logger" command for this purpose.
    For example create startup script (in /etc/init.d/ directory) which will execute (as root) following command:
    tail -f /path/to/oracle/bdump/alert_<SID>.log | logger &Now all actions will be logged in alert log and also in system logs.
    This example has at least one disadvantage:
    If you remove alert log tail will loose the pointer for file - no new messages in system logs.
    For more info execute "man logger" from shell.

  • Oracle Log files Path

    Could anybody update where can we find oracle log files which stores log-in details (specially erros) when log thro' SQLPlus or OEM
    and oracle service issue logs.
    Thax
    Shabar

    Hi,
    If you are encountring any network related errors you can find the errors in sqlnet.log (<<ORACLE_HOME>>\NETWORK\LOG).
    But for program related errors, you have spool the output to a text file manually.
    Eg:
    SQL>spool logfile.txt
    SQL> select * fromtab;
    SQL> spool off
    In this example, the output will be saved in logfile.txt.
    Regards,
    Satheesh

  • Oracle logs -- give a hand to a MS SQL DBA ;-)

    Hello,
    I'm a MS SQL DBA, but now have to learn Oracle. There is the only log (ErrorLog) in MS SQL, it stores security events (such as logon/logout), configurations changes and error messages.
    I'm very confused while I searched for the same log(s) in Oracle. As far as I understand there are several logs in Oracle (security, alert, backup, performance...), and they're stored as a tables. Is it right?
    What kind of logs Oracle DB server manages? Could you recommend a documents (url desired) for reading?
    Thank you for your time,
    Vladimir.

    Oracle has an alert log (alert_<<SID>>.log) in the directory specified by the initialization parameter BACKGROUND_DUMP_DEST. That tracks database-level errors, as well as database startup and shutdown and the non-default parameters used at startup. That is probably the log you're looking for.
    If one of the background processes fails, a trace file is written to BACKGROUND_DUMP_DEST (<<SID>>_<<process name>>_<<number>>.trc). If a user process fails, or if you want to generate some detailed tracing information, you can have different sorts of trace files written to USER_DUMP_DEST.
    You can also enable auditing and specify events that you want to track. The command
    audit connectfor example, will log every time a user logs in or out. The audit trail can be set either generate an audit record to a database table or to a file. The table is generally easier to work with, but the log file may offer more protection against a DBA altering the audit trail.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Oracle logs ORA-25228 error messages

    Hi,
    I am running Oracle )i Release2 and am using Java/JMS to dequeue messages and PL/SQL to enqueue messages.
    Everything works great, but when I look in the "udump" catalog on the machine where Oracle is running, I see 20-30 files generated each day containing error messages like:
    *** 2002-10-08 10:24:00.000
    *** SESSION ID:(41.483) 2002-10-08 10:24:00.000
    FATAL ERROR IN TWO-TASK SERVER: error = 12571
    *** 2002-10-08 10:24:00.000
    ksedmp: internal or fatal error
    ORA-25228: timeout in dequeue from TS.G2TOPIC while waiting for a message
    Is this really an error? Can I prevent Oracle from logging this as an error if it isn't serious? Looks serious to me, but my program is using 3 different queues and they all work normally.
    I am using a timeout when dequeuing from Java.
    example:
    TextMessage dtxtmsg = (TextMessage)(tsub1.receive(10000));
    -Christer

    Try this and see if this makes things any better:
    alter session set sql_trace = false ;

  • Oracle logs

    I need to know the alerts of oracle database and troubleshooting logs and location in SAP directory
    Scenario 1
    I start listener and DB ..both are not coming up.
    Scenario 2
    startup mount ;
    failed..
    Kindly need your help

    Listener Logs
    As the listener.log file grows, the DBA will want to either remove or rename this log file. I dont know if its there while installing the SAP by default, havenot got any situation or something like it.
    Windows
    %\network\log> lsnrctl set log_status on
    On Unix
    Oracle/product/netwrok/log
    lsnrctl set log_status_on
    if you starting the DB and its failed you can see the Oracle alert file all the information captures here...Whatever happens on Oracle you can see all the information in Oracle Alerts in SAP the filename is AlertSID.log and you can find the same in
    Drive:\oracle\SID\saptrace\
    background\alert_<DBSID>.log Oracle Alert file
    usertrace\*.trc                           User trace files
    For more information on SAP Directory structure you can goto below link
    http://help.sap.com/saphelp_nwpi71/helpdata/en/47/050747e74266c0e10000000a1553f7/content.htm

  • Does Oracle log errors for me?

    Hi All,
    Quick question here:
    I am receiving the following error upon insert:
    Code: ORA-00904: invalid column name in DB Manager function: ExecuteSQL
    Does the database log which table had the wrong insert? This is happening in code that I don't have easy access to and would like to know of any logging feature that oracle may provide.
    Thanks,
    Rick

    So here is a question:
    I have been logging a few sessions. I have pasted what is in v$session here:
    SID SERIAL#
    1     1
    2     1
    3     1
    4     1
    5     1
    6     1
    7     18761
    8     18761
    9     18761
    10     18761
    11     5712
    16     29258
    using tom's guide (http://asktom.oracle.com/pls/ask/f?p=4950:8:5737465255169454238::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:330817260752) i turned on the logging
    I keep getting stuff like this though:
    STAT #2 id=1 cnt=0 pid=0 pos=0 obj=0 op='SORT ORDER BY '
    STAT #2 id=2 cnt=0 pid=1 pos=1 obj=0 op='FILTER '
    STAT #2 id=3 cnt=2 pid=2 pos=1 obj=0 op='NESTED LOOPS '
    STAT #2 id=4 cnt=4 pid=3 pos=1 obj=0 op='NESTED LOOPS '
    STAT #2 id=5 cnt=4 pid=4 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ '
    STAT #2 id=6 cnt=4 pid=5 pos=1 obj=41 op='INDEX UNIQUE SCAN '
    STAT #2 id=7 cnt=4 pid=4 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID OBJ$ '
    STAT #2 id=8 cnt=4 pid=7 pos=1 obj=33 op='INDEX UNIQUE SCAN '
    STAT #2 id=35 cnt=2 pid=3 pos=2 obj=63 op='TABLE ACCESS BY INDEX ROWID ARGUMENT$ '
    STAT #2 id=36 cnt=2 pid=35 pos=1 obj=108 op='INDEX RANGE SCAN '
    STAT #2 id=38 cnt=0 pid=2 pos=3 obj=0 op='NESTED LOOPS '
    STAT #2 id=39 cnt=0 pid=38 pos=1 obj=0 op='FIXED TABLE FULL X$KZSRO '
    STAT #2 id=40 cnt=0 pid=38 pos=2 obj=82 op='TABLE ACCESS BY INDEX ROWID OBJAUTH$ '
    STAT #2 id=41 cnt=0 pid=40 pos=1 obj=101 op='INDEX RANGE SCAN '
    STAT #2 id=37 cnt=0 pid=2 pos=2 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=9 cnt=4 pid=8 pos=1 obj=0 op='FILTER '
    STAT #2 id=10 cnt=4 pid=9 pos=1 obj=0 op='NESTED LOOPS '
    STAT #2 id=11 cnt=4 pid=10 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ '
    STAT #2 id=12 cnt=4 pid=11 pos=1 obj=41 op='INDEX UNIQUE SCAN '
    STAT #2 id=13 cnt=4 pid=10 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID OBJ$ '
    STAT #2 id=14 cnt=6 pid=13 pos=1 obj=34 op='INDEX RANGE SCAN '
    STAT #2 id=34 cnt=0 pid=9 pos=17 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=33 cnt=0 pid=9 pos=16 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=32 cnt=0 pid=9 pos=15 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=31 cnt=0 pid=9 pos=14 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=30 cnt=0 pid=9 pos=13 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=29 cnt=0 pid=9 pos=12 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=28 cnt=0 pid=9 pos=11 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=27 cnt=0 pid=9 pos=10 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=26 cnt=0 pid=9 pos=9 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=25 cnt=0 pid=9 pos=8 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=24 cnt=0 pid=9 pos=7 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=23 cnt=0 pid=9 pos=6 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=22 cnt=0 pid=9 pos=5 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=21 cnt=2 pid=9 pos=4 obj=0 op='FIXED TABLE FULL X$KZSPR '
    STAT #2 id=17 cnt=2 pid=9 pos=3 obj=0 op='NESTED LOOPS '
    STAT #2 id=18 cnt=54 pid=17 pos=1 obj=0 op='FIXED TABLE FULL X$KZSRO '
    STAT #2 id=19 cnt=52 pid=17 pos=2 obj=82 op='TABLE ACCESS BY INDEX ROWID OBJAUTH$ '
    STAT #2 id=20 cnt=52 pid=19 pos=1 obj=101 op='INDEX RANGE SCAN '
    STAT #2 id=15 cnt=0 pid=9 pos=2 obj=19 op='TABLE ACCESS BY INDEX ROWID IND$ '
    STAT #2 id=16 cnt=0 pid=15 pos=1 obj=36 op='INDEX UNIQUE SCAN '
    How do I know what session my VB6 app is grabbing? Especially if it's starting and ending transactions?
    Is there a way to LOG ALL requests out to a file?

  • How to check oracle log ?

    Hi..
    How could i check any transaction or changes on oracle 10g ?. is there any log ?.
    This is because i have found that the oracle timestamp suddenly change and become advance 1 hour. Due to that, i want to trace why the problem happen and what is the cause.
    Might be somebody could advise me how to find out the cause, how to solved the problem.
    Please help me..
    Thank you,
    Baharin

    SQL> sho user
    USER is "SYS"
    SQL> desc dbms_logmnr
    PROCEDURE ADD_LOGFILE
    Argument Name               Type               In/Out Default?
    LOGFILENAME               VARCHAR2          IN
    OPTIONS               BINARY_INTEGER          IN     DEFAULT
    FUNCTION COLUMN_PRESENT RETURNS BINARY_INTEGER
    Argument Name               Type               In/Out Default?
    SQL_REDO_UNDO               NUMBER               IN     DEFAULT
    COLUMN_NAME               VARCHAR2          IN     DEFAULT
    PROCEDURE END_LOGMNR
    FUNCTION MINE_VALUE RETURNS VARCHAR2
    Argument Name               Type               In/Out Default?
    SQL_REDO_UNDO               NUMBER               IN     DEFAULT
    COLUMN_NAME               VARCHAR2          IN     DEFAULT
    PROCEDURE REMOVE_LOGFILE
    Argument Name               Type               In/Out Default?
    LOGFILENAME               VARCHAR2          IN
    PROCEDURE START_LOGMNR
    Argument Name               Type               In/Out Default?
    STARTSCN               NUMBER               IN     DEFAULT
    ENDSCN                NUMBER               IN     DEFAULT
    STARTTIME               DATE               IN     DEFAULT
    ENDTIME               DATE               IN     DEFAULT
    DICTFILENAME               VARCHAR2          IN     DEFAULT
    OPTIONS               BINARY_INTEGER          IN     DEFAULT

  • Oracle log files

    Besides "alert" and "trace" log in $ORACLE_HOME/rdbms/log/ , is there any other log files which can be used to investigate oracle problem (server crash, very slow performance, etc.) ?
    Is there any way to increase the detail of this logs for debugging purposes ?

    Hi,
    There are a lot of oracle tools to generate different levels of trace output, for session, application, etc.. but to start off, I'd search for "trace" or "trace file" in the search box of the documentation for your particular database release. There are also init params associated w/ different levels of stats generations, just issue "show parameter trace" once connected to your database, and also "show parameter timed" to see the params/values on your database. I use these as keywords to search on later. Another useful tool to look at for more trace generation is the Enterprise Manager -- more helpful if on a later release... still, all this generates more "trace" files...

Maybe you are looking for

  • Photos doesn't save to camera roll.

    I have the new ipad 3 just updated to iOS 6 and when i try to save a photo from facebook, emails, or safari it doesn't want to save to my camera roll. How can i fix this problem ?

  • Docked iPod only outputs sound during video to TV

    I have a 5G iPod in an Apple dock, connected to my TV using a Monster audio cable and an S-Video cable. For some reason, it only outputs sound during videos or a photo slide show - not at all for music only playback. I'm baffled! Any idea why? It's a

  • How do I make Finder windows narrower (in Lion)?

    One new feature of 10.7 Lion is that the minimum possible Findow window width seems to have increased (to around 300 pixels it seems, from about 150 in 10.6).   Does anyone know how to decrease the window width? 300 pixels is too wide for the 13 inch

  • Regd sequencing in BPM

    Hi experts, I have a requiremnt to do serial sequencing, i was trying to do it using quality of service EOIO, but it didnt worked out(SFTP adater has no option for  setting quality of service).Finally it is decided to go for BPM. I am completly new t

  • Idoc- XI- Idoc - still awaiting acknowledgement

    Hi guys! We send Idoc->XI->Idoc and in sxi monitor we have a green flag - still awaiting acknowledgment. What does it mean? How can we be sure, that Idoc is received bu target application? Thanx olian!