Quantcast
Channel: SCN : All Content - SAP NetWeaver Technology Platform
Viewing all 1967 articles
Browse latest View live

Which client should be use 000 or 001 for Client Copy

$
0
0

Hi,

 

Which client we can use 000 or 001 for fresh Client Copy.

 

Also what is the diff. b/w 000 and 001 client and its uses...

 

Please suggest.


How to Pass Multiple Value Range From Query ?

$
0
0

Hi,

 

I have searched over SDN to find about how do we pass multiple value ranges from Query to SAP ODATA?

 

But I have not found suitable answers so I am posting it here.

 

If we need to pass a date parameter in Query which has a multiple range like  sales orders created date between 03/02/2014 to 05/07/2014.

 

How do we phrase it in Query ?

 

I tried as below but the IT_FILTER_SELECT_OPTIONS of /IWBEP/IF_MGW_APPL_SRV_RUNTIME~GET_ENTITYSET does not get filled up with the parameters

 

How do we pass multiple values in Query?

 

http://ctnhsapapp16.corp.ken.com:8000/sap/opu/odata/sap/ZCHAKRABK_MAINT_ORDERS_SRV/Maint_Orders?$filter=Maint_Plant eq 'US19' and B_st_dt gt datetime'2015-02-01T00:00:00' and B_st_dt lt datetime'2015-02-28T00:00:00'

 

 

Thanks in Advance.

KC.

when does the user context contains user related information?

$
0
0

when the user context rolls into the WP task handler all the user related information will get rolled in.


does user context contains information about all the users or it comes with the user login? kindly answer my question..

SAP Netweaver BI

$
0
0

Hello everyone,

We are an Algerian drilling company with a ECC6 SAP information system with 6 modules.

We are currently under study for the integration of BI platform.

Note: for our version EHP6 FOR SAP ERP 6.0 has two types:

1- SAP NETWEAVER 7.3 (Microsoft SQL Server)

2- SAP NETWEAVER 7.4 (Microsoft SQL Server or SAP HANA)

What is the best choice?

 

issue:

What strategy to follow?

What are the different scenario exists with SAP ECC6 solution?

What are the different type of license exists with SAP Netweaver?

What a result for each solution component and licensing? What is needed sizing?

The project duration?

the docummentation

 

 

 

thank you for your cooperation

Configuration between 2 SAP Web Dispatcher

$
0
0

Hi all,

 

is it possible to link from an SAP Web Dispatcher to another SAP Web Dispatcher ?

If yes, how ? i can´t find a documentation about this.

 

i need it, because the customer connect to the old landscape with the SAP Webdispatcher and here are all connections open (firewall)

In the new Landscape some connections does not work (firewall partially not open) . our customer want go live at the nex days and there is no quick way to open the connections to the nuew landscape in this time.

 

any ideas ?

 

regards Thomas

Web service error: WS Security can only be applied on a SOAP document

$
0
0

Hello,

 

I am facing the problem that when calling a web service I got this error message:

 

005056B855B2002A0000013B000032C70005105EF7348C38 : WS Security can only be applied on a SOAP document.

 

Some information about the webservice:

Transport Binding: HTTP SOAP with Attachments

Authentication: Basic

Netweaver version: 7.01.06


The webservice is based on EJB. Basically I want to add two operations in the webservice: one to accept attachment as input. the other one returns a file as attachment.

 

Does anyone knows why this happens and how to resolve it? Thanks in advance!

 

Regards,

Grant

Running server side processes

$
0
0
Be aware that you should only do things which won't harm system!
Maybe
you know the problem - you have to execute something at OS level and
don't have access. Basis team isn't accessible and it's urgent...
With a few tricks, you can help yourself.

Example 1: Manual import of transport requests

Starting situation: You have to import a transport request and don't have proper rights in target system, but are allowed to call transaction SM69.
First, you need to find out where the transport profile is located - usually in /usr/sap/trans/bin. AL11 or RZ10 might help.
Next step is to check if there is a command in SM69 defined, if not, create one:
SM69_1.jpg
SM69_2.jpg
After that, you may run it. First add your transport to buffer:
SM69_3jpg.jpg
The syntax is (write in field Additional parameters):
  1. pf=<transport profile> addtobuffer <transport request> <SID> client=<target client>

 

