Port Exception-ImportX-'Unspcified error'

Hi all,
Iam working in MDM 5.5 MDIS. Exception in Port- ImportX
On working with MDIS. I get the the following error and the file is in ImportX.
Port status: has exception
The message in the file present in ImportX is as below:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
- <ImportExceptionLog>
- <ImportException>
  <Details type="Import" code="0xffffffff" cell="">Unspecified error</Details>
- <RecordData id="Contracts_Synchronization">
</RecordData>
  </ImportException>
The message in the log file is as below:
<Failure ts="2011/09/16 14:41:15.126 GMT" tid="1543" entry-no="106927" operation="Import" import-action="Update (All Mapped Fields)" row="1">One or more qualifier values are invalid.<LF/>Failed to modify record</Failure>
          <Failure ts="2011/09/16 14:41:15.126 GMT" tid="1543" entry-no="106928" operation="Import" import-action="Update (All Mapped Fields)" row="2">One or more qualifier values are invalid.<LF/>Failed to modify record</Failure>
          <Timer ts="2011/09/16 14:41:15.127 GMT" tid="1543" entry-no="106929" name="Import Records - Stage 4 - exception generation" total="0.001299">1</Timer>
          <Error ts="2011/09/16 14:41:15.140 GMT" tid="1543" entry-no="106930">Import Failed!</Error>
          <Timer ts="2011/09/16 14:41:15.147 GMT" tid="1543" entry-no="106931" name="Import Chunk" total="49.576954"/>
          <Trace ts="2011/09/16 14:41:17.028 GMT" tid="1543" entry-no="106935">[MDS=tsdux13 Repos=SRM_MDM_CATALOG ClientSystem=SRMMDM Port=TP1_Contract]: xImporter: Thread ordered to stop: RC = 0xfffffffa</Trace>
          <Trace ts="2011/09/16 14:41:17.030 GMT" tid="1543" entry-no="106937">[MDS=tsdux13 Repos=SRM_MDM_CATALOG ClientSystem=SRMMDM Port=TP1_Contract]: xImporter:  Thread finished;
CAn any one throw light on this issue and how to reslove this one.
But, updation of records is working fine . On creating a new Contract price(compound filed value) values throws such exception.
Thanks,
Pradeep.

Try the below standard steps to fix the exception and update your observations -
How Do You "Fix" Exceptions?   - http://help.sap.com/saphelp_mdm550/helpdata/en/43/120367f94c3e92e10000000a1553f6/frameset.htm
Use
Exceptions must be fixed manually in the Import Manager before the offending file or record can be imported.
Procedure
       1.      Open the Import Manager and connect to the MDM repository containing the port where the exception was found.
       2.      When the Connect to Source dialog appears, choose the source type Port and select the appropriate remote system from the drop-down list.
       3.      In the Port drop-down list, select PortName where PortName is the name of the port containing the exception.
The Import Manager loads the first exception file waiting on the port. If it is a structural exception, the original import file opens. If it is a value or import exception, the virtual extended record containing the exception opens.
       4.      Fix the exception according to the Action Items section of the Import Status tab and save the corrected map.
       5.      To fix any other exceptions waiting on the port, choose File ® Get Next Source File from the main menu (for more information, see Getting the Next Source Data File).

