TemSe consistense check - Fault datarows in TST03

Hello Sappies - I get the error -
SPOOL0000020713 1 Incorrect number of data lines in the TST03.
In the TST03 is not apparent where the error is. What can I do, to
Fix bugs.
regards
Michael

Hello Michael,
this error message means that something has hindered the spool to be correctly recorded both in table TST01 (header table) and TST03 (contents table), and now there is an inconsistency between these tables.
This can be checked in the following way:
go to transaction SE16
select table TST01
enter SPOOL0000621370 for DNAME, then Execute
in the attributes of this spool check "DROWS". This shows how many lines should be in table TST03
select table TST03 in transaction SE16
enter SPOOL0000020713 for DNAME, then Execute
you will see several lines. In this case the number of lines will not be equal to the DROWS value of TST01, thus the inconsistency exists.
Unfortunately the missing data can not be restored, as the spooler can not "guess" what kind of information is missing. The only possiblity in this case is to delete the inconsistency. Report RSPO1043 can be used for this purpose, as this Report handles spool inconsistency (although it needs at least 3 runs to recognize then delete genuine inconsistency - this value can be set in parameter "Delete After ..... Runs" in RSPO1043).
Regards,
Laszlo

Similar Messages

  • Check Fault

    Hello,
    I'm new in PL/SQL XML programming. After researchs and test, I have not been able to get an XML soap fault to be returned as message.
    I have a function to extract the Node values of an XML as the following:
    Function extractNode (xmltext VARCHAR2, cname VARCHAR2) RETURN VARCHAR2 IS
    v_parser xmlparser.parser;
    v_doc xmldom.domdocument;
    n xmldom.domnode;
    nnm xmldom.DOMNamedNodeMap;
    len number;
    nl xmldom.DOMNodeList;
    v_text VARCHAR2(32767);
    v_name varachr2(100);
    BEGIN
    v_parser := xmlparser.newParser;
    xmlparser.parseBuffer(v_parser, xmltext);
    v_doc := xmlparser.getDocument(v_parser);
    nl := xmldom.getElementsByTagName(v_doc, '*');
    len := xmldom.getLength(nl);
    For i in -..len-1 loop
    n := xmldom.item(nl, i);
    v_name := xmldom.getNodeName(n);
    n := xmldom.getFirstchild(n);
    IF NOT xmlDOM.IsNull(n) THEN
    if upper(v_name) = upper(cname) THEN
    v_text := v_text || ' ' || xmldom.getNodeValue(n);
    end if;
    END LOOP;
    xmlparser.freeParse(v_parser);
    xmldom.freeDocument(v_doc);
    return v_text;
    END;
    I need to know how to check if the XML is returning a soap:Fault, fault_code, fault_factor and fault_string?
    I need to return a message displaying the fault_code and the fault_string.
    Thanks in advance for your help.

    Hello Michael,
    this error message means that something has hindered the spool to be correctly recorded both in table TST01 (header table) and TST03 (contents table), and now there is an inconsistency between these tables.
    This can be checked in the following way:
    go to transaction SE16
    select table TST01
    enter SPOOL0000621370 for DNAME, then Execute
    in the attributes of this spool check "DROWS". This shows how many lines should be in table TST03
    select table TST03 in transaction SE16
    enter SPOOL0000020713 for DNAME, then Execute
    you will see several lines. In this case the number of lines will not be equal to the DROWS value of TST01, thus the inconsistency exists.
    Unfortunately the missing data can not be restored, as the spooler can not "guess" what kind of information is missing. The only possiblity in this case is to delete the inconsistency. Report RSPO1043 can be used for this purpose, as this Report handles spool inconsistency (although it needs at least 3 runs to recognize then delete genuine inconsistency - this value can be set in parameter "Delete After ..... Runs" in RSPO1043).
    Regards,
    Laszlo

  • Memory allocation much more than size of table TST03

    Hi all,
    I found a strange situation, in our system, memory allocation in SP12 shows 2GB is used in DB side, but when I go to transaction DB02 to check the table TST03, it only has 50MB. Our parameter rspo/store_location is already set to 'db'.
    System environment is: ECC6 running on AIX 53/Oracle 10g, 64bit.
    In my opinion, temse data will be stored in TST03, so I think TST03 size should be larger than memory allocation result in SP12.
    Could you please help me about this?
    Thanks and regards

    Hi Justin
    Nice question, really made me think. I just checked, in the newer SAP versions, TST03 has a BLOB column, in the older versions there was a LONG RAW col.
    I bet you have the BLOB (ECC6), you can check in sqlplus:
    [code]SQL> desc sapsr3.tst03
    Name                                      Null?    Type
    DCLIENT                                   NOT NULL VARCHAR2(9)
    DNAME                                     NOT NULL VARCHAR2(60)
    DPART                                     NOT NULL NUMBER(5)
    DROWNO                                    NOT NULL NUMBER(10)
    DDATALEN                                  NOT NULL NUMBER(5)
    DCONTENT                                           BLOB[/code]
    A lob column is stored in a seperate segment:
    [code]SQL> select SEGMENT_NAME from dba_lobs where table_name = 'TST03';
    SEGMENT_NAME
    SYS_LOB0000031954C00006$$[/code]
    Just replace your segment_name to get the size, you can enter the segment in DB02 too:
    [code]SQL> select BYTES/1024/1024 "SIZE_MB" from dba_segments where segment_name = 'SYS_LOB0000031954C00006$$';
       SIZE_MB
            12[/code]
    Regards
    Michael

  • Temse io error while trying to print

    Whenever i try to print a document it gives " temse io "error.
    can any one help me know why this error and resolution .
    Regards,
    Sajith M.

    Hi,
    look  like inconsistency in temse object
    check
    Note 48400 - Reorganization of TemSe and Spool
    Note 16875 - TemSe objects do not match TemSe files
    regards,
    kaushal

  • Handling soap fault messages

    Hi All,
    I had webservice and am able to pass geneate proper response based on client request but when they are making invalid request i.e
    removing some tag or making syntax related mistake, in response i'm getting exception related to <faultcode>soap:Client</faultcode>.
    I check my logs and it seems that the request is not coming to my service. The exception/response seems to generated by web server.Instead of webserver, i want to pass my customised exception for eg."invalid request".Can I do it?? If yes, how can i do it?
    Also, this webservice is being consumed by lotsa users, so if possible i don't want to do code change in existing services.If simply by setting some configuration or writing a wrapper might do.
    Really appreciated if someone reply with proper answer.
    Thanks in advance.
    Cheers,
    Cha

    you can use
    PROCEDURE p_check_fault(p_resp IN OUT NOCOPY response) as
    fault_node xmltype;
    fault_code varchar2(256);
    fault_string varchar2(32767);
    begin
    DBMS_OUTPUT.PUT_LINE('Checking fault string...');
    fault_node := p_resp.doc.extract('/env:fault',
    'xmlns:env="http://schemas.xmlsoap.org/soap/envelope/');
    if (fault_node is not null) then
    DBMS_OUTPUT.PUT_LINE('Fault!!!...');
    fault_code := fault_node.extract('/env:fault/faultcode/child::text()',
    'xmlns:env="http://schemas.xmlsoap.org/soap/envelope/').getstringval();
    fault_string := fault_node.extract('/env:fault/faultstring/child::text()',
    'xmlns:env="http://schemas.xmlsoap.org/soap/envelope/').getstringval();
    DBMS_OUTPUT.PUT_LINE('CODE:' || fault_code || '.Msj:' || fault_string);
    raise_application_error(-20993, 'Error: '
    || fault_code || ' - ' || fault_string);
    end if;
    end p_check_fault;

  • Temse files not deleted

    Hi all,
    After housekeeping of job logs via report RSBTCDEL2, the job logs are deleted in SAP but temse files in unix are not deleted.  Temse consistency check does not indicate any problem, what could be the cause?

    Hi,
    Please check this thread
    Missing job log
    Regards,
    Subodh

  • BT clear fault reports when there is obviously sti...

    I have noticed in My BT that my fault reports are being cleared (resolved), or the notice below is displayed, when there is obviously still a fault.  Clear requestWe think your fault is now fixed
     Your fault should now be fixedThe problem with your broadband should now be fixed. If this is the case then please confirm by clicking the button below. If you are still having problems then please call 0800 111 4567
    I have speed issues, related to high noise margins and a low IP Profile, which affects my Broadband and BT Vision / iPlayer. It has been going on for months, sometimes ok most times not. It is now to the point that I have had extremely poor speeds since the beginning of June. I registered a fault, via e-mail, I was fed up with phoning the 0800 111 4567 number, about ten days ago. I communicated my stats to the people that where looking into the fault a couple of times and asked them to keep the file open.
    The fault is still there and I am still unable to use BT Vision 'on demand' or iPlayer.
    Has anybody else had this experience

    I started a thread in BT Vision, which basically show all my issues.
    http://community.bt.com/t5/BT-Vision/Weird-and-Wonderfull-BB-Vision-Experts-and-Mods-Advice-Required...
    Yes from advice from the forum, helpdesk, and others I have done all that I can. Stats and speedtester results are shown on the above.
    From comments on the forum I know that speed and profile issues can take 3 to 5 days or even up to 10 to correct. But when the signal keeps dropping it is always back to square one. So I check fault tracking every couple of days to see if there is any progress.
    I can understand that BT want to keep fault reports to a minimum, what I don't understand, when they have sophisticated equipment, that they can consider a fault resolved when it obviously is not.
    Just wondered if anybody else has experienced this.
    The mods are now looking in to my problem, I just hope they don't give up as it appears everybody else in BT have.

  • Performance issues -- related to printing

    Hi All,
    I am haviing production system performance issues related to printing. endusers are telling the printing is slow for almost printers. We are having more that 40 to 50 printers in landscape.
    As per my primary investigation I didnt find any issues in TSP01 & TSP02 tables. But I can see the table TST01 and TST03 table having many number of entries (more that lakh). I dont have idead about this table. Is ther eany thing related to this table where the print causes slowness or any other factors also makes this printing issue .. Please advice ..
    thanks in advance

    Hai,
    Check the below link...
    http://help.sap.com/saphelp_nw70/helpdata/en/c1/1cca3bdcd73743e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/fc/04ca3bb6f8c21de10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/86/1ccb3b560f194ce10000000a114084/content.htm
    TemSe cannot administer objects that require more than two gigabytes of storage space, regardless of whether the objects are stored in the database or in the file system. Spool requests of a size greater than two gigabytes must therefore be split into several smaller requests.
    It is enough if you perform the regular background jobs and Temse consistency checks for the tables.
    This will help in controlling the capacity problems.
    If you change the profile parameter rspo/store_location parameter value to 'G' this will make the performance better. The disadvantages are TemSe data must be backed up and restored separately from the database using operating system tools, In the event of problems, it can be difficult to restore consistency between the data held in files and the TemSeu2019s object management in the database. Also you have take care of the Hard disk requirements because in some cases, spool data may occupy several hundred megabytes of disk storage. If you use the G option, you must ensure that enough free disk space is available for spool data.
    Regards,
    Yoganand.V

  • In RZ20 Spool Numbers showing obsolete value

    Hello All,
    In RZ20, we are not able to see updated data of spool numbers , its showing obsolete value.
    We are facing problems, due to spool server issues.
    We cleared all old spool jobs.
    SQL queries are executing for long duration on Table TST03 and TSP01.
    Kindly suggest for solving it.
    Regards,
    Sujit Takale

    Run a TEMSE consistency check and delete inconsistencies.
    Regards
    Juan

  • New lows of customer service by BT / Openreach.

    Sequence of events:
    1. Moved into new house. 
    2. Booked engineer visit (2 weeks wait). 
    3. Had to rebook engineer visit (another 2 weeks - my fault in this instance). 
    4. Took afternoon off work to meet engineer and provide access. 
    5. Engineer does not show up.
    6. Rung BT to ask if engineer definately coming - informed yes, engineer is definately coming.
    7. Received emails informing me phone and broadband accounts active. 
    8. Engineer does not show by end of day. 
    9. Another phone call to BT - "sometimes they activate remotely" - ok, so why no phone call that engineer visit not needed?
    10. Phone line and broadband checked - no dial tone, no broadband. 
    11. Checked fault online, informed if fault is within my property would have to pay £99 for engineer. Fault is "close to my property" according to the online fault tool.  
    12. Another phone call to BT - notified Openreach will be informed of the situation. 
    13. Accounts are currently active (and charging!) despite no service. 
    14. My "order" has been closed, despite having NOT been properly completed by BT, meaning that I am now tied into a contract and cannot go to another provider. Based on this intital poor showing by BT, if this were an option believe me, I would take it. 
    If BT 'knew' that an engineer visit was not required, why was I not informed? I took time away from work, for God's sake. 
    Not impressed at all. 

    Just an update as where I am on this for anyone who is interested.
    David the moderator got back to me and it was agreed that the charge would be removed from my bill. However it is four days later and the charge is still there. I appreciate all of David's help so far but unfortunately whatever system BT has in place to manage these issues isn't working. My bill is due in eight days time and if the charge is debited from my account then I will be taking BT to court.
    Interestingly enough, no explanation has been provided as to why this utter shambles has even occurred, but judging by this recent article and some of the responses, I am fairly certain this type of thing is not uncommon.
    http://www.theregister.co.uk/2013/03/12/bt_missed_​appointments/
    I have already commented my experience on the article but I think I will probably drop the author a note in case he wishes to do a follow up case study. There is clearly some interest in this.

  • 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

  • Lion has killed my MacBook Pro

    A terrible new operating system debut. Hours to download and a buggy install. Crashed during reboot and laptop reboots to a recovery screen and wont progress further. I now have bricked £1000 laptop that I cant use. Every day Apple you charge your customers more and give them less.

    Hi, I have been an Apple user for just over a year now, prior to that I remember well, the issues with Windows 95, 98, 98SE, 2000, Vista, XP and the latest Windows Saviour (NOT) Windows 7. Forgive me if the order is not quite correct!!
    With Mac I have only used   OS X "SL"  and have had few problems with it, apart from the windows equivalent of the dreaded blue screen which was down to a hard drive issue. Now it appears Apple are taking a leaf out of the Windows book and releasing software for the general user/buyer to quality check, fault find, refine, report and most important from an Apple point of view is PAY FOR.
    Why do all of the software writers feel the need to change thing just for the **** of it, when what they are changing is not broken in the first place, could it be to justify their salaries I wonder?
    The issues purchasers of Lion are having is enough for many to ask the question WHY? Is PC a better option, what about the new Google operating system?
    I am sure that a lot of prospective buyers of Lion will be like me and not bothering with it, until Apple drop support for SL.
    Come on Apple sort out the problems with your software and its compatibility issues !!

  • Attempt to unregister non-registered thread in the ContextProvider

    Hi,
    I am running the baseline graph on Endeca integrator 2.3. While running the baseline graph I am getting the following error
    INFO  [main] - ***  CloverETL framework/transformation graph, (c) 2002-2012 Javlin a.s, released under GNU Lesser General Public License  ***
    INFO  [main] - Running with CloverETL library version 3.2.1 build#63 compiled 04/01/2012 12:53:21
    INFO  [main] - Running on 4 CPU(s), OS Windows 7, architecture amd64, Java version 1.6.0_20, max available memory for JVM 1818624 KB
    INFO  [main] - Loading default properties from: defaultProperties
    INFO  [main] - Graph definition file: graph/Baseline.grf
    INFO  [main] - Graph revision: 1.127 Modified by: alsukuma Modified: Tue Jan 28 14:37:06 IST 2014
    INFO  [main] - Checking graph configuration...
    INFO  [main] - Graph configuration is valid.
    INFO  [main] - Graph initialization (Baseline)
    INFO  [main] - [Clover] Initializing phase: 0
    INFO  [main] - [Clover] phase: 0 initialized successfully.
    INFO  [main] - [Clover] Initializing phase: 1
    INFO  [main] - [Clover] phase: 1 initialized successfully.
    INFO  [main] - [Clover] Initializing phase: 2
    INFO  [main] - [Clover] phase: 2 initialized successfully.
    INFO  [main] - [Clover] Initializing phase: 3
    INFO  [main] - [Clover] phase: 3 initialized successfully.
    INFO  [main] - [Clover] Initializing phase: 4
    INFO  [main] - [Clover] phase: 4 initialized successfully.
    INFO  [main] - [Clover] Initializing phase: 5
    INFO  [main] - [Clover] phase: 5 initialized successfully.
    INFO  [main] - register MBean with name:org.jetel.graph.runtime:type=CLOVERJMX_1306871483270_0
    INFO  [WatchDog] - Starting up all nodes in phase [0]
    INFO  [WatchDog] - Successfully started all nodes in phase!
    INFO  [RUN_GRAPH1_0] - Running graph ./graph/admin/InitDataStore.grf in the same instance.
    INFO  [RUN_GRAPH1_0] - Checking graph configuration...
    INFO  [RUN_GRAPH1_0] - Graph configuration is valid.
    INFO  [RUN_GRAPH1_0] - Graph initialization (InitDataStore)
    INFO  [RUN_GRAPH1_0] - [Clover] Initializing phase: 0
    INFO  [RUN_GRAPH1_0] - Messenger configuration context loaded.
    INFO  [RUN_GRAPH1_0] - Axis2-specific client dispatcher established for service >control< based on WSDL document.
    INFO  [RUN_GRAPH1_0] - Axis2 modules engaged for client dispatcher.
    INFO  [RUN_GRAPH1_0] - WS-Policy expressions processed.
    INFO  [RUN_GRAPH1_0] - Message validation on request is disabled.
    INFO  [RUN_GRAPH1_0] - Message validation on response is disabled.
    INFO  [RUN_GRAPH1_0] - Asynchronous messenger initilized for operation '{http://www.endeca.com/endeca-server/control/1}control#controlPort#createDataStore'.
    INFO  [RUN_GRAPH1_0] - Messenger configuration context loaded.
    INFO  [RUN_GRAPH1_0] - Axis2-specific client dispatcher established for service >control< based on WSDL document.
    INFO  [RUN_GRAPH1_0] - Axis2 modules engaged for client dispatcher.
    INFO  [RUN_GRAPH1_0] - WS-Policy expressions processed.
    INFO  [RUN_GRAPH1_0] - Message validation on request is disabled.
    INFO  [RUN_GRAPH1_0] - Message validation on response is disabled.
    INFO  [RUN_GRAPH1_0] - Asynchronous messenger initilized for operation '{http://www.endeca.com/endeca-server/control/1}control#controlPort#dataStoreStatus'.
    INFO  [RUN_GRAPH1_0] - Messenger configuration context loaded.
    INFO  [RUN_GRAPH1_0] - Axis2-specific client dispatcher established for service >control< based on WSDL document.
    INFO  [RUN_GRAPH1_0] - Axis2 modules engaged for client dispatcher.
    INFO  [RUN_GRAPH1_0] - WS-Policy expressions processed.
    INFO  [RUN_GRAPH1_0] - Message validation on request is disabled.
    INFO  [RUN_GRAPH1_0] - Message validation on response is disabled.
    INFO  [RUN_GRAPH1_0] - Asynchronous messenger initilized for operation '{http://www.endeca.com/endeca-server/control/1}control#controlPort#startDataStore'.
    INFO  [RUN_GRAPH1_0] - Messenger configuration context loaded.
    INFO  [RUN_GRAPH1_0] - Axis2-specific client dispatcher established for service >control< based on WSDL document.
    INFO  [RUN_GRAPH1_0] - Axis2 modules engaged for client dispatcher.
    INFO  [RUN_GRAPH1_0] - WS-Policy expressions processed.
    INFO  [RUN_GRAPH1_0] - Message validation on request is disabled.
    INFO  [RUN_GRAPH1_0] - Message validation on response is disabled.
    INFO  [RUN_GRAPH1_0] - Asynchronous messenger initilized for operation '{http://www.endeca.com/endeca-server/control/1}control#controlPort#attachDataStore'.
    INFO  [RUN_GRAPH1_0] - [Clover] phase: 0 initialized successfully.
    INFO  [RUN_GRAPH1_0] - register MBean with name:org.jetel.graph.runtime:type=CLOVERJMX_1331002769234_805
    INFO  [WatchDog] - Starting up all nodes in phase [0]
    INFO  [WatchDog] - Successfully started all nodes in phase!
    INFO  [WatchDog] - [Clover] Post-execute phase finalization: 0
    INFO  [WatchDog] - [Clover] phase: 0 post-execute finalization successfully.
    INFO  [WatchDog] - ----------------------** Final tracking Log for phase [0] **---------------------
    INFO  [WatchDog] - Time: 28/01/14 14:38:04
    INFO  [WatchDog] - Node                   ID         Port      #Records         #KB aRec/s   aKB/s
    INFO  [WatchDog] - ---------------------------------------------------------------------------------
    INFO  [WatchDog] - Verify Data Store      WEB_SERVICE_CLIENT1                          FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                          Out:0            0           0      0       0
    INFO  [WatchDog] -                                   Out:1            1           0      0       0
    INFO  [WatchDog] - Check Fault Detail     PARTITION1                                   FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            1           0      0       0
    INFO  [WatchDog] -                                   Out:0            1           0      0       0
    INFO  [WatchDog] - Build WS Attach Req    BUILD_WS_ATTACH_REQ                          FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            1           0      0       0
    INFO  [WatchDog] -                                   Out:0            1           1      0       0
    INFO  [WatchDog] - Attach Data Store      WEB_SERVICE_CLIENT3                          FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            1           1      0       0
    INFO  [WatchDog] -                                   Out:0            0           0      0       0
    INFO  [WatchDog] -                                   Out:1            1           0      0       0
    INFO  [WatchDog] - Check Fault Detail     PARTITION2                                   FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            1           0      0       0
    INFO  [WatchDog] -                                   Out:0            0           0      0       0
    INFO  [WatchDog] -                                   Out:1            1           0      0       0
    INFO  [WatchDog] - Do nothing             TRASH0                                       FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            0           0      0       0
    INFO  [WatchDog] -                                    In:1            0           0      0       0
    INFO  [WatchDog] -                                    In:2            1           0      0       0
    INFO  [WatchDog] - Build WS Create Req    BUILD_WS_CREATE_REQ                          FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            0           0      0       0
    INFO  [WatchDog] -                                   Out:0            0           0      0       0
    INFO  [WatchDog] - Create Data Store      WEB_SERVICE_CLIENT0                          FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            0           0      0       0
    INFO  [WatchDog] - Check Response State   CHECK_RESPONSE_STATE                         FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            0           0      0       0
    INFO  [WatchDog] -                                   Out:0            0           0      0       0
    INFO  [WatchDog] -                                   Out:1            0           0      0       0
    INFO  [WatchDog] - Start Data Store       WEB_SERVICE_CLIENT2                          FINISHED_OK
    INFO  [WatchDog] -  %cpu:..                           In:0            0           0      0       0
    INFO  [WatchDog] - ---------------------------------** End of Log **--------------------------------
    INFO  [WatchDog] - Execution of phase [0] successfully finished - elapsed time(sec): 0
    INFO  [WatchDog] - -----------------------** Summary of Phases execution **---------------------
    INFO  [WatchDog] - Phase#            Finished Status         RunTime(sec)    MemoryAllocation(KB)
    INFO  [WatchDog] - 0                 FINISHED_OK                        0             34859
    INFO  [WatchDog] - ------------------------------** End of Summary **---------------------------
    INFO  [WatchDog] - WatchDog thread finished - total execution time: 0 (sec)
    INFO  [RUN_GRAPH1_0] - Running graph ./graph/config/LoadPreDataConfig.grf in the same instance.
    INFO  [RUN_GRAPH1_0] - Checking graph configuration...
    INFO  [RUN_GRAPH1_0] - Graph configuration is valid.
    INFO  [RUN_GRAPH1_0] - Graph initialization (LoadPreConfig)
    INFO  [RUN_GRAPH1_0] - [Clover] Initializing phase: 0
    INFO  [RUN_GRAPH1_0] - [Clover] phase: 0 initialized successfully.
    INFO  [RUN_GRAPH1_0] - [Clover] Initializing phase: 1
    INFO  [RUN_GRAPH1_0] - [Clover] phase: 1 initialized successfully.
    INFO  [RUN_GRAPH1_0] - [Clover] Initializing phase: 2
    INFO  [RUN_GRAPH1_0] - [Clover] phase: 2 initialized successfully.
    INFO  [RUN_GRAPH1_0] - register MBean with name:org.jetel.graph.runtime:type=CLOVERJMX_1338400039337_554
    INFO  [WatchDog] - Starting up all nodes in phase [0]
    INFO  [WatchDog] - Successfully started all nodes in phase!
    INFO  [RUN_GRAPH1_554] - Running graph ./graph/config/PreData/LoadInitialAttributes.grf in the same instance.
    INFO  [RUN_GRAPH1_554] - Checking graph configuration...
    INFO  [RUN_GRAPH1_554] - Graph configuration is valid.
    INFO  [RUN_GRAPH1_554] - Graph initialization (LoadConfiguration)
    INFO  [RUN_GRAPH1_554] - [Clover] Initializing phase: 0
    INFO  [RUN_GRAPH1_554] - Mapping type set to MAP_NAMES
    INFO  [RUN_GRAPH1_554] - Mapping type set to MAP_NAMES
    WARN  [RUN_GRAPH1_554] - WS messenger cleanup failed.
    java.lang.NullPointerException
      at org.apache.axis2.client.Stub.cleanup(Stub.java:134)
      at com.opensys.cloveretl.component.WebServiceClient.free(Unknown Source)
      at org.jetel.graph.Phase.free(Phase.java:487)
      at org.jetel.graph.TransformationGraph.freeResources(TransformationGraph.java:681)
      at org.jetel.graph.TransformationGraph.free(TransformationGraph.java:955)
      at org.jetel.graph.runtime.PrimitiveAuthorityProxy.executeGraph(PrimitiveAuthorityProxy.java:149)
      at org.jetel.component.RunGraph.runGraphThisInstance(RunGraph.java:511)
      at org.jetel.component.RunGraph.runSingleGraph(RunGraph.java:409)
      at org.jetel.component.RunGraph.execute(RunGraph.java:302)
      at org.jetel.graph.Node.run(Node.java:414)
      at java.lang.Thread.run(Thread.java:619)
    ./graph/config/PreData/LoadInitialAttributes.grf: Execution of graph failed! Error during graph initialization: Phase 0 can't be initilized.
    WARN  [RUN_GRAPH1_554] - Some graphs wasn't executed (because graph "./graph/config/PreData/LoadInitialAttributes.grf" finished with error).
    WARN  [RUN_GRAPH1_554] - Some graph(s) finished with error.
    WARN  [RUN_GRAPH1_554] - Attempt to unregister non-registered thread in the ContextProvider.
    ERROR [WatchDog] - Graph execution finished with error
    ERROR [WatchDog] - Node RUN_GRAPH1 finished with status: ERROR caused by: Graph './graph/config/PreData/LoadInitialAttributes.grf' failed!
    ERROR [WatchDog] - Node RUN_GRAPH1 error details:
    org.jetel.exception.JetelException: Graph './graph/config/PreData/LoadInitialAttributes.grf' failed!
      at org.jetel.component.RunGraph.execute(RunGraph.java:324)
      at org.jetel.graph.Node.run(Node.java:414)
      at java.lang.Thread.run(Thread.java:619)
    INFO  [WatchDog] - [Clover] Post-execute phase finalization: 0
    INFO  [WatchDog] - [Clover] phase: 0 post-execute finalization successfully.
    INFO  [WatchDog] - Execution of phase [0] finished with error - elapsed time(sec): 0
    ERROR [WatchDog] - !!! Phase finished with error - stopping graph run !!!
    INFO  [WatchDog] - -----------------------** Summary of Phases execution **---------------------
    INFO  [WatchDog] - Phase#            Finished Status         RunTime(sec)    MemoryAllocation(KB)
    INFO  [WatchDog] - 0                 ERROR                              0             21549
    INFO  [WatchDog] - 1                 N/A                                0                 0
    INFO  [WatchDog] - 2                 N/A                                0                 0
    INFO  [WatchDog] - ------------------------------** End of Summary **---------------------------
    INFO  [WatchDog] - WatchDog thread finished - total execution time: 0 (sec)
    ./graph/config/LoadPreDataConfig.grf: Execution of graph failed! null
    WARN  [RUN_GRAPH1_0] - Some graphs wasn't executed (because graph "./graph/config/LoadPreDataConfig.grf" finished with error).
    WARN  [RUN_GRAPH1_0] - Some graph(s) finished with error.
    WARN  [RUN_GRAPH1_0] - Attempt to unregister non-registered thread in the ContextProvider.
    ERROR [WatchDog] - Graph execution finished with error
    ERROR [WatchDog] - Node RUN_GRAPH1 finished with status: ERROR caused by: Graph './graph/config/LoadPreDataConfig.grf' failed!
    ERROR [WatchDog] - Node RUN_GRAPH1 error details:
    org.jetel.exception.JetelException: Graph './graph/config/LoadPreDataConfig.grf' failed!
      at org.jetel.component.RunGraph.execute(RunGraph.java:324)
      at org.jetel.graph.Node.run(Node.java:414)
      at java.lang.Thread.run(Thread.java:619)
    INFO  [WatchDog] - [Clover] Post-execute phase finalization: 0
    INFO  [WatchDog] - [Clover] phase: 0 post-execute finalization successfully.
    INFO  [WatchDog] - Execution of phase [0] finished with error - elapsed time(sec): 0
    ERROR [WatchDog] - !!! Phase finished with error - stopping graph run !!!
    INFO  [WatchDog] - -----------------------** Summary of Phases execution **---------------------
    INFO  [WatchDog] - Phase#            Finished Status         RunTime(sec)    MemoryAllocation(KB)
    INFO  [WatchDog] - 0                 ERROR                              0             21929
    INFO  [WatchDog] - 1                 N/A                                0                 0
    INFO  [WatchDog] - 2                 N/A                                0                 0
    INFO  [WatchDog] - 3                 N/A                                0                 0
    INFO  [WatchDog] - 4                 N/A                                0                 0
    INFO  [WatchDog] - 5                 N/A                                0                 0
    INFO  [WatchDog] - ------------------------------** End of Summary **---------------------------
    INFO  [WatchDog] - WatchDog thread finished - total execution time: 0 (sec)
    INFO  [main] - Freeing graph resources.
    ERROR [main] - Execution of graph failed !
    Kindly help
    Thanks

    java.lang.NullPointerException
      at org.apache.axis2.client.Stub.cleanup(Stub.java:134)
      at com.opensys.cloveretl.component.WebServiceClient.free(Unknown Source)
    It looks like there is a problem with your Web Services Client component.   Check the configuration of this component.
    RLJII

  • ABAP runtime errors "SPOOL_I/O_ERROR"

    Hi All,
    I had problem when run the job program "SAPFGRWE". Suddenly the job terminated and the error message appear is "ABAP runtime errors - SPOOL_I/O_ERROR" . I'm using DB Oracle. SAP Release is 40B.
    Please help me on this matter.
    Thank You

    Hi,
    Cleanup your old spool requests suing the report: RSPO1041.
    Please do a temse consistency check in txn. SP12 and then clearn the entire temse.
    Also, refer to SAP Note 1336 (Spooler reports data base I/O error) for this error.
    Regards,
    Shitij

  • Stored procedure with ORDER BY and results to DataTable

    I Don't need the result as a bound data for what I'm needing to do here.
    I have a datatable created by using a SQL stored procedure, and am using the code below to verify Product data. The stored procedure has an ORDER BY issueDate at the end of it. If I'm transfering the results to a DataTable with a DataTable.SELECT
    statement I'm not getting the sorted results that I thought would happen when the DataTable is created. I need the earliest date results and it's getting the first occurance of the product.
    Product LotID  issueDate
    901417 37140 2013-12-02
    901418 37140 2013-12-02
    901419 37140 2013-12-02
    901417 37140 2013-12-01
    901418 37140 2013-12-01
    901419 37140 2013-12-01
    // "yyyy-MM-dd"
    string sortOrder = "issueDate";
    DataRow[] Check = schemaTable.Select(string.Format("productID = '{0}' AND lotID = '{1}'", product, lotNum), sortOrder);
    if (Check == null)
    return null;
    return (Check.Last<DataRow>());

    // "yyyy-MM-dd"
    string sortOrder = "issueDate";
    //DataRow[] Check = schemaTable.Select(string.Format("productID = '{0}' AND lotID = '{1}'", product, lotNum), sortOrder);
    DataRow[] Check = schemaTable
    .AsEnumerable()
    .OrderBy(row => row[sortOrder])
    .Select(string.Format("productID = '{0}' AND lotID = '{1}'", product, lotNum), sortOrder);
     .OrderBy(row => row[sortOrder]) was listed as an error however I add .AsEnumberable() and then the line .Select shows a syntax error.  What should this code look like?