After that, you can import it:SM69_4.jpg

Just change "addtobuffer" to "import" - you may even add unconditional modes with the U flag, refer to tp Options - Software Logistics - SAP Library

Example 2: Exporting table contents

Starting situation: You need to export complete table contents with R3trans in order to import everything in a target system. First

of all, you need to define your export file. Create a new file with the

text editor of your choice (mind to use proper line ending):

  1. export
  2. file = '/tmp/export.txt'
  3. delete from <table>
  4. select * from <table>

The delete statement is not executed when you export the table, only at import. Uploading this file can be done with transaction CG3Z: r3trans_1.jpg After upload, just call R3trans using SM69 with these parameters:

  1. R3trans -w /tmp/output.txt /tmp/export/controlfile.txt

When the export is done, you can use CG3Y to download the file. Upload it and import it in the target system with:

  1. R3trans -w /tmp/output2.txt -i /tmp/export.txt

How to speed up client deletions

$
0
0
When deleting large clients, long
runtimes are often a problem. Parallelism can help, but the real
bottleneck are large tables. So maybe this guide can help. The SQL
statements are for Oracle databases with SAPSR3 layout, for other
databases or layouts you have to modify them.

Manual deletion of tables

First
of all, you need to identify large, client specific tables. E. g. in
IS-U systems candidates are DFKKOP or SWWCNTP0. These tables are client
specific, so you can easily find out if the table can be truncated
without harming the other clients:
  1. SELECT mandt, count( * ) FROM sapsr3.dfkkop GROUPBY mandt; 
or
  1. SELECT client, count( * ) FROM sapsr3.swwcntp0 GROUPBY mandt; 
As
result, you see the number of rows for each client. When only the
client you want to delete has rows, you can truncate the tables
beforehand. This will significantly speed up the client deletion.

Copy & deletion of "unbalanced" tables

When
you identify tables, where only a few rows are contained in the clients
which will remain in the system and a huge amount of rows in the client
you want to delete, you can first copy all remaining rows in a new
table (assuming you want to delete client 100):
  1. CREATE TABLE sapsr3."dfkkop_tmp" TABLESPACE psapsr3 NOLOGGING PARALLEL 8 AS 
  2. SELECT /*+ INDEX("dfkkop""dfkkop~0") */ * FROM sapsr3."dfkkop"WHERE mandt NOTIN ('100'): 
After that, you just have to truncate the original table and insert all rows from the temp table:
  1. TRUNCATE TABLE sapsr3."dfkkop"
  2. INSERT INTO sapsr3."dfkkop"SELECT * FROM"dfkkop_tmp"
  3. COMMIT; 
  4. ALTER INDEX sapsr3."dfkkop~0" REBUILD ONLINE; 
Rebuilding the primary index is a good thing to speed up the client deletion afterwards.

Automation of finding tables / preparing statements

If
there are many huge tables and the time windows is very small, you may
use a scripting language to prepare the SQL statements. I prefer Perl,
as I know this language and as Oracle comes with Perl and the DBI
module. Connecting to your database is pretty simple:
  1. use DBI;
  2. my $sid = "<SID>";
  3. my $hostname = "localhost";
  4. my $port = "<listener port>";
  5. my $sappw = "<password>";
  6. my $sapuser = "SAPSR3";
  7. my $connection = DBI->connect("DBI:Oracle:SID=$sid;host=$hostname;port=$port","$sapuser/$sappw") || die "Can't connect to $sid: $!";
