Function DB6_PLAN_STOP_BATCH_JOB failed with return code = Job error

Hi team,
I have issue with "SAP_COLLECTOR_FOR_PERFMONITOR" Job .it has been Finished but in Job Log I get error as below:
Job started
Step 001 started (program RSCOLL00, variant , user ID DDIC)
Clean_Plan:Cleanup of DB13 Plannings
Clean_Plan:started by RSDBPREV                       on server sapqas01
Clean_Plan:Cleaning up jobs of system QAS
Function DB6_PLAN_STOP_BATCH_JOB failed with return code = Job error
Clean_Plan:terminated with error
REASON=Job error
Database system not supported
Reorganization of the database started
Reorganization of the database ended
Job finished
I have alredy reschedule this Job in 000 with DDIC User.
Please help me ,
Thanks
Vijay

Hello Vijay,
The "Database system not supported" error you see, suggests that your TCOLL table is not setup correctly. You probably have a report scheduled in your TCOLL which is for a different DB then the one you run.
If the collector canels all the time, then this is probably a report which is scheduled to run every hour in your TCOLL. If it only cancels sometimes, then it should be easier to identify which report is causing it in your TCOLL.
The bottom line is to ensure your TCOLL is setup correctly and that you are not running DB reports there that are for a different DB than the one you use. The SAP note you follow to setup your TCOLL table depends on your SAP system version:
12103 - Contents of the TCOLL table
970449 - Contents of TCOLL table in SAP_BASIS 640
966309 - Contents of table TCOLL in SAP_BASIS 700
966631 - Contents of TCOLL table in SAP_BASIS 710
Regards,
Brendan

