CIF Ques Stuck in READY State on R3 Inbound for no Reason

Hi,
Question pertains to CIF Processing and Ques waiting in READY State from R3 to SCM-APO for no Apparent Reason.
Our Orders (PRs, STOs) generated via APO are being sent to R3 correctly, getting generated in R/3 but not coming back with the PR/STO Number back to APO.  Stuck in R3 inbound.
I've read a couple of articles on SDN on this.
Apart from the Standard CIF Configuration, and Settings in SMQR and SMQS (Qin & Qout Scheduler) for retrying Stuck Ques to be processed, is there anything else that can be looked at ?  Any Consulting Notes on this Topic ?
SCM-APO version 4.0 on latest Support Pack.
R3 4.6c and Plugin compatible. Not on most latest SP.
Thanks,
Ambrish Mathur

Hai,
Yes our Problem is resolved now.  The Solution was Technical in Nature and not functional  (as you can logically expect).
Assuming your Basis Team has properly setup the QIN and QOUT Scheduler on BOTH sides (APO and R3) ...
Also in QIN and QOUT the Time to RETRY a Que is set to something low as every 5 minutes and retry 10 times. 
(However this was not the main issue for us).
We found in our Case since the R3's Support Pack and Plug-In were not upgraded due to many depandancies to other Projects ... we found that the QRFC Versions on the R3 side were a few sub versions behind the APO QRFC Version since APO was on Latest Support Pack on SCM 4.
The BASIS Group downloaded and Installed the Latest QRFC version and the Problem was subsequently resolved. 
QRFC Version can be found in Transaction SMQ1 / SMQ2 -> Menu Path Information -> Version.
We are now at QRFC ver. 6.30.060, Supplement # 11.
Hope you find this usefull and it resolves your issue.  Do revert back if it does.
Regards,
Ambrish Mathur

