Find the user that executed the SQL procedure

We are using Oracle 10g R2 on Linux.
I want to know the OS user that executed the purging procedure (PURGE). For this, i am using the following query which is not returning any row:
select *
from DBA_HIST_ACTIVE_SESS_HISTORY ash, DBA_HIST_SQLTEXT s
where ASH.SQL_ID = s.SQL_ID
and UPPER(s.SQL_TEXT) like '%PURGE%';Is the above query fine?

Moazzam wrote:
We are using Oracle 10g R2 on Linux.
I want to know the OS user that executed the purging procedure (PURGE). For this, i am using the following query which is not returning any row:Since what you are doing to get the user indirectly is not working would another approach be helpful?
Since you want to know who is running the procedure would a log table you could insert into at the start or end of the procedure help, to store the information you are interesting in seeing?
Or, can you get the information you want from other system views? V$SESSION has the OSUSER column as well as SQL_ID and other join columns for other views (like V$SQL).

Similar Messages

  • Include Button that executes PL/SQL procedure to SQL query based region

    I would like to add two columns to a SQL query region.
    These columns would not be sourced from the query, but rather would be used to execute a PL/SQL procedure.
    For example, I would like to have a manager approve or deny adding an additional employee to the department.
    There would be one button for APPROVE. And, one button for DENY.
    The PL/SQL procedure would execute to perform the required DML based upon the selected action (either APPROVE or DENY).
    A sample output would look like this:
    <APPROVE>, <DENY>, John Doe, Accountant
    <APPROVE>, <DENY>, Jane Doe, Accountant
    Is there any way to add a button to a SQL Query based report region where that button executes a stored proc? If so, what is the basic process for doing this?
    Thanks!
    -Reid

    Is there any way to add a button to a SQL Query based report region where that button executes a stored proc? If so, what is the basic process for doing this?Conditional page item? You can associate processes with buttons on a page

  • We are unable to find a user that matches the Rep.ID and Password you have entered. Please verify and try again. work on IE but now Firefox

    We are unable to find a user that matches the Rep.ID and Password you have entered.
    Please verify and try again.
    I get this error when trying to access my Wild Tree web site
    http://resources.wildtree.com/MyWildtree/RepLogin.aspx?ReturnUrl=%2fmywildtree%2fMain.aspx
    I can log in just fine to the main page, but then they make you log in again as you go deeper into the site for Security reasons. But when I log in the 2nd time, I get the above error. Help

    This can be caused by corrupted cookies or cookies that are blocked (check the permissions on the about:permissions page).
    *https://support.mozilla.org/kb/fix-login-issues-on-websites-require-passwords
    Note that you may have to enable third-party cookies for that domain or for visited sites.
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history"
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    If clearing cookies doesn't work then it is possible that the <i>cookies.sqlite</i> file that stores the cookies is corrupted.
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete other present cookies files like <b>cookies.sqlite-journal</b> in the Firefox profile folder in case the file cookies.sqlite got corrupted.
    *http://kb.mozillazine.org/Cookies
    *https://support.mozilla.org/kb/Deleting+cookies

  • How could I find the SQL statement who get this message ?

    ORA-01555 caused by SQL statement below (Query Duration=11191 sec, SCN: 0x0854.723b9c32)
    ... How could I find the SQL statement who got this message ?
    Thanks, Paul

    ORA-01555 means that the UNDO/ROLLBACK space is not large enough.
    This occurs because the SELECT statement is attempting to read the UNDO, but the UNDO has been released (transactions have committed or rolled back) and reused.
    The following are SOME of the reasons I have seen this to occur:
    1) Updates in a loop, with commits happening in the same loop
    - this will mark the UNDO available quickly and quickly reuse it. Then when the SELECT wants to rebuild a block, the UNDO used to rebuild the block has been reused (solution, make the UNDO bigger)
    2) A SELECT cursor used to control a loop in which updates are performed, and a 'done' flag is marked against the current cursor record, and commits are performed at the end of each loop, prior to fetching the next record
    - same problem as above, but it hits the current process. Same solution
    3) A 'month end' activity spike occurs, and all sorts of transactions create updates. There is a report that reports the activity - amusingly it needs to start at the beginning of all the work and updates periodically by doing a huge SELECT up front. This is then used to drive a loop which attempts to get information from the various transactions that have been updated and committed. After a while, the SELECT gets an ORA-01555
    - same problem as above and same solution. Get a bigger UNDO segment.
    You say this only happens once a month. That should give a hint.
    I wouldn't bother with which SELECT statement, as much as which APPLICATIONs are being run when it happens.
    One way around this - use 10g and set the guaranteed retention period. All sorts of other things will break, by no more 1555. <g>

  • How to find the SQL Server Instances running across the given activer directory domain?

    How to find the SQL Server Instances running across the given activer directory domain?
    I have though of OSQL -L , Microsoft Assessment and Planning ( MAP ) tool and SQLPing3 (SQLSecurity) might help me.
    I would appreciate if there any other way of finding the SQL Servers / Instances running across the given active directory domain.
    Sivaprasad S
    http://sivasql.blogspot.com
    Please click the Mark as Answer button if a post solves your problem!

    Dear ,
    Very simple u find all instances through the customized sp which is get all details about inventory. Like i put the sp bellow. This is without any tool. 
    USE [master]
    GO
    /****** Object:  StoredProcedure [dbo].[DBStatus]    Script Date: 08-01-2015 19:46:11 By Damodar Patle Sr. DBA Mumbai India ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[DBStatus] 
    AS
    SELECT 
    SERVERPROPERTY('servername') AS ServerName,
    ConnectionProperty('local_net_address') AS 'local_net_address',
    ConnectionProperty('local_tcp_port') AS 'local_tcp_port',
    CONVERT(VARCHAR(25), @@VERSION) as  VERSIONSQL,
    SERVERPROPERTY('ErrorLogFileName') AS ErrorLogFilePath,
    database_id,
    CONVERT(VARCHAR(25), DB.name) AS DBName,
    CONVERT(VARCHAR(10), DATABASEPROPERTYEX(name, 'status')) AS [Status],
    CONVERT(VARCHAR(10), DATABASEPROPERTYEX(name, 'Recovery')) AS [Recovery_Model],
    create_date as DBCreate_Date, --physical_device_name,
     (SELECT COUNT(1) FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'rows') AS DataFiles,
     (SELECT SUM((size*8)/1024) FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'rows') AS [Data MB],
     (SELECT COUNT(1) FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'log') AS LogFiles,
     (SELECT SUM((size*8)/1024) FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'log') AS [Log MB],
     (SELECT physical_name FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'rows') AS MDF_File_Location,
     (SELECT physical_name FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'log') AS  LDF_File_Location,
       user_access_desc
       FROM sys.databases DB
       ORDER BY dbName, [Log MB] DESC, NAME

  • Finding the SQL fired by Oracle Sales Analyzer

    Hi,
    Is there a way to find out the SQL fired against the database by Sales Analyzer?.
    TIA,
    Vijay.

    It is a very long time since I used OSA, but there is a way to get at the SQL. Try one of the following:
    1) try describing the program SQ.WRITESQL as I think this may contain the required code
    OR:
    2) on OSA client (Windows) enable tracing by going to Help-Express Monitor and type:
    ifcopy=y
    badline=y
    echoprompt=y
    prgtrace=y
    dbgoutfile '/path/trace.txt' nocache
    OR
    3) Use the RECAP command in the Express Monitor window, this will show you the last series of commands issued and you should find the SQL code buried somewhere.
    Sorry I cannot be more specific, alas I don't have OSA installed anymore but it is great to hear from someone still using it.
    Keith Laker
    Data Warehouse Solution Architect
    Oracle EMEA Consulting
    BI Blog : http://oraclebi.blogspot.com
    DM Blog : http://oracledmt.blogspot.com

  • How to execute a SQL procedure in UNIX

    How to execute a SQL procedure in UNIX

    Check this out..
    -Sri
    << a.sql >>
    create or replace procedure junk(nout out varchar2) is
            x varchar2(20);
    begin
            select 'Sam' into x
            from dual;
            nout := x;
    end;
    << Shell script >>
    sqlplus -s / << DOC
    scott/tiger
    variable x varchar2(20);
    set autoprint on
    @a.sql
    begin
    junk(:x);
    end;
    exit
    DOC
    << Execution of Shell SCript >>
    # sh b.sh
    Procedure created.
    PL/SQL procedure successfully completed.
    X
    Sam

  • Where to find the SQL text in v$ views?

    Hi All,
    Oracle 11.2.0.3 on RedHat.
    I am trying to find out SQL activity on my database for a very narrow time window. Please see the SQLs I did
    SQL> select distinct user_id, sql_id
      2  from v$active_session_history
      3  where sample_time between to_date('20120704012000','yyyymmddhh24miss') and
      4            to_date('20120704012200','yyyymmddhh24miss')
      5  and user_id = 111 ;
       USER_ID SQL_ID
           111
           111 gjg25k7stx9ba
           111 a8m049aj31b1y
           111 asjw7b7h99w4m
           111 fvffk1aqrb55n
           111 9gskv9b1u7mau
           111 03tsb9pp3h1uj
           111 dm0jppss5z0ay
           111 44n0svyuc000x
           111 16t1tpr7mdqnf
           111 bzpu510tng689
           111 dsqzhqdvzamys
    12 rows selected.
    SQL> select * from v$sqltext where sql_id='16t1tpr7mdqnf' order by piece ;
    no rows selected
    SQL> select * from table( dbms_xplan.display_awr('16t1tpr7mdqnf') ) ;
    no rows selectedI can see the text for all SQLs in v$sqltext, except 16t1tpr7mdqnf. User id 111 is the user used to run our batch processes.
    Where can I find the text for this SQL id 16t1tpr7mdqnf ?
    This SQL has run about 8 hours ago.
    Thanks in advance

    When you say, ASH captures active sessions, does that mean, it only captures "session" information, which may not include details about SQL ?Exactly, it's a snapshot of session level information for active sessions.
    So, session X can be executing sql statement abc123 and be captured by ASH which takes a snapshot of all active sessions every 1 second in V$ACTIVE_SESSION_HISTORY.
    1 in 10 of these active sessions is stored in the repository - DBA_HIST_ACTIVE_SESS_HISTORY (in practice, this 1 in 10 sample is literally as simple as store the active sessions from every 10th second).
    Independently of this, obviously you have the shared pool and V$SQL. If your statements are in here then great.
    Otherwise you have AWR which captures the top N sql from each interval.
    So, as mentioned, perfectly normal to have references to sql ids and sql plan hash values captured in ASH but not AWR.
    One interesting thing here is, sql_exec_id is blank. What does that say? It depends.
    It's likely to be one of two things:
    1. some sort of bug or limitation - there are certain operations and time limits were some of the ASH values get cleared out or don't get cleared out.
    2. occasionally I've seen the ASH information be misleading when it comes to certain recursive operations - one specific example I can think of related to the recursive merge of sql plan baseline metric tracking operations.

  • Where can i find the SQL page in the enterprise manager?

    Hi everybody
    i want to execute a number of indexes on my database, so i thought of 2 ways but each way has a problem:
    1) copy and paste the contents inside SQLPLUS, but this will cause an error that every line should ends with ";"
    2) execute the file contains the indexes "createindexes.sql" inside SQLPLUS by using the commnad "@ createindexes" and the SQLPLUS by default will know that it is ".sql", when i try this way it gives me the following error although i am sure that i connect correctly by the right schema and password:
    SQL> @D:\TPoX.v1.3\TPoX\Oracle\ddl\createindexes.sql;
    CREATE INDEX security_idx ON "security" (sdoc) INDEXTYPE IS XDB.XMLIndex
    ERROR at line 1:
    ORA-00942: table or view does not exist
    CREATE INDEX custacc_idx ON "custacc" (cadoc) INDEXTYPE IS XDB.XMLIndex
    ERROR at line 1:
    ORA-00942: table or view does not exist
    CREATE INDEX order_idx ON "order" (odoc) INDEXTYPE IS XDB.XMLIndex
    ERROR at line 1:
    ORA-00942: table or view does not exist
    lastely, someone told me to copy and paste them inside the SQL page exists in the enterprise manager, but i don't know where, i searched a lot for it but i didn't find it. please help
    thx
    Dina

    Are you sure that your table name is lower case
    Can you do the following commands in SQLPLUS
    desc security
    desc "security"
    desc SECURITY
    Also, can you tell us more about what your are doing with TpoX

  • Help finding the SQL agent job status messages

    I am building a report in SSRS which will show the status of all the SQL agent jobs ran on a particular day. IMHO, the status messages created in the job history are not that useful. So, I would like to show the status message which can found by following
    the path given below:
    Integration Services Catalog -> SSISDB -> Solution Name -> Projects -> Project Name -> Packages -> Right click Package Name-> Reports -> Standard Reports -> All Executions -> Click on All Messages
    If you follow the exact path, we find out the exact error related to last unsuccessful execution of the job.
    Can someone please tell me how to find it?
    The message from [msdb].[dbo].[sysjobhistory] is not helpful for me.

    Thank you all for your help. After taking cues from what you guys said..I have come up with this:
    USE [msdb]
    GO
    /****** Object:  StoredProcedure [dbo].[SQL_Agent_Jobs_Details]    Script Date: 3/24/2015 4:02:09 PM ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[SQL_Agent_Jobs_Details](@JobName varchar(5000)
    ,@LastRunDate nvarchar(20)
    ,@LastRunStatus varchar(50)
    AS
    BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;
    DECLARE @SQL VARCHAR(8000)
    DECLARE @NewLastRunStatus INT
        -- Insert statements for procedure here
    SET @NewLastRunStatus = (SELECT CASE @LastRunStatus 
    WHEN 'Created' THEN 1
    WHEN 'Running' THEN 2
    WHEN 'Canceled' THEN 3
    WHEN 'Failed' THEN 4
    WHEN 'Pending' THEN 5
    WHEN 'Ended unexpectedly' THEN 6
    WHEN 'Succeeded' THEN 7
    WHEN 'Stopping' THEN 8
    ELSE 9
    END )
    SET @SQL = '
    SELECT DISTINCT 
    E.folder_name
    ,E.project_name
    ,S.JobName
    ,E.package_name
    ,E.environment_name
    --,E.execution_id
    ,E.executed_as_name
    --,E.operation_type
    --,E.process_id
    , CASE e.[status]
    WHEN 1 THEN ''Created''
    WHEN 2 THEN ''Running''
    WHEN 3 THEN ''Canceled''
    WHEN 4 THEN ''Failed''
    WHEN 5 THEN ''Pending''
    WHEN 6 THEN ''Ended unexpectedly''
    WHEN 7 THEN ''Succeeded''
    WHEN 8 THEN ''Stopping''
    ELSE ''Completed''
    END [Status]
    ,E.start_time
    ,E.end_time
    ,E.server_name
    ,E.machine_name
    ,EM.event_name
    ,EM.message_source_name
    ,EM.message_time
    ,case EM.[message_type] WHEN 120 THEN ''Error'' else ''TaskFailed'' END [message_type]
    ,EM.[message]
    ,EM.execution_path
    FROM     [SSISDB].[catalog].[executions] E
    LEFT OUTER JOIN
    [SSISDB].[catalog].[event_messages] EM ON E.[execution_id] = EM.[operation_id]
    LEFT JOIN
    [MSDB].DBO.SQL_Agent_Jobs_Packages S
    ON S.PackageName = E.package_name
    WHERE EM.message_type in(120,130) AND 1=1 
    --AND E.package_name = ''Anna_Maria_Daily_Contacts_Parent.dtsx'' 
    IF @JobName IS NOT NULL 
    BEGIN
    SET @SQL  = @SQL + '  AND S.JobName IN (' +''''+REPLACE(@JobName,',',''',''')+''')' 
    END
    IF (cast(@LastRunDate as date) IS NOT NULL AND cast(@LastRunDate as date)!='1900-01-01')
    BEGIN
    SET @SQL  = @SQL + ' AND CAST(isnull(EM.message_time, ''1900-01-01'') AS DATE) IN ('+''''+REPLACE(cast(@LastRunDate as date),',',''',''')+''')' 
    END
    IF @LastRunStatus IS NOT NULL 
    BEGIN
    SET @SQL  = @SQL + '  AND e.[status] IN (' +''''+REPLACE(@NewLastRunStatus,',',''',''')+''')' 
    END
    SET @SQL  = @SQL + ' ORDER BY E.start_time DESC,E.end_time DESC'
    --SELECT @SQL
    EXEC (@SQL)
    END
    You can use the above script to create a dynamic sproc which takes the above mentioned params.

  • How to find the pricing procedure?

    Hi,
         in the sales order modification(VA02), if there is any change in a field, i have changed the pricing procedure.
    i have done my coding in MV45AFZB and FORM USEREXIT_NEW_PRICING_VBAP CHANGING NEW_PRICING.
    Now my requirement is, when u user saves the document, i need to find whether the pricing procedure is changed. if yes, then i have to update all the deliveries for sales order with some values from Ztable.
    please tel me how to check whether the pricing procedure is changed?
    Reward points wil be awarded.
    Thanks in advance,
    Regards,
    Niyaz

    Hi,
    Look at the below link, this may helps you
    http://www.sap-img.com/sap-sd/creating-new-pricing-procedure.htm
    Regards
    Sudheer

  • PO and PR - How to find the release procedure

    How can I find the authorization strategy for Purchase Order for the Purchase Requisition. I also want to know that how these are connected where can I see these in which transaction code?
    Thank you.

    For PR:
    SPRO>Materials Management>Purchasing>Purchase Requisition>Release Procedure>Procedure with Classification>Set Up Procedure with Classification>Release Strategies. Then select your line and see the details.
    For PO:
    SPRO>Materials Management>Purchasing>Purchase Order>Release Procedure for Purchase Orders>Define Release Procedure for Purchase Orders>Release Strategies
    Then select your line and see the details.

  • Regarding the SQL procedure.

    HI All,
    I had a requirement where I had column which has multiple values seperated by semi-colons.I have to check whether these values are there in another table or not. I had to write this code in a SQL procedure. Can anybody help me out in simple way of doing this.
    Any help highly appreciated.
    Thanks and Regards,
    Venky

    set serveroutput on
    create or replace procedure testproc (instring varchar2,numval number) as
    colpos number;
    colvalue varchar2(20);
    prevcolpos number := 0;
    begin
    for cnt in 1..numval loop
    colpos:=instr(instring,';',prevcolpos+1);
    colvalue:=substr(instring,prevcolpos+1,(colpos-1)-prevcolpos);
    dbms_output.put_line(cnt||' '||colpos||' '||prevcolpos||' '||colvalue);
    prevcolpos:=colpos;
    end loop;
    colvalue:=substr(instring,prevcolpos+1,length(instring));
    dbms_output.put_line(colvalue);
    end;
    execute testproc('blah;blah1;blah2;blah3','3');
    Output:
    execute testproc('blah;blah1;blah2;blah3','3');
    This is more of a test case than a resolution, but it should put you on the right track. Probably will want to use a table type to store the data.

  • Where to find the SQL log by crystal reports

    i want to watch the sql log by crystal report loading,but i don't know how to find it , somebody knows it? thanks advanced!

    Hi Wang,
    If you mean to look at the SQL query CR generates, then open the report in the CR Designer > Go to the Database option on the top > Click Show SQL.
    -Abhilash

  • PL/SQL WEB Toolkit: Using BUTTON to execute PL/SQL procedure

    I am trying to execute a PL/SQL procedure with a "SUBMIT" button from a WEB page. I have several URLs that execute perfectly, but I do not want endusers to have to type the URL themselves. I want to display a web page with multiple URLs in a drop_down list. User chooses a member of the list, clicks the "SUBMIT" buttom and that specific URL executes and produces the proper result. I am NOT a web developer, but this is what I've written sofar:
    CREATE OR REPLACE PROCEDURE html_list
    IS
    BEGIN
    HTP.PRINT ('<html>');
    HTP.PRINT ('<head>');
    HTP.PRINT ('<meta http-equiv="Content-Type" content="text/html">');
    HTP.PRINT ('<title>Title of the HTML File</title>');
    HTP.PRINT ('</head>');
    HTP.PRINT ('<body TEXT="#000000" BGCOLOR="#FFFFFF">');
    HTP.PRINT ('<h1>List of Valid URLs</h1>');
    HTP.PRINT ('<p>Choose your desired URL from the list below.');
    HTP.PRINT ('<FORM method="post" action="WHATEVER_COUNTS_WEB">');
    HTP.PRINT ('<FORM method="post" action="REQUEST_OBJECTS?PARAM1=MY_SCHEMA_ID">');
    HTP.PRINT ( '<SELECT name="URL">
    <option value="http://asai01.ffxlab.net:8080/me_epg_dad/WHATEVER_COUNTS_WEB">Count of Rows in Whatever Tables
    <option value="http://asai01.ffxlab.net:8080/me_epg_dad/REQUEST_OBJECTS?PARAM1=ME">Request Objects for MY_SCHEMA_ID
    <input type="submit" value="Submit"/>
    </SELECT>');
    HTP.PRINT ('</FORM>');
    HTP.PRINT ('</body>');
    HTP.PRINT ('</html>');
    END;
    Any help would be greatly appreciated. I've been writing PL/SQL code since 1989, but have never had to execute code via a WEB page until this week.
    Thanks so much

    Hi,
    Welcome to Oracle Forums!
    Please acquaint yourself with the FAQ and forum etiquette if you haven't already done so.
    Always post code snippets enclosed in a pair of &#123;code&#125; tags as explained in FAQ
    This Forum is dedicated to Oracle Forms. Unfortunately there is no Forum for WebToolKit that I know of. The closest is Oracle Application Express (APEX).
    If you objective is to have the User Navigate to the URL clicked then the easiest way is to use anchor tag with href attribute
    CREATE OR REPLACE PROCEDURE html_list
    IS
    BEGIN
    HTP.PRINT ('<html>');
    HTP.PRINT ('<head>');
    HTP.PRINT ('<meta http-equiv="Content-Type" content="text/html">');
    HTP.PRINT ('<title>Title of the HTML File</title>');
    HTP.PRINT ('</head>');
    HTP.PRINT ('<body TEXT="#000000" BGCOLOR="#FFFFFF">');
    HTP.PRINT ('<h1>List of Valid URLs</h1>');
    HTP.PRINT ('<p>Choose your desired URL from the list below.</p>');
    HTP.PRINT ('<a href="http://asai01.ffxlab.net:8080/me_epg_dad/WHATEVER_COUNTS_WEB" target="_blank">Count of Rows in Whatever Tables</a>');
    HTP.PRINT('<a "http://asai01.ffxlab.net:8080/me_epg_dad/REQUEST_OBJECTS?PARAM1=ME" target="_blank">Request Objects for MY_SCHEMA_ID</a>');
    HTP.PRINT ('<FORM method="post" action="WHATEVER_COUNTS_WEB">');
    HTP.PRINT ('<FORM method="post" action="REQUEST_OBJECTS?PARAM1=MY_SCHEMA_ID">');
    HTP.PRINT ( '<SELECT name="URL">
    <option value="http://asai01.ffxlab.net:8080/me_epg_dad/WHATEVER_COUNTS_WEB">Count of Rows in Whatever Tables
    <option value="http://asai01.ffxlab.net:8080/me_epg_dad/REQUEST_OBJECTS?PARAM1=ME">Request Objects for MY_SCHEMA_ID
    <input type="submit" value="Submit"/>
    </SELECT>');
    HTP.PRINT ('</FORM>'); */
    HTP.PRINT ('</body>');
    HTP.PRINT ('</html>');
    END;Change the target attribute to suite your needs. More here http://www.w3schools.com/tags/att_a_target.asp
    Or, maybe explore Apex !
    Cheers,