Similar Messages

  • DB13 error -- Function DB6_PLAN_DELETE_BATCH failed with return code = Job

    hello All,
    when I try to delete or edit any DBA Job in transaction DB13 the following error is displayed:
    An error occurred when processing system
    Function DB6_PLAN_DELETE_BATCH failed with return code = Job error
    How can I fix this error and delete or change my DBA jobs?
    My syste is SAP ECC 6.0 SR3 - Solaris 10 - Oracle 10.2.0.4.0
    Thanks
    Hernando

    Hello Hernando,
    Let's see what this SAP Note says,
    Note 1093883 - ORACLE: Function module DB6_PLAN_ADD_BATCH fails
    Edit: However, 'valid release' makes confusion
    Regards
    Subbarao
    Edited by: subbarao chinta on Oct 8, 2009 9:00 PM

  • Function DB6_DIAG_VIEW_SOURCE failed with return code = Program source not

    Hi,
    This is the prompt that I get when I try to view the Call point in ABAP for a particular SQL ID in Transaction st04 -> SQL Statement Analysis -> Shared Cache.
    What does this Error signify ??
    Thanks & regards to all readers and posters.

    Hi,
    check SAP note 1309309 "Application Info" is missing. You probabyl need a new DBSL patch.
    btw. istn't it funny that on an ORACLE database a DB6_DIAG_VIEW_SOURCE function module is used... ?
    Kind regards,
    Hermann

  • DB13 return code = job error

    Dear All,
    WE are getting followin error while scheduling job in db13 tcode.
    Function DB6_PLAN_ADD_BATCH failed with return code = Job error
    ECC 6.0
    Oracle 10g

    You indicated that your database is Oracle 10G. This forum is for SAP on DB2 LUW as the database server. Please post your question on the appropriate forum.
    Regards,
    Adam Wilson
    SAP Development Support
    IBM Toronto Lab.

  • ORA-27369: job of type EXECUTABLE failed with exit code: Unknown error

    Hello DBAs,
    I am trying to schedule a shell script through dbms_scheduler.CREATE_JOB
    My database version is 10.2.0.3.0.
    I can successfully schedule the job, but while running, it throwing ORA-27369 with out exit code.
    Given below are the actions performed -
    -- Created shel scripts-
    $ cat shell01.sh
    ./test.sh >> test.log
    $
    $ cat test.sh
    sqlplus -s "/ as sysdba" <<EOF
    SELECT SUBSTR(host_name,0,10) host_name, instance_name, status,TO_CHAR(startup_time,'dd-mm-yy hh24:mi:ss') startup_time
    FROM v\$instance;
    disconnect;
    exit;
    EOF
    -- Granting privileges - (eventhough I have tried from 'SYS' schema)
    GRANT create Job, create external job, execute any class, execute any program , manage scheduler to sys;
    -- Drop job with name RUN_SHELL01
    BEGIN
    dbms_scheduler.drop_job('RUN_SHELL01');
    END;
    -- Schedule job with name RUN_SHELL01
    BEGIN
    dbms_scheduler.CREATE_JOB
         (job_name           => 'RUN_SHELL01',
         job_type           => 'EXECUTABLE',
         job_action           => '/home/ora1023/shell01.sh',
    start_date           => '18-AUG-09 05:37:00 AM',
         end_date          => NULL,
         repeat_interval      => 'FREQ=MINUTELY',
         enabled           => false,
         comments           => 'Run shell-script');
    END;
    --Enable job
    BEGIN
    dbms_scheduler.enable('RUN_SHELL01');
    END;
    -- Checking status
    SELECT owner, job_name, enabled FROM dba_scheduler_jobs;
    select JOB_NAME,STATUS,ERROR# from dba_scheduler_job_run_details where job_name='RUN_SHELL01';
    -- Executing the job
    SQL> exec dbms_scheduler.run_job('RUN_SHELL01');
    BEGIN dbms_scheduler.run_job('RUN_SHELL01'); END;
    ERROR at line 1:
    ORA-27369: job of type EXECUTABLE failed with exit code: Unknown error
    ORA-06512: at "SYS.DBMS_ISCHED", line 150
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 441
    ORA-06512: at line 1
    Anybody please suggest a solutions for this -

    My shell script will work as below -
    user01@test01:/home/user01 : cat shell01.sh
    ./test.sh >> test.log
    user01@test01:/home/user01 :
    user01@test01:/home/user01 :
    user01@test01:/home/user01 : cat test.sh
    sqlplus -s "/ as sysdba" <<EOF
    SELECT SUBSTR(host_name,0,10) host_name, instance_name, status,TO_CHAR(startup_time,'dd-mm-yy hh24:mi:ss') startup_time
    FROM v\$instance;
    disconnect;
    exit;
    EOF
    user01@test01:/home/user01 : ./shell01.sh
    user01@test01:/home/user01 : ls -ltr
    -rw-r--r-- 1 ora1023 dba 155 Aug 26 05:28 test.log
    user01@test01:/home/user01 : cat test.log
    HOST_NAME INSTANCE_NAME STATUS STARTUP_TIME
    test01 oft1 OPEN 18-08-09 08:22:45
    user01@test01:/home/user01 :
    ** I think this shell script is working fine! ..its only for testing..
    and while we are querying dba_scheduler_job_run_details for additional info-
    SQL> select s.STATUS ,s.ADDITIONAL_INFO from dba_scheduler_job_run_details s where s.job_name='RUN_SHELL01';
    STATUS
    ADDITIONAL_INFO
    STANDARD_ERROR="execve: Exec format error"
    FAILED
    ORA-27369: job of type EXECUTABLE failed with exit code: Unknown error
    STANDARD_ERROR="execve: Exec format error"
    I think Metalink Doc ID: 555160.1 (Schedular Job of Type 'EXECUTABLE' Fails with ORA-27369 "exit code: 255" STANDARD_ERROR="execve: Exec format error"). Will help me to solve this issue Since i am using ksh -
    # echo $SHELL
    /bin/ksh
    Edited by: Rajesh Menon on Aug 25, 2009 9:21 PM

  • ORA-27369: job of type EXECUTABLE failed with exit code: Unknown error STAN

    ORA-27369: job of type EXECUTABLE failed with exit code: Unknown error STANDARD_ERROR="execve: Exec format error"
    #!/usr/bin/ksh
    /bin/find /u08/oradba/S036/archlog -name "*.arc" -exec rm -f {} \;
    Simple shell script gives above error when scheduled through dbms_scheduler. I did check metalink notes everything seems to be in order.
    Thanks,
    Siva

    Hi,
    Make sure the script is set to be executable (chmod a+rx script.sh) and that /usr/bin/ksh exists and is executable.
    If it still doesn't work post the new error message and the output of "ls -l script.sh" and also your exact Oracle version. Also try running the shell script directly at the command line (e.g. ./script.sh).
    Hope this helps,
    Ravi.

  • Error: OCIEnvCreate failed with return code -1

    I am trying to run a 3rd party software that access Oracle. I have set up the ODBC connections and tested the connections. They tested successfully. But when I try and connect to Oracle using this tool I get the following error: OCIEnvCreate failed with return code -1. Any help would be greatly appreciated. Thanks

    792208 wrote:
    I am trying to run a 3rd party software that access Oracle. I have set up the ODBC connections and tested the connections. They tested successfully. But when I try and connect to Oracle using this tool I get the following error: OCIEnvCreate failed with return code -1. Any help would be greatly appreciated. Thanksif the connection request actually gets to the listener, then it will be logged.
    If no record exists within listener.log file, then the root cause & solution are external to Oracle.

  • ODI Error: ODI-1217: Session jobname (2197102) fails with return code 700

    Hi All,
    We are getting the below error when running an interface in our ODI 11.1.6 environment.
    ODI-1217: Session <interfacename> (2197102) fails with return code 7000.
    Caused By: com.sunopsis.tools.core.exception.SnpsSimpleMessageException: ODI-17517: Error during task interpretation.
    Task: 147
    java.lang.Exception: BeanShell script error: Parse error at line 26, column 38. Encountered: >= BSF info: Insert flow into I$ table at line: 0 column: columnNo
    at com.sunopsis.dwg.codeinterpretor.SnpCodeInterpretor.transform(SnpCodeInterpretor.java:485)
    at com.sunopsis.dwg.dbobj.SnpSessStep.createTaskLogs(SnpSessStep.java:711)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:461)
    The interface is a simple pass-through one which loads data from one table to another. We have checked in the interface for any discrepancies but could not find any issue. We ran the same interface in another environment and it ran fine there. Restarting the agent also didnt help. We could not find any lead for any solutions. Any help on the issue would be highly appreciated.
    P.S: Interface name has been kept generic to <jobname>
    Thanks,
    Shrinivas

    Please give the code generated in that step ( Insert flow into I$ table.)

  • Transport request migration failed with return code 12

    Hi ,
    A transport request was created to capture deletion of bex query via Tcode RSZDELETE. The deletion TR was moved to Quality box successfully and query got deleted. But when same TR was moved to Production box, TR failed with return code 12. Program terminated (job:RDDEXECL). Upon checking the job log overview for this job, runtime error ITAB_DUPLICATE_KEY happend causing session to terminate. can anyone pls suggest me how to fix this issue and why this has caused. Need to fix this immediately as it is in production environment. Please help.
    In ST22 i could see the below error details:
    Thanks,
    Vishnu

    as per the dump, system is trying to insert a unique number which is already in the system. You sure the transport is only for deletion of the query? Can you please check the import logs in the test system and should tell you what action performed during import.

  • OCIEnvNlsCreate failed with return code -1

    Hi, we're getting this error when running SQL Server 2005 Reporting Services to connect to an Oracle 9i database. The report works fine locally but breaks on the web. Another user has posted about this same exact issue to Microsoft's SSRS forum, but with no answer: http://tinyurl.com/ynqv7o
    Your help is much appreciated. Thank you.

    Check Re: OCIEnvNlsCreate failed with return code -1

  • ODI-1217 session fails with return code 904

    Hi all,
    I am anil, I new to ODI, can any one help me in it.
    I have just created a one on one mapping, and then executed it, and I am getting "ODI-1217 session fails with return code 904" this error, what to do, why it happens, can any have any idea.
    Thanks,
    Anil

    Hi,
    it just returns this error.Could you copy here all error  ?
    Regards

  • Backng up failed with return code 255 ...Help!!!

    Hi,
    I am in a process of backing up Oracle application server 10g through "Configure Backup/Recovery Settings" feature of the app server, when I provide the directories for:
    1. Log File Location     
    2. Configuration Files Backup Location     
    3. Metadata Repository Database Backup Location
    4. Metadata Repository Database SID
    and click on OK it provides me the following error:
    "The command <ORACLE_HOME>/perl/5.6.1/bin/MSWin32-x86/perl.exe <ORACLE_HOME>\backup_restore/bkp_restore.pl -m configure -h <ORACLE_HOME> -f > <ORACLE_HOME>\backup_restore\logs/2008-12-06_13-36-02_output.log failed with return code 255"
    And the log file says -"Unable to get dbid from the database."
    Please Help..!!!
    Thanks

    This turns out to be a non-issue. I re-installed JDK 1.6,
    thinking this might have been the problem, but as it turns out,
    this Windows machine was a VM, and there haven't been any issues
    with other VM's, only this one, leading me to conclude the problem
    was the VM. We've since migrated off this machine and recycled
    it.

  • DB2SET DB2WORKLOAD=SAP Fails with Return Code 238

    Not sure which forum to post this, hopefully this is the right one.  I am in the middle of setting up a sandbox for CRM and during the install, updating the database registry, the install fails with the following error;
    db2set DB2WORKLOAD=SAP finished with return code 238.
    OS AIX PPC64 I think the version is 5.3
    DB2 9 FP5
    I can't seem to find anything by google, but I am sure this is just a simple fix.

    Hi All,
    The SAP installation stopped with following error ...
    DB2SET DB2WORKLOAD=SAP Fails with Return Code 227
    Please help me in solving this issue .....
    Regards,
    Kumar Kadali

  • OCIEnvCreate failed with return code -1

    Ciao a tutti, ho il seguente problema (purtroppo...):
    applicazione asp.net;
    utilizzo odp.net 9.2 per accedere a un db oracle 9i;
    sul server sono state installate in sequenza: oracle client 9, odp.net 10.2, disinstallate odp.net 10.2 e installate odp.net 9.2;
    Alla disinstallazione di odp.net 10.2 è comunque rimasta sotto la root oracle del file system una cartella odac\10.2.0 con le librerie di odp.net 10.2
    Dall'applicazione apro una connessione (utilizzando in modo estemporaneo) la classe OracleConnection di System.Data.OracleClient del framework 2.0
    Al momento dell'apertura mi dà il seguente errore:
    OCIEnvCreate failed with return code -1 but error message text was not available
    Qualcuno sa come fare ? Grazie. Ciao

    I think you deinstall some ..... it will be nice if you can put it in English ;-)
    Ming Man

  • Msiexec failed with return code 1603 / installing SAP MMC Snap-In and creat

    I am installing SAP ABAP trial on windows 7 and I have encountered some problems.
    Please help me solve this problem.
    Phase 2 : install common system files
    Error happened during this step: installing SAP MMC Snap-In and creating shortcuts
    Error message:
    Running msiexec failed with return code 1603: Schwerwiegender Fehler bei der Installation.
    Commandline was msiexec.exe /norestart /L sapmmcX86u.log /i sapmmcX86u.msi /qn
    If you want the installer to retry, choose Yes. If you want the installer to abort the installation, choose No.
    I have alreday given the permission/rights that are necessary for the user who is installing the system.

    Hello All,
    We also faced the same error, I would like to share the solution steps which we have applied.
    Solution :
    Refer Note 1236002 - Error during the SAP MMC MSI installation or uninstallation
    As per the note :
    Download utility “Microsoft Fix It” from http://support.microsoft.com/mats/Program_Install_and_Uninstall
    You have the option to run this utility online or you can download the folder structure following the instructions on this page
    Then copy the Fix it Portable folder to the computer with the problem and run the Launch Fix it application
    What Microsoft Fix It fixes...
    Removes bad registry key on 64 bit operating systems.
    Windows registry keys that control the upgrade (patching) data that become corrupted.
    Resolves problems that prevent new programs from being installed.
    Resolves problems that prevent programs from being completely uninstalled and blocking new installations and updates.
    Use this troubleshooter for an uninstall only if the program fails to uninstall using the windows add/remove programs feature.
    Best Regards..

Maybe you are looking for

  • Flash and Fireworks animations

    So I am building a website for myself and I want to put a flash animation in. After the animation comes in, more links will appear on top of the animation after it stops moving and stays stationary. I am wondering what I need to do to get this to fun

  • Issue in Deletion of approved leave request using ws12300111

    We are using Std workflow 12300111 and its working fine for new leave request and change leave request but when raise request for deletion of approved leave request the workitem created and info type  updated automatically without seeking approval fr

  • BOR for PS budget approval workflow

    Hi gurus,                I have a Project Systems scenario in which For all the changes done in CJ40, one reminder has to generate for Budget approvals to the concern in T-Code: CJ30. Has anyone done this workflow before. Is there any standard Workfl

  • Errors in application.log "Unexpected characters found in locale."

    We have need seeing a lot of this error in our log.  50 or > at the same second.  Developers feel that is the reason the application is becoming unresponsive and that Clients are calling in about the same time reporting that they are unable to access

  • Open transaction in SAPgui

    I want to display a transaction such as MM01 in SAP gui from Visual Basic. I tried to use function RFC_DISPLAY_MATERIAL_MASTER (without any parameters), but it works only in ABAP debugger. Without debugger, it returns SYSTEM_FAILURE. Here is the code