You can start the script with $ORACLE_HOME/perl/bin/perl script.pl as oracle owner. Next
step will be to determine all client specific tables - in most cases,
the first column is named client, mandt or mandant. Here is a code
snippet which will give you number of rows in the remaining clients and
overall rows, you just have to adjust to your needs:
  1. my $mandt_exclude = '100';
  2. my $sql_all_tables = "SELECT object_name FROM dba_objects WHERE owner = 'SAPSR3' AND object_type = 'TABLE' ORDER BY object_name ASC";
  3. my $all_cursor = $connection->prepare($sql_all_tables);
  4. $all_cursor->execute();
  5. while (my @table = $all_cursor->fetchrow_array) {
  6. $sql_first_column = "SELECT table_name, column_name FROM dba_cons_columns WHERE table_name = '$table[0]' AND constraint_name = ( SELECT MIN( constraint_name ) FROM dba_cons_columns WHERE table_name = '$table[0]' )";
  7. my $first_col_cursor = $connection->prepare($sql_first_column);
  8. $first_col_cursor->execute();
  9. while (my @col = $first_col_cursor->fetchrow_array) {
  10.   if ($col[1] eq "CLIENT" or $col[1] eq "MANDANT" or $col[1] eq "MANDT") {
  11.    $sql_count_all = "SELECT count( * ) FROM \"$table[0]\"";
  12.    my $count_all_cursor = $connection->prepare($sql_count_all);
  13.    $count_all_cursor->execute();
  14.    while (my @exc = $count_all_cursor->fetchrow_array) {
  15. <Put your custom logic here>
  16.    }
  17.    $sql_count_exclude_mandt = "SELECT count( * ) FROM \"$table[0]\" WHERE $col[1] NOT IN ($mandt_exclude)";
  18.    my $count_exclude_cursor = $connection->prepare($sql_count_exclude_mandt);
  19.    $count_exclude_cursor->execute();
  20.    while (my @exc = $count_exclude_cursor->fetchrow_array) {
  21. <Put your custom logic here>
  22. }
  23. }
  24. }
You just have to add some output to build the SQL scripts.

How to prevent jobs from running multiple times in parallel

$
0
0

When having periodical jobs with
big differences in runtime and you want to prevent the jobs to run
multiple times in parallel, SAP has a report called RSBTONEJOB2.

 

You just have to create a variant for this report:

RSBTONEJOB2_1.jpg

REPORT is the report you want to run as job step, VARIANT the variant you have to create beforehand.

 

Now you have to save this variant with the same name as the variant of the report:

RSBTONEJOB2_2.jpg

Now create the job in SM36:

RSBTONEJOB2_3.jpg

The job name has to be the JOBNAME you entered before. As step, you just have to add RSBTONEJOB2 with the created variant:

RSBTONEJOB2_4.jpg

When
this job runs, it first checks if there is another job with the same
name - if not, the entered REPORT is executed with the selected VARIANT.

BAPI_USER_CHANGE - any alternative

$
0
0

Hi,

 

I'm using BAPI_USER_CHANGE for reseting a user's pass.

The problem with this function is that it sets an initial pass => in the next logon the user will be prompted to change it.

Is there a way to change this behavior?

If not, do I have any other BAPI alternative?

 

tx a lot,

s.

Error over night. WSAEWOULDBLOCK

$
0
0

Hello,

 

When i left my computer and my server: 'SAP NetWeaver Application Server ABAP & SAP Business Warehouse 7.4 SP8 on SAP HANA 1.0 SP8 [Developer edition].

Everything worked fine.

Now when i try to log into the A4H instance on this server i get an unexpected error.

I already searched the forums and followed several of the given instructions like disabling firewalls, opening other ports, ...

None seem to help. Pinging from the frontend to the server isn't possible either.

Anyone got a suggestion on how to get this working?

 

Thank you,

Lenard Schockaert

 

errorgate.PNG

SAP BPA Sizing Guide V9

7.31 Process Chain executes in target system upon transport

$
0
0

  Hello,

     We are in the middle of an upgrade cycle to move to BW 7.31 Level 5. The upgrade has been done in our DEV and QA. I made a
small change (adding one DTP) to a process chain in DEV. I sent the transport to QA. In our previous version (7.01 Level 9), when you went to the target system ( QA for example) after transporting a process chain, and you double clicked the process chain, the Modified version had to be explicitly activated in the target system for it to become the Active version.

    

After transporting the slightly altered process chain from DEV to QA, I went into QA and double clicked the process chain. I saw that the Active
version already included the new DTP. Great. Apparently in 7.31 you no longer have to activate a process chain after a transport. However, I also discovered that the process chain executed as soon as the Method Execution (0) Successfully Completed entry was in the transport log. That’s not good. This particular chain is a Local chain that is called from another process chain. It is not a Periodic job and is set to Immediate start. To be absolutely sure of this behavior, I later needed one more DTP in the process chain. I added the DTP in DEV and transported the process chain to QA. When I saw the transport complete, I logged in to QA, went to RSA1, and did a Manage on a cube I knew would be loaded by the process chain. Sure enough there was a new load request running. I never even went into RSPC, so I know I did not execute the process chain. Have any of you experienced this behavior? If so, is there an OSS Note that corrects this issue? I did a Notes Search but couldn’t find anything.

    

   Thanks in advance,

 

  Ben Fitzgerald

  Senior Engineer

  NIIT Media Technologies, LLC

  Augusta, GA

disp+work.exe running but not connected to Message Server

$
0
0

Hi,

 

 

I have a problem with my Sap:

I've worked with my Sap since 2 months, yesterday I received a problem:

 

I started my SAP Management Console an I saw yellow color and information:

Disp+work.exe running but not connected to message server

When I previous start my SAP NSP everything was fine

Nearer I put developer trace:

 

 

Please help

 

---------------------------------------------------

trc file: "dev_disp", trc level: 1, release: "720"

---------------------------------------------------

sysno 00

sid NSP

systemid 562 (PC with Windows NT)

relno 7200

patchlevel 0

patchno 214

intno 20020600

make multithreaded, Unicode, 64 bit, optimized

profile \\Rafal\sapmnt\NSP\SYS\profile\NSP_DVEBMGS00_Rafal

pid 8920

 

kernel runs with dp version 134000(ext=119000) (@(#) DPLIB-INT-VERSION-134000-UC)

length of sys_adm_ext is 588 bytes

*** SWITCH TRC-HIDE on ***

***LOG Q00=> DpSapEnvInit, DPStart (00 8920) [dpxxdisp.c   1315]

shared lib "dw_xml.dll" version 214 successfully loaded

shared lib "dw_xtc.dll" version 214 successfully loaded

shared lib "dw_stl.dll" version 214 successfully loaded

shared lib "dw_gui.dll" version 214 successfully loaded

shared lib "dw_mdm.dll" version 214 successfully loaded

shared lib "dw_rndrt.dll" version 214 successfully loaded

shared lib "dw_abp.dll" version 214 successfully loaded

shared lib "dw_sym.dll" version 214 successfully loaded

shared lib "dw_aci.dll" version 214 successfully loaded

rdisp/softcancel_sequence : -> 0,5,-1

use internal message server connection to port 3900

rdisp/dynamic_wp_check : 1

rdisp/calculateLoadAverage : 1

 

Wed Feb 25 20:08:38 2015

*** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 6 seconds

***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  6423]

MtxInit: 30000 0 0

DpSysAdmExtInit: ABAP is active

DpSysAdmExtInit: VMC (JAVA VM in WP) is not active

DpIPCInit2: write dp-profile-values into sys_adm_ext

DpIPCInit2: start server >Rafal_NSP_00 <

DpShMCreate: sizeof(wp_adm) 31696  (2264)

DpShMCreate: sizeof(tm_adm) 5517056      (27448)

DpShMCreate: sizeof(wp_ca_adm)         64000 (64)

DpShMCreate: sizeof(appc_ca_adm) 64000  (64)

DpCommTableSize: max/headSize/ftSize/tableSize=500/16/1384064/1384080

DpShMCreate: sizeof(comm_adm) 1384080      (2744)

DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0

DpShMCreate: sizeof(slock_adm) 0      (296)

DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0

DpShMCreate: sizeof(file_adm) 0      (80)

DpShMCreate: sizeof(vmc_adm) 0      (2152)

DpShMCreate: sizeof(wall_adm) (41664/42896/64/192)

DpShMCreate: sizeof(gw_adm)      48

DpShMCreate: sizeof(j2ee_adm)    3952

DpShMCreate: SHM_DP_ADM_KEY (addr: 0000000007600050, size: 7163600)

DpShMCreate: allocated sys_adm at 0000000007600060

DpShMCreate: allocated wp_adm_list at 0000000007603070

DpShMCreate: allocated wp_adm at 0000000007603260

DpShMCreate: allocated tm_adm_list at 000000000760AE40

DpShMCreate: allocated tm_adm at 000000000760AE90

DpShMCreate: allocated wp_ca_adm at 0000000007B4DDA0

DpShMCreate: allocated appc_ca_adm at 0000000007B5D7B0

DpShMCreate: allocated comm_adm at 0000000007B6D1C0

DpShMCreate: system runs without slock table

DpShMCreate: system runs without file table

DpShMCreate: allocated vmc_adm_list at 0000000007CBF060

DpShMCreate: system runs without vmc_adm

DpShMCreate: allocated gw_adm at 0000000007CBF110

DpShMCreate: allocated j2ee_adm at 0000000007CBF150

DpShMCreate: allocated ca_info at 0000000007CC00D0

DpShMCreate: allocated wall_adm at 0000000007CC0160

DpCommAttachTable: attached comm table (header=0000000007B6D1C0/ft=0000000007B6D1D0)

DpSysAdmIntInit: initialize sys_adm

rdisp/test_roll : roll strategy is DP_NORMAL_ROLL

dia token check not active (6 token)

MBUF state OFF

DpCommInitTable: init table for 500 entries

 

Wed Feb 25 20:08:39 2015

DpRqQInit: keep protect_queue / slots_per_queue 0 / 2001 in sys_adm

rdisp/queue_size_check_value : -> on,50,30,40,500,50,500,80

EmInit: MmSetImplementation( 2 ).

MM global diagnostic options set: 0

<ES> client 0 initializing ....

<ES> EsILock: use spinlock for locking

<ES> InitFreeList

<ES> block size is 4096 kByte.

<ES> Info: em/initial_size_MB( 16343MB) not multiple of em/blocksize_KB( 4096KB)

<ES> Info: em/initial_size_MB rounded up to 16344MB

Using implementation view

<EsNT> Using memory model view.

<EsNT> Memory Reset disabled as NT default

<ES> 4085 blocks reserved for free list.

ES initialized.

  1. a. mm.dump: set maximum dump mem to 96 MB

DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE

MPI: dynamic quotas disabled.

MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%

 

Wed Feb 25 20:08:44 2015

rdisp/http_min_wait_dia_wp : 1 -> 1

***LOG CPS=> DpLoopInit, ICU ( 3.4 3.4 4.1) [dpxxdisp.c   1701]

 

Wed Feb 25 20:08:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

***LOG Q0L=> DpLoopInit, nomscon () [dpxxdisp.c   1802]

CCMS uses Shared Memory Key 73 for monitoring.

CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.

CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.

CCMS: start to initalize 3.X shared alert area (first segment).

DpAppcBlksLow: max appc blocks in queue is 500 (50 %)

DpWpBlksLow: max wp blocks in queue is 800 (80 %)

 

Wed Feb 25 20:09:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:09:46 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndName () [dpxxdisp.c   5317]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:09:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:09:55 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:10:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:10:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:10:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:11:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:11:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:11:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:12:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:12:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:13:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:13:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:13:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:14:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:14:10 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:14:12 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:14:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:14:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:15:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:15:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:15:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:16:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:16:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:17:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:17:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:17:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:18:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:18:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:18:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:19:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:19:21 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:19:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:19:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:20:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:20:44 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:21:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:21:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:21:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:22:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:22:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:23:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:23:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:23:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:24:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:24:20 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:24:22 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:24:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c 718]

 

Wed Feb 25 20:24:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:25:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:25:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:26:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:26:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:26:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:27:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:27:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:27:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:28:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:28:44 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:29:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:29:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:29:31 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:29:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:30:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:30:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:30:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:31:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:31:44 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:32:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:32:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:32:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:33:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:33:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:33:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:34:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:34:30 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:34:32 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:34:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:34:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c 718]

 