Maybe you are looking for

  • Motion 5 crashes every time I try to export

    I am unable to export in Motion 5 because it crashes unfailingly. It is to the point that it is useless to me. Here is the error message I get every time I try to export to movie: Process:         Motion [376] Path:            /Applications/Motion.ap

  • RG23A Issue !!

    HI We capture RG23A part1 during migo and do posting(part2) in J1IEX. Now the issue ..... 1.) GR(105) cancelled ..... how to cancel part1 entries if part2 is not posted. 2.) GR(105) cancelled ... how to cancel part1 & part2 if part2 is posted. Only g

  • Line spacing in Mail, how to adjust?

    How can I adjust the line spacing in Mail.  Never been able to figure it out, but then just noticed, bringing in a paragraph from Wikipedia that I can have DIFFERENT line spacing.  But can't where one sets this in Mail... All ears ... Ben

  • How to import mvdemo.dmp?

    Hi, May i know how do i import mvdemo.dmp file? I cannot view the maps at all? Can anyone please advise me on that? Thanks and regards, Esther

  • Apex: upgrade from 2.2 to 2.2.1

    Hi, I've installed and configured App Express 2.2 but now want to use the 2.2.1 patch. What is the upgrade process? Are there any changes in the database components? If so, is there an upgrade script? Or can I simply rerun apexins.sql? Do I need to d