Why use System Reflection Assembly

I am just starting to learn forms in Powershell and noticed that in almost every example the follow code is put at the top of the example:
[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
If I comment it out, my script still appears to work. Can someone enlighten me on why this is done or what advantage there is to doing this?
I understand that these are .Net name spaces, but I don't see any difference in the behavior of my forms when I add or remove these lines. Is this something related to older versions of Powershell? Currently running on version 3.0...

Once you've loaded these assemblies, they stay loaded for your entire PowerShell session.  If you commented out those lines and tried to run the script in a new ISE or PowerShell console, it should fail (unless you have something in your profile or
an imported module which is loading them anyway.)
Personally, I prefer to use the commands this way, but the end result is the same:
Add-Type -AssemblyName System.Drawing
Add-Type -AssemblyName System.Windows.Forms

Similar Messages

  • PowerShell, Office 2007: [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.Office.Interop.Wor‌​d")

    Hi All,
    I have problem to convert word document in to html (Office 2007)
    Interop Assembly appear to work but powershell returns:
    Unable to
    find type [Microsoft.Office.Interop.Word.WdSaveFormat]:  
    I'using :
    $saveFormat = [Enum]::Parse([Microsoft.Office.Interop.Word.WdSaveFormat], “wdFormatFilteredHTML”);

    Hi Bill,
    Thank for your reply.
    I found this usefull script: http://gallery.technet.microsoft.com/office/6f7eee4b-1f42-499e-ae59-1aceb26100de
    On W7 + Office 2010 Works fine with no errors
    ONLY On W7 + Office 2007  returns "Unable to
    find type [Microsoft.Office.Interop.Word.WdSaveFormat]:"
    Interop Ass. same to work, only "save format" have potential strange issue.
    I don't understand why with Office 2007 only ...

  • How to use system call in assembler

    I write codes to display the dictionary using C,
    and it can run well,and then I want to use system call
    in assembler to realize the same function ,but it doesn't
    display the dictionary,how to correct it?
    Look:
    //C
    #include <stdio.h>
    int main()
    char *name[2];
    name[0]="/bin/ls";
    name[1]=NULL;
    execve(name[0],name,NULL);
    return 0;
    //Assembler
    .data
    msg:.string "/bin/ls"
    .text
    .global _start
    _start:
    movl $0xb,%eax
    movl $msg,%ebx
    mov $msg,%ecx
    movl $0,%edx
    int $0x80
    movl $1,%eax
    movl $0,%ebx
    int $0x80

    If you compile with -Wwrite-strings, as I like to do for new code, you'll notice it warns about assigning the address of read-only memory to a plain char *. You might want to declare name as follows to avoid accidentally trying to modify it:
    char const *name[2];
    But as for your question. The execve system call requires a pointer to a list (array) of pointers to strings in %ecx. You are passing it a pointer to a single string, which means it will try to interpret the string ("/bin/ls")as a series of pointers to strings, with potentially disastrous (and certainly weird) results.
    Last edited by Trent (2012-12-28 15:31:38)

  • Why the system create HU that already exists  in table VEKP when I use BAPI_HU_CREATE?

    Hi All,
    When I use the BAPI_HU_CREATE  to create HU, the system give me a HU and it inserts a line in Table VEKP, however when I search in table VEKP  with field HU EXIDV, I find  two entries with the same HU, one of them has VPOBJ 01 and the other has VPOBJ 12, So when I execute  transaction LM46  the system shows “The system could not find transfer order for execution” because the system search in table VEKP it find the first line with VPOBJKEY = delivery  and STATUS = 0020, however those delivery is not assigned to transfer order that I want to confirm transfer order.
    Why the system create HU that already exists  in table VEKP when I use BAPI_HU_CREATE?
    Thank you!
    Best regards

    Do you want to say that you got 2 HU from BAPI_HU_CREATE?
    I think you only got the one which has VPOBJ = 12 Non-Assigned Handling Unit
    which is exact what the BAPI is used for, see the docu in SE37. Didn't you yourself add this EXIDV in the IDoc?
    VPOBJ = 01 Outbound Delivery
    If you want to pack the Outbound delivery then you should use BAPI_HU_PACK.

  • Why Oracle10g uses System Rollback Segment....????

    Hi ,
    Just a wonder....!!!!
    Why Oracle10g uses System Rollback Segment....and not System undo tablespace... since rollback segment as a method to rollback transactions has been depreciated.....?????
    Thanks.....
    Sim

    System Rollback Segment is reserved for Oracle internal operation.
    I believe it is used only by SYS and programs invoked using SYS authorization manipulating dictionary tables. In which case the complexity has been understood and managed over several generations of Oracle.
    I suspect the system (manual) roillback segment will be very useful when creating a new database, which includes creating whole bunches of tables and views (updating whole bunches of internal tables), at which time no undo segment (or background process for automating that management?) exists.
    Please point to the document or link that says rollback segments are deprecated.
    Even now, manual rollback segments may be of benefit to specific programs and environments that run batch jobs managed by DBA whoy has studied them for a long time under specific circumstances.
    But, just like the various SGA pools should be evaluated and potentially resized when workload changes, the rollback segment configuration needs to be evaluated and potentially resized when workload changes. Few DBAs have the knowledge or skill or time to do so - the automatic adjustments may be the best generic compromise.

  • "Use system settings" for Proxy is automatically enabled when opening Firefox. Why? I want to use "No Proxy".

    When I open Firefox, it requires time to load pages. When I go in the networking, I activate "No Proxy" from "Use system settings", and each time I reopen, the System Settings is back, and the page load slow.

    Hello serman77, check '''IF''' you have in your [http://kb.mozillazine.org/Profile_folder_-_Firefox#Windows profile folder] a [http://kb.mozillazine.org/User.js_file User.js file].
    The user.js file does not exist by default. If you create the file, forget it, '''if you have not create the file then delete the User.js file''', to see if the problem goes away (some programs create and write in the file also).
    '''If you have not a user.js file''' then see : [http://kb.mozillazine.org/Preferences_not_saved#Corrupt_or_damaged_prefs.js_file Corrupt or damaged prefs.js file]
    thank you

  • System.Reflection.TargetInvocationException: An exception occurred during the operation, making the result invalid.

    When I run my app on device and the internet is connected its ok, but if I use the emulator (althought the internet is connected):
    $exception{System.Reflection.TargetInvocationException: An exception occurred during the operation, making the result invalid.  Check InnerException for exception details. ---> System.Net.WebException: The remote server returned
    an error: NotFound. ---> System.Net.WebException: The remote server returned an error: NotFound.
       at System.Net.Browser.ClientHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult)
       at System.Net.Browser.ClientHttpWebRequest.<>c__DisplayClasse.<EndGetResponse>b__d(Object sendState)
       at System.Net.Browser.AsyncHelper.<>c__DisplayClass1.<BeginOnUI>b__0(Object sendState)
       --- End of inner exception stack trace ---
       at System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state)
       at System.Net.Browser.ClientHttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
       at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)
       at System.Net.WebClient.DownloadBitsResponseCallback(IAsyncResult result)
       --- End of inner exception stack trace ---
       at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
       at System.Net.DownloadStringCompletedEventArgs.get_Result()
       at FitnessApp.BL.ServerConnection.wc_DownloadStringCompleted(Object sender, DownloadStringCompletedEventArgs e)
       at System.Net.WebClient.OnDownloadStringCompleted(DownloadStringCompletedEventArgs e)
       at System.Net.WebClient.DownloadStringOperationCompleted(Object arg)}
    System.Exception {System.Reflection.TargetInvocationException}
    this is the stack trace:
       at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
       at System.Net.DownloadStringCompletedEventArgs.get_Result()
       at FitnessApp.BL.ServerConnection.wc_DownloadStringCompleted(Object sender, DownloadStringCompletedEventArgs e)
       at System.Net.WebClient.OnDownloadStringCompleted(DownloadStringCompletedEventArgs e)
       at System.Net.WebClient.DownloadStringOperationCompleted(Object arg)
    this is my code:
    void wc_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
    try
    if (e.Error != null)
    string error = e.Error.Message;
    string functionCall = e.UserState.ToString();
    if (!string.IsNullOrEmpty(e.Result)) //this line throws an exception
    if (functionCall == "getProductCode")
    ProductsList productsList = JsonConvert.DeserializeObject<ProductsList>(e.Result);
    if (productsList.products != null)
    serverProducts = productsList.products.Select(p =>
    new BE.Product
    Product_code = p.PID,
    Product_name = p.Name
    }).ToList();
    else
    serverProducts.Clear();
    if (DataDownloadCompleted != null)
    if(functionCall =="getProductCode")
    DataDownloadCompleted(this, new BE.StringEventArgs("getProductCode"));
    catch (Exception)
    throw;
    public void searchProductCode(string productName)
    try
    if (DeviceNetworkInformation.IsNetworkAvailable && DeviceNetworkInformation.IsCellularDataEnabled)
    wc.DownloadStringAsync(new Uri(baseURI + "get_products_json.php?search=" + productName), "getProductCode");
    else
    throw new Exception(FitnessApp.Resources.AppResources.ErrorServerConnection);
    catch (Exception )
    throw ;
    Any solution?
    thank you..

    The server did not find the resource you asked for.
    You might want to make sure your emulator is connected to the internet and can go online.
    http://blogs.msdn.com/b/wsdevsol/archive/2013/10/01/why-can-t-the-windows-phone-emulator-go-online.aspx

  • Why doesn't reflection reveal the clone() method in arrays?

    I was surprised to discover that the following code does not reveal the method "clone()", even though you can call "clone()" on an Object[]. Can anyone explain why this is? I was hoping to use the Reflect API to clone an arbitrary object if it was Cloneable, and to throw an Exception otherwise. How can I do this?
    import java.lang.reflect.Method;
    public class Test {
         public static void main(String[] args) throws Exception {
              Object x;
              //pick a class
              x = new Object[] {};
              //is it Cloneable?
              System.out.print("The class " + x.getClass().getCanonicalName() + " is ");
              if(!(x instanceof Cloneable)) System.out.print("NOT ");
              System.out.println("Cloneable");
              System.out.println("-------");
              //what methods are available?
              Method[] meths = x.getClass().getMethods();
              for(Method m : meths) {
                   System.out.println(m.getName());
              System.out.println("-------");
    }

    Just to clarify. I know that clone() is protected in Object, but it is certainly a public method in array objects such as int[], float[], Object[] etc. Test: call clone() on any of these objects! Also, I realize that Cloneable does not itself guarantee the method clone(). Nevertheless, if you take a regular Cloneable object, such as a String, then typically, if you ran myObject.getClass().getMethods() on that object, you'd find the method clone() in the resulting list. i.e., that Class has overwritten Object's protected clone() method with a public clone() method. So since int[], float[] and all the rest have a clearly public clone() method, then why doesn't myFloatArray.getClass().getMethods() show me a method called "clone"? I guess it would have to have something to do with the fact that arrays are funny kinds of classes that are not properly handled by the Reflection API, but is it on purpose that clone() isn't available?

  • Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. --- System.NullReferenceException: Object reference not set to an instance of an object

    Hi,
    (1) I am trying to get the data from a database table and import into a text file.
    (2) If the record set have the data then it runs ok
    (3) when the record set not having any data it is giving the below error
    Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object
    Could you please let me know why this is happening?
    Any help would be appriciated
    Thanks,
    SIV

    You might ask them over here.
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral%2Ccsharpgeneral%2Cvcgeneral&filter=alltypes&sort=lastpostdesc
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Why the system stopped

    Does anyone knows why the system became unavailable.  Dev_disp trace is appended. Did u201CBIDANDSAu201D run something?:
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        VHR
    systemid   562 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    102
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        3872
    Mon Jul 21 22:40:52 2008
    kernel runs with dp version 224000(ext=109000) (@(#) DPLIB-INT-VERSION-224000-UC)
    length of sys_adm_ext is 572 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3872) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 102 successfully loaded
         shared lib "dw_xtc.dll" version 102 successfully loaded
         shared lib "dw_stl.dll" version 102 successfully loaded
         shared lib "dw_gui.dll" version 102 successfully loaded
         shared lib "dw_mdm.dll" version 102 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Mon Jul 21 22:40:57 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5355]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >unidev_VHR_00                           <
    DpShMCreate: sizeof(wp_adm)          20608     (1472)
    DpShMCreate: sizeof(tm_adm)          5584592     (27784)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    DpShMCreate: sizeof(comm_adm)          552080     (1088)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1848)
    DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000F250050, size: 6275968)
    DpShMCreate: allocated sys_adm at 000000000F250050
    DpShMCreate: allocated wp_adm at 000000000F251F40
    DpShMCreate: allocated tm_adm_list at 000000000F256FC0
    DpShMCreate: allocated tm_adm at 000000000F257020
    DpShMCreate: allocated wp_ca_adm at 000000000F7AA6F0
    DpShMCreate: allocated appc_ca_adm at 000000000F7B04B0
    DpShMCreate: allocated comm_adm at 000000000F7B23F0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 000000000F839080
    DpShMCreate: allocated gw_adm at 000000000F839100
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 000000000F839130
    DpShMCreate: allocated wall_adm at 000000000F839140
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 127 blocks reserved for free list.
    ES initialized.
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1626]
    ***LOG Q0K=> DpMsAttach, mscon ( unidev) [dpxxdisp.c   11664]
    DpStartStopMsg: send start message (myname is >unidev_VHR_00                           <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 102
    Release check o.K.
    Mon Jul 21 22:41:02 2008
    MBUF state ACTIVE
    DpModState: change server state from STARTING to ACTIVE
    Tue Jul 22 09:05:16 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4248]
    ERROR => NiIRead: SiRecv failed for hdl 5 / sock 1464
        (SI_ECONN_BROKEN/10054; I4; ST; 193.77.101.10:1054) [nixxi.cpp    4248]
    Network error of client T16, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Client address of T16 is 193.77.101.10(bsn-77-101-10.dsl.siol.net)
    ***LOG Q04=> DpRTmPrep, NiBufReceive (71 HLANCNMA 16 xpsm1330 ) [dpxxdisp.c   11375]
    RM-T16, U71, 300     HLANCNMA, xpsm1330, 08:57:25, M1, W1, LX03, 6/3
    Tue Jul 22 09:38:40 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4248]
    ERROR => NiIRead: SiRecv failed for hdl 5 / sock 1464
        (SI_ECONN_BROKEN/10054; I4; ST; 193.77.101.10:1076) [nixxi.cpp    4248]
    Network error of client T16, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Client address of T16 is 193.77.101.10(bsn-77-101-10.dsl.siol.net)
    ***LOG Q04=> DpRTmPrep, NiBufReceive (76 HLANCNMA 16 xpsm1330 ) [dpxxdisp.c   11375]
    RM-T16, U76, 300     HLANCNMA, xpsm1330, 09:31:00, M0, W0, SE38, 3/1
    Tue Jul 22 18:13:36 2008
    ERROR => DpRqCheck: mode 1 in status CANCEL [dpxxdisp.c   6908]
    ***LOG Q0G=> DpRqBadHandle, bad_req ( DIA) [dpxxdisp.c   5196]
    ERROR => BAD REQUEST - Reason: DpRqCheck failed (line 5991): [dpxxdisp.c   5198]
    -IN-- sender_id DISPATCHER        tid  14    wp_ca_blk   36      wp_id 0
    -IN-- action    SEND_TO_WP        uid  162   appc_ca_blk -1      type  DIA 
    -IN-- new_stat  NO_CHANGE         mode 1     len         9       rq_id 39011
    -IN-- req_info  MSG_WITH_REQ_BUF MSG_WITH_OH
    -IN-- forward to T14/U162/M1
    Wed Jul 23 09:59:10 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4248]
    ERROR => NiIRead: SiRecv failed for hdl 7 / sock 1388
        (SI_ECONN_BROKEN/10054; I4; ST; 192.168.12.51:1371) [nixxi.cpp    4248]
    Network error of client T14, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Wed Jul 23 09:59:23 2008
    WARNING => NiAddrToHost took 13 seconds [dpxxdisp.c   18945]
    Client address of T14 is 192.168.12.51(192.168.12.51)
    ***LOG Q04=> DpRTmPrep, NiBufReceive (254 BIZJAKSA 14 sasa ) [dpxxdisp.c   11375]
    RM-T14, U254, 300     BIZJAKSA, sasa, 09:17:37, M0, W1, SPRO, 4/1
    Wed Jul 23 15:48:05 2008
    SoftCancel request for T14 U318 M0 received from REMOTE_TERMINAL
    Wed Jul 23 16:10:54 2008
    SoftCancel request for T14 U359 M0 received from REMOTE_TERMINAL
    Wed Jul 23 16:12:58 2008
    SoftCancel request for T14 U359 M0 received from REMOTE_TERMINAL
    Wed Jul 23 16:13:00 2008
    DpHdlDeadWp: restart wp (pid=1756) automatically
    Wed Jul 23 16:13:32 2008
    Network error of client T14, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Wed Jul 23 16:13:34 2008
    Client address of T14 is 192.168.12.27(DREAMER)
    ***LOG Q04=> DpRTmPrep, NiBufReceive (359 BIDANDSA 14 dreamer ) [dpxxdisp.c   11375]
    RM-T14, U359, 300     BIDANDSA, dreamer, 16:12:36, M0, W0, SE38, 2/2
    Wed Jul 23 16:13:46 2008
    ERROR => W0 (pid 3344) died [dpxxdisp.c   14319]
    Wed Jul 23 16:14:26 2008
    ERROR => W0 (pid 504) died [dpxxdisp.c   14319]
    Wed Jul 23 16:14:46 2008
    ERROR => W0 (pid 1548) died [dpxxdisp.c   14319]
    Wed Jul 23 16:15:06 2008
    ERROR => W0 (pid 3808) died [dpxxdisp.c   14319]
    Wed Jul 23 16:15:26 2008
    ERROR => W0 (pid 3516) died [dpxxdisp.c   14319]
    Wed Jul 23 16:15:46 2008
    ERROR => W0 (pid 2328) died [dpxxdisp.c   14319]
    Wed Jul 23 16:16:06 2008
    ERROR => W0 (pid 1556) died [dpxxdisp.c   14319]
    Wed Jul 23 16:16:21 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4248]
    ERROR => NiIRead: SiRecv failed for hdl 7 / sock 1352
        (SI_ECONN_BROKEN/10054; I4; ST; 192.168.12.27:1721) [nixxi.cpp    4248]
    Network error of client T16, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Client address of T16 is 192.168.12.27(DREAMER)
    ***LOG Q04=> DpRTmPrep, NiBufReceive (361 16 dreamer ) [dpxxdisp.c   11375]
    RM-T16, U361, 000             , dreamer, 16:14:01, M0, W3,     , 2/0
    Wed Jul 23 16:16:26 2008
    ERROR => W0 (pid 3060) died [dpxxdisp.c   14319]
    Wed Jul 23 16:16:46 2008
    ERROR => W0 (pid 1416) died [dpxxdisp.c   14319]
    Wed Jul 23 16:17:06 2008
    ERROR => W0 (pid 1496) died [dpxxdisp.c   14319]
    Wed Jul 23 16:17:12 2008
    SoftCancel request for T19 U274 M5 received from REMOTE_TERMINAL
    Wed Jul 23 16:17:18 2008
    DpHdlDeadWp: restart wp (pid=2076) automatically
    Wed Jul 23 16:17:26 2008
    ERROR => W0 (pid 2960) died [dpxxdisp.c   14319]
    Wed Jul 23 16:24:12 2008
    DpHdlDeadWp: restart wp (pid=340) automatically
    Wed Jul 23 16:24:32 2008
    DpHdlDeadWp: restart wp (pid=3612) automatically
    Wed Jul 23 16:25:12 2008
    DpHdlDeadWp: restart wp (pid=2172) automatically
    Wed Jul 23 16:27:32 2008
    DpHdlDeadWp: restart wp (pid=3492) automatically
    Wed Jul 23 16:31:08 2008
    SoftCancel request for T19 U274 M2 received from REMOTE_TERMINAL
    Wed Jul 23 16:31:32 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 16:32:12 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 16:53:01 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 16:53:41 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    ERROR => DpCheckTerminals: NiCheck2(rc=-23) failed for tid: 23 (60secs)-> disconnecting [dpxxdisp.c   12158]
    RM-T23, U366,                 , Marko, 16:32:26, M0, W-1,     , 1/0
    Wed Jul 23 16:54:33 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 16:55:13 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 16:55:53 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 16:56:33 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 16:57:13 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 16:57:53 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 16:58:33 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 16:59:13 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    ERROR => DpCheckTerminals: NiCheck2(rc=-23) failed for tid: 20 (60secs)-> disconnecting [dpxxdisp.c   12158]
    RM-T20, U363,                 , Marko, 16:17:48, M0, W-1,     , 1/0
    Wed Jul 23 16:59:33 2008
    ERROR => DpCheckTerminals: NiCheck2(rc=-23) failed for tid: 21 (60secs)-> disconnecting [dpxxdisp.c   12158]
    RM-T21, U364,                 , Marko, 16:18:06, M0, W-1,     , 1/0
    Wed Jul 23 16:59:53 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 17:00:33 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    ERROR => DpCheckTerminals: NiCheck2(rc=-23) failed for tid: 18 (60secs)-> disconnecting [dpxxdisp.c   12158]
    RM-T18, U367,                 , Marko, 16:39:19, M0, W-1,     , 1/0
    Wed Jul 23 17:01:13 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 17:01:53 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 17:02:33 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 17:03:13 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 17:03:53 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 17:04:33 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 17:04:53 2008
    ERROR => DpCheckTerminals: NiCheck2(rc=-23) failed for tid: 22 (60secs)-> disconnecting [dpxxdisp.c   12158]
    RM-T22, U365,                 , Marko, 16:23:27, M0, W-1,     , 1/0
    Wed Jul 23 17:05:13 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    ERROR => DpCheckTerminals: NiCheck2(rc=-23) failed for tid: 24 (60secs)-> disconnecting [dpxxdisp.c   12158]
    RM-T24, U368,                 , Marko, 16:43:56, M0, W-1,     , 1/0
    Wed Jul 23 17:05:53 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 17:06:33 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 17:07:13 2008
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Wed Jul 23 17:07:52 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4248]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1392
        (SI_ECONN_BROKEN/10054; I4; ST; 192.168.12.63:1273) [nixxi.cpp    4248]
    Network error of client T19, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Mon Jul 21 22:40:57 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\UHR\DVEBMGS00\exe\dbmssslib.dll' ...
    B  Library 'C:\usr\sap\UHR\DVEBMGS00\exe\dbmssslib.dll' loaded
    B  Version of 'C:\usr\sap\UHR\DVEBMGS00\exe\dbmssslib.dll' is "700.08", patchlevel (0.87)
    B  New connection 0 created
    M sysno      00
    M sid        UHR
    M systemid   562 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    102
    M intno      20050900
    M make:      multithreaded, Unicode, 64 bit, optimized
    M pid        1756
    M
    M  kernel runs with dp version 224000(ext=109000) (@(#) DPLIB-INT-VERSION-224000-UC)
    M  length of sys_adm_ext is 572 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 1756) [dpxxdisp.c   1301]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          20608     (1472)
    M  DpShMCreate: sizeof(tm_adm)          5584592     (27784)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    M  DpShMCreate: sizeof(comm_adm)          552080     (1088)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (104)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1848)
    M  DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000F250050, size: 6275968)
    M  DpShMCreate: allocated sys_adm at 000000000F250050
    M  DpShMCreate: allocated wp_adm at 000000000F251F40
    M  DpShMCreate: allocated tm_adm_list at 000000000F256FC0
    M  DpShMCreate: allocated tm_adm at 000000000F257020
    M  DpShMCreate: allocated wp_ca_adm at 000000000F7AA6F0
    M  DpShMCreate: allocated appc_ca_adm at 000000000F7B04B0
    M  DpShMCreate: allocated comm_adm at 000000000F7B23F0
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 000000000F839080
    M  DpShMCreate: allocated gw_adm at 000000000F839100
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000000F839130
    M  DpShMCreate: allocated wall_adm at 000000000F839140

    X Mon Jul 21 22:40:58 2008
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host unidev

    M Mon Jul 21 22:41:00 2008
    M  calling db_connect ...
    C  Thread ID:2896
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'C:\usr\sap\UHR\DVEBMGS00\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      87
    C    patchcomment MSSQL: UTAB/ATAB/Dynp-access via clientside cursor (1002914)
    C  np:(local) connection used on UNIDEV
    C  CopyLocalParameters: dbuser is 'uhr'
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Provider Release:9.00.2047.00
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Cache sizes: header 104 bytes, 20000 names (32800000 bytes), 500 dynamic statements (2872000 bytes), total 35672104 bytes
    C  Using shared procedure name cache UNIDEV_UHRUHR_UHR_MEM initialized by another process.
    C  Connected to db server : [UNIDEV] server_used : [np:(local)], dbname: UHR, dbuser: uhr
    C  pn_id:UNIDEV_UHRUHR_UHR
    C  Using MARS (on sql 9.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20080721 224100 UNIDEV         
    C  The IRow interface is supported by this OLEDB provider
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif

    I Mon Jul 21 22:41:05 2008
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 000000001B590050, size: 4400128)
    M  SHM_ROLL_AREA          (addr: 000007FFD1900050, size: 61865984)
    M  SHM_PAGING_AREA          (addr: 000000001B9D0050, size: 33554432)
    M  SHM_ROLL_ADM               (addr: 000000001D9E0050, size: 618548)
    M  SHM_PAGING_ADM          (addr: 000000001DA80050, size: 525344)
    M  ThCreateNoBuffer          allocated 544152 bytes for 1000 entries at 000000001DB10050
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12176 bytes (50 server) at 000000001DBA0050
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  ES initialized.
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 14, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 0000000023160160, size: 30000128, end: 0000000024DFC560)
    B  dbtbxbuf: Buffer TABLP (addr: 0000000024E00160, size: 10240000, end: 00000000257C4160)
    B  dbexpbuf: Buffer EIBUF (addr: 00000000257E0170, size: 4194304, end: 0000000025BE0170)
    B  dbexpbuf: Buffer ESM   (addr: 0000000025BF0170, size: 4194304, end: 0000000025FF0170)
    B  dbexpbuf: Buffer CUA   (addr: 0000000026000170, size: 3072000, end: 00000000262EE170)
    B  dbexpbuf: Buffer OTR   (addr: 00000000262F0170, size: 4194304, end: 00000000266F0170)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.

    S Mon Jul 21 22:41:06 2008
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 00000000138F2930
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 000000002FA100D0
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 000000002FA10530
    S    using messages for server info
    S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S  size of open spool request entry: 2176 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION
    A  System page size: 4kb, total admin_size: 25844kb, dir_size: 12872kb.
    A  Attached to PXA (address 000007FFD5410050, size 700000K, 2 fragments of 337080K )
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--

    A  ABAP ShmAdm attached (addr=000007FF4FEC1000 leng=20955136 end=000007FF512BD000)
    A  >> Shm MMADM area (addr=000007FF5039AEB0 leng=244096 end=000007FF503D6830)
    A  >> Shm MMDAT area (addr=000007FF503D7000 leng=15622144 end=000007FF512BD000)
    A  RFC Destination> destination unidev_UHR_00 host unidev system UHR systnr 0 (unidev_UHR_00)
    A  RFC Options> H=unidev,S=00,d=2,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 14784 bytes at 000000002FB80050
    N  SsfSapSecin: putenv(SECUDIR=C:\usr\sap\UHR\DVEBMGS00\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is C:\usr\sap\UHR\DVEBMGS00\exe\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [MSSQL:700.08]):
    B     max_blocking_factor =  50,  max_in_blocking_factor      = 255,
    B     min_blocking_factor =   5,  min_in_blocking_factor      =  10,
    B     prefer_union_all    =   1,  prefer_join                 =   1,
    B     prefer_fix_blocking =   0,  prefer_in_itab_opt          =   0,
    B     convert AVG         =   1,  alias table FUPD            =   0,
    B     escape_as_literal   =   0,  opt GE LE to BETWEEN        =   0,
    B     select *            =0x00,  character encoding          = STD / []:X,
    B     use_hints           = abap->1, dbif->0x1, upto->0, rule_in->0,
    B                           rule_fae->0, concat_fae->0, concat_fae_or->0
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 700, [7000.0.102.20050900]
    W    ITS Plugin: Int.version, [33]
    W    ITS Plugin: Feature set: [13]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.

    C Mon Jul 21 22:41:12 2008
    C  The IRow interface is supported by this OLEDB provider
    B  table logging switched off for all clients

    M Mon Jul 21 22:41:27 2008
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 000000000B130050
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 000000000B1307C0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 000000000B130800
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 000000000B13080C

    B Mon Jul 21 22:41:28 2008
    B  dbmyclu : info : my major identification is 3232238598, minor one 0.
    B  dbmyclu : info : Time Reference is 1.12.2001 01:00:00h GMT.
    B  dbmyclu : info : my initial uuid is DD576563AFC954F1AFC00019DB2FD4E5.
    B  dbmyclu : info : current optimistic cluster level: 3
    B  dbmyclu : info : pessimistic reads set to 2.

    M Mon Jul 21 22:41:49 2008
    M  ThIUsrDel: th_rollback_usrdelentry = 1

    S Mon Jul 21 23:06:17 2008
    S  found spool memory service RSPO-ACTIONS at 000000002FA1A270

    M Tue Jul 22 01:55:30 2008
    M  *** ERROR => PfFileIndUpd: new Index is initial [pfhypind.c   1546]
    M  *** ERROR => PfWriteIntoFile: failed to update fileindex (rc=7) [pfxxstat.c   4458]

    A Tue Jul 22 08:50:00 2008
    A  generated report BAPI_MATERIAL_GET_DETAIL======FT         with fingerprint F5FC699E14ADB0B547CC7986C2A4C095|  39605

    A Tue Jul 22 09:44:06 2008
    A  generated report RQGAAM31                                 with fingerprint C9A7D68E2C97749BC6D0C456AB2AC44F| 401746

    S Tue Jul 22 09:51:04 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    B Tue Jul 22 09:53:09 2008
    B  ***LOG BYE=> invalid interface parameter ObjTooLar  [dbexpbuf#2 @ 3496] [dbexpbuf3496 ]
    B  dbexpbuf[0]: Object (CONTEXTB                         300IBFREE_SEL_DD_INFO    000005000220080722090000) is too large (= 897446)

    B Tue Jul 22 09:53:10 2008
    B  ***LOG BYE=> invalid interface parameter ObjTooLar  [dbexpbuf#2 @ 3496] [dbexpbuf3496 ]
    B  dbexpbuf[0]: Object (CONTEXTB                         300IBFREE_SEL_DD_INFO    000005000220080722090000) is too large (= 1076066)

    S Tue Jul 22 09:59:16 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]
    S  handle memory type is RSTSPROMMM

    S Tue Jul 22 09:59:53 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    S Tue Jul 22 10:02:30 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    A Tue Jul 22 10:08:52 2008
    A  generated report /1BCDWB/DBT005T                          with fingerprint EE548C1AA44FB8D5F4FB46488B17C8C4| 123144

    S Tue Jul 22 10:11:32 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    A Tue Jul 22 10:20:58 2008
    A  generated report RSM51000_ALV                             with fingerprint 5F163D87ACDB8AD86CCF1C87F126AF2E| 226054

    A Tue Jul 22 10:20:59 2008
    A  generated report SAPLSGWY                                 with fingerprint 483DD182BF64B6C3B7E32A3176FCF31E| 159038

    A Tue Jul 22 10:29:37 2008
    A  generated report ZSD_PICKING2                             with fingerprint 55C529CC3D67BE7948A17F86E90E121C| 139312

    A Tue Jul 22 10:35:04 2008
    A  generated report ZSD_PICKING2                             with fingerprint 55C529CC3D67BE7948A17F86E90E121C| 139312

    A Tue Jul 22 10:35:10 2008
    A  generated report ZSD_PICKING2                             with fingerprint 55C529CC3D67BE7948A17F86E90E121C| 139312

    A Tue Jul 22 10:46:31 2008
    A  generated report ZSD_PICKING2                             with fingerprint 54A3965E02EBAB52B17B24A111A0D7FA| 140596

    A Tue Jul 22 10:49:26 2008
    A  generated report ZSD_PICKING2                             with fingerprint 634209006A8318BC2592C11A26F91501| 141036

    A Tue Jul 22 10:49:59 2008
    A  generated report ZSD_PICKING2                             with fingerprint 634209006A8318BC2592C11A26F91501| 141036

    A Tue Jul 22 10:52:23 2008
    A  generated report ZSD_PICKING2                             with fingerprint 634209006A8318BC2592C11A26F91501| 141036

    A Tue Jul 22 10:59:07 2008
    A  generated report ZSD_PICKING2                             with fingerprint 634209006A8318BC2592C11A26F91501| 141036

    A Tue Jul 22 10:59:12 2008
    A  generated report ZSD_PICKING2                             with fingerprint 634209006A8318BC2592C11A26F91501| 141036

    A Tue Jul 22 11:01:41 2008
    A  generated report ZSD_PICKING2                             with fingerprint 634209006A8318BC2592C11A26F91501| 141036

    A Tue Jul 22 11:03:53 2008
    A  generated report ZSD_PICKING2                             with fingerprint 634209006A8318BC2592C11A26F91501| 141036

    A Tue Jul 22 11:04:55 2008
    A  generated report ZSD_PICKING2                             with fingerprint 634209006A8318BC2592C11A26F91501| 141036

    A Tue Jul 22 11:08:17 2008
    A  generated report ZSD_PICKING2                             with fingerprint 634209006A8318BC2592C11A26F91501| 141036

    A Tue Jul 22 11:10:15 2008
    A  generated report ZSD_PICKING2                             with fingerprint 8891B5A8EC7822D058463E1B46BA63AA| 141996

    A Tue Jul 22 11:11:58 2008
    A  generated report ZSD_PICKING2                             with fingerprint 2BBA95A1B82D64006DACD0FF8A46C27D| 146064

    A Tue Jul 22 11:12:12 2008
    A  generated report ZSD_PICKING2                             with fingerprint 2BBA95A1B82D64006DACD0FF8A46C27D| 146064

    A Tue Jul 22 11:15:38 2008
    A  generated report ZSD_PICKING2                             with fingerprint D318ECF472CC69E0F6F15D7ECABBFB91| 146960

    A Tue Jul 22 11:18:08 2008
    A  generated report ZSD_PICKING2                             with fingerprint 2E034C955E88C177DC8950ABC8E32D66| 147244

    A Tue Jul 22 11:23:33 2008
    A  generated report ZSD_PICKING2                             with fingerprint 8FD43A8F2E4E4D21F1ADC869C0B4CBB7| 147764

    A Tue Jul 22 11:24:23 2008
    A  generated report ZSD_PICKING2                             with fingerprint FCA6327240977F61D65FB9B2BC8DA3DE| 148852

    S Tue Jul 22 11:26:05 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    A Tue Jul 22 11:28:05 2008
    A  generated report ZSD_PICKING2                             with fingerprint 2B5B9232DEFB2BFE7086380DD01870E2| 149334

    A Tue Jul 22 11:28:45 2008
    A  generated report ZSD_PICKING2                             with fingerprint 1F840A2650E09A2388A22D7AAA20F9EF| 149402

    A Tue Jul 22 11:29:43 2008
    A  generated report ZSD_PICKING2                             with fingerprint 9D84E6B594FD15B1FA39CD201B9BAB95| 149386

    A Tue Jul 22 11:31:50 2008
    A  generated report ZSD_PICKING2                             with fingerprint 48223582D932269E5D2E5BC031CB73CD| 149450

    A Tue Jul 22 11:36:11 2008
    A  generated report ZSD_PICKING2                             with fingerprint 48223582D932269E5D2E5BC031CB73CD| 149450

    A Tue Jul 22 11:37:40 2008
    A  generated report ZSD_PICKING2                             with fingerprint 48223582D932269E5D2E5BC031CB73CD| 149450

    A Tue Jul 22 11:40:18 2008
    A  generated report ZSD_PICKING2                             with fingerprint 782AA3736B315EEA00BC7B09BD3C5C2F| 150260

    A Tue Jul 22 11:45:54 2008
    A  generated report ZSD_PICKING2                             with fingerprint 05E3B62A0ED9DEBD830B52A4F9530AB3| 149274

    A Tue Jul 22 11:46:44 2008
    A  generated report ZSD_PICKING2                             with fingerprint 07CD1DD13287939E56FE81656DB9BAF9| 149286

    S Tue Jul 22 11:53:51 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    S Tue Jul 22 11:53:54 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    A Tue Jul 22 11:54:14 2008
    A  generated report ZSD_PICKING2                             with fingerprint 07CD1DD13287939E56FE81656DB9BAF9| 149286

    A Tue Jul 22 11:56:17 2008
    A  generated report SAPICN__                                 with fingerprint C3D1C351774FA9FCA1734EFAA15F582B| 291944

    S Tue Jul 22 11:56:41 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    S Tue Jul 22 11:56:58 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    S Tue Jul 22 11:58:37 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    S Tue Jul 22 11:58:41 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    S Tue Jul 22 11:59:39 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    S Tue Jul 22 12:01:17 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    A Tue Jul 22 12:01:31 2008
    A  generated report ZSD_PICKING2                             with fingerprint F59A5C1748323816E8609C662D543581| 149502

    S Tue Jul 22 12:10:00 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    S Tue Jul 22 12:10:14 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    A Tue Jul 22 12:37:26 2008
    A  generated report CL_EX_FI_PAYREF_BADI_010======CP         with fingerprint A894E6CF0D4B166F9D75ACA293F40D95|  16362
    A  generated report IF_EX_FI_PAYREF_BADI_010======IP         with fingerprint D83E71FAF6452700CAB48AA281C07B5E|   4849

    S Tue Jul 22 12:44:12 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    D Tue Jul 22 13:16:39 2008
    D  *** ERROR => invalid value hacurrow 22 hwcurrow 16 [diagoutp.c   1071]
    D  *** ERROR =>   Dynpro      SAPMSYST [diagoutp.c   1072]
    D  *** ERROR =>   Dynpro nr   0020 [diagoutp.c   1073]
    D  *** ERROR => platform      : GUIAPI on NT [diagsrv.c    802]
    D  *** ERROR => gui version   : 640        [diagsrv.c    811]
    D  *** ERROR => gui patchlevel:                                                    [diagsrv.c    819]
    D  *** ERROR => transaction   :                      [diagsrv.c    827]
    D  *** ERROR => user          :              [diagsrv.c    841]
    D  *** ERROR => display    : unichemts1 [diagsrv.c    847]
    D  *** ERROR => invalid value hacurcol 84 hwcurcol 20 [diagoutp.c   1079]
    D  *** ERROR =>   Dynpro      SAPMSYST [diagoutp.c   1080]
    D  *** ERROR =>   Dynpro nr   0020 [diagoutp.c   1081]
    D  *** ERROR => platform      : GUIAPI on NT [diagsrv.c    802]
    D  *** ERROR => gui version   : 640        [diagsrv.c    811]
    D  *** ERROR => gui patchlevel:                                                    [diagsrv.c    819]
    D  *** ERROR => transaction   :                      [diagsrv.c    827]
    D  *** ERROR => user          :              [diagsrv.c    841]
    D  *** ERROR => display    : unichemts1 [diagsrv.c    847]

    D Tue Jul 22 13:16:52 2008
    D  *** ERROR => invalid value hacurrow 22 hwcurrow 16 [diagoutp.c   1071]
    D  *** ERROR =>   Dynpro      SAPMSYST [diagoutp.c   1072]
    D  *** ERROR =>   Dynpro nr   0020 [diagoutp.c   1073]
    D  *** ERROR => platform      : GUIAPI on NT [diagsrv.c    802]
    D  *** ERROR => gui version   : 640        [diagsrv.c    811]
    D  *** ERROR => gui patchlevel:                                                    [diagsrv.c    819]
    D  *** ERROR => transaction   :                      [diagsrv.c    827]
    D  *** ERROR => user          :              [diagsrv.c    841]
    D  *** ERROR => display    : unichemts1 [diagsrv.c    847]
    D  *** ERROR => invalid value hacurcol 84 hwcurcol 20 [diagoutp.c   1079]
    D  *** ERROR =>   Dynpro      SAPMSYST [diagoutp.c   1080]
    D  *** ERROR =>   Dynpro nr   0020 [diagoutp.c   1081]
    D  *** ERROR => platform      : GUIAPI on NT [diagsrv.c    802]
    D  *** ERROR => gui version   : 640        [diagsrv.c    811]
    D  *** ERROR => gui patchlevel:                                                    [diagsrv.c    819]
    D  *** ERROR => transaction   :                      [diagsrv.c    827]
    D  *** ERROR => user          :              [diagsrv.c    841]
    D  *** ERROR => display    : unichemts1 [diagsrv.c    847]

    S Tue Jul 22 13:17:47 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    S Tue Jul 22 13:17:53 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    S Tue Jul 22 13:22:11 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    A Tue Jul 22 13:30:40 2008
    A  generated report SAPLJBD2                                 with fingerprint FB3DAF00A6135001932F0D3AAD95CCFF| 273918

    S Tue Jul 22 13:34:22 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    S Tue Jul 22 13:34:23 2008
    S  *** ERROR => C call error 084(SPOC): area POSSUTIL unknown [rspoabap.c   639]

    A Tue Jul 22 16:09:03 2008
    A  generated report /1BCDWB/DBMLGT                           with fingerprint 9A6F604FBBA14A33DC96415A827B123C| 132316

    M Tue Jul 22 16:40:58 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 16:42:18 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 16:43:45 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 16:44:50 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 16:47:12 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 16:49:09 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 16:52:19 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 16:52:48 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 16:53:05 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 17:00:14 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    Y Tue Jul 22 17:05:32 2008
    Y  *** ERROR => bsdup etype 32 not implemented [dybasbsdup.c 1827]
    Y  *** ERROR => bsdup etype 103 not implemented [dybasbsdup.c 1827]

    M Tue Jul 22 17:06:33 2008
    M  *** WARNING => ThSndDelUser: delete client/user 300/BIZJAKSA     (T19) on server unidev_UHR_00      

    Y Tue Jul 22 17:07:30 2008
    Y  *** ERROR => bsdup etype 32 not implemented [dybasbsdup.c 1827]
    Y  *** ERROR => bsdup etype 103 not implemented [dybasbsdup.c 1827]

    M Tue Jul 22 17:14:21 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 17:26:45 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 17:30:39 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 17:38:32 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 17:39:23 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 17:40:51 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 17:43:48 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 17:54:43 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 17:57:01 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 18:02:01 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    M Tue Jul 22 18:02:22 2008
    M  *** ERROR => ThIDbgCreate: ThICreateAltMode failed (27) [thxxdbg.c    1326]
    M  *** ERROR => ThDbgDiscardOutbuf: No debugger attached ? [thxxdbg.c    858]
    M  *** ERROR => ThDbgGetOutbuf: No debugger attached ? [thxxdbg.c    772]
    A  *** ERROR => TPDA: illegal state while switching off [abtpdmess.c  1148]

    A Wed Jul 23 10:22:19 2008
    A  generated report SAPLZWM_ITS                              with fingerprint ED19F251BF60B9EFA02F41623644A153| 775307

    A Wed Jul 23 10:39:10 2008
    A  generated report SAPLZWM_ITS                              with fingerprint 40E5A24C9E0CFE1FC11E73021AA7D768| 775115

    A Wed Jul 23 10:39:23 2008
    A  generated report Z_WM_ITS_01===================FT         with fingerprint 0FD2E4B3815A3282381876F1DAD85055|  32318

    A Wed Jul 23 10:40:11 2008
    A  generated report SAPLZWM_ITS                              with fingerprint F2C4BE68871EB3F8953964A2BEC440E5| 775139

    A Wed Jul 23 10:40:30 2008
    A  generated report Z_WM_ITS_01===================FT         with fingerprint 0FD2E4B3815A3282381876F1DAD85055|  32318

    A Wed Jul 23 10:43:27 2008
    A  generated report SAPLZWM_ITS                              with fingerprint F2C4BE68871EB3F8953964A2BEC440E5| 775139

    A Wed Jul 23 10:45:15 2008
    A  generated report SAPLZWM_ITS                              with fingerprint DD7F323AB366E581F641DD70604C7A71| 775261

    A Wed Jul 23 10:50:41 2008
    A  generated report SAPLZWM_ITS                              with fingerprint DD7F323AB366E581F641DD70604C7A71| 775261

    A Wed Jul 23 10:54:55 2008
    A  generated report SAPLZWM_ITS                              with fingerprint 18653A001ED6C6965413E04FA55C0C1A| 775337

    A Wed Jul 23 10:55:20 2008
    A  generated report Z_WM_ITS_01===================FT         with fingerprint 4005925FF96BDCE971A45EFE9CB8D9CE|  33446

    A Wed Jul 23 10:56:23 2008
    A  generated report SAPLZWM_ITS                              with fingerprint 18653A001ED6C6965413E04FA55C0C1A| 775337

    A Wed Jul 23 10:58:53 2008
    A  generated report SAPLZWM_ITS                              with fingerprint 92DE24B695CAC5F1519E31F1B97DBAF9| 775365

    A Wed Jul 23 10:59:03 2008
    A  generated report SAPLZWM_ITS                              with fingerprint 7DC4155F94E1C0FA70AC7EFA25D66943| 775365

    A Wed Jul 23 10:59:09 2008
    A  generated report Z_WM_ITS_01===================FT         with fingerprint 4005925FF96BDCE971A45EFE9CB8D9CE|  33446

    A Wed Jul 23 11:04:55 2008
    A  generated report SAPLZWM_ITS                              with fingerprint AB87C907C1C5FE2524FE63971ED5E5F0| 775401

    A Wed Jul 23 11:05:14 2008
    A  generated report Z_WM_ITS_01===================FT         with fingerprint 4005925FF96BDCE971A45EFE9CB8D9CE|  33446

    A Wed Jul 23 11:07:02 2008
    A  generated report SAPLZWM_ITS                              with fingerprint 11E2FB746C760626805B1AFE05414408| 775409

    A Wed Jul 23 11:24:36 2008
    A  generated report SAPLZWM_ITS                              with fingerprint 756DCE162D5B25C898D1E5A5DB860531| 775461

    A Wed Jul 23 11:25:18 2008
    A  generated report SAPLZWM_ITS                              with fingerprint 4A8E56370238EAF6601C9EF1CD649AE6| 775461

    A Wed Jul 23 11:25:32 2008
    A  generated report SAPLZWM_ITS                              with fingerprint 4A8E56370238EAF6601C9EF1CD649AE6| 775461

    A Wed Jul 23 11:26:14 2008
    A  generated report Z_WM_ITS_01===================FT         with fingerprint 1FD7964CF35A3D47C2AF3B685FC0B662|  34562

    A Wed Jul 23 11:28:31 2008
    A  generated report SAPLZWM_ITS                              with fingerprint 553819C5E9B6F8067E0DFF47D21E8F5D| 775513

    A Wed Jul 23 11:30:56 2008
    A  generated report SAPLZWM_ITS                              with fingerprint 045AD16C7ECACD76F5ADC55E05F1DEB7| 775553

    A Wed Jul 23 11:33:17 2008
    A  generated report SAPLZWM_ITS                              with fingerprint FFDC34EE24A5BA8B096BE3ED40C15AEC| 775553

    A Wed Jul 23 11:33:30 2008
    A  generated report Z_WM_ITS_01===================FT         with fingerprint 1FD7964CF35A3D47C2AF3B685FC0B662|  34562

    A Wed Jul 23 11:34:54 2008
    A  generated report SAPLZWM_ITS                              with fingerprint 091FC12CFBB2CCE4E1554E0D254DBBD5| 775533

    A Wed Jul 23 11:35:03 2008
    A  generated report Z_WM_ITS_01===================FT         with fingerprint 1FD7964CF35A3D47C2AF3B685FC0B662|  34562

    A Wed Jul 23 11:36:15 2008
    A  generated report SAPLZWM_ITS   

    Looks like disp+work.exe dumped at the O/S level.  Check the windows event log to see if you can find anything.
    The user didn't do anything, at best the user could probably crash a single work process, but the process would just restart anyways.
    Also, make sure your kernel is upgraded to the latest versions, there were releases of kernel (640 and 700) known to have these dumps.

  • Why use oracle fail safe???

    hi
    i have one question..
    why use oracle fail safe???
    In the case windows HA System, our systems is operating Oracle database using only Windows Cluster (MSCS) without Oracle Fail Safe!!
    Without oracle fail safe, our systems was installed Oracle database.....
    if using oracle fail safe, how is merit???.
    Thanks...

    Hi Kim,
    why use oracle fail safe???Refer http://download.oracle.com/docs/html/B12070_01/intro.htm#i1005996
    Hope helps
    Regrads,
    Xaheer

  • Why use symbol "!" here?

    Why use symbol "!" here?
    if (!contactOld.getWorkAddress().equals(
    public void entryUpdated(MapEvent event)
    Contact contactOld = (Contact)event.getOldValue();
    Contact contactNew = (Contact)event.getNewValue();
    StringBuffer sb = new StringBuffer();
    if (!contactOld.getHomeAddress().equals(
    contactNew.getHomeAddress()))
    sb.append("Home address ");
    if (!contactOld.getWorkAddress().equals(
    contactNew.getWorkAddress()))
    sb.append("Work address ");
    if (!contactOld.getTelephoneNumbers().equals(
    contactNew.getTelephoneNumbers()))
    sb.append("Telephone ");
    sb.append("was updated for ").append(event.getKey());
    System.out.println(sb);
    }

    http://java.sun.com/docs/books/tutorial/java/nutsandbolts/operators.html
    :Rob:
    Coherence Team

  • Why use XML

    I can't find any true tangible benefits to using XML
    to transfer data from legacy systems, in comparison to say, using an external file and loading into existing
    schema objects, which we do use.
    We have 4-6 internal systems, and many many external systems, that currently use text or DB links to transfer data around, and of course the manager hears the catch-phrase-of-the-day XML, all time time and wants us to use it. We do a lot of complicated reading of the files, i.e. headers and multiple layers of detail (header & detail lines can have infinite detail lines)
    Can somebody offer up why use XML? (white pages, something I can get proof with) or why not to use it.
    To me, completly different layer of technology, everybody has a "standard", nobody has the same standard.
    More storage in the database (being a DBA I don't like this), and seems to need its own full time employee to manage it (the IT director won't like that).

    SO... you STILL have to get what the file looks like... can't be read from inside the file (like a decent CSV), hasn't somebody realized that keep layout seperate from the data during outside transfers is stupid?
    I understand the tags etc, I guess because disk is free, and networks are faster, lets clog them up with useless info <the tags>. I have loaded/extracted XML from the database (what a PITA that is) before I asked this question.
    My question is, can somebody please point me in a direction of the benefits of using XML to transfer data between systems.
    Why use XML? Why is XML better than a CSV (or formatted text file)????
    What benefits does it have over those file types??
    A great list of pro/cons would be nice... everything on oracle web sites, and google say all basically say the same thing... "use it because it's new and neat"
    Why should we spend hundreds of man hours reinventing the wheel?
    What tangible benefits are there to using it?
    Might be the wrong forum, if so, please point me in the right direction.

  • Backup Sharepoint 2013 Farm with SQL 2012 "Always On" using System Center 2012 R2 Data Protection Manager

    Is backing up and Restoring SharePoint 2013 Farm with SQL 2012  "Always On" High Availability now supported using "System Center 2012 R2 Data Protection Manager"?
    I cannot find confirmation anywhere.
    Regards,
    John

    Per this thread
    http://social.technet.microsoft.com/Forums/en-US/0c047737-4733-4ad5-a24d-3e6e6ff42f70/dpm-2012-sp1-and-sharepoint-2013-on-a-sql-2012-alwayson-ag?forum=dpmsharepointbackup, no it does not look like this is supported.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Backup Sharepoint 2013 SP1 Farm with SQL 2014 RTM "Always On" using System Center 2012 R2 Data Protection Manager

    Is backing up and Restoring SharePoint 2013 SP1 Farm with SQL 2014 RTM  "Always On" High Availability now supported using "System Center 2012 R2 Data Protection Manager"? 
    I cannot find information anywhere.
    Regards,
    Igor

    This is a DPM supportability issue, I believe. Last I heard, no it was not supported. SharePoint 2013 does not support SQL 2014 until the April 2014 CU. The CU should be out soon, although it appears to have been delayed (usually comes out on Patch Tuesday,
    which was this past Tuesday).
    Trevor Seward
    Follow or contact me at...
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Maybe you are looking for

  • How to display horizontal line in top-of-page by using object oriented ALV?

    How to display horizontal line in top-of-page by using object oriented ALV. I am created top-of-page in object oriented alv. But not be successes in showing horizontal line in it. Can any one pls give solution for this.. Thanks and regards..

  • ITunes 7.1 upgrade permanently forgets passwords

    In Preferences, I've verified nothing has changed. Autofill is still enabled, all passwords are still in the database, nothing in security or privacy or anything else has changed. So then why is Safari not autofilling any usernames and passwords to a

  • Jdev 11g: JBO-30019: An unavailable cookie state

    Hi All, I am using Jdeveloper 11.1.1.4.0. We are getting following error frequently in our logs. Haven't got any usefull input after searching OTN/Oracle Support. Can anyone please provide some input: oracle.jbo.common.ampool.ApplicationPoolException

  • JOB IDOC

    Hi everybody. How send IDOC to XI by JOB? Thanks Anvar.

  • Transfer photos from galaxy note 2 onto my laptop.

    I have a Galaxy Note 2.  My laptop has Chrome downloaded and Firefox and runs Windows 8.  I can't find on my Galaxy Note 2 how to transfer all my photos/albums onto my microcard so I can just take it out and transfer them with the adaptor to my lapto