OWB 9.2: Active Job Does not Exist !

OWB:9.2.0.2.8
I have opened a TAR for this, not much headway so far
Error Message: ORA-20211: Active job does not exist, cannot link to job record.
Here is the sequence of events
1) A test database was cloned fom production
2) We were able to to get the runtime instance on test running by setting the fields in wb_rt_service_nodes
Service doctor now indicated that the service was up
3) Using OWB deployment mangager, I tried to execute a map and got this message
Starting Execution EU_ITM_WH
Starting Task EU_ITM_WH
ORA-20211: Active job does not exist, cannot link to job record.
ORA-06512: at "OWB_RR.WB_RT_MAPAUDIT", line 1252
ORA-06512: at "OWB_RR.WB_RT_MAPAUDIT", line 2084
ORA-06512: at "OWB_TS.EU_ITM_WH", line 2250
ORA-06512: at "OWB_TS.EU_ITM_WH", line 2331
ORA-06512: at line 1
Completing Task EU_ITM_WH
Completing Execution EU_ITM_WH
I searched Metalink and got some references to this.but they seem out-dated.

Did you try to stop and start the runtime sevice by using stop_service.sql/start_service.sql from the <OWB_HOME>/owb/rtp/sql directory?
Also, you say that you cloned the database - are the database parameters different in the cloned database (db name, hostname, port, user name, password)? If yes, did you change the location registration parameters?
Regards:
Igor

