View log file via third party tool

Hi All,
Using Oracle EBS 11.5.10.2
Database 10g
How can I show the oracle log file through third party tool like Java.
PS
Edited by: PS on May 28, 2012 9:21 AM

Hi,
Once a concurrent request is completed, Log and Output file is created and details can be fetched using below query,
SELECT OUTFILE_NAME,LOGFILE_NAME
FROM fnd_concurrent_requests
WHERE request_id = <Your Request ID>
This will tell you the file name along with completed path.
You can copy this files to other locations and need third party tool to read this files.
I hope this helps, how to view log files from other tools.
Regards,
Saurabh

Similar Messages

  • SAP MI deployment via thrid party tool

    Hello,
    We are trying to deploy SAP MI 7.0 via third party tool.  Unfortunately, according to SAP note 853508 (MI 7.0 release restrictions), generating setup packages is only supported from a Windows server.  We're running on Solaris.
    These are the components that gets install after synchronizing:
    MI7.0 SP15 patch
    9.12 DB2E
    MAM30 Laptop SR5
    1.  Are there any command to install the download zip files or components manually?  We can kick that off with our deployment tool.  OR....
    2. Included the components into the MI setup.exe or MSI installation?
    Are any of those option possible?
    I have tried capturing the components but seems that the individual user configs contains the info if the components have been installed.
    Thanks,
    Anthony

    Hi Anthony
    Unfortunately it is not possible to integrate the MI deployment mechanism with any third part tool.  Deployment is purely a functionality built into the MI Client Framework providing no mechanism to integrate with any other third party tools.  The only solution to your problem is to use setup package but since you are using Solaris system, this also wouldn't work for you.  Is it not possible to have a 32 bit Windows Server for creating a setup package which would completely solve your problem?
    Best Regards
    Siva

  • How to create a pop up calendar in adobe acrobat or any other adobe tool  via adobe javascript  ?No third party tools needed(Eg:formrouter)

    I want to create a pop up calendar in adobe acrobat or any other adobe tool  via adobe javascript  in a PDF form .
    I wish to create the calendar without any third party tool.
    I found few options like formrouter and also pdf scripting.
    But I was to create the calendar via pure Adobe Javascript. If no such option is there  inbuilt pop up calendar control in any adobe tool to design the PDF form and afterwards save the same as PDF.

    All 3 of the options provide are all JavaScript. There is no plug-in used. You do need to place the JavaScript code text file into a special folder so that the menu and tool bar tools that allow execution of the JavaScript code and associate the pop-up calendar with a specific field.

  • Third party tools for redo log

    Dear,
    Any third party tools can read redo log for oracle9i?
    ManyThanks

    Most 3rd parties gave up when they realized that
    a) Oracle now owns, and includes for free, the logminer, and
    b) Oracle is free - and willing to - change the contents of the log files at any time, including patch releases.

  • Error on load: System.IO.IOException: The process cannot access the file : error in event viewer when users want to view documents from this third party deployed scan solution

    Error on load: System.IO.IOException: The process cannot access the file
    '\\server1\SCANSHARED\.pdf' because it is being used by another process.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
       at System.IO.File.WriteAllBytes(String path, Byte[] bytes)
       at abc.Scan.Layouts.ICC.Scan.View.Page_Load(Object sender, EventArgs e)
    I faced this  error in event viewer  when users want to view documents from this third party deployed scan solution
    here I have two WFS servers  and they configured with load balancing in F5 .
    when I enable both servers in F5 I receive this error messages in 2nd server,
    when users want to view documents
    adil

    Do you have antiVirus installed on the sharepoint servers?
    These folders may have to be excluded from antivirus scanning when you use file-level antivirus software in SharePoint. If these folders are not excluded, you may see unexpected behavior. For example, you may receive "access denied" error messages when files
    are uploaded.
    Please follow this KB and exclude the folders from Scanning.
    http://support.microsoft.com/kb/952167
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Sending data directly from BW To Oracle DW via Open hub Third party tools

    HI All
    We need to send data from SAP BW 7.0 to Oracle 11g DW. The requirement is to pass data through open hubs. So we wanted to explore the option of directly passing the data from BW to Oracle using third party tools. So i tried to gather information on the third party tools and came across list of APIs and some pointers on creating a RFC through SM59. But dont know how to do it or what parameters to pass. Could you please point me in the direction or list me step by step detailed instructions as to how I can achieve this?

    Hi Amit..
      I can see  the following  will make things work for  you.
    1) BODS.
    2) PI ( XI).
    3) BI7.0 to FTP and from FTP  you to push these tp  your oracle system..
    Regards,
    rajesh

  • How to integrate DRM with third party tool for loading metadata in SQL table

    Experts,
    I am new to DRM and I have a requirement in which we want to integrate DRM with third party tool(lets say SQL table) as target and load metadata from DRM (Parent node, name , alias etc) to SQL table (same column name)
    Is there any way we can integrate DRM to export the same to table directly instead to files. If yes what are the steps we have to follow.
    Is there anyway we can customize DRM to execute queries or run batch
    Can I have a basic example please.
    Thanks in advance,
    Regards,

    1. Use DRM Export to Table option, for that create an External Connection first for the Target Database and select the respective Tables to which you wish to Export the Hierarchy information.
    2. You can perform most of the DRM Actions via the DRM_BATCH_CLIENT.exe.
        Please refer to Using the Data Relationship Management Batch Client of DRM User guide.
    let me know if you have any issues.

  • Trigger for blocking user using third party tool !

    Dear Friends ,
    I have to block the users from using sqlplus, TOAD, PLsldev etc (Except SYSTEM user) from client end using the below trigger :
    create or replace trigger check_logon
    after logon on database
    declare
    cursor c_check is
    select
    sys_context('userenv','session_user')
    username,
    s.module,
    s.program
    from v$session s
    where
    sys_context('userenv','sessionid')=s.audsid;
    lv_check c_check%rowtype;
    begin
    open c_check;
    fetch c_check into lv_check;
    if lv_check.username in ('SYSTEM')
    then
    null;
    elsif upper(lv_check.module) like
    ('%SQL*PLUS%') or
    upper(lv_check.program) like
    ('%SQLPLUS%')  or
    upper(lv_check.module) like
    ('%T.O.A.D%') or
    upper(lv_check.program) like
    ('%TOAD%')    or
    upper(lv_check.program) like
    ('%PLSQLDEV%')    or
    upper(lv_check.program) like
    ('%BUSOBJ%')    or
    upper(lv_check.program) like
    ('%EXCEL%')
    then
    close c_check;
    raise_application_error(-
    20100,'Banned! Contact with Database Admin!');
    end if;
    close c_check;
    end;
    It works fine all normal user cannot access the database using above third party tools .
    But the problem is , user with DBA privileges can access the database with generating an trace file . Is there any way to restrict DBA Privileged user ? or is there any mechanism to create a log/trace file so that If there any  DBA Privilege user acess to the Database , then we can get the information from that specified log/trace file ? 
    Waiting your kind reply ... ...

    Hi,
    If the DBA users has the DBA role granted to them so they will by passes the logon trigger. For example, the SYSTEM user has the DBA role and the DBA role has the ADMINISTER DATABASE TRIGGER privilege. The ADMINISTER DATABASE TRIGGER by pass the logon trigger. If you want to restrict the access to a DBA user, then you need to revoke the ADMINISTER DATABASE TRIGGER privilege from the DBA role or grant individual privileges except the ADMINISTER DATABASE TRIGGER privilege to the DBA users.
    Cheers
    Legatti

  • Open Hub Destination-Third Party Tool

    dear all,
    can any one guide me as to how data(master data in particular) from bw can be transferred to oracle data base using open hub destiantion.is rfc connection between bw and third part tool enough,do we have to maintain the same structure in third party tool before executing DTP and how can this be done??
    i am now able to transfer data from bw into a flat file and also to data base (bw) and not aware of the this functionality-third party tool .any light thrown on this area is welcome and points will be awarded ,
    thanks ,
    sasidhar gunturu

    Some light at the end of tunnel for sure...
    Extraction to the third-party tool can be executed as follows:
           1.      You define an open hub destination with Third-Party Tool as the destination type.
           2.      You create an RFC destination for your third-party tool and enter it in the definition of the open hub destination.
           3.      You use API RSB_API_OHS_DEST_SETPARAMS to define the parameters for the third-party tool that are required for the extraction.
           4.      You either start extraction immediately or include it in a process chain. You can also start this process chain from the third-party tool using process chain API RSPC_API_CHAIN_START. The extraction process then writes the data to a database table in the BI system.
           5.      When the extraction process is finished, the system sends a notification to the third-party tool via API RSB_API_OHS_3RDPARTY_NOTIFY.
           6.      The extracted data is read by API RSB_API_OHS_DEST_READ_DATA.
           7.      The status of the extraction is transferred to the monitor by API RSB_API_OHS_REQUEST_SETSTATUS.
    For more details click below -
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/7a69d9f3897103e10000000a1553f7/content.htm
    Hope it Helps
    Chetan
    @CP..

  • Third party tool for SharePoint 2013 Record Auditing?

    Does anyone have knowledge about third party tools that extend the standard auditing functionality in SharePoint 2013?
    I am mostly focusing on being able to archive the audit log automatically before it is trimmed, and being able to query that archive.
    Regards.
    Atli

    Metalogix ControlPoint is great for this! It will automatically archive and trim the audit log for you based on your parameters. It can then search across both the archive and active audit logs.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Third Party Tool-Open Hub Destination

    dear all,
              can any one guide me as to how data(master data in particular)  from bw can be transferred to oracle data base using open hub destiantion.is rfc connection between bw and third part tool enough,do we have to maintain the same structure in third party tool before executing DTP  and how can this be done??
              i am now able to transfer data from bw into a flat file and also to data base (bw)  and not aware of the this functionality-third party tool .any light thrown on this area is welcome  and points will be awarded ,
    thanks ,
    sasidhar gunturu

    Some light at the end of tunnel for sure...
    Extraction to the third-party tool can be executed as follows:
           1.      You define an open hub destination with Third-Party Tool as the destination type.
           2.      You create an RFC destination for your third-party tool and enter it in the definition of the open hub destination.
           3.      You use API RSB_API_OHS_DEST_SETPARAMS to define the parameters for the third-party tool that are required for the extraction.
           4.      You either start extraction immediately or include it in a process chain. You can also start this process chain from the third-party tool using process chain API RSPC_API_CHAIN_START. The extraction process then writes the data to a database table in the BI system.
           5.      When the extraction process is finished, the system sends a notification to the third-party tool via API RSB_API_OHS_3RDPARTY_NOTIFY.
           6.      The extracted data is read by API RSB_API_OHS_DEST_READ_DATA.
           7.      The status of the extraction is transferred to the monitor by API RSB_API_OHS_REQUEST_SETSTATUS.
    For more details click below -
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/7a69d9f3897103e10000000a1553f7/content.htm
    Hope it Helps
    Chetan
    @CP..

  • Third party tool interface integration with SAP

    Hi guys - here's an interesting one:
    I want to integrate a third party tool with SAP.  The interfaces would be required to communicate both ways - sending data out and receiving data and populating relevant tables / transactions.  I, so far see a number of methods available to me that would be suitable and feasible:
    <b>  - File based exchange of data
      - iDocs (custom or standard)
      - BAPIs (custom or standard)</b>
      - XI (but this method would not be feasible and would thus not consider it)
    In all the cases above (apart from XI), I guess I would require a program that would call the BAPIs or distribute iDoc data or extract and populate file based data.  I have so far compiled a list of various advantages and disadvantages and just wanted to probe your expert minds.
    <b>Please list the advantages and disadvantages of each method, providing a reasonable discussion as to why you think this is the case.  If you think any other method would be suitable, please list this too.</b>
    The person with the most accurate and detailed answer will receive all the points.
    Thanks
    Mantas

    Hi Mantas,
    The Pros and Cons in this case depends on the third party tool which you want to intergrate with SAP.
    File Based Exchange of data: How conveniently can you push the data from the third party tool into a file.
    IDocs: The third party tool should understand the syntax and symantics of the IDoc.
    BAPIs: How do you plan to call the BAPI from the third party tool.
    From just the SAP point of view.
    Here are the advantages and disadvantages:
    1. File Based Exchange of data:This method is good if you can easily pass a file which can be uploaded into sap and the data can be stored in the sap tables.
    2.IDocs:
    Advantages:
    If you have an existing IDoc that can do the data transfer then this would be the simplest method as only the settings are needed.No program is required to call this IDoc the settings automatically take care of this.
    Disadvantages:
    If a custom IDoc needs to be developed then creation of a BAPI would be a better option.
    3.BAPIs:
    Advantages:
    It is simpler to develop a BAPI than a custom IDoc which involves creation of segments, function modules etc.
    Disadvantages:
    There should be an active online connection.
    Some programming will be needed to call the BAPI.

  • SSL: Portal and Third-Party-Tool

    Hello everybody,
    I need an advice how to solve the following problem: We integrated a Third-Party-WebTool with the Application Integrator. If we lauch the portal and the special iView with HTTP everything works fine but with HTTPS we get an error message: "Session Management will not work! Please check DSM log files for details. You can turn off this alert inside 'Support Desk' -> 'SAP Application'"
    Do I need those logs? Because if I understood the message correctly this deals only with SAP Applications. What about Third-Party-Tools with own SSL certificates? How solve the problem described above? Do I need to import the certificate of my Third-Party-Tool into my portal keystorage? Do I need to configure anything else?
    Thanks in advance...
    Regards
    Steffen

    I would be very appreciated if anybody could give me an advice...
    Steffen

  • I need help with some technical YouTube Settings, third party tools page

    How can I add ios mobile Safari, back to my google + third-party tools page?  I updated my ipad 2 to ios7 and could no longer upload videos to youtube for my blog.  YouTube had been saying unrecognized file type because it's not longer compatible with ios mobile photos app.
    I went into settings via the google/youtube help files and removed some old stuff from the third party apps, like blogger-an inactive blog and obviously deleted the ios moblie too that was right underneath blogger.  tried jumping through their hoops, add a phone number, verify your account, lengthen your video time, add 2 step verification (which was horrible and I went  back in and removed it), add a password for ipad, etc.  
    They (youtube/google??) have been working on stuff because there is all kinds of new things the second day I tried to figure this out via their help/redirect links.  ios mobile was there before and now it's gone, even though I did not choose/select it.  But I have noticed that the ipad screen is much more sensitive than it was before the ios7 update.  I don't even have to touch the screen for some things, it accepts and goes on it's own while my finger is hovering over the screen. 
    ipad2
    ios7.0.2
    Safari
    YouTube
    Google+

    The Title of my post, should really be....I have ipad2 with ios7.0.3 and Safari, I can't upload videos to YouTube because of Google? or ios7?
    It's now November 1st.  LOL  53 folks have read my problem and it only gets better.  I pleaded with Google/YouTube via Feedback form (because they are one and the same now) to please add ios mobile back to Google 3rd party apps and after checking every single day, someone finally added it back for me.  Yay!  Then I asked if I needed to "revoke" Google+ in the 3rd party apps because some of the help files suggested Google+ is attached to your YouTube channel and might affect uploading of videos?  For the life of me, I could not figure out how to get it off my YouTube channel.  And the help files didn't take me to a place to change it.  Upon checking 3rd party apps, I could no longer find the page they were on, and the Google+ app icon now goes no where. 
    Hey, but there are new menus with all kinds of statistics now about your account, like how many subscribers you have, what the average number of minutes people watch your videos,etc.  Hmm... so I tried uploading a video and it worked.  I got the message that ios7.0.3 with bug fixes was available a few days ago and updated to that.  I'm back to, no longer upload videos, yesterday it was still freezing on the upload screen, where you add the title of your video and all of the specs, it appears to be half uploaded with a solid blue bar half way and goes no where.  I have to close the app after an hour or more.  I have rebooted a couple of times every day.  Today it says, we could not upload your video, we did not recognize the format of this file.  And when I go to YouTube and can see all of my videos, my subscriptions, I can not remove the videos that tried to upload, they are blank gray squares.  A few days ago I could edit them out.  I guess they are still working on it.   These are the same self recorded videos, that I have been uploading for a year, same ipad.  I have sent feedback to Google/YouTube once again. 
    I'm completely at their mercy.  I have yahoo mail, so I can't send my videos via email, even though my channel has a special email address to send videos to for upload.  Yahoo will not send a video more than a minute or so.  I created an AT&amp;T email address today, and it's the same there, will not send a 15 minute video.  The upload link on YouTube no longer works, there on the same page with your special email address to mail your videos in, even though there is no email that supports a 15 minute video.  My husband suggested video compressing program.  I have not tried to upload from a PC, I do have icloud, so that may be my next route.  Other forums say they/Google/YouTube are fully aware of it and are working on it.  Still 30+ days in...
    It's a shame these companies can't work together, it's a shame that there is no answer, because we all have these devices we spent hundreds of dollars on and want them to work.  I have been searching the web for 30+ days and no one knows the answer.  Hard to believe I'm the only person having this ipad issue. 

  • Error while creating the proxy object to connect to a third party tool.

    Hi,
    I tried creating a proxy object with the wsdl file. I even created a HTTP connection to the third party tool. but when I try to execute the whole proxy object, I am getting the below error. Can anyone help me on this?
    "Proxy-Generierung: Fehler aufgetreten"
    "Incorrect value: Entity "<<document>>"(92 /3788 ). end tag 'ul' does not match begin tag 'p'"
    Thanks & Regards,
    Veerabhadra Rao A.

    do a check on the wsdl file and how you are passing values in the proxy. The tags for XML are not correct. Open the WSDL in IE and see there must be an error. Or probably when passing the actual values to the XML generated each element is not closed properly. Error says tags dont match.
    Edited by: Kshamatha Eda on Mar 5, 2010 10:54 AM

Maybe you are looking for