Maybe you are looking for

  • Opening stock will be the closing stock of previous date

    Hi All, Good day. I am developing an ALV report that will show opening stock(LABST) as well as closing stock(Calculated) for a range of date and materials. Problem here is that from MARD table I am getting only the last opening stock, because it has

  • Labview Remote Panel and Client Aspect Ratio

    Dear all professionals, I had create an application with remote panel (webserver) enabled. I found that there is relationship between aspect ratio of client device display and the remote panel screen size. Here i attached two images of remote panel i

  • Swf not loading all the way

    I used a flash gallery to embed on a site for school, and I cant get the swf file to load all the way. If you go to the actual file it works, but when i try to embed the file it jut says its loading page http://www.whatbethyname.com/portfolio.htm fil

  • What determines output of 'D' in "to_char" function?

    Hi, Oracle 10.1.0.4.0 on Red Hat Linux SQL> select to_char(sysdate,'D (DY) DD-MON-YYYY') as TODAY from DUAL; TODAY 5 (THU) 29-MAR-2007What causes Oracle to say that Thursday is the fifth day of the week? SQL> select NAME, VALUE from V$PARAMETER where

  • 150:30 error. How can I have  Access to programs again?

    hard drive died.New hard drive in.  Now I cant access adobe Illusttrator/Photoshop anymore. 150:30 error message. Also don't have access to my adobe creative suite hard copies anymore, got lost in the move. Need to have my Adobe programs working. How