Similar Messages

  • SAP HANA XSODATA service (Service exception: column store error.)

    Hi all,
    i have a problem with my calculation view using xsodata service on it. (There's an input parameter called P
    _SWERK)
    In my calculation view, the data origin are two analytic views (on which the input parameter P_SWERK should be filter data at beginning of the sql script code).
    First i read the analytic views with function CE_OLAP_VIEW and after i do a CE_PROJECTION function on them using the input parameter P_SWERK like a filter on field SWERK.
    But when i run my application on browser the following error occurs :
    <message xml:lang="en-US">Service exception: column store error.</message>
    The link is this :
    http://host:port/Project_DM/services/Test/TEST_ZIIG_PDM_CALC_VIEW_FINAL_service.xsodata/PianiDiManutenzioneParameters(P_SWERK='CO05')/Results
    The service definition is :
    service {
    "EricssonItalgas/TEST_ZIIG_PDM_VIEW_FINAL.calculationview" as "PianiDiManutenzione" keys generate local "ID"
    parameters via entity;
    The SAP HANA AWS revision is 60.
    Someone could you help me,please?
    Thanks in advance.
    Dario.

    Hi Dario,
    Does the calculation view work without xsodata service? From the URL, your XS project name should be Project_DM, but from the xsodata source, the project name is EricssonItalgas. I'm confused with this. Did you use rewrite_rules or?
    Best regards,
    Wenjun

  • Exception fault: ReferenceError: Error #1065: Variable ::_fileSystemType is not defined. - ?

    Hi! I'm stuck with debugging our AIR Application since it does crash very hard. After days of tracking down at least one point where the app crashes on AIR 3.5, 3.7 and AIR 3.8 beta (you see - I tried...).
    AIR 3.5 finally reports this console output:
    ScrollerTouch.onTargetMouseDown()-F true // A
    ScrollerTouch.onTargetMouseDown()-I // B
    targetV [object ScrollPane] // C
    CRASH! // D
    Exception fault: ReferenceError: Error #1065: Variable ::_fileSystemType is not defined.
              at global/trace()[int:49]
              at de.superclass.control::ScrollerTouch/onTargetMouseDown()[/path/to/.../ScrollerTouch.as:381]
              at de.superclass.control::ScrollerTouch/onTargetMouseDown()
    The code snipped:
    trace("ScrollerTouch.onTargetMouseDown()-F", _scrollHorizontal ); // A
      switch ( _scrollPolicyVertical )
      case ScrollPolicy.ON:
      trace("ScrollerTouch.onTargetMouseDown()-G");
      _scrollVertical = true;
                                            break;
      case ScrollPolicy.OFF:
      trace("ScrollerTouch.onTargetMouseDown()-H");
      _scrollVertical = false;
                                            break;
      case ScrollPolicy.AUTO:
      trace("ScrollerTouch.onTargetMouseDown()-I"); // B
      default:
                                                      trace( "targetV", targetV ); // C
                                                      try
                                                                trace( "targetV.height", targetV.height );
                                                      catch( e: Error )
                                                                trace( "CRASH!" ); // D
                                                      _scrollVertical = Boolean( targetV.height < targetV.contentHeight ); // line 381
      trace( "targetV.xxx" );
                                                      trace( "targetV.contentHeight", targetV.contentHeight );
    return;
    So accessing targetV.height somehow crashes very hard (app quits) but I have no clue at all. Actually, this code worked for a long time...
    So please, what is ::_fileSystemType ?

    I changed the code again but the app keeps crashing. This is what XCode-Console says:
    Jul  4 21:25:48 iRad-3 ReportCrash[1206] <Notice>: Formulating crash report for process APP_NAME[1191]
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
    Jul  4 21:25:48 iRad-3 ReportCrash[1206] <Error>: libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary
    Jul  4 21:25:48 iRad-3 com.apple.launchd[1] (UIKitApplication:APP_NAME_SPACE[0x469][1191]) <Warning>: (UIKitApplication:APP_NAME_SPACE[0x469]) Job appears to have crashed: Segmentation fault: 11
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: Application 'UIKitApplication:APP_NAME_SPACE[0x469]' exited abnormally with signal 11: Segmentation fault: 11
    Jul  4 21:25:48 iRad-3 ReportCrash[1206] <Notice>: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/APP_NAME_2013-07-04-212547_iRad-3.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
    Jul  4 21:25:55 iRad-3 kernel[0] <Debug>: launchd[1207] Builtin profile: container (sandbox)
    Jul  4 21:25:55 iRad-3 kernel[0] <Debug>: launchd[1207] Container: /private/var/mobile/Applications/CDA04278-5D34-4609-BE71-D66FB16794C1 (sandbox)
    Jul  4 21:25:56 iRad-3 kernel[0] <Debug>: launchd[1208] Builtin profile: PasteBoard (sandbox)
    Jul  4 21:25:56 iRad-3 backboardd[26] <Warning>: CoreAnimation: updates deferred for too long
    Jul  4 21:25:56 iRad-3 backboardd[26] <Warning>: CoreAnimation: timed out fence 2685b
    And here's the Crash Log:
    Jul  4 21:25:48 iRad-3 ReportCrash[1206] <Notice>: Formulating crash report for process APP_NAME[1191]
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: BKSendGSEvent ERROR sending event type 3001: (ipc/send) invalid destination port (0x10000003)
    Jul  4 21:25:48 iRad-3 ReportCrash[1206] <Error>: libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary
    Jul  4 21:25:48 iRad-3 com.apple.launchd[1] (UIKitApplication:APP_NAME_SPACE[0x469][1191]) <Warning>: (UIKitApplication:APP_NAME_SPACE[0x469]) Job appears to have crashed: Segmentation fault: 11
    Jul  4 21:25:48 iRad-3 backboardd[26] <Warning>: Application 'UIKitApplication:APP_NAME_SPACE[0x469]' exited abnormally with signal 11: Segmentation fault: 11
    Jul  4 21:25:48 iRad-3 ReportCrash[1206] <Notice>: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/APP_NAME_2013-07-04-212547_iRad-3.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
    Jul  4 21:25:55 iRad-3 kernel[0] <Debug>: launchd[1207] Builtin profile: container (sandbox)
    Jul  4 21:25:55 iRad-3 kernel[0] <Debug>: launchd[1207] Container: /private/var/mobile/Applications/CDA04278-5D34-4609-BE71-D66FB16794C1 (sandbox)
    Jul  4 21:25:56 iRad-3 kernel[0] <Debug>: launchd[1208] Builtin profile: PasteBoard (sandbox)
    Jul  4 21:25:56 iRad-3 backboardd[26] <Warning>: CoreAnimation: updates deferred for too long
    Jul  4 21:25:56 iRad-3 backboardd[26] <Warning>: CoreAnimation: timed out fence 2685b
    And here's the Crash Log:
    Incident Identifier: 17615510-16A5-43B9-B8A5-2ED2C5A2EEBA
    CrashReporter Key:   3f85661334bfff23c2d4128bc63674d30647c15b
    Hardware Model:      iPad3,3
    Process:         APP_NAME [1191]
    Path:            /var/mobile/Applications/CDA04278-5D34-4609-BE71-D66FB16794C1/APP_NAME.app/APP_NAME
    Identifier:      APP_NAME
    Version:         ??? (???)
    Code Type:       ARM (Native)
    Parent Process:  launchd [1]
    Date/Time:       2013-07-04 21:25:47.935 +0200
    OS Version:      iOS 6.1.3 (10B329)
    Report Version:  104
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x4095e008
    Crashed Thread:  0
    Thread 0 name:  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:
    0   APP_NAME        0x008c71c8 0x1000 + 9200072
    1   APP_NAME        0x005284ac 0x1000 + 5403820
    2   APP_NAME        0x007b5edc 0x1000 + 8081116
    3   APP_NAME        0x00002928 0x1000 + 6440
    4   APP_NAME        0x0045f128 0x1000 + 4579624
    5   APP_NAME        0x0045f5f8 0x1000 + 4580856
    6   APP_NAME        0x0045eeb4 0x1000 + 4578996
    7   APP_NAME        0x0045eab4 0x1000 + 4577972
    8   APP_NAME        0x003d98d8 0x1000 + 4032728
    9   APP_NAME        0x003c59c0 0x1000 + 3951040
    10  APP_NAME        0x00443d24 0x1000 + 4468004
    11  APP_NAME        0x009d5448 0x1000 + 10306632
    12  APP_NAME        0x009d509c 0x1000 + 10305692
    13  APP_NAME        0x009d4ad0 0x1000 + 10304208
    14  APP_NAME        0x009d6618 0x1000 + 10311192
    15  APP_NAME        0x00cf4d40 0x1000 + 13581632
    16  APP_NAME        0x00a5f418 0x1000 + 10871832
    17  APP_NAME        0x008d810c 0x1000 + 9269516
    18  APP_NAME        0x009b45ac 0x1000 + 10171820
    19  APP_NAME        0x009b5140 0x1000 + 10174784
    20  UIKit                         0x347ff51e -[UIWindow _sendTouchesForEvent:] + 314
    21  UIKit                         0x347ec7fc -[UIApplication sendEvent:] + 376
    22  UIKit                         0x347ec116 _UIApplicationHandleEvent + 6150
    23  GraphicsServices              0x364e05a0 _PurpleEventCallback + 588
    24  GraphicsServices              0x364e01ce PurpleEventCallback + 30
    25  CoreFoundation                0x329b9170 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 32
    26  CoreFoundation                0x329b9112 __CFRunLoopDoSource1 + 134
    27  CoreFoundation                0x329b7f94 __CFRunLoopRun + 1380
    28  CoreFoundation                0x3292aeb8 CFRunLoopRunSpecific + 352
    29  CoreFoundation                0x3292ad44 CFRunLoopRunInMode + 100
    30  GraphicsServices              0x364df2e6 GSEventRunModal + 70
    31  UIKit                         0x348402fc UIApplicationMain + 1116
    32  APP_NAME        0x008f5c0c 0x1000 + 9391116
    33  APP_NAME        0x00d2b0e0 0x1000 + 13803744
    Thread 1 name:  Dispatch queue: com.apple.libdispatch-manager
    Thread 1:
    0   libsystem_kernel.dylib        0x3ad76648 kevent64 + 24
    1   libdispatch.dylib             0x3aca6974 _dispatch_mgr_invoke + 792
    2   libdispatch.dylib             0x3aca6654 _dispatch_mgr_thread$VARIANT$mp + 32
    Thread 2 name:  WebThread
    Thread 2:
    0   libsystem_kernel.dylib        0x3ad75eb4 mach_msg_trap + 20
    1   libsystem_kernel.dylib        0x3ad76048 mach_msg + 36
    2   CoreFoundation                0x329b9040 __CFRunLoopServiceMachPort + 124
    3   CoreFoundation                0x329b7d9e __CFRunLoopRun + 878
    4   CoreFoundation                0x3292aeb8 CFRunLoopRunSpecific + 352
    5   CoreFoundation                0x3292ad44 CFRunLoopRunInMode + 100
    6   WebCore                       0x3891a500 RunWebThread(void*) + 440
    7   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    8   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 3:
    0   libsystem_kernel.dylib        0x3ad75eb4 mach_msg_trap + 20
    1   libsystem_kernel.dylib        0x3ad76048 mach_msg + 36
    2   APP_NAME        0x00480b04 0x1000 + 4717316
    3   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    4   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 4:
    0   libsystem_kernel.dylib        0x3ad8608c __psynch_cvwait + 24
    1   libsystem_c.dylib             0x3acd7d2a _pthread_cond_wait + 642
    2   libsystem_c.dylib             0x3ace1f14 pthread_cond_wait + 36
    3   APP_NAME        0x00a33ad4 0x1000 + 10693332
    4   APP_NAME        0x0097d9e0 0x1000 + 9947616
    5   APP_NAME        0x00a33938 0x1000 + 10692920
    6   APP_NAME        0x00a3398c 0x1000 + 10693004
    7   APP_NAME        0x00a336b8 0x1000 + 10692280
    8   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    9   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 5:
    0   libsystem_kernel.dylib        0x3ad8608c __psynch_cvwait + 24
    1   libsystem_c.dylib             0x3acd7d2a _pthread_cond_wait + 642
    2   libsystem_c.dylib             0x3ace1f14 pthread_cond_wait + 36
    3   APP_NAME        0x00a33ad4 0x1000 + 10693332
    4   APP_NAME        0x0097d9e0 0x1000 + 9947616
    5   APP_NAME        0x00a33938 0x1000 + 10692920
    6   APP_NAME        0x00a3398c 0x1000 + 10693004
    7   APP_NAME        0x00a336b8 0x1000 + 10692280
    8   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    9   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 6:
    0   libsystem_kernel.dylib        0x3ad866a4 __semwait_signal + 24
    1   libsystem_c.dylib             0x3ace43ce nanosleep + 138
    2   APP_NAME        0x00a33724 0x1000 + 10692388
    3   APP_NAME        0x00913638 0x1000 + 9512504
    4   APP_NAME        0x009135d8 0x1000 + 9512408
    5   APP_NAME        0x00a33938 0x1000 + 10692920
    6   APP_NAME        0x00a3398c 0x1000 + 10693004
    7   APP_NAME        0x00a336b8 0x1000 + 10692280
    8   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    9   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 7:
    0   libsystem_kernel.dylib        0x3ad8608c __psynch_cvwait + 24
    1   libsystem_c.dylib             0x3acd7d2a _pthread_cond_wait + 642
    2   libsystem_c.dylib             0x3acd7aa0 pthread_cond_timedwait + 40
    3   APP_NAME        0x00a33b54 0x1000 + 10693460
    4   APP_NAME        0x000a7254 0x1000 + 680532
    5   APP_NAME        0x00a33938 0x1000 + 10692920
    6   APP_NAME        0x00a3398c 0x1000 + 10693004
    7   APP_NAME        0x00a336b8 0x1000 + 10692280
    8   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    9   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 8:
    0   libsystem_kernel.dylib        0x3ad866a4 __semwait_signal + 24
    1   libsystem_c.dylib             0x3ace43ce nanosleep + 138
    2   APP_NAME        0x00a33724 0x1000 + 10692388
    3   APP_NAME        0x008caff0 0x1000 + 9215984
    4   APP_NAME        0x008cae08 0x1000 + 9215496
    5   APP_NAME        0x00a33938 0x1000 + 10692920
    6   APP_NAME        0x00a3398c 0x1000 + 10693004
    7   APP_NAME        0x00a336b8 0x1000 + 10692280
    8   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    9   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 9 name:  com.apple.NSURLConnectionLoader
    Thread 9:
    0   libsystem_kernel.dylib        0x3ad75eb4 mach_msg_trap + 20
    1   libsystem_kernel.dylib        0x3ad76048 mach_msg + 36
    2   CoreFoundation                0x329b9040 __CFRunLoopServiceMachPort + 124
    3   CoreFoundation                0x329b7d9e __CFRunLoopRun + 878
    4   CoreFoundation                0x3292aeb8 CFRunLoopRunSpecific + 352
    5   CoreFoundation                0x3292ad44 CFRunLoopRunInMode + 100
    6   Foundation                    0x332773d0 +[NSURLConnection(Loader) _resourceLoadLoop:] + 304
    7   Foundation                    0x332fae80 __NSThread__main__ + 968
    8   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    9   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 10 name:  com.apple.CFSocket.private
    Thread 10:
    0   libsystem_kernel.dylib        0x3ad86594 __select + 20
    1   CoreFoundation                0x329bd1f2 __CFSocketManager + 674
    2   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    3   libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 11:
    0   libsystem_kernel.dylib        0x3ad86d98 __workq_kernreturn + 8
    1   libsystem_c.dylib             0x3acd4cf6 _pthread_workq_return + 14
    2   libsystem_c.dylib             0x3acd4a12 _pthread_wqthread + 362
    3   libsystem_c.dylib             0x3acd48a0 start_wqthread + 4
    Thread 12:
    0   libsystem_kernel.dylib        0x3ad8608c __psynch_cvwait + 24
    1   libsystem_c.dylib             0x3acd7d68 _pthread_cond_wait + 704
    2   libsystem_c.dylib             0x3aceb080 pthread_cond_timedwait_relative_np + 12
    3   APP_NAME        0x00a7e558 0x1000 + 10999128
    4   APP_NAME        0x00a7e200 0x1000 + 10998272
    5   APP_NAME        0x00a7e0f8 0x1000 + 10998008
    6   APP_NAME        0x00a33938 0x1000 + 10692920
    7   APP_NAME        0x00a3398c 0x1000 + 10693004
    8   APP_NAME        0x00a336b8 0x1000 + 10692280
    9   libsystem_c.dylib             0x3acdf30e _pthread_start + 306
    10  libsystem_c.dylib             0x3acdf1d4 thread_start + 4
    Thread 13:
    0   libsystem_kernel.dylib        0x3ad86d98 __workq_kernreturn + 8
    1   libsystem_c.dylib             0x3acd4cf6 _pthread_workq_return + 14
    2   libsystem_c.dylib             0x3acd4a12 _pthread_wqthread + 362
    3   libsystem_c.dylib             0x3acd48a0 start_wqthread + 4
    Thread 0 crashed with ARM Thread State (32-bit):
        r0: 0x4095e000    r1: 0x2fdfdf58      r2: 0x0052844c      r3: 0x2fdfdf1c
        r4: 0x00000221    r5: 0x084d8060      r6: 0x2fdfdf14      r7: 0x2fdfdf88
        r8: 0x2fdfdf20    r9: 0x000003fe     r10: 0x4095e000     r11: 0x00000000
        ip: 0x000002fc    sp: 0x2fdfdf10      lr: 0x005284b0      pc: 0x008c71c8
      cpsr: 0x20000010
    This immediately occurs when I touch and move a little on a specific display object which listens to Mouse-Events DOWN, MOVE to drag it's contents. I think it has something to do with the event system or so. But I'm absolutely blind I guess.
    What could I do?

  • Urgent Help Req.: Exception=ORABPEL-11162 Error while reading native data

    Hi All,
    I am getting below error: Exception=ORABPEL-11162
    Error while reading native data.
    [Line=6, Col=7|http://forums.oracle.com/forums/] Not enough data available in the input, when trying to read data of length "22" for "element with name PurOrderNum" from the specified position, using "style" as "fixedLength" and "length" as "22".
    Ensure that there is enough data from the specified position in the input.
    Let me also give you the brief scenario of what I am trying to achieve.
    INTERFACE FUNCTIONING:_
    I have an interface which reads the records in a file in a chunk through ChunkRead adapter and and after one successful reading if chunk it calls the DB adapter to insert the records in the table.
    Now these records are committed and next chunk is read and the process goes on till all the records are read.
    After this the API is called which does the processing of these records.
    Inserting records in the DB is a XA transaction which means if anything goes wrong while inserting the data, the records which are added earlier are rolled back.
    ISSUE:_
    Now the issue comes when I do the negative testing. Since my file is based on fixed length schema., I change the length of last record from 15 to 13. (say total are 10 records)
    Now what happens is when chunkread tries to read the record of 15 length it gets only 13 characters and hence ignores the records.
    But the chunkread reads all other 9 records correctly and sends this to DB adapter which now inserts them correctly in the DB.
    But being a global transaction I want that if any record is missing from DB in comparison to those in file then whole transaction should roll back.
    So I am unable to make this whole process as global transaction. This is because the ChunkRead adapter inspite of detecting the error doesn&rsquo;t throw it back.
    Moreover if this problem occurs in say next chunk then also I am unable to find out how to rollback the whole transaction. Because the first chunk was correct.
    So basically two concerns are there:+
    How to detect that chunkread adapter has missed one record?+
    Secondly, If it&rsquo;s detected then how should I rollback the transaction that caused earlier records to enter into database?+
    Please let me know if anyone has faced this issue earlyer and how it got resolved. Any pointers regarding this would be of great help.
    Also attached is the chunkread log for reference.
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2008-10-06T09:23:58.466-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>tip</COMPONENT_ID>
    <MSG_TYPE TYPE="TRACE"></MSG_TYPE>
    <MSG_LEVEL>16</MSG_LEVEL>
    <HOST_ID>usmlrh01.xyz.com</HOST_ID>
    <HOST_NWADDR>192.168.245.39</HOST_NWADDR>
    <MODULE_ID>esb.server.service.impl.inadapter</MODULE_ID>
    <THREAD_ID>57</THREAD_ID>
    <USER_ID>orasoa</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>192.168.245.39:29832:1223297491683:44</UNIQUE_ID><SEQ>130</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>JCA: FileRejector::rejectTextualMessage errList=[oracle.tip.pc.services.translation.xlators.nxsd.ErrorList@a5213b]</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2008-10-06T09:23:58.466-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>tip</COMPONENT_ID>
    <MSG_TYPE TYPE="TRACE"></MSG_TYPE>
    <MSG_LEVEL>16</MSG_LEVEL>
    <HOST_ID>usmlrh01.xyz.com</HOST_ID>
    <HOST_NWADDR>192.168.245.39</HOST_NWADDR>
    <MODULE_ID>esb.server.service.impl.inadapter</MODULE_ID>
    <THREAD_ID>57</THREAD_ID>
    <USER_ID>orasoa</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>192.168.245.39:29832:1223297491683:44</UNIQUE_ID><SEQ>130</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>JCA: FileRejector::rejectTextualMessage badCount=[1]</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2008-10-06T09:23:58.467-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>tip</COMPONENT_ID>
    <MSG_TYPE TYPE="TRACE"></MSG_TYPE>
    <MSG_LEVEL>1</MSG_LEVEL>
    <HOST_ID>usmlrh01.xyz.com</HOST_ID>
    <HOST_NWADDR>192.168.245.39</HOST_NWADDR>
    <MODULE_ID>esb.server.service.impl.inadapter</MODULE_ID>
    <THREAD_ID>57</THREAD_ID>
    <USER_ID>orasoa</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>192.168.245.39:29832:1223297491683:44</UNIQUE_ID><SEQ>130</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>JCA: Rejecting message fileName=/rh01/s01/n01/Distributions/B2B/Gentran/In/855/Test.txt, startLine=4, startColumn=1, endLine=-1, endCol=-1, Exception=ORABPEL-11162
    Error while reading native data.
    [Line=6, Col=7] Not enough data available in the input, when trying to read data of length "22" for "element with name PurOrderNum" from the specified position, using "style" as "fixedLength" and "length" as "22".
    Ensure that there is enough data from the specified position in the input.
    }</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    PFB the version details :
    SOA suite version : 10.1.3.3.1 and JDEV : 10.1.3.3
    Edited by: SOA Team on Oct 6, 2008 10:48 PM

    Just a thought, you could set the terminator for the last field as {eol} instead of length, this means that it should read the last field regardless of the length.
    Depending on the logic of Db adapter the error could be traped due to incorrect length.
    If the file starts each row with a constant(s), e.g. 01 then you can terminate the previous line on that, this is the better option but relys on the file format.
    The other option is a little thing call compensation, ouch. Basically this allows you to back out commited rows but you have to provide all the logic, it is generally something people avoid because of the complexity.
    cheers
    James

  • Sys.webforms.page request manager server error exception:An unknown error occured while processing the request on server. The status code returned from the server was:0

    sys.webforms.page request manager server error exception:An unknown error occured while processing the request on server. The status code returned from the server was:0 We got this response(In firebug console) when we try to click on link (after leave webpage for 3 minuts ideal) which is AJAX based. Please reply ASAP because its urgent.

    Hi SP,
    Please check if the following web config appSettins value settings from SSRS server could fix the issue (Note, back up your original web config file before any modification).
    http://stackoverflow.com/questions/10911610/ssrs-webpage-error-status-code-500
    http://srinivasbn.blogspot.in/2013/09/syswebformspagerequestmanagerservererro.html
    http://connect.microsoft.com/SQLServer/feedback/details/782155/ssrs-2012-failed-with-win32-error-0x03e3
    If you have more questions about the SSRS error logs related to this issue, you can post in the SSRS forum for a better assistance with more experts.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlreportingservices
    Thanks
    We are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Illustrator CC 2014 "Exception in file" error with linked images

    It appears some images are showing "Exception in file" error dialog boxes.
    If I resave the image in Photoshop or link it to a different image the error disappears.
    Happened with:
    - old design files linked to old images
    - image that was dragged from Mac Mail
    - linked to JPG provided from other users
    Does not happen with:
    - images created recently with Photoshop CC or CC 2014
    Here is the error:
    Has anyone else seen this and/or found a solution?
    This is an error on a new Mac Pro with brand new install of all software. No older versions of cc installed. Just CC 2014.

    That's a good idea. Unfortunately, same problem if I move the image to desktop or same folder as file.
    If I resave the file (JPG in this case) the error disappears.
    I understand this can be the solution, but given this issue had not happened before, it's interesting it is happening with CC 2014.
    Attached is the image in question. Note that this is not the only image. It has happened with older design files that were made from older versions of cc or before cc.
    I'm not sure if the uploader will recreate the JPG so I'll compress the file and is available here if anyone would like to test.
    Dropbox - photo 2.JPG.zip

  • Getting the name of the page that throws an exception from an error page

    How can I get the name of the page that throws an
    error exception from an error page?.
    Thanks.

    In each of your jsp pages, u should set the name of page in the request object. e.g.
    In jsp page called main.jsp you should do request.setAttribute("pageName","main.jsp");
    Then in error page you can get the name like
    String pageInError = (String) request.getAttribute("pageName");
    I hope that answers your question.
    thx

  • "Internal error: An unexpected exception has occurred" error message displayed when browsing a cube.

    “Internal error: An unexpected exception has occurred“ error message displayed when browsing a cube.
    The error behaviour is quite irregular and does not occur for specific condition.
    Will cumulative update 9 for SQL Server 2008 R2 (SP1) installation help to fix the issue which is provided on the below link:
    (http://support.microsoft.com/kb/2152148)
    The current version of SQL Server I am using is as below:
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)   Jun 17 2011 00:54:03   Copyright (c) Microsoft Corporation  Enterprise Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
    Thanks in advance for the help!

    Hi Mon,
    The hotfix you said is for Microsoft SQL Server 2008. So it will not work on your scenario since you are using SQL Server 2008 R2.
    Based on the limited information, we cannot give you the exact reason that cause this issue. In order to narrow down this issue, you can apply the latest Service Pack and Cumulative Update as GregGalloway said. Besides, you can troubleshoot this issue by
    using the Windows Event logs and msmdsrv.log.
    You can access Windows Event logs via "Administrative Tools" --> "Event Viewer".  SSAS error messages will appear in the application log.
    The msmdsrv.log file for the SSAS instance that can be found in \log folder of the instance. (C:\Program Files\Microsoft SQL Server\MSAS10.MSSQLSERVER\OLAP\Log)
    Here is a blog about data collection for troubleshooting Analysis Services issues, please see:
    Data collection for troubleshooting Analysis Services issues
    Regards,
    Charlie Liao
    TechNet Community Support

  • Exception: ORA-29913: error in executing ODCIEXTTABLEFETCH callout ORA-3065

    Dear Experts,
    Need your help. We export data from oracle 11g database and import into oracle 10g database.
    We have created external tables with same DDL in both export and import schema.
    we are able generate datadump files at export side successfuly. However, when we try to query the datadump files at import side we are getting following error:
    Exception: ORA-29913: error in executing ODCIEXTTABLEFETCH callout ORA-30653: reject limit REACHED
    In the external table definition we have defined the reject limit as zero as we don't want any records to be rejected.
    This issue occurred after we deployed the fix for an issue, which is -> In one of the table we store the xml of the modified record of some core table. And if the records contains control characters [ chr(0) to chr(31), expect chr(9), chr(10) and chr(13) ] then xml fails to validate and our export failed.
    To fix it, we added the code to set the event at the start of the export rountine using command:
    /*Replace the erroneous character with corresponding character reference*/
    EXECUTE IMMEDIATE 'ALTER SESSION SET events = ''19119 trace name context forever, level 0x200000''';
    After this, the export worked fine but import failed.
    I have no clue what this error message is suggesting, expect the reject limit thing which I can't set to unlimited.
    I would be grateful to have your comments on this. Please let me know if you need futher information.
    Many Thanks

    Hi,
    What happens if you set that event on the importing side too?
    Is there no other way to remove the speical characters - can you not use functions against the xml string directly in the routine that populates the external table - why are you using the event?
    Cheers,
    Harry

  • Setting port exceptions for Windows Firewall via GPO. Is there a limit on the number of exceptions that can be set?

    We would like to utilize GPOs to manage our Windows Firewall rule set. We have servers that have different requirements (HL7 connections, other programs) and our doctrine is to only open ports that are going to be used.
    We need to be able to audit and enforce these standards, so GPOs seem to make the most sense to me.
    The problem I am running into is when I attempt to define multiple Windows Firewall Inbound Port Exceptions. (More than 10) After "Applying and Okaying" I will go to verify the firewall rule-set but I find that quite a few of them are missing. It
    seems like I am limited to 8-9 port exceptions per GPO.
    I am unable to locate any documentation about this, but we can work around this by creating multiple GPOs. 
    Has anyone run into this issue before?
    Domain Function level: Windows Server 2008
    Tho H. Le

    > Has anyone run into this issue before?
    No, unfortunately. Our main server FW exception GPO contains 44 rules
    with port or program exceptions, and it works flawlessly...
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Getting the error : ERROR:   FND FLEX-DSQL EXCEPTION  : An unexpected error

    Hi Gurus,
    I have setup one WebADI solution to upload the Direct Deposit information in the system and it is assigned to one responsibility called "US HR Payroll User", user is trying to upload the multiple accounts for one employee and getting the following error:
    ERROR: FND FLEX-DSQL EXCEPTION : An unexpected error has occurred. Please inform your system administrator that the error: &MSG occurred when the FND_FLEX_SERVER package tried to execute the SQL statement below. If tables or sequences do not exist this may indicate a problem with your installation. Make sure grants and synonyms exist so that all tables, views, and sequences in the SQL statement are visible from the database account in which the FND_FLEX_SERVER package resides (usually APPLSYS). If this is a select statement and the last portion of the where clause is in incorrect, then an invalid where clause may have been supplied in the flexfield definition. The error is probably either in the form, or in a server-side package that calls the flexfield validation routine. SQL statement (first 1000 bytes): &SQLST
    When I try to upload using my pc it works fine I have excel 2000 on my system. Then I tried on my friends computer who is having Excel 2003 and there also it gave the same error. So I thought Excel Version is a problem but when we try to upload the same data on some other instances it worked fine.
    Has anybody faced such kind of issue or can throw some lights as what other options I can try ?
    Thanks
    Rahul

    Hi ,
    Thanks for your help.
    Application Release : R12.1
    DB Version: 11g
    Browser: IE : 6.0.2900....
    I tried to take the TRACE but I am not able to generate the log/trace. I set the following profile as per the given note:
    BNE Server Log Filename --> MISPAY_DD_UPLD.log
    BNE Server Log Level --> TRACE
    BNE Server Log Path --> /u04/oraout_db/gsiau_rgts/gsi2au/trace
    but it does not generate any trace or log. Could you please help how we can get the trace.
    Thanks
    Rahul

  • IMS-exception type "Other errors" is not getting triggered

    Hi experts,
                     I am trying out some scenarios in IMS. I want to check exception type- "Other Errors" which is a most generic exception type. I have tried many options like- removed country from partner id address, tried posting invoice after removing account assignment category but for all these invoice triggers exception- duplicate invoice which i am unable to understand. can anybody please tell me what are the settings required for exception type- other errors?
    2. I even tried exception type "missing goods receipt". Excption type is getting triggered but after creation of confirmation- the status of the exception is not getting changed to clarified. Instead it gives an error- User is locked please try after some time.
    Please help
    Regards
    Kapil

    Hi Friend,
    Please read the possible exception types in IMS
    Have you set these exception in Settings for Invoice Monitor
    Purpose
    In the Settings for Invoice Monitor application, you can make settings directly on the user interface for every exception that you wish to adjust.
    Digital signature
    For each exception, you can define whether you want to use a digital signature.
    If you use a digital signature, the field Digital Signature is active on the Adobe PDF form and the processor of the form has to sign it before sending it back.
    The system then checks that the signature is valid.
    If the signature is invalid, or the processor does not sign the form, an error message is written to the log and the e-mail is closed.
    You can assign a digital signature to a vendor in two different ways.
    ·        The user assigns a partner certificate and sends it to the vendor.
    ·        The user uses the vendor’s signature certificate. This certificate has to be registered on the ADS server. For more information, see the SAP NetWeaver Configuration Guide Interactive Forms based on Adobe Software on the SAP Service Marketplace under service.sap.com/instguidesNW2004s.
    Additionally, you can make settings for the following exceptions:
       Invoice duplicate
    This exception is triggered if you try to post an invoice that has already been posted. The two invoices are compared using criteria that you have specified. In the settings, you can define whether a notification e-mail is automatically sent in the case of an invoice duplicate exception, and to whom this e-mail is sent. Furthermore, you can tailor the duplicate check to suit your requirements. The following criteria are available:
        Consider special characters in the vendor invoice number
         Check the number of items and purchase order number
         Additionally, you can define that the invoice is automatically deleted as soon as the vendor confirms that a duplicate invoice exists.
    ¡        Fields for duplicate check
    On this tab page, you can activate the fields that are relevant for the duplicate check. Furthermore, you can define a maximum variance for each field. In other words, you define whether the data in the fields should be an exact match, or whether small differences are acceptable.
    ¡        Exclude vendor values and or invoice values
    On this tab page, you can exclude certain vendors and/or invoice values from the duplicate check. If, for example, you always receive invoices from one vendor for the same amount, you can enter this here so as to prevent unnecessary checks.
    ¡        Group vendors
    On this tab page, you can group vendors that have several vendor numbers together in a data record to facilitate the duplicate check. Entries in this table cause an update in the TREX database which might lead to a short delay.
    Regardless of your settings, the system performs a standard duplicate check (for vendor invoice numbers or vendor numbers that match exactly, for a +/- 7 day period) to ensure that these duplicates are found. If this standard check is not successful, a further check is performed using the settings that you made.
    ·        Missing external information
    This exception is triggered if you try to post an invoice that contains incomplete or incorrect information. In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by missing external information, and to whom this e-mail is sent. Furthermore, you can define whether the e-mail contains a link to the SRM System, where the missing/incorrect information can be entered directly in an interactive form.
    ·        Missing internal information
    This exception is triggered if you try to post an invoice that contains incomplete or incorrect information. In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by missing internal information, and to whom this e-mail is sent. Furthermore, you can define whether the e-mail contains a link to the SRM System, where the missing/incorrect information can be entered directly in an interactive form.
    ·        Missing goods receipt
    If no digital signature is used, two additional fields are displayed in the PDF form. The processor has to enter his first and last name into these fields before he/she sends the e-mail back.
    In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by a missing goods receipt, and to whom this e-mail is sent. You can define how long the invoice should remain with status 'Waiting for Preceding Documents' before it receives the status 'To be Corrected Manually’. Furthermore, you can define how many days pass before an e-mail is sent to the goods recipient. When the goods recipient then confirms that no goods delivery has taken place, an e-mail is automatically sent to the vendor. If the goods receipt has already taken place, you can either define that the goods recipient confirms this automatically in an interactive form, or that the goods recipient uses a link in the e-mail to confirm the goods receipt in the SRM system.
    ·        Incorrect reference
    This exception is triggered if you try to post an invoice that refers to an incorrect reference. In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by an incorrect reference, and to whom this e-mail is sent. Furthermore, you can define whether the e-mail contains a link to the SRM System.
    ·        Approval overdue
    This exception is triggered if an invoice remains in approval status for longer than allowed. You can define how long an invoice can remain in approval status before the exception is triggered.
    ·        Other errors
    This exception is triggered if you try to post an invoice that contains errors. In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by other errors, and to whom this e-mail is sent. Furthermore, you can define whether the e-mail contains a link to the SRM System.
    Note that the invoice is checked in accordance with the vendor tolerance limits in the case of the following exceptions: If these are exceeded, an error message is output.
    ·        Price variance
    This exception is triggered if you try to post an invoice that contains price variance that exceeds the tolerance limit. In the settings, you can define whether a notification e-mail is automatically sent in the case of a price variance, and to whom this e-mail is sent. You can stipulate that the invoice is posted automatically if the price variance is approved on account of the e-mail. Furthermore, you can define whether the e-mail contains a link to the SRM System.
    ·        Quantity variance
    This exception is triggered if you try to post an invoice that contains quantity variance that exceeds the tolerance limit. In the settings, you can define whether a notification e-mail is automatically sent in the case of a quantity variance, and to whom this e-mail is sent. You can stipulate that the invoice is posted automatically if the quantity variance is approved on account of the e-mail. Furthermore, you can define whether the e-mail contains a link to the SRM System.
    ·        Tax variance
    This exception is triggered if you try to post an invoice that contains tax variance that exceeds the tolerance limit. In the settings, you can define whether a notification e-mail is automatically sent in the case of a tax variance, and to whom this e-mail is sent. You can stipulate that the invoice is posted automatically if the tax variance is approved on account of the e-mail. Furthermore, you can define whether the e-mail contains a link to the SRM system.
    In Invoice monito system pls check the what setting is done for Duplicate  invoice, Missing GR and other invoice.
    Based on these setting only system identifies what type of exception it is.
    In other errors you should mention in Settings for Invoice Monitor  what are the fileds your consider for other exception.
    Hope this information will help.
    Thanks & Best regards
    Girish

  • Exception: ODI-17517: Error during task interpretation.

    did anyone ever come across this error, please help me ..............i'm struck here
    error message :
    com.sunopsis.tools.core.exception.SnpsSimpleMessageException: ODI-17517: Error during task interpretation.
    Task: 11
    java.lang.Exception: BeanShell script error: Parse error at line 2, column 10. Encountered: ( BSF info: Extract Data at line: 0 column: columnNo
         at com.sunopsis.dwg.codeinterpretor.SnpCodeInterpretor.transform(SnpCodeInterpretor.java:485)
         at com.sunopsis.dwg.dbobj.SnpSessStep.createTaskLogs(SnpSessStep.java:711)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:461)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2093)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:366)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:300)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:292)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:855)
         at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)
         at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:83)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: org.apache.bsf.BSFException: BeanShell script error: Parse error at line 2, column 10. Encountered: ( BSF info: Extract Data at line: 0 column: columnNo
         at bsh.util.BeanShellBSFEngine.eval(Unknown Source)
         at bsh.util.BeanShellBSFEngine.exec(Unknown Source)
         at com.sunopsis.dwg.codeinterpretor.SnpCodeInterpretor.transform(SnpCodeInterpretor.java:471)
         ... 11 more

    Hi Drona,
    What were you doing when the error occurred?
    Michael R.

  • DIO Port Config & DIO Port Write Block Diagram Errors (Call Library Function Node:libra​ry not found or failed to load)

    Hi Guys, need help on this.
    I have this LabVIEW program that used to work on the old computer.
    The old computer crashes most of the time, so I upgraded the computer
    and used its Hard Drive as slave to the new computer.
    I have no idea where are its installers since the guy that made the program 
    is not in my department anymore.
    I downloaded all the drivers needed from NI: NIDAQ9.0, NIVISA,NI488.2, 
    and drivers of some instruments needed in the setup. I'm using LabVIEW8.2.
    Everything's fine until I open the LabVIEW program for our testing.
    Here goes the error:
       DIO Port Config
       DIO Port Write
    Block Diagram Errors
       Call Library Function Node: library not found or failed to load
    Attachments:
    ErrorList.JPG ‏200 KB

    Honestly, I'm a newbie on Labview. I just want this old program to run on the new computer.
    The guys that installed the drivers on the old computer are no longer here in my department.
    And I have no idea where the drivers are. So I just downloaded the drivers needed for my hardware and instruments.
    Here's my hardware: (cards: PCI-DIO-96, PCI-GPIB), (instruments: SCB100,E4407B, HP83623, HP3458, HP8657)
    OS: Windows XP Pro
    By the way, I have unzipped the TraditionalDAQ drivers. First I tried the 7.4.1, but installation error appeared.
    I thought maybe the installer is corrupted, so I downloaded the 7.4.4 and unzipped it.
    But, still same installation error appears. I don't understand, both TraditionalDAQ drivers have same installation error.
    Now I have tried the DAQmx8.7.2 driver, bu still the DIO Port Config and DIO Port Write have errors.

  • The technique to solving Uncaught exception: java.lang.Error (and probably many like it too)

    It was a blessing in disguise that the above error came about or else I wouldn't have taken the effort to find a solution. At first, I tried to delete several apps, do a hard reboot several variations but it still wouldn't go. Then I thought of downgrading the OS back to the default version so that made me give the Blackberry Desktop Manager a try. Linking handphone to notebook, it was only then I found out an updated version was available so immediately I decided to update since the jump from version 5 to 6 was worth it. After the corrupted version was wiped out being replaced by a newer one, my problem was solved!
    ubuntu: Linux for human beings

    poppi2000 wrote:
    Hi,
    After downloading the twitter app the following shows when I try to open it.
    uncaught exception: Java.lang.Error
    Does anyone know what it means and how to fix it.
    Thanks!
    Hi 
    1. Try to remove the batteries first reboot that will clear the application error
    2. Also try uninstalling the last application you installed before the error appears and reboot / unplug the battery. You can reinstall these applications later.
    3. If it still errors, you can wipe your handheld to clear / delete all the applications and reinstall the application required. How to delete all data and applications from the BlackBerry smartphone using the Security Wipe optio...
    4. The final solution is to reinstall OS or all OS upgrade to the latest version. How to update or reinstall BlackBerry Device Software using BlackBerry Desktop Software
    Please thank those who help you by clicking the button.
    If your issue has been solved, please resolve it by marking "Accept as Solution"

Maybe you are looking for

  • Dvd drive disappeare​d

    The dvd drive on my HP Pavilion laptop disappeared!  How do I fix this.  I need to look at some dvd/cd now. 

  • Warning messages recieved when activating z* tables after refresh.

    Hi all, We are having a problem in activating tables. After the system refresh, while activating z* tables warning messages are recieved. Some of the warnings recieved are as follows: Index LIKP-BGR is not in customer namespace. Enhancement category

  • Control file name of exported data/pdf

    I have LiveCycle forms that internal auditors use to record their audit results. These forms will be used by by many different people and submitted to Quality by a Submit-By-E-mail button. Is there a way to control the file name of the exported data.

  • Photo Stream-How to sync videos

    If Photo Stream doesn't support syncing videos how do I transfer my home videos now?  I'm on a Dell Laptop.  I used to use Nikon Transfer before I signed up for iCloud and started using Photo Stream.  But now my iphone doesn't show up as a device in

  • Stored Procedure VS Programs units VS Attached Libraries

    Hi all :) I would be happy if someone could tell me the difference between Stored procedures and programs units and atached Library in term of efficiency??? because i think that maybe if i convert all my programs units and Library to stored procedura