Similar Messages

  • Risk Analysis Batch Job Stuck in Ready State

    Hi,
    I am not able to schedule  Risk Analysis Batch job in RAR.The job is getting stuck on READY state(for unlimited period) and not performing any actions.
    Nothing is displayed under job history or job logs with job ID.I have check background job demaon ,connectors and other miscell. options but not abl to find any clue.
    Even i am executing risk analysis for single user,it's not happening.
    Rgds,
    Mukesh

    For your problem, of job not getting schedule....it seems Deamon is not running.
    To delete status of job which are in hung status
    change VIRSA_CC_SCHEDULER job id should with status five will show job aborted.
    are you using connection type 'Adaptive RFC', don't use it, use SAP JCO.
    and restart your GRC box.
    Regards,
    Surpreet
    please do check backend system, for VIRSANH is installed or not.
    Edited by: Surpreet Singh Bal on Jan 28, 2011 10:32 AM

  • CIF Queue gettign stuck in 'ready' state

    Hi,
    I am facing a problem in using CIF functionality while transferrting Master data and transaction data from R/3 to APO.
    I have selected inbound queue processing for APO system and have also registered the queue in APO.
    But when I actually CIF any data, it gets stuck in the outbound queue of the R/3 system in 'Ready' state.
    Then I always need to manually activate the queue in SMQ1 to transfer the data to APO.
    The same thing happens during online transfer of transaction data.
    I want the data to be transferred automatically rather tahn activating the CIF queue each time.
    Please help.
    Thanks,
    Ameet

    Hi Ameet
    Please following setting.
    1. User setting
    -R/3 T-CD CFC2 (For debuf Area, please check whether your user has "R" or not)
    -APO T-CD /SAPAPO/C4 (For debug, please check whether your user has "R : debug on" or not)
    2. Queue scheduler setting in both system
    Inbound scheduler
    T-CD SMQR please make sure whether you have inbound scheduler setting.
    If there is not, you can create it by hitting Registration button.
    "Registration" => Queue Name CF*, and lest of it can be leave as default.
    Outbound scheduler
    T-CD SMQS
    Please make sure you have entry to your SCM system.
    Type should be "R". If it is not R, outbound scheduler is not activated.
    So please select entry and and hit registration button again. Then type will change
    to "R".
    I hope this help your problem.
    Keiji Mishima

  • Why are messages not dequeuing and stuck in the ready state?

    Messages are successfully enqueueing but not dequeuing and are stuck in ready state (STATE = 0).  The ENQ_TIME is 5 hours ahead of system time.  In one environment, AQ is working (10g 10.2.0.4.0).  In the other environment, it is not working (11g 11.2.0.3.0).
    I just did the following:
    1. Purged queue table
    2. Stopped queues
    3. Dropped queues
    4. Dropped queue table
    5. Created queue table
    6. Created queues
    7. Started queues
    I tested once and a record was inserted in the queue table:
    MSGID      <msgid>
    CORRID     
    PRIORITY      1
    STATE      0
    DELAY     
    EXPIRATION     
    TIME_MANAGER_INFO     
    LOCAL_ORDER_NO      0
    CHAIN_NO      0
    CSCN      0
    DSCN      0
    ENQ_TIME      12/23/2014 4:33:43.338902 PM
    ENQ_UID      <enq_uid>
    ENQ_TID      <enq_tid>
    DEQ_TIME     
    DEQ_UID     
    DEQ_TID     
    RETRY_COUNT      0
    EXCEPTION_QSCHEMA     
    EXCEPTION_QUEUE     
    STEP_NO      0
    RECIPIENT_KEY      0
    DEQUEUE_MSGID     
    SENDER_NAME     
    SENDER_ADDRESS     
    SENDER_PROTOCOL     
    USER_DATA      <user_data>
    USER_PROP     
    Notice the RETRY_COUNT is 0.  The ENQ_TIME is 5 hours ahead.  In the procedures to enqueue and dequeue, there are no errors.
    Following is the plsql to enqueue:
    CREATE OR REPLACE PACKAGE BODY
    pkg_2
    AS
        FUNCTION queue_create_thing ( <parameters> )
            RETURN NUMBER
        IS
            enqueue_options     dbms_aq.enqueue_options_t;
            message_properties  dbms_aq.message_properties_t;
            message_handle      RAW(16);
            v_message           msg_type;
            v_thing_id          things.id%TYPE;
        BEGIN
            v_message := msg_type( <parameters> );
            dbms_aq.enqueue(queue_name => '<queue name>',
                            enqueue_options => enqueue_options,
                            message_properties => message_properties,
                            payload => v_message,
                            msgid => message_handle);
            RETURN v_thing_id;
        EXCEPTION
            WHEN OTHERS
            THEN
               errpkg.record_and_stop (SQLCODE);
        END queue_create_thing;
        PROCEDURE queue_delete_thing( <parameters> )
        IS
            enqueue_options     dbms_aq.enqueue_options_t;
            message_properties  dbms_aq.message_properties_t;
            message_handle      RAW(16);
            v_message           msg_type;
        BEGIN
            v_message := msg_type( <parameters> );
            dbms_aq.enqueue(queue_name => '<queue name>',
                            enqueue_options => enqueue_options,
                            message_properties => message_properties,
                            payload => v_message,
                            msgid => message_handle);
        END;
    END pkg_2;
    Following is the code to dequeue:
    CREATE OR REPLACE PACKAGE BODY
    pkg_1
    AS 
        PROCEDURE create_thing ( context IN RAW,
                                    reginfo IN sys.aq$_reg_info,
                                    descr IN sys.aq$_descriptor,
                                    payload IN RAW,
                                    payloadl IN NUMBER )
        IS 
            dequeue_options dbms_aq.dequeue_options_t;
            message_properties dbms_aq.message_properties_t;
            message_handle RAW(16);
            message msg_type;
        BEGIN
            dequeue_options.msgid := descr.msg_id;
            dequeue_options.consumer_name := descr.consumer_name;
            DBMS_AQ.DEQUEUE(queue_name => descr.queue_name,
                            dequeue_options => dequeue_options,
                            message_properties => message_properties,
                            payload => message,
                            msgid => message_handle);
            pkg_2.create_thing( p_thing_id => message.thing_id );
            UPDATE table t
               SET creation_complete = 1
             WHERE id = message.thing_id;
            COMMIT;
        EXCEPTION
            WHEN OTHERS
            THEN
                ROLLBACK;
                plog.error(SQLERRM);
                plog.full_call_stack;
        END create_thing;
        PROCEDURE delete_thing ( context IN RAW,
                                    reginfo IN sys.aq$_reg_info,
                                    descr IN sys.aq$_descriptor,
                                    payload IN RAW,
                                    payloadl IN NUMBER )
        IS 
            dequeue_options dbms_aq.dequeue_options_t;
            message_properties dbms_aq.message_properties_t;
            message_handle RAW(16);
            message msg_type;
        BEGIN
            dequeue_options.msgid := descr.msg_id;
            dequeue_options.consumer_name := descr.consumer_name;
            DBMS_AQ.DEQUEUE(queue_name => descr.queue_name,
                            dequeue_options => dequeue_options,
                            message_properties => message_properties,
                            payload => message,
                            msgid => message_handle);
            pkg_2.delete_thing( p_thing_id => message.thing_id );
            COMMIT;
        EXCEPTION
            WHEN OTHERS
            THEN
                ROLLBACK;
                plog.error(SQLERRM);
                plog.full_call_stack;
        END delete_thing;   
    END pkg_1;

    Following is the code to create the queue:
    BEGIN
      SYS.DBMS_AQADM.STOP_QUEUE ( QUEUE_NAME => '<queue name>');
      SYS.DBMS_AQADM.DROP_QUEUE ( QUEUE_NAME => '<queue name>');
    END;
    BEGIN
      SYS.DBMS_AQADM.CREATE_QUEUE
        QUEUE_NAME          =>   '<queue name>'
       ,QUEUE_TABLE         =>   '<queue table>'
       ,QUEUE_TYPE          =>   SYS.DBMS_AQADM.NORMAL_QUEUE
       ,MAX_RETRIES         =>   5
       ,RETRY_DELAY         =>   0
       ,RETENTION_TIME      =>   0
       ,COMMENT             =>   'Queue for processing creation of things'
    END;
    BEGIN
      SYS.DBMS_AQADM.START_QUEUE
        QUEUE_NAME => '<queue name>'
       ,ENQUEUE => TRUE
       ,DEQUEUE => TRUE
    END;

  • Solaris 8 branded zone not booting after server reboot hangs at ready state

    Hi,
    For ipchange/hostname change we rebooted the physical server...once rebooting the Solaris brand 8 zone stucks at ready state.
    I have run the truss with zoneadm in the log process sleep and wait
    Will post the log soon..any help to troubleshoot the issue
    Both global zone and Ng zone having same hostid..
    dmesg::
    Apr 30 13:08:50 xyz zoneadmd[992]: [ID 702911 daemon.error] [zone 'abc'] WARNING: console /devices//pseudo/zconsnex@1/zcons@0 found, but it could not be removed.: I/O error
    bash-3.00# ps -ef|grep -i abc
    root 1441 1429 0 13:10:56 ? 0:00 /bin/ksh -p /usr/lib/brand/solaris8/s8_boot abc /abc
    root 1429 1 0 13:10:55 ? 0:00 zoneadmd -z abc
    root 1427 1397 0 13:10:54 pts/3 0:00 zoneadm -z abc boot -f -s
    root 1542 1441 0 13:10:56 ? 0:00 /bin/ksh -p /usr/lib/brand/solaris8/s8_boot abc /abc
    zoneadm list -cv
    2 abc ready /abc solaris8 shared
    Thanks
    Edited by: muvvas on Apr 30, 2012 2:25 PM

    moved the solaris 8 branded zone to other server.their its working fine.sorry for late reply.

  • Agents in not ready state too long drops calls.

    Using CRS 4.0(3) with agent desktop.
    Issue is that when agents go to lunch they go into the not-ready state until they come back from lunch. Upon coming back from lunch, they proceed to go ready and then they start dropping calls as they come into the que.
    If you log out completely and close the application when you leave for lunch versus going not ready for an extended period of time the issue does not appear when you log back in.
    Any ideas?

    Update on this. I looked at the control center and saw that my server was in partial service. I verified the service was the JTAPI subsystem.
    I ran the JTAPI update client tool from this link
    http://www.cisco.com/en/US/products/sw/custcosw/ps1846/products_tech_note09186a00801c8316.shtml
    and saw the version of JTAPI between the CCM and the IPCC server were off. I updated both IPCC servers to the same version of call manager and will now hold to do some testing.

  • Ucce cad agent stuck in reserved state

    Dears,
    It is a UCCE system with CVP and CAD version 9.0
    The issue is that when the call is to be delivered to an agent, the CAD is stuck in the reserved state for around 20 seconds then it goes to the Ready state and the caller gets disconnected since I'm not configuring a queue yet.
    Has someone faced a similar issue?
    Your help is greatly appreciated.
    Thank you in advance.
    Lara

    Actually it turned out to be a call manager issue. The partition of the agent's extension was misconfigured.
    Regards.

  • VM got stuck in "stopping" state, and cannot be stopped

    Dear all,
    I am using Oracle VM 3.2.2.
    One of my VM got stuck in "stopping" state, and cannot be stopped.
    How can I troubleshoot this problem...

    Q: Is the VM still running, i.e. can you ssh to the VM?
    Q: Find the server where the VM is running, and restart the ovs-agent, i.e. "service ovs-agent restart". Did this help, or is the agent crashed, any zombies?
    Possible root cause: These type of errors are typically ovs-agent bugs. First update oracle vm manager to the 3.2.4 release, not 3.2.6. Next update the dom0s to 3.2.4, not 3.2.6. You may need to setup a ULN 3.2.4 yum repo to update the dom0s. As you can see in these forms, 3.2.6 is may not ready for prime time, stick with 3.2.4, is stable.

  • UCCx 8 Callback when agent is in Ready State

    To all,
    I am stuck.  Here is the basic logic for my callback caller script when agent is in Ready state.  After the Get Digit String step, what should I do to terminate the call and keep the script running?
    Select Resource (--Triggering Contct--from CSQ)
              Connected
              Queued
                   Menu
                        CallbackNumber = Get Digit String (--Triggering Contact--)
                                  succesful
                                       If(stat_ReadyResources_OF_CSQ > 0) then
                                                True
                                                   outcallToCaller = Place Call (to callbackNumber)
                                                          successful
                                                                 Call Redirect (--Triggering Contact--to Overflow Q)
    * OverflowQ is another script.
    Thanks,
    Nelson

    Set the contact as still being active, even though no one is there.  You will not be able to play any prompts or anything to that contact though, that will result in errors, unless you catch the error.  You can of course redirect playback to the contact that you call.
    ErrorReason = Get Trigger Info (Aborting Reason)
    On Exception (ContactInactiveException) Goto Begin
    Delay 2 sec
    Accept(--Triggering Contact--)
    Delay 4 sec     <---Hang up before these 4 seconds are done.
    Begin:
    Clear Exception (ContactInactiveException)
    Set Contact Info (--Triggering Contact--)
         Language: strLanguage  (I have a Language varible named this with the value L[en_US] )
         Handled:
         Session: strSession (I have a Session varible named this with the value null )
    I edited this to add the delay and accept steps, so you would know the proper order for them to be in.  I have a script that calls customers and asks if it is ok to fax them documents to that line in the next 5 minutes.  So they know to let the call go to their fax.

  • When the agent is in ready state, call has to go to voice mail incase the call is not answered

    I need to create a script for  helpdesk setup.  When call hits the CSQ, if agents are free the call will get connect to an agent, else it will be queued. Till here i am clear. The step where i have stuck is , when the  agent is in ready state and when the call gets connect to that agent, due to some reasons if agent, do not answer the call, it has to get transfer to voice mail .  Can someone help me with this please... We are using UCCX 8.5...

    Not sure the logic that Anthony used in some of the prior solutions but try following Logic in the ScreenShot and let me know how it works out for you..
    As Jeff mentioned (and I overlooked) If there is a Ring No Answer and there is another Agent Ready then the first Step in the Failed Output Branch will not Evaluate..the Script Logic takes the "caller" back to the Select RSRC Step..so I'm doing an IF check to ensure that wasn't the case..and if it was then I will Dequeue the call and perform the necessary transfer..(after the Successful Transfer you probably should Goto a Terminate Step)..Cheers

  • Adobe Media Encoder project status stuck on ready - won't encode

    I've tried about a million things. Re-installation of Encoder, Premiere and Quicktime, clearing and relocating media cache, changing file export type... Nothing. When I click the green start button, nothing happens. Nothing starts to encode. My files are just stuck on ready. Help plz.
    Oh... and I've got a deadline on Feb 1st to top it all off! Please help!

    Could you check a folder or file called "Presets" under a user Documents > Adobe > Adobe Media Encoder > 8.0?  If this is somehow corrupted, please try deleting this and relaunch AME.

  • Workflow stuck in starting state after applying SharePoint 2010 CU December 2012

    I have custom visual studio workflow which are associated with Custom content type. workflow gets triggered automatically when a file is uploaded to SharePoint. Everything was working fine till when i apply the following CU
    http://blogs.msdn.com/b/joerg_sinemus/archive/2012/12/27/sharepoint-2010-and-december-2012-cu.aspx
    After applying this my workflow get stuck in "Starting" state.
    No error were logged in 14 hive logs.
    Thanks in Advance!

    It took me a while but I came up with a work around.  There is a PowerShell script below that can be used to trigger the workflow.  Hopefully this will hold all of us over until the official fix arrives.
    First remove the auto start on change or new from the affected workflow
    Edit the script below to match your environment
    Add the script to Windows task scheduler with the PowerShell.exe in the command line
    This assumes PowerShell.exe is in the path
    Then add the full path and script name in the add arguements text box
    Script:
    #The purpose of this script is to start the SPD workflow with the windows task scheduler for a trigger
    #This should avoid the check in-out issue caused by the December 2012 SP CU patch
    #This needs to be run on an account with membership in the farm administration group for SharePoint and Shell in SQL
    #You can use a find and replace to replace the server and other names with your actual names
    #There are no status messages being used since this will be a scheduled task in the Windows task scheduler
    #Add SharePoint modules and create variable space
    add-pssnapin microsoft.sharepoint.powershell
    start-spassignment -global
    #Open the web site, list and the workflow
    $site=get-spsite %site url%"
    $web=get-spweb %Web url%
    #Open the %affected% library or list and workflow association
    $%affected%=$web.getlist("%affected%")
    $manager=$site.workflowmanager
    $culture=[system.globalization.cultureinfo]::currentculture
    $wfname="%affected workflow name"
    $association=$%affected%.workflowassociations.getassociationbyname($wfname,$culture)
    $data=$association.associationdata
    $wfrunoption=[microsoft.sharepoint.workflow.spworkflowrunoptions]::synchronous
    #Start workflow
    foreach ($item in $%affected%.items) {
    $site.workflowmanager.startworkflow($item,$association,$data,$wfrunoption)
    stop-spassignment -global

  • Agent get stucked in Reserved State

    HI CUCCE gurus,
    Need assistance on this issue. In our remote office, our Sales Team has a linegroup setup, the Sales extensions are part of the linegroup and at the same time its their ACD line when they logged in to Cisco Agent Desktop.
    The issue is, when they got a call from the linegroup their CAD state change to "Reserved" and it stuck from that state and nothing they can do to change the state but to logoff, close the apps and log back in.
    I enabled debug on once of the Sales CAD (see attached output).
    Any troubleshooting tips that you can advise or detailed steps to check from our system.
    Our CAD is 7.X
    Our CUCCE is 7.X
    Our CUCM 7.X
    Thank you.

    Hi Jhun,
    Agent stuck in reserved state it means, the ICM has reserved the agent, but the call is not getting delivered to the agent extension.
    If you are using SIP trunk, you would probably need to check the CSS and Partitions over the trunk. Also, any recent changes made on the CSS of the SIP trunk you would need to reset the SIP trunk.
    The CSS on the SIP trunk should contain the partition of the phone.
    Also, you would need to check on the Agent targetting rule in the config manager of the ICM. The agent extensions should be added to the Agent targetting rule
    Hope this helps!!!
    Cheers,
    Dass
    Please rate useful posts

  • Messages in Ready state are not dequeuing.

    Messages are being left in a "Ready" state. Everything was working fine in 10g. However there was an upgrade to 11g and now queues have stop working. It is a multiconsumer queue with one subscriber. I can manually dequeue messages but the subscriber call back does not seem to function.
    -- Create and start queues and queue_table
    BEGIN
         DBMS_AQADM.CREATE_QUEUE_TABLE (
              queue_table => 'muse.m_en_queue_table',
              queue_payload_type => 'muse.eu_logid_type',
              multiple_consumers => TRUE
         DBMS_AQADM.CREATE_QUEUE (
              queue_name => 'xxxxx.m_en_queue',
              queue_table => 'xxxxx.m_en_queue_table'
         DBMS_AQADM.START_QUEUE('xxxxx.m_en_queue');
         --Start Default Exception Queue
         DBMS_AQADM.START_QUEUE('xxxxx.AQ$_M_EN_QUEUE_TABLE_E', enqueue => FALSE, dequeue => TRUE);
         DBMS_AQADM.ALTER_QUEUE (
              queue_name => 'xxxxx.m_en_queue',
              max_retries => 2,
    retry_delay => 10);
    END;
    --Procedure to dequeue messages and try to resend to the notification service
    CREATE OR REPLACE PROCEDURE muse.m_en_queue_callback_procedure(
         context RAW,
    reginfo SYS.AQ$_REG_INFO,
    descr SYS.AQ$_DESCRIPTOR,
    payload RAW,
    payloadl NUMBER
    ) AS
         dequeue_options      dbms_aq.dequeue_options_t;
         message_properties      dbms_aq.message_properties_t;
         message_handle           RAW(16);
         o_payload      muse.eu_logid_type;
         change_rec           muse.eocd_update%rowtype;
    BEGIN
    dequeue_options.WAIT := DBMS_AQ.no_wait;
    dequeue_options.msgid := descr.msg_id;
    dequeue_options.consumer_name := descr.consumer_name;
    DBMS_AQ.DEQUEUE(
    queue_name => descr.queue_name,
    dequeue_options => dequeue_options,
    message_properties => message_properties,
    payload => o_payload,
    msgid => message_handle
    END;
    --Subscribed to queue
    BEGIN
    DBMS_AQADM.ADD_SUBSCRIBER (
    queue_name => 'xxxxx.m_en_queue',
    subscriber => SYS.AQ$_AGENT(
    'muse_en_queue_subscriber',
    NULL,
    NULL )
    DBMS_AQ.REGISTER (
    SYS.AQ$_REG_INFO_LIST(
    SYS.AQ$_REG_INFO(
    'xxxxx.M_EN_QUEUE:MUSE_EN_QUEUE_SUBSCRIBER',
    DBMS_AQ.NAMESPACE_AQ,
    'plsql://xxxxx.m_en_queue_callback_procedure',
    HEXTORAW('FF')
    1
    END;
    /

    Hi,
    What version specifically of 11g did you upgrade to?
    Did you review the following MOS notes?
    Event Monitor Process: Architecture and Known Issues (Doc ID 105067.1)
    AQ PL/SQL Notification No Longer Work Due To "register_driver()" Jobs Not Terminating (Doc ID 331372.1)
    Thanks
    Paul

  • Jobs are in ready state

    Hi,
    Kernel Release-701
    OS-Linux
    Patch level-117
    dev_disp
    ERROR => DpWPCheck: W55 (pid 7299) died (severity=0, status=11) [dpxxdisp.c   15884]
    child (pid=7299) killed with signal 11
    ERROR => DpWPCheck: W56 (pid 7523) died (severity=0, status=11) [dpxxdisp.c   15884]
    child (pid=7523) killed with signal 11
    ERROR => DpWPCheck: W57 (pid 23473) died (severity=0, status=11) [dpxxdisp.c   15884]
    child (pid=23473) killed with signal 11
    ERROR => DpWPCheck: W58 (pid 7526) died (severity=0, status=11) [dpxxdisp.c   15884]
    child (pid=7526) killed with signal 11
    ERROR => DpWPCheck: W60 (pid 7528) died (severity=0, status=11) [dpxxdisp.c   15884]
    child (pid=7528) killed with signal 11
    SM21 logs
    08:00:05 BTC  055 000 SAPSYS                  EC  F Failed to create log for job /
    08:00:05 BTC  055 000 SAPSYS                  EA  Y Failed to read status entry for job
    08:00:05 BTC  055 000 SAPSYS                  EB  C > Job
    08:00:05 BTC  055 000 SAPSYS                  F2  0 Calling program reports invalid handle for TemSe object (magic==X'NULL-ptr')
    08:00:05 BTC  057 000 SAPSYS                  EC  F Failed to create log for job /
    08:00:05 BTC  057 000 SAPSYS                  EA  Y Failed to read status entry for job
    08:00:05 BTC  057 000 SAPSYS                  EB  C > Job
    08:00:05 BTC  057 000 SAPSYS                  F2  0 Calling program reports invalid handle for TemSe object (magic==X'NULL-ptr')
    08:00:06 BTC  060 000 SAPSYS                  EC  F Failed to create log for job /
    08:00:06 BTC  060 000 SAPSYS                  EA  Y Failed to read status entry for job
    08:00:06 BTC  060 000 SAPSYS                  EB  C > Job
    08:00:06 BTC  060 000 SAPSYS                  F2  0 Calling program reports invalid handle for TemSe object (magic==X'NULL-ptr')
    08:00:06 BTC  056 000 SAPSYS                  EC  F Failed to create log for job /
    08:00:06 BTC  056 000 SAPSYS                  EA  Y Failed to read status entry for job
    08:00:06 BTC  056 000 SAPSYS                  EB  C > Job
    08:00:06 BTC  056 000 SAPSYS                  F2  0 Calling program reports invalid handle for TemSe object (magic==X'NULL-ptr')
    08:00:06 BTC  058 000 SAPSYS                  EC  F Failed to create log for job /
    08:00:06 BTC  058 000 SAPSYS                  EA  Y Failed to read status entry for job
    Some jobs are going in ready state
    If i check them then job execute successfully.

    Hi,
    As per my personnel experience, there are lot of errors in kernel support pack 117 of 701 release. Try to use patch level 111 which is good.
    Also, run TEMSE consistency check to check any inconsistency.
    Thanks
    Sunny

Maybe you are looking for

  • EBP and SUS in same client

    Hi, If we habve EBP and SUS in same client do we need XI for connecting the two systems. Thanks, Manu

  • Adobe Form Translation error Omitted Objects (Could not be Converted)

    Hi, I am new to this forum. I have an issue with Adobe form Translation. Through SE63 (or through the form translation itself) , whenever I try to translate into any language it gives me an error "  Omitted Objects (Could not be Converted)". And the

  • JSpinner

    Hi, I have a JSpinner placed in my Jframe displaying the current date and time.I want to write a Sql query to display data according to the from date and To date displayed using JSPinner.But the date format in my oracle database is different from wha

  • Transferring RAW photos from an iTouch back to my Mac

    My iMac recently bogged out on me. I have no idea what happened. Nonetheless everything was wiped clean from it. Luckily, I was able to salvage some of my stuff (music, videos etc) from my iTouch using TouchCopy. However, my iTouch has about 800 or s

  • Computer crashes during export

    Adobe Premiere CS6 OSX 10.8.3 3.4 GHz Intel Core i7 16 GB memory I am exporting a video with around 500 assets. Mostly photos, some HD video. The export crashes the whole computer at 41 percent. I moved it to a different identical machine and it cras