Wed Feb 25 20:35:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:35:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c 718]

 

Wed Feb 25 20:36:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:36:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:36:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:37:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:37:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:37:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:38:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:38:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:39:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:39:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:39:35 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:39:37 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:39:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:40:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:40:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:41:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:41:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:41:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:42:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:42:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:42:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:43:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:43:44 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:44:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:44:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:44:35 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:44:37 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:44:44 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:45:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:45:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:45:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:46:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:46:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:46:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:47:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:47:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:48:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:48:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:48:44 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:49:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:49:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:49:35 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:49:37 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:49:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:50:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:50:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:50:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:51:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:51:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:51:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:52:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:52:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:53:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:53:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:53:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:54:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:54:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:54:40 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:54:42 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:54:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:55:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:55:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:55:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:56:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:56:44 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:57:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:57:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:57:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:58:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:58:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:58:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:59:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:59:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 20:59:45 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:59:47 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 20:59:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:00:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:00:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:00:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:01:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:01:44 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:02:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:02:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:02:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:03:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:03:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:03:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:04:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:04:44 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:04:45 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:04:47 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:05:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:05:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c 718]

 

Wed Feb 25 21:05:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:06:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c 718]

 

Wed Feb 25 21:06:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:06:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:07:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:07:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:08:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:08:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:08:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:09:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:09:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:09:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:09:55 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:09:57 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:10:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:10:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c 718]

 