Similar Messages

  • ORA-20211: Active job does not exist, cannot link to job record.

    Getting the above error while executing OWB mapping in production environment.
    Details of the error :
    ORA-20211: Active job does not exist, cannot link to job record.
    ORA-06512: at "RADRUN.WB_RT_MAPAUDIT", line 1278
    ORA-06512: at "RADRUN.WB_RT_MAPAUDIT", line 2110
    ORA-06512: at "RADSTG.MAP_STG_AIRCRAFT", line 2384
    ORA-06512: at "RADSTG.MAP_STG_AIRCRAFT", line 2513
    RADRUN -- runtime schema
    RADSTG -- Target schema where mappings deployed.
    source database is accessed through a DB link.
    OWB version - 10.1.0.4.0
    Oracle - 9.2.0.6.0
    Here mappings are getting executed by calling a pl/sql procedure. This pl/sql procedure is executed every day by scheduling a dbms_job. After the error, the job is in hanging.
    Last week also the same error happened, on that occasion , restarted the database and re submitted the job. Mapping executed without any error.
    Looking for the expert comments

    Hi.
    See Note:125860.1 in metalink (and please, lol to solution #3). It applies to older OWB versions though... Are you using DBMS_JOB or OEM to run these mappings? If so, then the metalink note might be useful help.
    Karesz, I believe if the source database was down, it would fail with an ORA-12XXX Error.
    Regards,
    Marcos

  • "Mass activity type does not exist" while i try to create a recording in SHDB for FPRW

    hi,
    i'm trying to create a recording in SHDB for transaction FPRW marking the checkbox "simulate background mode".  When i press the buttom "start recording" i recieve the error message >6 117  Mass activity type  does not exist.
    Does somebody know what can i do?
    thnaks

    On the right click on HD under video quality to filter it. 

  • DBMS DataPump - Export - ORA-31626: job does not exist - Appreciate ur help

    I'm getting the following error while executing the following two stored procedures. I googled and tried some solution out there but, couldn't fix it yet. I think I have all granted permissions. Sometime back when I ran the schema_export procedure it worked in the first attempt and not after that.
    ORA-31626: job does not exist
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 79
    ORA-06512: at "SYS.DBMS_DATAPUMP", line 902
    ORA-06512: at "SYS.DBMS_DATAPUMP", line 4758
    ORA-06512: at "KUMAR.PARTIAL_EXPORT", line 14
    ORA-06512: at line 2
    Partial Table Export:
    create or replace PROCEDURE partial_export
    AS
    l_dp_handle NUMBER;
    l_last_job_state VARCHAR2 (30) := 'UNDEFINED';
    l_job_state VARCHAR2 (30) := 'UNDEFINED';
    l_sts ku$_status;
    l_job_name VARCHAR2 (100);
    l_dirname VARCHAR2 (100);
    l_filename VARCHAR2 (100);
    BEGIN
    l_filename := 'myexpfile.dmp';
    -- sets the job name
    l_job_name := 'BZ' || SYSDATE;
    l_dp_handle :=
    DBMS_DATAPUMP.OPEN (operation => 'EXPORT',
    job_mode => 'TABLE',
    remote_link => NULL,
    job_name => l_job_name,
    VERSION => 'LATEST'
    --specify the database directory  and the filename for the export file  
    DBMS_DATAPUMP.add_file (handle => l_dp_handle,
    filename => l_filename,
    DIRECTORY => 'TEST_DIR'
    DBMS_DATAPUMP.add_file (handle => l_dp_handle,
    filename => l_filename || '.LOG',
    DIRECTORY => 'TEST_DIR',
    filetype => DBMS_DATAPUMP.ku$_file_type_log_file
    --specify the tables that I want to export. (EMP,DEPT)  
    DBMS_DATAPUMP.metadata_filter (handle => l_dp_handle,
    NAME => 'NAME_EXPR',
    VALUE => 'IN (''EMP'', ''DEPT'')'
    -- set subset data export. exports only rows that eno > 400
    DBMS_DATAPUMP.data_filter (handle => l_dp_handle,
    NAME => 'SUBQUERY',
    VALUE => 'WHERE eno > 400',
    table_name => 'EMP'
    -- set subset data export. exports only rows that dno > 500
    DBMS_DATAPUMP.data_filter (handle => l_dp_handle,
    NAME => 'SUBQUERY',
    VALUE => 'WHERE dno > 500',
    table_name => 'DEPT'
    DBMS_DATAPUMP.start_job (l_dp_handle);
    DBMS_DATAPUMP.detach (l_dp_handle);
    END;
    Schema Export:
    create or replace procedure schema_export
    as
    l_dp_handle NUMBER;
    l_last_job_state VARCHAR2(30) := 'UNDEFINED';
    l_job_state VARCHAR2(30) := 'UNDEFINED';
    l_sts KU$_STATUS;
    BEGIN
    l_dp_handle := DBMS_DATAPUMP.open(
    operation => 'EXPORT',
    job_mode => 'SCHEMA',
    remote_link => NULL,
    job_name => 'DB_EXPORT',
    version => 'LATEST');
    DBMS_DATAPUMP.add_file(
    handle => l_dp_handle,
    filename => 'dbexport.dmp',
    directory => 'TEST_DIR');
    DBMS_DATAPUMP.metadata_filter(
    handle => l_dp_handle,
    name => 'SCHEMA_EXPR',
    value => '= ''KUMAR''');
    DBMS_DATAPUMP.start_job(l_dp_handle);
    DBMS_DATAPUMP.detach(l_dp_handle);
    END;
    Appreciate your hlep.
    Thanks
    Kumar

    Thanks Satish.
    I don't have access to Oracle Metalink (I'm using Oracle personal edition). Can someone please post Oracle Metalink note 549781 here?
    I couldn't find any useful link when I googled this metalink note number.
    Appreciate your help.
    Thanks
    Kumar

  • Getting status row for item '' activity id '' does not exist

    Hi,
    Need your help.
    Create a custom workflow SAMPRREQ. Its having following processes.
    1. Start Process
    2. Respond Notification.
    3. Function to update Table with the responded value.
    4. End process.
    After lauching the workflow, Notification send to the performer. Open the notification. When approver click the any of the result value (approve, reject, onhold) system giving followign message.
    3101: Status row for item 'SAMPRREQ/20130206161924', activity ID '242956' does not exist.
    I have seen some threads in the forums and bounce the database , purge the item type completly. But, still getting the error.
    Regards/Prasanth

    Sosa,
    When i run the wfstat nothing wrong in the info. unable to find the issue.
    But, i have narrow down the issue. In the function process in my workfow i am calling a custom function called update_approval_status_new.
    In this the value of the respond notification to be updated to a header table of this workflow and insert into events tables.
    When i comment these two dml ( update to header status & insert into events ) there is no error.
    Can any one tells me can i update and insert custom tables in workflow or not. If I want to do this, what is procedure.
    Regards/Prasanth

  • Actual activity price does not exist for cost center / activity type

    Hi,
    We are trying to upload the time sheet related data(number of hours an employee workred on a project) ect from Non SAP to SAP.
    We have used a customized program and have loaded the data from se38.
    All this HR data will be saved in CAT2
    Later we transfer the time related data into SAP FI/CO using CAT7.
    +When  tested  with a couple of employees time sheets, they got uploaded in SE38 proerly and when transfered it through CAT7 it was properly taking the hour*rate is cost and was reflecting in the respective cost element.
    For a few time sheets in SE38 we were getting an error saying that the cost center(100501)/ activity type(EAT001) does not exist for 2010.
    Hence we have taken, FY 2010, the cost centes and activity types in KP26 and have given the planned Activity as 1. No planned cost in KP06.
    We have run the price calculation forr the FY 2010.
    Then we were able to uplaod the time sheets, but when we tried to transfer the data through CAT7, it throws an error saying no activity price exist for cost center 100501/ activity type EAT001. If I ignore the warning an proceed, no amount is being calculated.
    When uploaded employee time sheets before, all the cost were getting claculated and were entering into  the respective cost elements, but now no amounts are being calculated and it is taking Zero.
    When checked the previous years data i.e, 2009 all amounts are fine, in KSII I can see the activity quantity filled with some numbers in 2009, where from are they comming? I have checked KBk6 nothing was mentioned.
    PLease assit
    Regards,
    shilpa

    Hi
    I never used CAT* though, but the error means that you need to maintain a activity price in KBK6 (Actual price)
    Regards
    Ajay M

  • Active Directory does not exist or cannot be contacted

    Hi:  We have a server 2008R2 x64 bit.  The DC is an server 2008sp2.  Single domain.local On trying to install Exchange 2010 we get a series of errors:
    1. AD doesn't exist or cannot be contacted
    2. must be a member of organization Management role or enterprise admins
    3. The credential for machine|Administrator is not on bind
    4. The user is not logged on to a windows domain.
    DCDiag >> no errors.  Have read through a lot of posts with these errros but most apply to server 2003 where there were tools used not available in 2008.  Help is greatly appreciated.  Chris

    Hello Chris,
    Are you installing Exchange 2010 on the same server that is a domain controller? if this is a different member server, please post the complete ipconfig /all
    Make sure the domain controller is a global catalog server
    make sure DNS is functioning well dcdiag /test:dns
    You donot need to manually add admin to all these groups as exhange 2010 will do this automatically as long as the account you are using is and administrator and a member of the schema/enterprise admins group
    Isaac Oben MCITP:EA, MCSE

  • Index does not exist in database system DB6

    Hi,
    Problem : <b>Index does not exist in database system DB6</b>.
    I need further explanation why when i transport index from Development Client to Production Client the index is active but does not exist in database system DB6.
    So when the cases is occurs i must re-create the index again in Production Level...
    Can someone give me some ideas?
    Thanks.

    Hi,
    it might be due to some BUG in RDBMS...
    First Check the Secondary index in TEST system
    Look at the Transport Number in DEV system, If this is having error, then it will show you the error details also,
    If that not moved Properly then you need to create another request for the INDEX and move it again
    See the threads with similar problem...
    Warning: Index does not exist in database system MSSQL
    Index does not exist in database system ORACLE??????
    Re creation of database index
    Hope it will solve your problem...
    <b>Reward Points if useful</b>
    Thanks & Regards
    ilesh 24x7

  • Custom Web Template fails, List does not exist

    Can somebody help me with this?
    After I patched the SharePoint 2013 SP 1 to the April 2014 CU I've been getting this error.
    When I apply a custom template I keep getting the error:
    "Exception calling ApplyWebTemplate with 1 argument: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user."
    When I check the logs I found this:
    "05/15/2014 11:04:31.83 PowerShell_ISE.exe (0x285C)
    0x1A2C SharePoint Foundation
    Feature Infrastructure 889w
    High The element of type 'ListInstance' for feature 'test5ListInstances' (id: 2acac41f-5723-4e3e-985f-35620a5696fc) threw an exception during activation: List does not exist.  The page you selected contains a
    list that does not exist.  It may have been deleted by another user.
    01b11c40-f800-0000-e439-4b6b816fcf01"
    And this:
    05/15/2014 11:54:56.07 PowerShell_ISE.exe (0x1E1C)
    0x1DF8 SharePoint Foundation
    General aix9j
    High SPRequest.GetMetadataForUrl: UserPrincipalName=i:0).w|s-1-5-21-3659363940-654044839-132917978-4964, AppPrincipalName= ,bstrUrl=http://portal.domain.com/customer/testerror1/Lists/TaxonomyHiddenList ,METADATAFLAGS=59
    01b11c50-f800-0002-c532-4b6b816fcf01
    Here are the full logs:
    pastebin.com/vnHerVAw and another one: pastebin.com/RVg3kD5P

    I've been going through the logs and its giving me this:
    05/15/2014 11:54:56.07 PowerShell_ISE.exe (0x1E1C)
    0x1DF8 SharePoint Foundation
    General aix9j
    High SPRequest.GetMetadataForUrl: UserPrincipalName=i:0).w|s-1-5-21-3659363940-654044839-132917978-4964, AppPrincipalName= ,bstrUrl=http://portal.domain.com/customer/testerror1/Lists/TaxonomyHiddenList ,METADATAFLAGS=59
    01b11c50-f800-0002-c532-4b6b816fcf01
    But I only created a teamsite with some libraries without anything extra so I don't know why its giving me that..
    **Ends up beeing a permission issue, still having the other errors with list not found :S

  • SP19 Import Queue Error: domain used does not exist

    Hi,
    In order to import support package 19 (KB70019) I encountered following errors:
    Field KEY: Component type or domain used not active or does not exist
    Nametab for table /1PYXXFO/SAP_PAYSLIP_____L0001 cannot be generated
    Field KEY: Component type or domain used not active or does not exist
    Nametab for table /1PYXXFO/SAP_PAYSLIP_____L0020 cannot be generated
    The missing component types are
    /1PYXXFO/SAP_PAYSLIP_____K0001
    /1PYXXFO/SAP_PAYSLIP_____K0020
    I found out so far.
    Can anyone tell me why they are missing?
    M.

    Hi
    Check below SAP notes which is not exaclty related to your problem but can give you a brief idea how ot solve the problem:
    Note 824421 - EEW: Nametab for table ZMDM_BPH9..._SCR cannot be generated
    Note 306296 - No active nametab for <table> exists
    You can take help of ABAP guys for this using above notes--
    Hope it helps
    Thanks
    Sunny

  • SXMSALERT_PROCESS_DATA_GET does not exist in PI 7.1

    Dear PI colleagues,
    I want to forward to my Alert Inbox all errors from PMI.
    Until PI 7.0, we schedule job SXMSALERT_PROCESS_DATA_GET.
    But since PI 7.1, this job does not exist any longer.
    Do you know which job replaces job SXMSALERT_PROCESS_DATA_GET in PI 7.1 ?
    Job SAP_XMB_EXTRACT_PMI_DATA does not exist any longer in PI 7.1.
    Thanks in advance for your input.
    Best regards
    SAP NetWeaverAdmin

    Hi,
    The report SXMSALERT_PROCESS_DATA_GET needs to be scheduled only if you are below SP13 on XI 3.0.
    Since you are already on PI 7.1 you dont need to schedule this report.
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    Regards,
    Aidan

  • Activity Type: cost element does not exist

    Dear All,
    I am working on ERP  configuration for PP module as an academic exercise. I am already through with FI, CO and MM modules.
    I am not able to get through the Activity assignment step in PP module. (Accounting u21D2 Controlling u21D2 Cost Center Accounting u21D2 Master Data u21D2 Activity Type u21D2 Individual Processing u21D2 Create). While creating activity type labor (labor hours), I am getting error "cost element does not exist for aggregated period"
    In CO module I have created primary cost element for "Labor"(Category: primary cost/ cost reducing revenues). Also created secondary cost element for labor (cost element category: Internal activity allocation).
    Can anybody guide me on how to go further?
    regards,
    Supriya

    Dear
    Please revivew the following steps when you are creating a New Acvity type :
    OP51 - Check Settings for formulas
    OP54 - Check formulas for Costing
    Ensure that usage of the parameters are indicated.  Some parameters are appropriate for capacity calculation but not for schedule calculation.  If you like to find out the parameter id, you could use the Search Fld. for Param. pull down button to do so.
    KLH2 - Maintain hierarchy of Activity type group.
    OP19 - Define standard value key
    The purpose of standard value keys is to group together a set of parameters for the purpose of ensuring that the standard values for the parameters are supplied in the operations of the routing.  This is so that the formula (for calculating cost, schedule, and capacity) could have the necessary figures to work with.  Once the parameters are associated with the standard value keys, work centers quoting this standard values will be able to dictate whether or not the parameter values are optional or mandatory entry in the operations of the routing.  The pre-requisite for using this transaction is that the parameters must have been pre-created.
    KA01 - Create Primary Cost Element for the new activities type. Maintain Correct From and To date inline with Activity Type KL01  - Create Activity Type tied to the primary cost element. (the Cost element field)
    KP26  - Change Activity Type/Activity Price Planning - maintain the Variable price
    If the user include the additional activities in their work center, the routing that used the work center will required more time to finished the jobs.
    The operations Start and Finish date will be extended due to the extra time spent on the work center.  The cost of production increases in line with the extra activity which will be reflected in the Factory Output when you do a cost analysis in the production order.   The new activity will have a price attached to it and the moving average price will increase.
    Regards
    JH

  • URGENT: REP-56033: Job 0 does not exist

    Hi, I'm getting this error message when trying to display a report from forms 9i:
    "Cannot Get Output of Job ID 0 you requested on Mon Aug 01 04:22:08 EDT 2005.
    REP-56033: Job 0 does not exist"
    as far as I knew this error occurrs when the rdf file is not accessible or non-existing; unfortunately this is not the case.
    Moreover, the same application launches a report from another form and it works correctly, (the code is exactly the same).
    The main question is:
    is it possible that the problem resides in the server configuration rather than in the code (which actually is equivalent in both procedures)?
    Teh secoind one is:
    how can I get through this?
    Many thanks for helping
    Message was edited by:
    luka

    Nolicer, what is the value of:
    substr(v_rep,instr(v_rep,'_',-1)+1)You might wish to check this, using messages or the debugger.
    In other examples, I have seen the following code used instead:
    substr(v_rep, length(servername)+2, length(v_rep))Maybe this will help.
    Chris

  • Error logs in job releases forecast from DP to SNP-"Matl does not exist"

    Hi Everyone,
    I am facing error logs in the batch job which releases forecast from DP to SNP
    Forecast release job - Weekly - Through background job
    Forecast category - FA
    Error 1: - Characteristic combination appears on batch job log with an error that
    "GMC does not exist " Even though it exist in R/3 and APO
    All products with error message "Product does not exist" from do exist and have Forecast in Product View
    Error 2: - Deleted KCC keep showing up on the Demand Forecast release job log as errors even though they are invalid KCC and were deleted previously. How do they get removed from error log so they don't get created again
    Material does not exist on the APO Product Master, in R3 there is a delete flag and the MRP type is set to X1 ,it does not exist in the APO Product Master and does not exist in R3.
    Request you to kindly provide any way forward which may be causing error logs of the job
    Thanks in advance,
    Mrigendra Sharma

    Hi Mrigendra,
    Please re-initialize the SNP planning area (program : /SAPAPO/TS_PAREA_INITIALIZE) and then check the consistency by executing the program: /SAPAPO/TS_LCM_CONS_CHECK. If you observe any inconsistency in the log/spool, then re-run the program: /SAPAPO/TS_LCM_CONS_CHECK to observe all green.
    It is recommended to run the consistency program after any master data change. The initialization program should be run at least weekly.
    Try transfering the data again from DP to SNP to see if the error reappear.
    Hope this helps.
    Regards,
    Nawanit

  • Error in TLB background job"Version does not exist"

    Hi Gurus,
    We are getting error of "Version does not exist " in TLB background run..The T-lane is between 2 DCs .we have checked everything but unfortunately
    we are not able to detect the root cause for the error.
    Your help will be appreciated.
    Thanks in advance
    Suyash

    Hi Suyash,
    I hope than your planning version is active!
    I also suppose than you have maintained mean of transport and products at Tr.Lanes level. 
    I think that you have some master data inconsistency in the version.
    Please run the reports; /SAPAPO/OM17, /SAPAPO/TSCONS, /SAPAPO/TSLCREORGSNP
    You can also run Model Consistency check (t.code /SAPAPO/CONSCHK). First you have to define the Model (t.code /SAPAPO/SCC07) and the Profile (t.code /SAPAPO/CONSPRF).
    Thanks, Marius

Maybe you are looking for