Job submit error

Guys,
simply,
i want to create temp_undo ( done ) and i want to do the following
create or replace procedure temp_undo_procedures
is
CURSOR c is select a.name, b.status from V$rollname a, v$rollstat b
where a.name IN (select segment_name from dba_segments where tablespace_name ='TEMP_UNDO')
AND a.usn=b.usn;
v_name1 v$rollname.name%type;
v_status1 v$rollstat.STATUS%type;
test1 varchar2(50);
v_job_number number;
begin
open c;
if c%notfound then
test1 := 'good';
Dbms_Output.put_line(test1);
-- drop the tablespace.
execute immediate 'drop tablespace temp_undo';
select job INTO v_job_number from dba_jobs WHERE WHAT LIKE 'temp_undo_procedures';
execute immediate dbms_job.broken(v_job_number,true);_ ==>i think this is error statement because i want to v_job_number come from the select statment and broke the job number that retrieve from select statment,
end if;
loop
fetch c into v_name1, v_status1;
exit when c%notfound;
Dbms_Output.put_line(v_name1 || ' ' || v_status1);
end loop;
close c;
end;
VARIABLE v_jobnum1 NUMBER;
BEGIN
dbms_job.submit(:v_jobnum1,
*'temp_undo_procedures', ==> also here i think this is error as well, coz i want to run this procedure every 5 min.*
trunc(sysdate,'MI')+1/288,
*'sysdate + (1/288)'*
commit;
END;
plz help and add suggestion

Can you try this?
create or replace procedure temp_undo_procedures
is
  CURSOR c
  is
    select a.name,
           b.status
    from V$rollname a, v$rollstat b
    where a.name IN (
                      select segment_name
                      from dba_segments
                      where tablespace_name ='TEMP_UNDO'
    AND a.usn=b.usn;
    v_name1 v$rollname.name%type;
    v_status1 v$rollstat.STATUS%type;
    test1 varchar2(50);
    v_job_number number;
begin
    open c;
    loop
    fetch c into v_name1, v_status1;
    exit when c%notfound;
      if c%notfound then
      test1 := 'good';
      Dbms_Output.put_line(test1);
      -- drop the tablespace.
      execute immediate 'drop tablespace temp_undo';
      select job
      INTO v_job_number
      from dba_jobs
      WHERE WHAT LIKE 'temp_undo_procedures';
      execute immediate dbms_job.broken(v_job_number,true); -- ==>i think this is error statement because i want to v_job_number come from the select statment and broke the job number that retrieve from select statment,
    end if;
    Dbms_Output.put_line(v_name1 || ' ' || v_status1);
    end loop;
    close c;
end;N.B.: Not Tested....
Regards.
Satyaki De

Similar Messages

  • Submit Back ground job with error log

    Hi Gurus
    Can anyone help with Back ground job with error log. i want put all the error logs in to 1 internal table and submit the back ground .how can i do that .please help me

    Hi reddy ,
    i am not experienced this in real scenarion .. even though i would like to give my idea
    Put your logic inside the FM and execute in in background task mode on your action button .
    call function 'Function module name' in background task
    exporting
       parameter =
    importing
       ret =
    refer the below link for more detail on executing FM as  background task
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/8f/53b67ad30be445b0ccc968d69bc6ff/frameset.htm
    Regards
    Chinnaiya P

  • Code for Job  submit

    Hi ,
    I am trying to write code for open job , submit & close job.
    I need to send 4 fields as parameters from program1 to the BGprogram.
    Anyone please tell me the syntax for submit.I cun't find any syntax for this.
    Thanks in advance,

    ..Create new job
        CONCATENATE lc_job_prefix l_pr_count
            INTO l_job_name SEPARATED BY '_'
        CALL FUNCTION 'JOB_OPEN'
          EXPORTING
            jobname                = l_job_name
          IMPORTING
            jobcount               = l_job_count
          EXCEPTIONS
            cant_create_job        = 1
            invalid_job_data       = 2
            jobname_missing        = 3
            OTHERS                 = 4
        IF sy-subrc <> 0.
    ....Error creating job
          IF NOT sy-msgid IS INITIAL.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ELSE.
            MESSAGE s000(zz) WITH
                'Failed to create job'(021)
                l_job_name
          ENDIF.
        ELSE.
    ....Submit job {
          MESSAGE s000(zz) WITH
              'Creating job'(022) l_job_name l_job_count '...'
              INTO l_msgtx
          PERFORM show_progress USING l_msgtx 0 1.
          IF v_sort = 'X'.
            SUBMIT (sy-cprog)
                  WITH s_pernr BETWEEN l_pernr_min AND l_pernr_max
                 WITH s_g_ctrl IN r_cs_ctrl
                  WITH s_g_land IN r_cs_land
                  WITH s_g_gs IN r_cs_gs
                 VIA JOB l_job_name NUMBER l_job_count
                  TO SAP-SPOOL SPOOL PARAMETERS   l_print_parm
                               ARCHIVE PARAMETERS l_archive
                               WITHOUT SPOOL DYNPRO
                  AND RETURN
          ELSE.
            SUBMIT (sy-cprog)
                  WITH s_pernr BETWEEN l_pernr_min AND l_pernr_max
                  WITH s_g_lub IN r_cs_lub
                  WITH s_g_pro IN r_cs_pro
                  WITH s_g_pub IN r_cs_pub
                  VIA JOB l_job_name NUMBER l_job_count
                  TO SAP-SPOOL SPOOL PARAMETERS   l_print_parm
                             ARCHIVE PARAMETERS l_archive
                             WITHOUT SPOOL DYNPRO
                  AND RETURN
          ENDIF.
    ....Start immediately
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              jobcount                          = l_job_count
              jobname                           = l_job_name
              strtimmed                         = true
            EXCEPTIONS
              cant_start_immediate              = 1
              invalid_startdate                 = 2
              jobname_missing                   = 3
              job_close_failed                  = 4
              job_nosteps                       = 5
              job_notex                         = 6
              lock_failed                       = 7
              OTHERS                            = 8
          IF sy-subrc <> 0.
            IF NOT sy-msgid IS INITIAL.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ELSE.
              MESSAGE s000(zz) WITH
                  'Error releasing job'(023)
                  l_job_name
                  l_job_count
            ENDIF.
          ELSE.
            MESSAGE s000(zz) WITH
                'Job released'(024) l_job_name l_job_count
                INTO l_msgtx
            PERFORM show_progress USING l_msgtx 0 1.
          ENDIF.
    ....} Submit job
        ENDIF.
    ..Increment process count
        ADD 1 TO l_pr_count.
      ENDDO.
      MESSAGE s000(zz) WITH l_pr_count 'job(s) created.'(025).

  • "Internal Job Server error" in Event Viewer

    Hi
    We are running Crystal Reports Server XI R2 SP2 (11.5.8.826).  We have numerous jobs scheduled to run during the day.  Each time one of these jobs is scheduled, the Windows Event Viewer returns the error message:
    "Internal Job Server error."
    The error is now being produced over 100 times per day, and has caused the disk to run out of space - and stopped the system working all together.
    We currently have the "-trace" command set on the startup script of the Crystal Reports Job Server - this was recommended by BO to find the cause of an earlier error.
    Has anyone experienced this error before?  Should we have the "-trace" command set on the server, or is this producing unneccessary error messages?
    Thanks all
    James

    Hello,
    If you already have the "-trace" command enabled  on the CrystalReport Job server  then I would recommend that you go to the logging directory under the folder that you installed Business Objects.   
    In the logging folder you should see some JobserverChild log files.  Start reviewing those files for information as to any failed scheduled reports.  Try and isolate the time in which the problem occurs to the time associated to the log files.  I would recommend if your system is going down and you are having difficulties  reviewing the log files then you may want to create a case in Service Market Place and attach the log files to the case.  I hope that helps.   
    Jorge

  • ERROR: replicator: Job Failed :error retrieving site manifest exception

    Hi all,
    I have installed the Site Studio Publishing utility on content Server machine.
    I have installed the site studio publishing client on my machine and I have configured successfully. I mean to say that I have configured the destination on Publishing Utility & Content Provider on Publishing Client.
    I have created the publishing job on the the site. I could see the content delivered on my machine from the content server, successfully. Now i have updated the site in the Site designer. I have just added "Hi" in the site layout page in the site designer. I have saved it. Now I have given the publishing job again. While running the job, I am getting following Error:
    WARNING: replicator: 401 response received from server
    [Sep 13 18:11:49] ERROR: replicator: Job Failed :error retrieving site manifest exception:
    com.kinecta.net.HttpIOException: HTTP 401 error received from server :http://10.16.21.124/idc/idcplg?IdcService=SS_GET_SITE_PUBLISH_REPORT&siteId=TestSite
         at com.kinecta.replicator.SiteCrawler.openConnection(SiteCrawler.java:515)
         at com.kinecta.replicator.SiteCrawler.openConnection(SiteCrawler.java:191)
         at SiCloneSyndicator.SiCloneSiteStudioPackageGenerator.getSiteManifest(SiCloneSiteStudioPackageGenerator.java:452)
         at SiCloneSyndicator.SiCloneSiteStudioPackageGenerator.onReplicationStart(SiCloneSiteStudioPackageGenerator.java:342)
         at SiClone.SiCloneSiteReplicator.run(SiCloneSiteReplicator.java:534)
         at SiClone.SiCloneIcePackageGenerator.run(SiCloneIcePackageGenerator.java:39)
         at SiClone.SiCloneSiteReplicatorRunner.runJob(SiCloneSiteReplicatorRunner.java:308)
         at SiClone.SiCloneSiteReplicatorRunner.run(SiCloneSiteReplicatorRunner.java:178)
         at SiCloneSyndicator.SiCloneGenerator.doUpdate(SiCloneGenerator.java:516)
         at SiCloneSyndicator.SiCloneGenerator$1.run(SiCloneGenerator.java:472)
    First of all, May i ask you a question: What is the site manifest file?
    Any help would be much appriciated.
    Regards & thanks,
    Nirmala Vijaya Sekhar varre

    Hi Sreenath,
    I am getting following error while publishing the microsite using Site Studio Publisher even I unchecked "Treat home page errors as critical" and "Treat manifest errors as critical" options, here is the log:
    INFO 2012-02-14 07:35:11,794 - ----- Running Job
    INFO 2012-02-14 07:35:11,794 - Output Path : /opt/ora/ucmdev/Middleware/domains/UCMDevDomain/ucm/cs/data/SiteStudioPublisher/output/MyBiopsy
    INFO 2012-02-14 07:35:11,794 - Authentication : BasicAuth
    INFO 2012-02-14 07:35:11,794 - Use Cache Control : false
    INFO 2012-02-14 07:35:11,794 - Publish Now : false
    INFO 2012-02-14 07:35:11,794 - Force Analyze : false
    INFO 2012-02-14 07:35:11,794 - Force Download : false
    INFO 2012-02-14 07:35:11,794 - Use LastModified : true
    INFO 2012-02-14 07:35:11,794 - Use SSPETag : true
    INFO 2012-02-14 07:35:11,794 - Treat home page errors as critical : true
    INFO 2012-02-14 07:35:11,794 - Treat manifest errors as critical : true
    INFO 2012-02-14 07:35:11,794 - Soft Error Threshold : 99
    INFO 2012-02-14 07:35:11,794 - Soft Error Codes : 403,404
    INFO 2012-02-14 07:35:11,794 - Hard Error Threshold : 99
    INFO 2012-02-14 07:35:11,794 - Hard Error Codes : 501,502
    INFO 2012-02-14 07:35:11,794 - Delete Threshold : -1
    INFO 2012-02-14 07:35:11,794 - Friendly Url Parameters :
    INFO 2012-02-14 07:35:11,794 - Dynamic Url Parameters :
    INFO 2012-02-14 07:35:11,794 - Default Filename : index.html
    INFO 2012-02-14 07:35:11,794 - Page Extension : html
    INFO 2012-02-14 07:35:11,795 - ----- Connecting: http://dappucm07.cap.org:16200/cs/idcplg?IdcService=SS_GET_PAGE&siteId=MyBiopsy
    INFO 2012-02-14 07:35:11,802 - Response: 301 Moved Permanently
    INFO 2012-02-14 07:35:11,802 - http redirect found:http://dappucm07.cap.org:16200/MyBiopsy/index.html
    FATAL 2012-02-14 07:35:11,840 - sitestudiopublisher.net.IOFailureException: error retrieving site manifest
    INFO 2012-02-14 07:35:11,840 - Error threshold exceeded
    INFO 2012-02-14 07:35:11,840 - Finishing...
    INFO 2012-02-14 07:35:11,840 - ----- Job Summary
    INFO 2012-02-14 07:35:11,840 - Source URL : http://dappucm07.cap.org:16200
    INFO 2012-02-14 07:35:11,840 - Start time : Tue Feb 14 07:35:11 CST 2012
    INFO 2012-02-14 07:35:11,840 - End time : Tue Feb 14 07:35:11 CST 2012
    INFO 2012-02-14 07:35:11,840 - Duration : 0 hours 0 minutes 0 seconds 46 milliseconds
    INFO 2012-02-14 07:35:11,840 - Connect Time : 0:00:00.046
    INFO 2012-02-14 07:35:11,840 - ----- Links Summary
    INFO 2012-02-14 07:35:11,840 - Total : 0
    INFO 2012-02-14 07:35:11,840 - Modified : 0
    INFO 2012-02-14 07:35:11,840 - Added : 0
    INFO 2012-02-14 07:35:11,840 - Deleted : 0
    INFO 2012-02-14 07:35:11,840 - Examined : 0
    INFO 2012-02-14 07:35:11,840 - Redirected : 0
    INFO 2012-02-14 07:35:11,840 - Downloaded : 0
    INFO 2012-02-14 07:35:11,840 - Not Found : 0
    INFO 2012-02-14 07:35:11,840 - ----- Job Failed
    INFO 2012-02-14 07:35:11,840 -

  • Internal Job Server error

    Hi All,
    Have you ever come across the error in Event Logs?
    Source:BusinessObjects_JobServerFullClient
    Event Id: 45385
    Category : Scheduling
    Type:Error
    Description:Internal Job Server error.
    Could any one please let me know the reason for the error and how it could be solved.
    Thanks in Advance
    Sunil

    Hi,
    Thank you for your reply......
    We are using BOXI version with releace 2, we are able to schedule the report and all report are running successfully.
    But still the error is displaying in event log and we are not enble -trace in any of the application server.
    Regards
    Sunil.

  • OnSearchComplete - Failed to end search job. Error = 0x8007000e.

    Hello,
    The below error received in WUhandler.log. Machine have space in C Drive.
    OnSearchComplete - Failed to end search job. Error = 0x8007000e.
    WUAHandler 8/29/2014 11:24:40 AM
    20272 (0x4F30)
    Scan failed with error = 0x8007000e. WUAHandler
    8/29/2014 11:24:40 AM 20272 (0x4F30)
    Please help to solve the issue.
    Regards,
    Boopathi s

    Hello
       The error code 0x8007000e generated due to two reason
    1:- 1st Reason is low memory.means your system is going out of memory,
    2:- The 2nd Reason is if your out of space,means the Drive where your updates were supposed to be placed is full,
    so 1st check you Event Viewer if there is any Memory related logs.if there is then close all the unnecessary applications and run the cycles again
    and in the second case free some space on the drive which is out of space.

  • Batch job failing-error"SUBMIT authorization F_001 required"

    hi Experts,
    One job kept failing -job log saying"SUBMIT authorization F_001 required"-please guide

    Hi Julius and all,
    Thanks for inputs,here the Auth group missing is clear--its "F-001".
    But the problem is this that User is able to run this some days before and still able to run the job in quality,(and also i am able to run the job in Fix and quality systems for test id created identical as user),but getting this error only in production.
    Same roles are given in all systems.(with No f_001 is given under P-Group in Fix and Quality also)
    Also nothing comes up in traces
    Is it possible that this Auth Group is given under some more broad auth group/s whoes access granged in Quality systems like two or three Auth group defined under some Auth group and access is coming from that Parent Auth Group?
    Please tell if this kind of Grouping and relation-ship possible for Auth Groups or not
    Thanks Again

  • Authentication error on Job submit from EM (VNI 2015)

    we have oracle 8.1.7 on windows 2000 advance server recently updated with patch 8.1.7.2.1 and 8.1.7.2.5.
    Here is my SQLnet.ora file:
    NAMES.DEFAULT_DOMAIN = hq.xxx.net
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)
    My question is :
    Why am i getting following errors? And where can i find the dll's that are missing from the below trace file.
    I also tried commenting SQLNET.AUTHENTICATION_SERVICES line in sqlnet.ora file but i still getting same error.
    Please somebody help me.
    Here are the lines from dbsnmp.trc file:
    [01-APR-2003 10:45:52] nau_fad: The following authentication adapter dll does not exist: orangss8.dll
    [01-APR-2003 10:45:52] nau_fad: exit
    [01-APR-2003 10:45:52] nau_fad: entry
    [01-APR-2003 10:45:52] nau_fad: The following authentication adapter dll does not exist: oranidx8.dll
    [01-APR-2003 10:45:52] nau_fad: exit
    [01-APR-2003 10:45:52] nau_fad: entry
    [01-APR-2003 10:45:52] nau_fad: exit
    [01-APR-2003 10:45:52] nau_fad: entry
    [01-APR-2003 10:45:52] nau_fad: exit
    [01-APR-2003 10:45:52] nau_fad: entry
    [01-APR-2003 10:45:52] nau_fad: exit
    [01-APR-2003 10:45:52] nau_fad: entry
    [01-APR-2003 10:45:52] nau_fad: The following authentication adapter dll does not exist: oranoss8.dll
    [01-APR-2003 10:45:52] nau_fad: exit
    [01-APR-2003 10:45:52] nau_fad: entry
    [01-APR-2003 10:45:52] snmiloq_LockOutgoingQueues: Thread 000006a4 locking
    Thank you
    Umesh

    The machine was in an NT domain. It had been upgraded to 2000 from NT. I don't think the effective setting stuff for the log on as batch permission was causing us problems until we upgraded (presumably the log on as batch isn't chained down until 2K) - hence I thought I'd suggest it to you, sorry it hasn't helped!
    Do let me know when you've figured out the problem as I dare say I'll come across it sooner or later!
    Regards
    Jason.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by struggling:
    thanks Jason. I verified that the effective setting is checked for the accounts I'm trying to use, and I made sure I'm not specifying the domain before the user name (i.e. using local users). this machine is not in a Win 2000 domain (aka active directory) however, was the machine you used in an NT 4 domain or a Win 2000 one? I'm thinking the active directory stuff is what's getting in my way.
    <HR></BLOCKQUOTE>
    null

  • Job submit

    Hi all,
    i am trying to submit a oracle job using the following code but i am getting the oracle error PLS-00103. when i put this sql statement in a textfile and run it with a batchfile it goes well. can anybody give me some advise.
    Imports Oracle.DataAccess.Client
    Public Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim cn As New OracleConnection("Data Source=test;" & "User Id=myusername;" & "Password=mypassword;")
    Try
    Dim sql As String = ("declare " & _
    "jobnr number(10); " & _
    "instnr number(10); " & _
    "begin" & _
    "select instance_number into instnr from v$instance;" & _
    "dbms_job.submit(jobnr,'insert into system.job_logging(''system'',sysdate,''22:00'',''select name from v$database;'');'," & _
    "trunc(sysdate+1)+(22+00/60)/24," & _
    "'trunc(least(next_day(sysdate,''TUESDAY''),next_day(sysdate,''WEDNESDAY''),next_day(sysdate,''THURSDAY''),next_day(sysdate,''FRIDAY''),next_day(sysdate,''SATURDAY'')))+(22+00/60)/24',true,instnr);" & _
    "commit;" & _
    "end;")
    Dim cmd As New OracleCommand(sql, cn)
    cmd.Connection.Open()
    Dim result As String = cmd.ExecuteNonQuery()
    cmd.Connection.Close()
    If result = 0 Then
    MessageBox.Show("no job submitted")
    Else
    MessageBox.Show("succesfully submitted job")
    End If
    Catch ex As Exception
    MessageBox.Show("error' " & ex.Message)
    If cn.State = ConnectionState.Open Then
    cn.Close()
    End If
    End Try
    End Sub
    End Class
    kind regards,
    bryan

    Hi,
    i checked the code again and removed the "(" befor begin and at the end. here is the code again. I ran the code with sqlplus again offcourse without the " and the & or + _ around the code, because this is vb, against the datasource and the plsql procedure succeeded. when i run this code in vb i keep getting the following error:
    ora-6550: line 1, column 74:
    pls-00103: encountered the symbol "INTO" when expecting one of the following:
    := .(@ % ; not null range default character.
    i hope you can help me out with this problem.
    Imports Oracle.DataAccess.Client
    Public Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim cn As New OracleConnection("Data Source=test;" & "User Id=myusername;" & "Password=mypassword;")
    Try
    Dim sql As String = "declare " + _
    "jobnr number(10); " + _
    "instnr number(10); " + _
    "begin" + _
    "select instance_number into instnr from v$instance;" + _
    "dbms_job.submit(jobnr,'insert into system.job_logging(''system'',sysdate,''22:00'',''select name from v$database;'');'," + _
    "trunc(sysdate+1)+(22+00/60)/24," + _
    "'trunc(least(next_day(sysdate,''TUESDAY''),next_day(sysdate,''WEDNESDAY''),next_day(sysdate,''THURSDAY''),next_day(sysdate,''FRIDAY''),next_day(sysdate,''SATURDAY'')))+(22+00/60)/24'," + _
    "true," + _
    "instnr" + _
    ");" + _
    "commit;" + _
    "end;" + _
    Dim cmd As New OracleCommand(sql, cn)
    cmd.Connection.Open()
    Dim result As String = cmd.ExecuteNonQuery()
    cmd.Connection.Close()
    If result = 0 Then
    MessageBox.Show("no job submitted")
    Else
    MessageBox.Show("succesfully submitted job")
    End If
    Catch ex As Exception
    MessageBox.Show("error' " & ex.Message)
    If cn.State = ConnectionState.Open Then
    cn.Close()
    End If
    End Try
    End Sub
    End Class
    kind regards,
    bryan

  • EBS R12 Job request error

    Hi Friends,
    I got this error when I submit a job request:
    java.sql.SQLException: ORA-00917: missing comma
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:743)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:216)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:968)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1168)
         at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:1614)
         at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:1579)
         at xxseoapdownloadconfirm.jspService(_xxseoapdownloadconfirm.java:1474)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:416)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:610)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:359)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    java.sql.SQLException: ORA-00917: missing comma
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:743)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:216)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:968)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1168)
         at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:1614)
         at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:1579)
         at xxseoapdownloadconfirm.jspService(_xxseoapdownloadconfirm.java:1474)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:416)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:610)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:359)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    ====================
    Any ideas please....thanks

    It's actually an accelerator request to download setup tool template :(

  • Job Mgmt : error "This component cannot be used" when sending job request

    Hi,
    When i try to create a job request (basic job request link from the Job Management Workcenter), I am having an error : "This component cannot be used".
    It seems the component is the number read from the ibase corresponding to the client and the sid. There seems to be ne problem on this side.
    But everything is correctly setup regarding Ibases and components.
    What's more when trying to create a ZLFJ (duplicated from SLFJ) in CRMD_ORDER, there is no problem.
    Any suggestion where it could come from ?

    Hello Hervé ,
    could you please provide me with some more information?
    When exactly do you get the message? When trying to submit the job request? Or when clicking on the link "Create Job Request" in the workcenter?
    If you get the message when submitting, please provide more information on the entered System (IBase). Maybe a screenshot could help.
    Best regards,
    Jonny

  • Dbms_job.submit error reporting

    Jobs are rerun - up to 16 tries, I understand - once submitted using dbms_job.submit. I can see the failures incrementing in the FAILURES columns of dba_jobs. What would be a suitable step to determine the cause of the job's failure, such as determining the associated ORA number that would have been returned had the code been submitted through sqlplus rather than as a job?

    Should of thought some before writing - the alert log and trace files contain the error codes.

  • Impact and Lineage Analysis- Job Program error

    Hello Experts,
    We have Business Objects XIR3.1 SP4 installed on Windows Server 2003 with Apache Tomcat 5.5 and Metadata Integrator DS XI 3.2 installed on the same stand alone server. We have our repositories on 10g.
    We have configured the Metadata Integrator with the Business Objects CMS to use the Impact and Lineage Analysis tool and Oracle 10g repository and the connection is successful.
    We have a "program job" related to metadata integrator on the business objects infoview portal and when I run the job, and check the log file, I get the below error message:
    " ## An unexpected error has been detected by HotSpot Virutal Machine.## EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x776baeb5,pid=10732, tid=3760## Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)# Problematic frame:# C [ole32.dll+0x4aeb5]## An error report file with more information is saved as hs_err_pid10732.log## If you would like to submit a bug report, please visit:#http://java.sun.com/webapps/bugreport/crash.jsp#"
    I opened up a ticket with SAP and it seems this is out of their scope for Support. I cannot even find the hs_err_pid file and I have searched the whole machine.
    Any idea/suggestion to fix this error message?
    Thanks in advance.

    Hi Nawfal,
    Thanks for the reply.
    Yes, the JAVA_HOME environment variable is set on the server.
    Are you referring to the Metadata Manager? I think MM is different from Metadata Integrator and I don't see any properties related to MI in the CMC.
    All I have is a "Progam Job" in our Infoview, when it runs, it should extract the data from our BO repo and dump it in the DS MI repo. This job is completing successfully but the log has error - same error which I mentioned in my previous post
    I checked the Properties of this program, and for program parameters it has
    Arguments = "Metadata Integrator_5" -Xms128m -Xms512m NO
    I have attached the log file. Can you please give a look ?
    Any suggestions?
    Thanks again,

  • Job Scheduling error

    Hi Experts,
    I have a critical requirement. I need to kick off 3 interfaces from 1 report each of which will update the Oracle database.
    I've used JOB_OPEN and JOB_CLOSE function modules and using SUBMIT <report> VIA JOB <jobname> NUMBER<jobnumber> AND RETURN. My problem is that these 3 reports are not getting executed, means they are not updating the Oracle database when they are kicked-off from the new program.
    But if i run each of them individually with same test data, it runs perfectly and updates the Oracle database. I tried to debug, it returns before going into START-OF-SELECTION event.
    Any help will be appreciated
    Thanks
    Prateek

    The VIA JOB addition also loads the program accessed in a separate internal mode when the SUBMIT statement is executed and the system performs all the steps specified before START-OF-SELECTION. This means the events LOAD-OF-PROGRAM and INITIALIZATION are triggered and selection screen processing is performed. If the selection screen is not processed in the background when VIA SELECTION-SCREEN is specified, the user of the calling program can eidit it and schedule the program accessed in the background request using the function Place in Job. If the user cancels selection screen processing, the program is not scheduled in the background job. In both cases, execution of the program executed is completed after selection screen processing and the system returns to the calling program due to the AND RETURN addition.
    Hope you got it.

Maybe you are looking for

  • TS1717 itunes wont open with my iphone

    due to having another computer... my iphone wont connect to itunes so i can download etc.... also my son has my old ipone which means has my old iphone email and password and it works on his phone. even though i deleted my info from his phone. yet he

  • Access by User ID only

    Hi, I'm wondering if you can give someone access to a 'course' without having to have a categorized credential. In my case, I use the Baker College building block to authenticate from Blackboard - but the credentials only show Instructor or Student r

  • Lightroom open in elements editor raw question.

    I have just got lightroom 3.3 and it imports my .dng raw files no problem. if I use the save metadata  to file  and try to open in elements editor it open the file as a .tiff. instead of opening it as a raw file with ACR. I think the roblem is the me

  • 7520e: black and white prints have blue cast

    Black & white prints have a blue tinge to them and are not true black and white. Is there a good explanation of what all the various controls do, in the Print dialogue boxes? Thanks.

  • Can operations continue to run when logged in as another user?

    I've logged in as myself and I have set an operation to run, its going to run for a while and I would like the ability of my wife to log in. When you do this the operation pauses while logged in as her. Can it continue to run at the same time?