Wed Feb 25 21:10:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:11:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c 718]

 

Wed Feb 25 21:11:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:12:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:12:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:12:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:13:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:13:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:13:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:14:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:14:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:14:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:15:01 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:15:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:15:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:16:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:16:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:16:44 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:17:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:17:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:17:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:18:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:18:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:18:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:19:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:19:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:20:04 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:20:05 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:20:07 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:20:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:20:44 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:21:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:21:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:21:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:22:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:22:36 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:22:56 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:23:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:23:39 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:23:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:24:24 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:24:46 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:25:00 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:25:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:25:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:25:46 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:26:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:26:31 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:26:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:27:11 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:27:31 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:27:56 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:28:16 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:28:41 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:29:01 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:29:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:29:46 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:30:00 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:30:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:30:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:30:46 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:31:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:31:31 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:31:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:32:11 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:32:36 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:33:01 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:33:21 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:33:41 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:34:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:34:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:34:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:35:05 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:35:11 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

*** ERROR => MsISnd2: not_attached [msxxi.c 1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:35:31 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:35:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:36:14 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:36:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:36:59 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:37:19 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:37:41 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:38:01 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:38:21 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:38:41 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:39:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:39:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:39:46 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:40:11 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:40:12 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:40:14 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:40:31 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:40:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:41:16 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:41:36 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:41:56 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:42:21 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:42:41 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:43:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:43:29 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:43:49 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:44:09 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:44:34 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:44:54 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:45:16 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:45:17 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:45:19 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:45:36 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:45:56 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:46:21 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:46:41 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:47:01 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:47:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:47:46 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:48:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:48:31 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:48:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:49:16 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:49:41 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:50:01 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:50:21 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:50:23 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:50:41 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:51:01 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:51:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:51:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:52:11 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:52:36 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:52:56 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:53:16 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:53:41 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:54:01 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:54:21 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:54:46 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:55:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:55:17 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:55:19 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 21:55:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:55:46 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:56:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:56:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:56:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:57:11 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:57:31 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:57:56 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:58:16 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:58:41 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:59:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:59:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 21:59:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:00:11 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:00:17 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 22:00:19 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 22:00:31 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:00:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:01:16 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:01:36 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:02:01 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:02:21 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:02:41 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:03:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:03:31 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:03:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:04:16 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:04:36 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:05:01 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:05:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:05:27 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 22:05:29 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 22:05:46 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:06:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:06:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:06:46 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:07:11 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:07:36 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:07:56 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:08:21 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:08:41 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:09:01 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:09:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:09:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:10:11 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:10:31 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 22:10:33 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 22:10:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:11:11 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:11:36 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:11:56 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:12:16 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:12:36 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:13:01 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:13:21 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:13:46 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:14:06 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:14:26 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:14:46 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:15:11 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:15:31 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 22:15:33 2015

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

*** ERROR => MsISnd2: not_attached [msxxi.c      1510]

***LOG Q0N=> DpRqNoWpHandle, MsSndAdmin () [dpxxdisp.c   5401]

 

Wed Feb 25 22:15:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:16:11 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:16:31 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

 

Wed Feb 25 22:16:51 2015

*** ERROR => MsIAttachEx: NiBufConnect to Rafal/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]

