RW Cronacle : JCS-02041: cannot wait on job that does not exist (yet)

Hi all,
We are facing a new problem when submitting our maintaining variants scripts.
The script failed and returns the error
JCS-02041: cannot wait on job that does not exist (yet)
Have you ever met this kind of error ? What kind of issue could it be ?
Thank you very much for you answers.
Regards,
Scheduling team

Anton,
Here are the informations (I hope that will help you) :
JCS Object Database   7.0.3.43 
Cronacle Repository
JCS Redwood Reports Module     7.0.2 
Cronacle Reports Module    
JCS Redwood Mail Module     7.0.2 
Cronacle Mail Module  
JCS PM4W   7.0.2 
Cronacle Process Manager for Web   
JCS RSI   7.0.4   SP3 production
Cronacle for SAP solutions
JCS Modules      7.0.4       SP3 production
Cronacle Module Installer    
We didn't change many things in the varedit script, we have just deleted some parameters we don't maintain :
create or replace script "RSI"."C4_SC_POA0_J_000_00_VE_FEN4A"
( "INSTANCE"        in varchar2(15)     not null
                    description         'SAP instance'
                    input format        'UPPERCASE'
                    default             expr('EP1'
, "CLIENT"          in varchar2(3)      not null
                    description         'Client'
                    default             expr('900'
, "ABAP_PROGRAM_NAME" in varchar2(32)     not null
                    description         'Abap program name'
                    input format        'UPPERCASE'
                    default             expr('abap_program_name'
, "ABAP_VARIANT_NAME" in varchar2(14)     not null
                    description         'Abap variant name'
                    input format        'UPPERCASE'
                    default             expr('abap_program_variant'
, "PAR_P_NAME"      in varchar2(128)    null
                    description         'P_NAME'
                    groupname           "Option"
, "PAR_P_PATH"      in varchar2(128)    null
                    description         'P_PATH'
                    groupname           "Option"
                    default             expr('/tmp/'
, constraint        "VARIANT_LIST"
                    prequery            0 rows
                    message             'Please choose a valid variant combination'
                    optional
                    check               (
                    select  apv.abap_variant_name
                    into    ABAP_VARIANT_NAME
                    from    rsi_program_variants_view apv
                    where   apv.instance          = :INSTANCE
                    and     apv.client            = :CLIENT
                    and     apv.abap_program_name = :ABAP_PROGRAM_NAME
Edited by: Architecture Architecture on Dec 7, 2009 5:59 PM

Similar Messages

  • 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

  • Cannot retrieve table metadata - Table does not exist: ODP source 0WRKCNT_CATG_TEXT does not exist

    Hi, when i able to import the 0WRKCNT_CATG_TEXT extractor into source system i am getting the above bug Cannot retrieve table metadata - Table does not exist: ODP source <0WRKCNT_CATG_TEXT> does not exist, i have been checked in RSA5 T code to check the object is active or not, its active and its available in ROOSATTR table with enabled mode,but still its showing the error, can anyone help on this ..

    Hi Airings,
    'ORA-00942: table or view does not exist'
    According to the error message, it seems that the migrating table or view does not exist in the database, or SSMA does not have access to it. To troubleshoot the issue, please check the following things.
     1. Verify that if the spelling of the table or view name is correct.
     2. If the table or view exists but is in a different schema from the current schema where the SQL is executing (in other word, the table doesn’t own by you, but owned by other user), the ORA-00942 error will return too. Resolve this by
    explicitly reference the table or view by specifying the schema name (schema_name.table_name).
    3. SSMA queries some additional catalog tables that you may not have permission to, please make sure that you grant the account permission to
     read sys.mlog$. For more details, please review this similar thread:
    Bug in SSMA For Oracle 6.0 for non-dba Oracle user.
    Reference:
    ORA-00942 Table or View Does Not Exist Oracle Error
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Cannot get into iPad, it keeps wanting me to sign in using old email that does not exist, and for a password that she does not remember, so I am unable to change password. How do I get around this?

    Cannot get into old iPad, it keeps wanting me to sign in using old email id that does not exist, and for a password that she does not remember, so I am unable to change password. How do I get around this?

    With iOS 7 Activation lock you can't.
    iCloud: Activation Lock
    http://support.apple.com/kb/PH13695
     Cheers, Tom

  • HT5312 how do i delete WRONG cloud ID from my ipod touch?  it was typed WRONG and I cannot delete it because it does NOT exist and I don't know password for email accoutn that does not exist

    how do i delete WRONG cloud ID from my ipod touch?  it was typed WRONG and I cannot delete it because it does NOT exist and I don't know password for email accoutn that does not exist

    someone please help, I can't even delete content because it prompts me for a password for an account that I mistyped - wth?????

  • Get-Item: Cannot find path ' ' because it does not exist. While running Powershell script.

    I am trying to run a PowerShell script to upload files into a SharePoint site in an Azure environment...the script works fine on my local machine, but every time I run it in Azure (remotely), I get errors. Here is what my simple script looks like...
    if ( (Get-PSSnapin -Name Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue) -eq $null )
    Write-Host "Loading Sharepoint Module "
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    Add-PSSnapin -Name Microsoft.SharePoint.PowerShell
    if ( (Get-PSSnapin -Name Microsoft.SharePoint.PowerShell) -eq $null )
    Write-Host "Failed to load sharepoint snap-in. Could not proceed further, Aborting ..."
    Exit
    #Script settings
    $webUrl = "http://sampleWebUrl"
    $docLibraryName = "My Documents"
    $docLibraryUrlName = "My%20Documents"
    $localFolderPath = get-childitem "C:\Upload\Test Upload\My Documents\" -recurse
    $contentType = "ContenttType1"
    #Open web and library
    $web = Get-SPWeb $webUrl
    write-host "Web:" $web
    $docLibrary = $web.Lists[$docLibraryName]
    write-host "docLibrary:" $docLibrary
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    write-host "files:" $files
    If ($contentType = "ContenttType1")
    #Open file
    $fileStream = ([System.IO.FileInfo] (Get-Item $file.FullName)).OpenRead()
    # Gather the file name
    $FileName = $File.Name
    #remove file extension
    $NewName = [IO.Path]::GetFileNameWithoutExtension($FileName)
    #split the file name by the "-" character
    $FileNameArray = $NewName.split("_")
    $check = $FileNameArray.Length
    #Add file
    $folder = $web.getfolder($docLibrary.rootFolder.URL)
    write-host "Copying file " $file.Name " to " $folder.ServerRelativeUrl "..."
    $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stream]$fileStream, $true)
    $spItem = $spFile.Item
    write-host "Success"
    write-host "SP File:" $spFile
    write-host "SP Item" $spItem
    #populate columns
    $spItem["Column1"] = $FileNameArray[0]
    $spItem["Column2"] = $FileNameArray[1]
    $spItem.Update()
    $fileStream.Close();
    Again, I can run this on my local machine and it works just fine, but when I attempt to run it on the Azure environment I get this error...
    Get-Item : Cannot find path 'C:\powershellscripts\12653_B7045.PDF' because it does not exist.
    At C:\PowerShellScripts\Upload-FilesIntoSharePointTester.ps1:32 char:42
    +     $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    +                                          ~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (C:\powershellscripts\12653_B7045.PDF:String) [Get-Item], ItemNotFoundException
        + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetItemCommand
    What strikes me first is the fact that the file its looking for is in the "C:\Upload\Test Upload\My Documents\" directory, but the error keeps saying "C:\powershellscripts\" which is where my script resides and not the files I want to
    upload into SharePoint. When I step through the code, all the variables are holding the correct values. The $localFolderPath shows the name of files that I am attempting to upload, so it recognizes them. But once I step through this particular line of code,
    the error occurs...
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    Is this an error caused because I am remoting into the Azure environment? Has anyone dealt with this issue before? I would really appreciate the help. Thanks
    Update: quick thing I noticed is that these two lines of code are returning null values. Again, is this handled differently in Azure or remotely? I ask cause this is the way I know how to do this, locally.
    $docLibrary = $web.Lists[$docLibraryName]
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()

    "...square brackets are wildcard characters in Windows PowerShell..."
    When you use cd without a parameter it uses the -Path parameter. In this case you'll have to escape the square brackets so they are not considered wildcards. Each of the commands in the first example does the exact same thing.
    cd 'Learn PowerShell `[Do Whatever`]'
    cd -Path 'Learn PowerShell `[Do Whatever`]'
    cd (or Set-Location) also has a literal path parameter (-LiteralPath) that does not require using an escape character (`) before each of the brackets. Hope this helps.
    cd -LiteralPath 'Learn PowerShell [Do Whatever]'

  • My iMac intel shows a shared computer that does not exist and I cannot disconnect. How can I remove it?

    A computer appears to be shared, but there is no info on it and I cannot connect nor disconnect it. Three of us have tried all the things we could think off without success. It has been going on for months and does slow down some applications that seem to attempt connectionc.
    When I reboot I get the following message thre of four times.
    There is a problem connecting to the server Isabelle's IMac G5 (10). The server may not exist or it is unavailable at this time. Check the server name or IP address. Check your network connection, and try again.
    I have done all that it says, there is no IP address and the network connection seems OK. If I attemp to move the icon representing this server to the Thash, it turns for a short time to an Eject but then it comes back saying that the item cannot be deleted.
    Any suggestions?

    Hi,
    Does this "server" appear in System Preferences > Users > your account > Login Items ?
    I have my MacBook Pro listed here as at one time I used it's USB drive for Time Machine on this iMac.
    The shot is from a Mavericks computer where the panel is called User and Groups
    If the MacBook Pro is not On line when I start up the iMac I get the same message as a pop up.
    9:51 pm      Tuesday; May 27, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • 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

  • Cannot install snort, install script does not exist?

    Hi!
    I'm trying to install snort on a newly installed arch system.
    It didn't go well..
    Targets (1): snort-2.8.2.1-8
    Total Download Size: 0.00 MB
    Total Installed Size: 8.78 MB
    Proceed with installation? [Y/n] y
    checking package integrity...
    (1/1) checking for file conflicts [#########################################################################################################################################################] 100%
    (1/1) upgrading snort [#########################################################################################################################################################] 100%
    /tmp/alpm_B2G8ys/.INSTALL: line 6: var/log/snort/alert: No such file or directory
    error: scriptlet failed to execute correctly
    Anyone knows what to do?
    /Diddi

    try this:
    cd / # just in case (might work or not)
    pacman -Scc
    sudo pacman -Syyuu
    sudo pacman -S snort
    the flags usage:
      -Scc          to clean your downloaded packages (this does not "uninstall" them, just clean them)
      -Syyuu      to upgrade

  • 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

  • Getting error "Cannot create a BACPAC from a file that does not contain exported data." from SqlManagementClient.Dac.ImportAsync

    We're trying to import a dacpac to azure via the new SqlManagementClient DacOperations ImportAsync api I get an exception with the error: "Cannot create a BACPAC from a file that does not contain exported data."
    This same dacpac imports fine using an alternate but less friendly API from sql server's tooling. We'd like to use the new management SDK instead for various reasons.

    Hi Kyle A Wilt,
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated.
    Thank you for your understanding and support.
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • 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

  • GB won't open- This is what I get... Path does not exist: /Library/Audio/Apple Loops Index  st: /Library/Audio/Apple Loops Index w/out this directory you cannot use the Loop Browser

    Path does not exist: /Library/Audio/Apple Loops Index  st: /Library/Audio/Apple Loops Index w/out this directory you cannot use the Loop Browser.  Then I get this message...
    Instrument Library Invalid
    GarageBand Ecpects a valid instrument foledr in /Libraty/Application Support/GarageBand
    Please choose a valid instrument Library folder or quit and re-install GB
    Any solutions?

    Is this a new installation of GarageBand or has it worked before on the same computer?
    Or have you transferrred your GarageBand from a different computer?
    The error message is saying, that your GarageBand installation is incomplete. There are essential foldrs missing in your system library. 
    Check, if indeed both folders are missing or if only the permissions are set incorrectly.
    Your system library (the folder "System" directly on your system drive) should have the following folders inside the folder "Audio", and they need to be readable by the system and by administrators.
    And in the folder /Library/Application Support there should be the Instrument Library.
    If these folders do not exist (or no longer exist), restore them from your backup-  If your GarageBand version is a new installation, the application may not hve been downloaded or installed completely, then reinstall GarageBand.
    What is your GarageBAnd version, and how did you install it originally?
    Regards
    Léonie

  • ERROR: Cannot start mail services, configuration directory does not exist

    I'm running an Xserve G5 with one internal boot drive and one RAID using the other two internal drives. I used Apple's Disk Utility to set-up the RAID.
    Back in early December, I moved my mail database and mail store to the RAID. Ever since, when I restart the server, the mailaccess.log generates the following error:
    Jan 23 18:51:33 mail master[47]: ERROR: Cannot start mail services, configuration directory does not exist: /Volumes/RAID/mail.data/db
    I'm speculating this is a timing error that gets created when Postfix initially can't find the RAID. Then, it must try again and find it because the error message does not repeat and mail starts running.
    Is this something to worry about?

    Hi Joel,
    You're right, it's a timing issues. The mail system is ready for work before the file system is mounted. It's benign.
    Jeff

  • Cannot complete Lync2013 integration because autodiscover/metadata/json/1 does not exist

    Hello,
    I am trying to setup integration between Microsoft Lync 2013 Server and Exchange 2013 Server so that in OWA you can see presence information and also use Instant Messaging.
    I am able to complete all the steps except for the following line on the Lync server:
    New-CsPartnerApplication -Identity Exchange -ApplicationTrustLevel Full -MetadataUrl "https://autodiscover.domain.com/autodiscover/metadata/json/1"
    I am getting an error that its not found:
    New-CsPartnerApplication : Cannot bind parameter 'MetadataUrl' to the target. Exception setting "MetadataUrl": "The
    metadata document could not be downloaded from the URL in the MetadataUrl parameter or downloaded data is not a valid
    metadata document, error: The remote server returned an error: (404) Not Found."
    Now I've already followed THIS thread: http://blogs.technet.com/b/jenstr/archive/2012/11/22/getting-internal-server-error-500-when-creating-new-cspartnerapplication-for-exchange-2013.aspx  But that did not help me at all.  Nor should it because
    that particular thread is a procedure to remedy an error 500.  Remember I am getting an error 404.
    I can validate that the path to /autodiscover/metadata/json/1 does not exist because I get a 404 in any web browser that I attempt to access this path.  Also in IIS Manager on Exchange I do not even see a metadata folder.  IIS has been reset and
    also the server has been rebooted as of 7:40 AM EST today and the issue persists.
    I am not sure what goes in that location but I would be willing to accept if someone else would upload their metadata/json/1 file on SkyDrive and I could put it at this location.
    Otherwise Autodiscover service appears to be working as Outlook and Lync clients do not pose an error.  Testing e-mail autodiscover returns correct values and the paths /autodiscover/Autodiscover.svc and also autodiscover/autodiscover.xml are both reachable
    in a web browser.

    Hi KJSTech1,
    You could try to modify the autodiscover Url by following command.
    Get-ClientAccessServer | Set-ClientAccessServer -AutoDiscoverServiceInternalUri "https://autodiscover.contoso.com/autodiscover/autodiscover.xml"
    Run the following command in Lync Management Shell.
    Set-CsOAuthConfiguration -Identity global -ExchangeAutodiscoverUrl "https://autodiscover.contoso.com/autodiscover/autodiscover.svc"
    After doing the above work, please re-run the New-CsPartnerApplication command to test.
    Best regards,
    Eric

Maybe you are looking for

  • Difference between RAC and MySQL Cluster !

    Difference between RAC and MySQL Cluster Please write me in well explanation , with examples , needed useful link and all other stuffs. (1)Italian dealers/distributors for MySQL (2)Difference between RAC and MySQL Cluster (3)Pricing about MySQL and P

  • Database can not be open!

    I want to create a sdandby database for current database. According to the processes the Data guard Concepts and Administration stated, I finished all the steps except configuring the standby redolog(I forgot this step).When I issued the command: "dt

  • New PO type - IMG settings

    Hello All, I need  to create a new PO type (purchase order type) in SAP.i need to know the steps to register the same in IMG settings. Please can anyone let me know which all configurations i need to do and how? As of now i have just created the entr

  • Ovi Suite duplicating photos

    Hi, I have Ovi Suite 2.0.2.42 installed and I have a N86 8MP phone. When I click on sync for the photos it copies over photos that are already on the PC (the files get renamed with [1], [2] etc on the end). I take it this shouldn't happen, how do I s

  • Regarding -- HCM Certification

    Hi,     I want to do HCM certification, SAP was changed the pattern as Associate, Professional and Master. I'm Abaper so that Can go directly Professional Certification instead of Associate I was very familiar with HCM but I didu2019nt work in HCM bu