when does the user context contains user related information?

$
0
0

when the user context rolls into the WP task handler all the user related information will get rolled in.


does user context contains information about all the users or it comes with the user login? kindly answer my question..


HOW to configure Microsoft office in my SAP portal netweaver 7.3

$
0
0


Hello Experts,

 

Can any one tell me how can I configure my microsoft outlook to my Portal netweaver 7.3...??

 

Regards,

Sumit

what is the difference between processing time and CPU time?

$
0
0

Hi,

 

while i was checking ST03N tcode i found processing time and cpu time. it would be great if someone answers this. thanks for the help!

 

Bhushan

How to know the SUPERDBA password or reset it

$
0
0

I am a complete newbie to SAP Netweaver Application server. We have upgraded our application server from 7.1 to 7.4. After the upgrade we are facing an issue, the database log is full.

 

To resolve this issue, we found a solution through dbmcli. Below are the steps to resolve the log is full issue.

Steps

    1. dbmcli -d <database name> -u <username,password>

    2. db_admin

    3. util_connect

    4. util_execute clear log

    5. db_online

    6. exit

 

 

All fine, but in the first step itself I am facing exception, because I am not sure of the database password. Below is my command and error message in detail

 

dbmcli -d J2E -u SUPERDBA,<mypassword entered here>

 

Error! Connection failed to node(local) for database J2E:

-24950, ERR_USRFAIL: User authorization failed.

 

Please help resolve this issue.

0HR_PT_3, 0HR_PT_2 no data from long time

$
0
0

Hi,

 

I am trying to load HR data for extractors 0HR_PT_3 and 0HR_PT_2 using both full/init. No data is coming to BW even though i tried to load using time selections. i have tried following SAP Notes but no use.

 

1. 397610 0HR_PT_2, 0HR_PT_3: Performance

2. 389837 Time data extraction: Delta initialization & performance

3. 522096 Multiple delta initialization: 0HR_PT_1 0HR_PT_2 0HR_PT_3

4. 670751 Time management extractors and new mployees 

5. 377361 Time data extractor: Employee without IT 0007

6. 757222 Delta extraction in time management

7. 353177 Long-run. progr. at time data


Does any one have any idea , what causing the issue?

Thanks in advance.


Regards

Manoj

How to Pass Multiple Value Range From Query ?

$
0
0

Hi,

 

I have searched over SDN to find about how do we pass multiple value ranges from Query to SAP ODATA?

 

But I have not found suitable answers so I am posting it here.

 

If we need to pass a date parameter in Query which has a multiple range like  sales orders created date between 03/02/2014 to 05/07/2014.

 

How do we phrase it in Query ?

 

I tried as below but the IT_FILTER_SELECT_OPTIONS of /IWBEP/IF_MGW_APPL_SRV_RUNTIME~GET_ENTITYSET does not get filled up with the parameters

 

How do we pass multiple values in Query?

 

http://ctnhsapapp16.corp.ken.com:8000/sap/opu/odata/sap/ZCHAKRABK_MAINT_ORDERS_SRV/Maint_Orders?$filter=Maint_Plant eq 'US19' and B_st_dt gt datetime'2015-02-01T00:00:00' and B_st_dt lt datetime'2015-02-28T00:00:00'

 

 

Thanks in Advance.

KC.

Viewing all 1967 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>