Spooler isnt running

I cant print install or delete a printer tried many times to restart print spooler doesnt work p6110f desktpo windows vista basic

Hi Seagram,
Would you please let me know current situation? Did you refer to the suggestion that Milos Puchta provided?
Did it help to solve this issue?
If this issue still persists, please don’t hesitate to let us know. Meanwhile, please let me know the version
of OS that you use (Windows Server 2012?)?
Just additional. You can also refer to the following similar questions, and then go further to troubleshoot
(such as check registry key).
Error 1068 cannot start my print spooler HELP!
http://social.technet.microsoft.com/Forums/windows/en-US/61fab6ef-b0de-4a03-88ff-ffd473b0c2a6/error-1068-cannot-start-my-print-spooler-help?forum=itprovistahardware
DETAILED QUESTION Windows could not start the Print Spooler service on Local Computer ERROR 1068 (Windows 7)
http://social.technet.microsoft.com/Forums/windows/en-US/2d2cf303-a633-480c-a64f-e326c4023113/detailed-question-windows-could-not-start-the-print-spooler-service-on-local-computer-error-1068?forum=w7itprohardware
Hope this helps.
Best regards,
Justin Gu

Similar Messages

  • Alv show in report but when see in spool (after run background job) there i

    my program have some error when i run result alv show in report but when see in spool (after run background job) there is no data, (other program can see result in spool)
    Please help
    here is some example of my program
    ********************************declare internal table*****************************
    internal table output for BDC
    data : begin of t_output occurs 0,
    bukrs type anla-bukrs,
    anln1 type anla-anln1,
    anln2 type anla-anln2,
    zugdt type anla-zugdt,
    result(70) type c,
    end of t_output.
    *****get data from loop********************************
      loop at t_anla.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
             EXPORTING
                  INPUT  = t_anla-anln1
             IMPORTING
                  OUTPUT = t_anla-anln1.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
             EXPORTING
                  INPUT  = t_anla-anln2
             IMPORTING
                  OUTPUT = t_anla-anln2.
    check record is correct or not
        select single bukrs anln1 anln2 zugdt
        into w_output
        from anla
        where bukrs = t_anla-bukrs and
        anln1 = t_anla-anln1 and
        anln2 = t_anla-anln2
       zugdt = '00000000'
    if record is correct
        if sy-subrc = 0 and w_output-zugdt = '00000000'.
          w_output-bukrs = t_anla-bukrs.
          w_output-anln1 = t_anla-anln1.
          w_output-anln2 = t_anla-anln2.
          w_output-result = 'Yes : this asset can delete'.
          append w_output to t_output.
    if record is not correct
        elseif sy-subrc = 0 and w_output-zugdt <> '00000000'.
    there is error record  this asset have value already
          v_have_error = 'X'.
          w_output-bukrs = t_anla-bukrs.
          w_output-anln1 = t_anla-anln1.
          w_output-anln2 = t_anla-anln2.
          w_output-result = 'Error : this asset have value already'.
          append w_output to t_output.
        else.
    there is error record this asset donot exist in table anla
          v_have_error = 'X'.
          w_output-bukrs = t_anla-bukrs.
          w_output-anln1 = t_anla-anln1.
          w_output-anln2 = t_anla-anln2.
          w_output-result = 'Error : this asset doest not exist'.
          append w_output to t_output.
        endif.
    *end of check record is correct or not
        clear w_output.
      endloop.
    ******************************show data in ALV***************************************************
    show data from file in ALV
      perform display_report_ALV.
    *&      Form  display_report_ALV
    form display_report_ALV.
      DATA: LT_FIELD_CAT TYPE SLIS_T_FIELDCAT_ALV,
          LT_EVENTS TYPE SLIS_T_EVENT,
          LV_REPID LIKE SY-REPID.
      PERFORM ALV_DEFINE_FIELD_CAT USING LT_FIELD_CAT.
      PERFORM ALV_HEADER_BUILD USING T_LIST_TOP_OF_PAGE[].
      PERFORM ALV_EVENTTAB_BUILD USING LT_EVENTS[].
      LV_REPID = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                I_CALLBACK_PROGRAM = LV_REPID
                IT_FIELDCAT        = LT_FIELD_CAT
                I_SAVE             = 'A'
                IT_EVENTS          = LT_EVENTS[]
           TABLES
                T_OUTTAB           = t_output
           EXCEPTIONS
                PROGRAM_ERROR      = 1
                OTHERS             = 2.
      IF SY-SUBRC NE 0.
        WRITE: / 'Return Code : ', SY-SUBRC,
          'from FUNCTION REUSE_ALV_GRID_DISPLAY'.
      ENDIF.
    endform.
    *&      Form  alv_define_field_cat
          text
         -->P_LT_FIELD_CAT  text
    FORM ALV_DEFINE_FIELD_CAT USING  TB_FCAT TYPE SLIS_T_FIELDCAT_ALV.
      DATA: WA_FIELDCAT LIKE LINE OF TB_FCAT,
        LV_COL_POS TYPE I.
      DEFINE FIELD_CAT.
        CLEAR WA_FIELDCAT.
        ADD 1 TO LV_COL_POS.
        WA_FIELDCAT-FIELDNAME = &1.
        WA_FIELDCAT-REF_TABNAME = &2.
        WA_FIELDCAT-COL_POS = LV_COL_POS.
        WA_FIELDCAT-KEY = &3.
        WA_FIELDCAT-NO_OUT = &4.
        WA_FIELDCAT-REF_FIELDNAME = &5.
        WA_FIELDCAT-DDICTXT = 'M'.
        IF NOT &6 IS INITIAL.
          WA_FIELDCAT-SELTEXT_L = &6.
          WA_FIELDCAT-SELTEXT_M = &6.
          WA_FIELDCAT-SELTEXT_S = &6.
        ENDIF.
        WA_FIELDCAT-DO_SUM = &7.
        WA_FIELDCAT-OUTPUTLEN = &8.
        APPEND WA_FIELDCAT TO TB_FCAT.
      END-OF-DEFINITION.
      FIELD_CAT  'BUKRS'  'ANLA'     'X' '' 'BUKRS' 'Company Code' '' ''.
      FIELD_CAT  'ANLN1'  'ANLA'     'X' '' 'ANLN1' 'Asset Number' '' ''.
      FIELD_CAT  'ANLN2'  'ANLA'     'X' '' 'ANLN2' 'Asset Sub Number' '' ''.
    FIELD_CAT  'ATEXT'   'T5EAE'     'X' '' 'ATEXT' 'Result' '' ''.
      FIELD_CAT  'RESULT'  ''     'X' '' 'RESULT' 'RESULT' '' ''.
    ENDFORM.                    " alv_define_field_cat

    Hi,
    Check this code..
    FORM display_report_alv.
      DATA: lt_field_cat TYPE slis_t_fieldcat_alv,
      lt_events TYPE slis_t_event,
      lv_repid LIKE sy-repid.
      PERFORM alv_define_field_cat USING lt_field_cat.
      PERFORM alv_header_build USING t_list_top_of_page[].
      PERFORM alv_eventtab_build USING lt_events[].
      lv_repid = sy-repid.
      IF sy-batch EQ 'X'.  ----> " System Field for Backgroud..if Background use list display
        CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
          EXPORTING
            i_callback_program = lv_repid
            it_fieldcat        = lt_field_cat
            i_save             = 'A'
            it_events          = lt_events[]
          TABLES
            t_outtab           = t_output
          EXCEPTIONS
            program_error      = 1
            OTHERS             = 2.
      ELSE.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program = lv_repid
            it_fieldcat        = lt_field_cat
            i_save             = 'A'
            it_events          = lt_events[]
          TABLES
            t_outtab           = t_output
          EXCEPTIONS
            program_error      = 1
            OTHERS             = 2.
      ENDIF.
      IF sy-subrc NE 0.
        WRITE: / 'Return Code : ', sy-subrc,
        'from FUNCTION REUSE_ALV_GRID_DISPLAY'.
      ENDIF.
    ENDFORM.                    "display_report_ALV

  • How to create spool when running a report in background

    hi folks,
    i am running a bdc report in bkgrnd... and i want all the success and eror messages to be displayed in a spool... plz explain with example as to how this can be achieved .

    Hello Nishant,
    You could use this sample code to create the spool.
    DATA : X_NAME       LIKE TSP03D-NAME,
           X_DEST       LIKE TSP03D-PADEST VALUE 'LOCL',
           X_ROWS       LIKE SXPCKLSTI1-BODY_NUM VALUE 0,
           X_STARTROW   LIKE SXPCKLSTI1-BODY_START VALUE 1,
           X_PAGES      LIKE RSPOTYPE-PAGES VALUE 1,
           X_PAGES_1    TYPE P DECIMALS 2,
           X_RQTITLE    LIKE SXPCKLSTI1-OBJ_DESCR,
           X_RQCOPIES   TYPE I VALUE 1,
           X_RQOWNER    LIKE TRDYSE01CM-USERNAME,
           X_IMMEDIATE  LIKE PRI_PARAMS-PRIMM VALUE ' ',
           X_RQID       LIKE TSP01-RQIDENT,
           I_CONTENTS    LIKE  SOLISTI1 OCCURS 0 WITH HEADER LINE.
    X_PAGES   = 1.
    X_RQOWNER = SY-UNAME.
    X_DEST     = 'LOCL'.
    X_STARTROW = 1.
    X_RQCOPIES = 1.
    X_IMMEDIATE = ' ' .
    I_CONTENTS-LINE = 'I Got your Childhood PHOTO'.
    APPEND I_CONTENTS.
    CALL FUNCTION 'RSPO_SX_OUTPUT_TEXTDATA'
    EXPORTING
          name                 =   x_name
        DEST                 =  X_DEST
        ROWS                 =  X_ROWS
        STARTROW             =  X_STARTROW
        PAGES                =  X_PAGES
        RQTITLE              =  X_RQTITLE
        RQCOPIES             =  X_RQCOPIES
        RQOWNER              =  X_RQOWNER
        IMMEDIATELY          =  X_IMMEDIATE
        IMPORTING
        RQID                 =  X_RQID
        TABLES
    <b>    TEXT_DATA            = I_CONTENTS</b> <b>Your Message Table</b>
        EXCEPTIONS
        NAME_MISSING         = 1
        NAME_TWICE           = 2
        NOT_FOUND            = 3
        ILLEGAL_LAYOUT       = 4
        INTERNAL_ERROR       = 5
        SIZE_MISMATCH        = 6
        OTHERS               = 7.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.      ENDIF.
    ENDIF.
    WRITE: X_RQID
    If useful reward.
    Vasanth

  • PDF to spool to run program in background

    Hi Experts,
    i have created a custom program by copying FP_TEST_00 and gave nodialog mode for out parameters which will supress the prompt for printer and that i can run it in background. i just want the data to written to spool.
    call function 'FP_JOB_OPEN'
    changing
    ie_outputparams = iwa_outputparams
    exceptions
    cancel = 1
    usage_error = 2
    system_error = 3
    internal_error = 4
    others = 5.
    call function module with import params
    call function function_name
    parameter-table
    para_tab.
    close job
    call function 'FP_JOB_CLOSE'
    exceptions
    usage_error = 1
    system_error = 2
    internal_error = 3
    others = 4.
    Any pointers in this regard will be help ful.
    Please provide some inputs if we can send the PDF to a spool.
    Thanks in Advance,
    Deepa

    Try:
    iwa_outputparams-REQNEW = 'X'.
    iwa_outputparams-REQFINAL = 'X'.
    Cheers,
    Andres.

  • Spool process running on "Querying" state

    Hi,
    One of the work process is running on "querying" state, for every 3 minutes. And raising up even we kill it on process overview. At the end of the process it is core dumping on system with the error below;
    ABAP runtime errors    SYSTEM_CORE_DUMPED
           Occurred on     16.07.2008 at 00:31:48
    Process terminated by signal 11.
    What happened?
    Error in the SAP Basis system
    ABAP/4 processor detected an internal system error.
    The current ABAP program "RSPOWP00 " had to be terminated because the ABAP
    processor discovered an invalid system state.
    Even though we set "Do not query host spooler for output status" on SPAD, the system is still querying those printers that we already set this parameter.
    The system is HP-UX and the spool access method "S" configured for each printer. I am sure that there's no any network problem between server and the host spooler. Kernel version is 4.6C.
    What can cause the problem? Anyone has a suggestion?
    Thank you


    ** W34 LOOP (SPO) *********
    T  alloc memory 14252ee80 (96)
    T  module rspoerrh matches rspo* -> project Sp
    T  alloc memory 14252eee0 (56)
    T  alloc memory 14252ef18 (80)
    T  alloc memory 14252ef68 (80)
    T  alloc memory 14252efb8 (64)
    T  alloc memory 14252eff8 (64)
    M  invalidate act fields from T34/M0
    M  ThRqWaitFor: wait for next request new time slice
    M  event-handling: W34, key 905, flag 956
    M  ThRqWaitFor: wait for request
    M Wed Jul 16 13:06:41 2008
    M  ThRqAccept: allowed rq_type = 0
    M  set act fields to T34/M0
    M  ThSetDefaultTaskType: set task type ZTTASPO
    M  ThIsAsyncInput (T34, M0, ..), allowed rq_type = TH_ALL_RQ
    M  LOCK WP ca_blk 2
    M  LOCK APPC ca_blk 1800
    M  set act fields to T34/M0
    M  ThClearNextFields ()
    M  rq_id 839 for T34 U35 M0 I0 recv 0 (Mstat 66, len -1) (from dispatcher)
    M    resCheck=0 Tname:
    M  set MSG_SPOASYNC in Overhead
    S  Create Spool Alarm Message
    M  set SPOOL ALARM
    M  ThRqInCheck: o.k.
    M  ThRqAccept: saved MODE_REC = 40
    M  Adresse   Offset  SPOASYNC-Request
    M  -
    M  a00fa60  000000  00000000 02000000 41000000 00000000 |........A.......|
    M  a00fa70  000016  00000000 00000000 00000000 00000000 |................|
    M  a00fa80  000032  00000000 00000000 00000000 00000000 |................|
    M  a00fa90  000048  00000000 00000000 00000000 00000000 |................|
    M  a00faa0  000064  00000000 00000000 00000000 00000000 |................|
    M  a00fab0  000080  00000000 00000000 00000000 00000000 |................|
    M  a00fac0  000096  00000000 00000000 00000000 00000000 |................|
    M  a00fad0  000112  00000000 00000000 00000000 00000000 |................|
    M  a00fae0  000128  00000000 00000000 00000000 00000000 |................|
    M  a00faf0  000144  00000000 00000000 00000000 00000000 |................|
    M  a00fb00  000160  00000000 00000000 00000000 00000000 |................|
    M  a00fb10  000176  00000000 00000000 00000000 00000000 |................|
    M  a00fb20  000192  00000000 00000000 00000000 00000000 |................|
    M  a00fb30  000208  00000000 00000000 00000000 00000000 |................|
    M  a00fb40  000224  00000000 00000000 00000000 00000000 |................|
    M  a00fb50  000240  00000000 00000000 00000000 00000000 |................|
    M  a00fb60  000256  00000000 00000000 00000000 00000000 |................|
    M  a00fb70  000272  00000000 00000000 00000000 00000000 |................|
    M  a00fb80  000288  00000000 00000000 00000000 00000000 |................|
    M  a00fb90  000304  00000000 00000000 00000000 00000000 |................|
    M  a00fba0  000320  00000000 00000000 00000000 00000000 |................|
    M  a00fbb0  000336  00000000 00000000 00000000 00000000 |................|
    M  a00fbc0  000352  00000000 00000000 00000000 00000000 |................|
    M  a00fbd0  000368  00000000 00000000 00000000 00000000 |................|
    M  a00fbe0  000384  00000000 00000000 00000000 00000000 |................|
    M  a00fbf0  000400  00000000 00000000 00000000 00000000 |................|
    M  a00fc00  000416  00000000 00000000 00000000 00000000 |................|
    M  a00fc10  000432  00000000 00000000 00000000 00000000 |................|
    M  a00fc20  000448  00000000 00000000 00000000 00000000 |................|
    M  a00fc30  000464  00000000 00000000 00000000 00000000 |................|
    M  a00fc40  000480  00000000 00000000 00000000 00000000 |................|
    M  a00fc50  000496  00000000 00000000 00000000 00000000 |................|
    M  a00fc60  000512  00000000 00000000 00000000 00000000 |................|
    M  a00fc70  000528  00000000 00000000 00000000 00000000 |................|
    M  a00fc80  000544  00000000 00000000 00000000 00000000 |................|
    M  a00fc90  000560  00000000 00000000 00000000 00000000 |................|
    M  a00fca0  000576  00000000 00000000 00000000 00000000 |................|
    M  a00fcb0  000592  00000000 00000000 00000000 00000000 |................|
    M  a00fcc0  000608  00000000 00000000 00000000 00000000 |................|
    M  a00fcd0  000624  00000000 00000000 00000000 00000000 |................|
    M  a00fce0  000640  00000000 00000000 00000000 00000000 |................|
    M  a00fcf0  000656  00000000 00000000 00000000 00000000 |................|
    M  a00fd00  000672  00000000 00000000 00000000 00000000 |................|
    M  a00fd10  000688  0000                                |..              |
    M  -
    M  new request: THFCSPO
    M  TskhLoop: handle thfc 24
    M  set task type/act rqtype = ZTTADIA/1
    M  PfRecCreate: create record (0)
    M  set cpu stamp
    M  tskh_spainit: install saved spa pointer 141cf7570
    M  tskh_spainit: U35 M0 I0
    A  + not rolled in
    A  + not rolled in
    M  ThSavUsrClient: set usr >SAPSYS      <
    M  ThSavUsrClient: set client >000<
    M  ThEmInit: call EmContextCreate (U35/M0, ..)
    M  ThEmInit: em context for T34/M0 created (em_hdl=116)
    M  set task type/act rqtype = ZTTASPO/5
    M  Thdynpen00: call dynp handler (21) ...
    Y
    Y  ======================== DYNP entry 21:
    Y  RollEnvir UNDEF 00035_00_0000000000 00 SAPSYS
    Y  start spool
    Y  init new session
    Y  init_imode_spa
    A  ab_resize 0 2896 141d37780 DYNBPT
    M  NiIHostToAddr: hostname yssux01 = addr 10.80.1.30
    Y  init_dynpro
    A  Initialize Task.
    A  +                      SAPSYS       90  cleaned up ...   rlv=clean
    A  ab_resize 0 131072 141d38300 abstor
    A  ab_resize_imode(): 0 131072 131088 141d38300
    A  ab_resize 0 28463 141d58330 abinit
    A  +                      SAPSYS       90  Starting task ...   rlv=running
    A  ab_resize 0 12000 141d5f280 abgetw
    A  ab_resize 0 8000 141d62190 abgetw
    A  ab_resize 0 1000 141d64100 abgetw
    A  LOAD SEGMENT
    A  ab_resize 0 240 141d64510 abstor
    A  ab_resize 0 5280 141d64630 abinit
    A  LOAD SEGMENT /%_LISTTABLES
    A  ab_resize 0 16384 141d65b00 abdseg
    A  ab_resize 0 5232 141d69b30 abdseg
    A  ab_resize 0 4608 141d6afd0 abstac
    A  ab_resize 0 4096 141d6c200 abstac
    A  ab_resize 0 2048 141d6d230 abstac
    A  ab_resize 0 1200 141d6da60 abstac
    A  LOAD SEGMENT stack area
    A  ab_resize 0 16384 141d6df40 abgetw
    B  db_rtab ( fcode = 'READ_ONLY', tname = 'TCP0C                         ' )
    B  NTAB: tabname: TCP0C                         , fcode: 1
    B  NTAB: tabname: TCP0C                         , fcode: 7
    A  ab_resize 0 281 141d71f70 abloca
    B  NTAB: tabname: SYST                          , fcode: 6
    D   SET-TITLE TEXT: SAP R/3
    A  +                      SAPSYS       90  Task running ...   rlv=running
    Y  dy_new_trans_key: set new enq keys (dia + upd)
    M  ThNewEnqKey: new dia/update enqueue key
    E  New Enq-Owner (dia): 20080716130641371478003400yssux01.........................
    M  ThNewEnqKey: new dia/update enqueue key
    E  New Enq-Owner (upd): 20080716130641371478013400yssux01.........................
    Y  dy_new_trans_key: set new trans id (form=1)
    D    SET-STATUS: MENUSYST                                 MEN
    D   SET-TITLE TEXT: SAP R/3
    A  Initialize Task.
    A  +                      SAPSYS       90  cleaned up ...   rlv=clean
    A  ab_resize 0 131072 141d720b0 abstor
    A  ab_resize_imode(): 0 131072 131088 141d720b0
    A  ab_resize 0 28463 141d920e0 abinit
    A  +                      SAPSYS       90  Starting task ...   rlv=running
    A  ab_resize 0 12000 141d99030 abgetw
    A  ab_resize 0 8000 141d9bf40 abgetw
    A  ab_resize 0 1000 141d9deb0 abgetw
    A  LOAD SEGMENT
    A  ab_resize 0 240 141d9e2c0 abstor
    A  ab_resize 0 5280 141d9e3e0 abinit
    A  LOAD SEGMENT /%_LISTTABLES
    A  ab_resize 0 16384 141d9f8b0 abdseg
    A  ab_resize 0 5232 141da38e0 abdseg
    A  ab_resize 0 4608 141da4d80 abstac
    A  ab_resize 0 4096 141da5fb0 abstac
    A  ab_resize 0 2048 141da6fe0 abstac
    A  ab_resize 0 1200 141da7810 abstac
    A  LOAD SEGMENT stack area
    A  ab_resize 0 16384 141da7cf0 abgetw
    A  ab_resize 0 281 141dabd20 abloca
    D   SET-TITLE TEXT: SAP R/3
    A  +                      SAPSYS       90  Task running ...   rlv=running
    A  LOAD PROGRAM RSPOWP00
    A  ab_resize 0 11264 141dabe60 abload
    A  ab_resize 0 56 141daea90 abload
    A  ab_resize 0 1026 141daeaf0 abdseg
    A  LOAD SEGMENT
    A  ab_resize 0 56 141daef20 abgetw
    A  LOAD SEGMENT
    A  LOAD SEGMENT
    A  LOAD SEGMENT
    A  LOAD SEGMENT SYST
    A  LOAD SEGMENT SY
    A  LOAD SEGMENT RSJOBINFO
    A  LOAD SEGMENT /%_SYS%%
    A  LOAD SEGMENT
    A  LOAD SEGMENT /%_SSCR
    A  LOAD SEGMENT VARI
    A  LOAD SEGMENT
    A  ab_resize 0 272 141daef80 abgetw
    A  +                      SAPSYS       90  IsGuiOn ... (flag: 0, mode: off, task_type: off, term_io_set: -1)   rlv=running
    A  +                      SAPSYS       90  Program loaded.   rlv=running
    Y  dyLoadAndInitDynpro
    Y    Type Main
    Y    Name >RSPOWP00 2000
    Y  ->load dynpro RSPOWP00 2000
    Y   RSPOWP00<
    Y    dy_abrt
    A  ab_resize 0 32968 141daff20 ablink
    A  LOAD PROGRAM SAPMSSYD
    A  ab_resize 0 56 141d377e0 abload
    A  LOAD SEGMENT
    A  ab_resize 0 64 141d37840 abgetw
    A  LOAD SEGMENT
    A  LOAD SEGMENT
    A  LOAD SEGMENT
    A  LOAD SEGMENT SYST
    A  LOAD SEGMENT SY
    A  LOAD SEGMENT RSJOBINFO
    A  LOAD SEGMENT /%_SYS%%
    A  LOAD SEGMENT
    A  LOAD SEGMENT
    A  +                      SAPSYS       90  Program loaded.   rlv=running
    D  DiagGuiSupport (RESET) value EMERGENCY_REPAIR
    A  LOAD PROGRAM SAPFSYSCALLS
    A  ab_resize 0 56 141d378b0 abload
    A  LOAD SEGMENT
    A  ab_resize 0 56 141d37910 abgetw
    A  LOAD SEGMENT
    A  LOAD SEGMENT
    A  LOAD SEGMENT
    A  LOAD SEGMENT SYST
    A  LOAD SEGMENT SY
    A  LOAD SEGMENT RSJOBINFO
    A  LOAD SEGMENT /%_SYS%%
    A  LOAD SEGMENT
    A  LOAD SEGMENT
    A  +                      SAPSYS       90  Program loaded.   rlv=running
    D  DiagGuiSupport (RESET) value ITS
    Y    lock 43 (cnt=1)
    S  <== unlock 43 (cnt=2)
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    S  sending spool admin message (type=SRV op=I)
    M  ThISendMsg: send message (11) to all server (wp) matching types 1
    M  ThISend: (tm/type = 34/0x1000, mode_deleted=0)
    M  ThRqOutCheck: o.k.
    M  abap strategy ROLL / O.K.
    M  ThNewWpStat: new state of T34/M0 = 0x42
    M  ThISend: new wp stat: 0x0
    M  Adresse   Offset  Message by type
    M  -
    M  a01f4c0  000000  00000000 0b000000 41442d45 59454341 |........AD-EYECA|
    M  a01f4d0  000016  54434800 01012020 20202020 20203130 |TCH...        10|
    M  a01f4e0  000032  34202020 20202020 20202031 2c000000 |4          1,...|
    M  a01f4f0  000048  53525620 20497973 73757830 315f5953 |SRV  Iyssux01_YS|
    M  a01f500  000064  535f3030 20202020 20200000 00000000 |S_00      ......|
    M  a01f510  000080  00000000 00020000 00000000 00000000 |................|
    M  a01f520  000096  00000000 00000000 00000000 00000000 |................|
    M  a01f530  000112  00000000 00000000 00000000 00202020 |.............   |
    M  a01f540  000128  20202020 20202020 20202020 20202020 |                |
    M  a01f550  000144  20202020                            |                |
    M  -
    M  make DISP owner of wp_ca_blk 4
    M  put request into queue (reqtype 0, prio LOW, rq_id 850)
    M  -OUT- sender_id    WORK_PROCESS   tid  34    wp_ca_blk   4       wp_id 34
    M  -OUT- action    SEND_MSG_TYPE     uid  35    appc_ca_blk -1      type  NOWP
    M  -OUT- new_stat  NO_CHANGE         mode 0     len         148     rq_id 850
    M  -OUT- forward   DIA
    M  -OUT- req_info  MSG_WITH_REQ_BUF MSG_WITH_OH
    M  wake_evt_udp_now 1, no dgram needed
    M  LOCK WP ca_blk 6
    S  spool admin message received (type SRV op I (raw))
    T  alloc memory 14252f758 (96)
    T  module rsposerv matches rspo* -> project Sp
    T  alloc memory 14252f7b8 (56)
    T  alloc memory 14252f7f0 (80)
    T  alloc memory 14252f840 (56)
    T  alloc memory 14252f878 (80)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  ==> lock 31 (cnt=1)
    S  <== unlock 31 (cnt=2)
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    T  alloc memory 14252f8c8 (56)
    T  alloc memory 14252f900 (80)
    T  alloc memory 14252f950 (56)
    T  alloc memory 14252f988 (80)
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    T  alloc memory 14252f9d8 (56)
    T  alloc memory 14252fa10 (80)
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    S  setting spool action querying
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  ==> lock 31 (cnt=1)
    S  <== unlock 31 (cnt=2)
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  ==> lock 43 (cnt=1)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  <== unlock 43 (cnt=2)
    S  ==> lock 43 (cnt=1)
    S  <== unlock 43 (cnt=2)
    T  alloc memory 14252fa60 (56)
    T  alloc memory 14252fa98 (80)
    S    found next entry 0 'IZMB' (status temp,ndqy,asyn,used,exst,resp,vald)
    T  alloc memory 14252fae8 (56)
    T  alloc memory 14252fb20 (80)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  ==> lock 31 (cnt=1)
    S  <== unlock 31 (cnt=2)
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  ==> lock 43 (cnt=1)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  <== unlock 43 (cnt=2)
    T  alloc memory 14252fb70 (56)
    T  alloc memory 14252fba8 (80)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  ==> lock 31 (cnt=1)
    S  <== unlock 31 (cnt=2)
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  ==> lock 43 (cnt=1)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  <== unlock 43 (cnt=2)
    S    found next entry 1 'IZ27' (status actw,asyn,exst)
    S    found next entry 2 'PR72' (status actw,asyn,exst)
    S    found next entry 3 'PR35' (status asyn,used,exst,vald)
    S    found next entry 4 'LP01' (status actw,ndqy,exst,resp)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  ==> lock 31 (cnt=1)
    S  <== unlock 31 (cnt=2)
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  ==> lock 43 (cnt=1)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  <== unlock 43 (cnt=2)
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    T  alloc memory 14252fbf8 (96)
    T  module rspohjob matches rspo* -> project Sp
    T  alloc memory 14252fc58 (56)
    T  alloc memory 14252fc90 (80)
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    S  Query Printer LP01 not required
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  ==> lock 31 (cnt=1)
    S  <== unlock 31 (cnt=2)
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  ==> lock 43 (cnt=1)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  <== unlock 43 (cnt=2)
    S    found next entry 5 'TP62' (status actw,asyn,exst)
    S    found next entry 6 'PR69' (status asyn,used,exst,vald)
    S    found next entry 7 'IZ38' (status actw,asyn,exst)
    S    found next entry 8 'STL4' (status actw,asyn,exst)
    S    found next entry 9 'IZ45' (status asyn,used,exst,vald)
    S    found next entry 10 'MER1' (status actw,asyn,exst)
    S    found next entry 11 'TP80' (status asyn,used,exst,vald)
    S    found next entry 12 'IZ24' (status asyn,used,exst,vald)
    S    found next entry 13 'IZ39' (status actw,asyn,used,exst,vald)
    S    found next entry 14 'PR62' (status actw,asyn,used,exst,vald)
    S    found next entry 15 'TP14' (status actw,asyn,used,exst,vald)
    S    found next entry 16 'PR34' (status actw,asyn,used,exst)
    S    found next entry 17 'TP38' (status actw,asyn,used,exst,vald)
    S    found next entry 18 'IZMC' (status actw,asyn,used,exst,vald)
    S    found next entry 19 'PR23' (status actw,noqy,ndqy,asyn,exst,resp)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  ==> lock 31 (cnt=1)
    S  <== unlock 31 (cnt=2)
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  ==> lock 43 (cnt=1)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  <== unlock 43 (cnt=2)
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    S  Query Printer PR23 not required
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  ==> lock 31 (cnt=1)
    S  <== unlock 31 (cnt=2)
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  ==> lock 43 (cnt=1)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  <== unlock 43 (cnt=2)
    S    found next entry 20 'ANT0' (status actw,noqy,ndqy,asyn,used,exst,resp,vald)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  ==> lock 31 (cnt=1)
    S  <== unlock 31 (cnt=2)
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  ==> lock 43 (cnt=1)
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  <== unlock 43 (cnt=2)
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    T  alloc memory 14252fce0 (56)
    T  alloc memory 14252fd18 (80)
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    S  Doing: querying ANT0
    S  setting spool action querying ANT0
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  ==> lock 31 (cnt=1)
    S  <== unlock 31 (cnt=2)
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    S  ==> lock 31 (cnt=0)
    S  SemRq(31) done
    S  <== unlock 31 (cnt=1)
    S  SemRel(31) done
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    S  Query Printer ANT0:
    T  alloc memory 14252fd68 (96)
    T  module rspooms matches rspo* -> project Sp
    T  alloc memory 14252fdc8 (56)
    T  alloc memory 14252fe00 (80)
    T  alloc memory 14252fe50 (56)
    T  alloc memory 14252fe88 (80)
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    T  alloc memory 14252fed8 (56)
    T  alloc memory 14252ff10 (80)
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    B  db_rtab ( fcode = 'READ_FUPD', tname = 'TSP02                         ' )
    B  NTAB: tabname: TSP02                         , fcode: 1
    B  NTAB: tabname: TSP02                         , fcode: 1
    B  NTAB: tabname: TSP02                         , fcode: 10
    B  NTAB: tabname: TSP02                         , fcode: 6
    C  -->oci_alloc_stmt (con_hdl=0)
    C  <--oci_alloc_stmt (stmth_p=14225faf0)
    C  -->oci_prepare_stmt (con_hdl=0, stmt=SELECT "PJIDENT" , "PJNUMMER" , "PJDEST" , "PJPAPE ..., stmt_ln=549, stmth_p=14225faf0)
    C  -->oci_execute_stmt (con_hdl=0, stmth_p=142265f70, iters=1, rowoff=0, query=0)
    C  -->oci_bind (stmth_p=14225faf0, cnt=2)
    C  -->oci_define (stmth_p=14225faf0, cnt=35)
    C  -->oci_execute_stmt (con_hdl=0, stmth_p=14225faf0, iters=1, rowoff=0, query=1)
    B  db_rtab ( fcode = 'READ_ONLY', tname = 'TSP02L                        ' )
    B  NTAB: tabname: TSP02L                        , fcode: 1
    B  NTAB: tabname: TSP02L                        , fcode: 1
    B  NTAB: tabname: TSP02L                        , fcode: 10
    B  NTAB: tabname: TSP02L                        , fcode: 6
    C  -->oci_alloc_stmt (con_hdl=0)
    C  <--oci_alloc_stmt (stmth_p=14225fc70)
    C  -->oci_prepare_stmt (con_hdl=0, stmt=SELECT "PJIDENT" , "PJNUMMER" , "LINES" , "COLUMNS ..., stmt_ln=306, stmth_p=14225fc70)
    C  -->oci_execute_stmt (con_hdl=0, stmth_p=142265f70, iters=1, rowoff=0, query=0)
    C  -->oci_bind (stmth_p=14225fc70, cnt=2)
    C  -->oci_define (stmth_p=14225fc70, cnt=19)
    C  -->oci_execute_stmt (con_hdl=0, stmth_p=14225fc70, iters=1, rowoff=0, query=1)
    S  print job 30829/1 has no list attributes
    B  db_rtab ( fcode = 'UPDATE', tname = 'TSP02                         ' )
    B  NTAB: tabname: TSP02                         , fcode: 1
    C  -->oci_alloc_stmt (con_hdl=0)
    C  <--oci_alloc_stmt (stmth_p=142265bb0)
    C  -->oci_prepare_stmt (con_hdl=0, stmt=UPDATE "TSP02" SET "PJDEST" = :A0 , "PJPAPER" = :A ..., stmt_ln=734, stmth_p=142265bb0)
    C  -->oci_execute_stmt (con_hdl=0, stmth_p=142265f70, iters=1, rowoff=0, query=0)
    C  -->oci_bind (stmth_p=142265bb0, cnt=35)
    C  -->oci_execute_stmt (con_hdl=0, stmth_p=142265bb0, iters=1, rowoff=0, query=0)
    M  ThICommit3: commit and keep resources
    M  ThCheckComOrRb (event=1, full_commit=1)
    M  ThCallHooks: call hook >ASTAT-collect commit handling< for event BEFORE_COMMIT
    M  ThCallHooks: call hook >rsts_before_commit< for event BEFORE_COMMIT
    S  no temse root so far
    B  db_con_commit (con_da={R/3,0,0},th_commit=1,forced=1,tx=1,hold_cursor=1)
    B  db_con_commit (com_total=5, com_forced=1, com_tx=1)
    C  -->oci_commit (con_hdl=0)
    B  Connection 0 committed
    M  ThCheckComOrRb (event=3, full_commit=1)
    M  ThCallHooks: call hook >ThNoClearPrevErr< for event AFTER_COMMIT
    M  ThNoClearPrevErr: clear prev no err
    M  ThCallHooks: call hook >rsts_after_commit< for event AFTER_COMMIT
    S  no temse root so far
    M  ThCallHooks: call hook >SpoolHandleHook< for event AFTER_COMMIT
    M  ThICommit3 o.k.
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    B  db_rtab ( fcode = 'READ_FUPD', tname = 'TSP02                         ' )
    B  NTAB: tabname: TSP02                         , fcode: 1
    B  NTAB: tabname: TSP02                         , fcode: 6
    C  -->oci_execute_stmt (con_hdl=0, stmth_p=14225faf0, iters=1, rowoff=0, query=1)
    S  ==> lock 43 (cnt=0)
    S  SemRq(43) done
    S  <== unlock 43 (cnt=1)
    S  SemRel(43) done
    B  db_rtab ( fcode = 'READ_FUPD', tname = 'TSP02                         ' )
    B  NTAB: tabname: TSP02                         , fcode: 6
    C  -->oci_execute_stmt (con_hdl=0, stmth_p=14225faf0, iters=1, rowoff=0, query=1)
    B  db_rtab ( fcode = 'READ_ONLY', tname = 'TSP02L                        ' )
    B  NTAB: tabname: TSP02L                        , fcode: 1
    B  NTAB: tabname: TSP02L                        , fcode: 6
    C  -->oci_execute_stmt (con_hdl=0, stmth_p=14225fc70, iters=1, rowoff=0, query=1)
    S  print job 435/1 has no list attributes
    M  signal was in UNBLOCKED mode
    M  -
    C-STACK -
       0: 0x1205d8028
          OSF_stacktrace
          dptstack.c :   879
          dw.sapYSS_DVEBMGS00  .text
       1: 0x1205d7f44
          CTrcStack2
          dptstack.c :   265
          dw.sapYSS_DVEBMGS00  .text
       2: 0x12139cbbc
          SigIGenAction
          sigux.c :   738
          dw.sapYSS_DVEBMGS00  .text
       3: 0x3ff800d5d00
          __tis_init
          /usr/shlib/libc.so  .text
       5: 0x1210897e0
          strfcpy
          sapstr.c :   236
          dw.sapYSS_DVEBMGS00  .text
       6: 0x120e9fec4
          SetJobInfo
          rspohjob.c :   316
          dw.sapYSS_DVEBMGS00  .text
       7: 0x120ea0f24
          FindDoneJobs
          rspohjob.c :   559
          dw.sapYSS_DVEBMGS00  .text
       8: 0x120ea3d90
          SpHostSpoolFindDoneJobs
          rspohjob.c :  1291
          dw.sapYSS_DVEBMGS00  .text
       9: 0x120f75e64
          LPD_query_hostspool
          rspoyunx.c :  3581
          dw.sapYSS_DVEBMGS00  .text
      10: 0x120f74a40
          rspoqh__query_hostspool
          rspoyunx.c :  3144
          dw.sapYSS_DVEBMGS00  .text
      11: 0x120f21cb4
          SpDevQueryHostspool
          rspopcc.c :  2838
          dw.sapYSS_DVEBMGS00  .text
      12: 0x120f9bc0c
          rspoget2_on_unix
          rspowunx.c :   978
          dw.sapYSS_DVEBMGS00  .text
      13: 0x120f932f8
          rspopsd_process_start_dynpro
          rspodynp.c :    64
          dw.sapYSS_DVEBMGS00  .text
      14: 0x12067af74
          N_rspopsd_process_start_dynpro
          dymainstp.c :  4023
          dw.sapYSS_DVEBMGS00  .text
      15: 0x120675e44
          dynpmcal
          dymainstp.c :  2084
          dw.sapYSS_DVEBMGS00  .text
      16: 0x1206723a8
          dynppbo0
          dymainstp.c :   464
          dw.sapYSS_DVEBMGS00  .text
      17: 0x120671b2c
          dynprctl
          dymainstp.c :   301
          dw.sapYSS_DVEBMGS00  .text
      18: 0x12066e7cc
          dynpen00
          dymain.c :  1204
          dw.sapYSS_DVEBMGS00  .text
      19: 0x1204c6b6c
          Thdynpen00
          thxxhead.c :  3863
          dw.sapYSS_DVEBMGS00  .text
      20: 0x1204c604c
          TskhLoop
          thxxhead.c :  3686
          dw.sapYSS_DVEBMGS00  .text
      21: 0x1204bdab0
          tskhstart
          thxxhead.c :   951
          dw.sapYSS_DVEBMGS00  .text
      22: 0x120453140
          DpMain
          dpxxdisp.c :   850
          dw.sapYSS_DVEBMGS00  .text
      23: 0x120451984
          main
          thxxanf.c :    50
          dw.sapYSS_DVEBMGS00  .text
    M  -
    M Wed Jul 16 13:06:44 2008
    M  ***LOG Q0E=> SigIGenAction, signal ( 11)
    M  SigIGenAction: call exithandler ThSigHandler(FALSE)
    M  ThSigHandler: call ThErrHandle
    M  in_ThErrHandle: 1
    M  ThSigHandler: signal (step 4, th_errno 11, action 4)
    M
    M  Info for wp 34
    M
    M    stat = 4
    M    reqtype = 5
    M    act_reqtype = 5
    M    tid = 34
    M    mode = 0
    M    len = 690
    M    rq_id = 839
    M    rq_source = 1
    M    rq_info = 270336
    M    last_tid = 34
    M    last_mode = 0
    M    int_checked_resource = 0
    M    ext_checked_resource = 0
    M    report = >querying ANT0                           <
    M    action = 0
    M    tab_name = >                              <
    M
    M  Modeinfo for User T34/M0
    M
    M    tm state = 2
    M    uid = 35
    M    term type = 0x0
    M    display = 0x0
    M    cpic_no = 0
    M    cpic_idx = -1
    M    usr = >SAPSYS      <
    M    terminal = >                    <
    M    client = >000<
    M    conversation_ID = >        <
    M    appc_tm_conv_idx = -1
    M    imode = 0
    M    mode state = 0x42
    M    th_errno = 11
    M    rollout_reason = 0
    M    last_rollout_level = 0
    M    async_receives = 0
    M    cpic_receive = 0
    M    em handle = 116
    M    roll state = 2
    M    abap state = 2
    M    em state = 3
    M    eg state = 1
    M    spa state = 3
    M    enq state = 0
    M    next hook = T-1/U-1/M255
    M    master hook = T-1/U-1/M255
    M    slave hook = T-1/U-1/M255
    M    debug_tid = -1
    M    mode type = 0x1
    M    debug = 0
    M    tcode = >                    <
    M    client conversation_ID = >        <
    M    server conversation_ID = >        <
    M    lock = 0
    M    max enq infos = 0
    M    act enq infos = 0
    M    em_hyper_hdl = NULL
    M
    M
    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server yssux01_YSS_00 on host yssux01 (wp 34)
    M  *  ERROR       ThSigHandler: signal
    M  *
    M  *  TIME        Wed Jul 16 13:06:44 2008
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          11
    M  *  MODULE      thxxhead.c
    M  *  LINE        8435
    M  *  COUNTER     12
    M  *
    M  *****************************************************************************
    M
    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALL_HOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  Entering ThSetStatError
    M  ThErrHandle: incomplete previous roll out, do a full roll out
    M  ThRollOut: roll out T34/U35/M0/I0 (level=7, short_roll_out=0)
    M  ThRollOut: call rrol_out
    R  enter roll_out:  rollkey: 35 0 0
    R  roll out area[0]
    R  rrol_area_end[0] = 141cf755f
    R  HEADER: id USRINF class 4 len 528 n_len 528
    R  <ROLL-UA> get first(1): user:35  not found
    R  SemRq
    R  <ROLL-FL> get block (1): 3029
    R  roll out: next free block 3029
    R  <ROLL-UA> set first(1): user:35  level:0  bnr:63/127  block:3029
    R  out: next[0] = 3029 first 1 rnum 48
    R  HEADER: id -CCCI- class 4 len 176 n_len 176
    R  HEADER: id -CCCO- class 4 len 176 n_len 176
    R  HEADER: id M2CCCI class 4 len 176 n_len 176
    R  HEADER: id M2CCCO class 4 len 176 n_len 176
    R  HEADER: id TS1CCC class 4 len 176 n_len 176
    R  HEADER: id TS2CCC class 4 len 176 n_len 176
    R  HEADER: id USRDAT class 4 len 208 n_len 208
    R  HEADER: id PRADPT class 20 len 16048 n_len 20
    R  HEADER: id abdebu class 4 len 1504 n_len 1504
    R  HEADER: id USRAUT class 4 len 48048 n_len 48048
    R  <ROLL-FL> get block (1): 3332
    R  roll out: next free block 3332
    R  out: next[3029] = 3332 first 0 rnum 48
    R  <ROLL-FL> get block (1): 3037
    R  roll out: next free block 3037
    R  out: next[3332] = 3037 first 0 rnum 48
    R  <ROLL-FL> get block (1): 3038
    R  roll out: next free block 3038
    R  out: next[3037] = 3038 first 0 rnum 48
    R  <ROLL-FL> get block (1): 3039
    R  roll out: next free block 3039
    R  out: next[3038] = 3039 first 0 rnum 48
    R  <ROLL-FL> get block (1): 3040
    R  roll out: next free block 3040
    R  out: next[3039] = 3040 first 0 rnum 48
    R  <ROLL-FL> get block (1): 3041
    R  roll out: next free block 3041
    R  out: next[3040] = 3041 first 0 rnum 48
    R  roll out area[1]
    R  rrol_area_end[1] = 141d3386f
    R  HEADER: id SPAAPT class 4 len 9952 n_len 9952
    R  <ROLL-UA> get index (1): user:35  bnr:63
    R  <ROLL-UA> get first(3): user:35 mode:0 not set
    R  <ROLL-FL> get block (1): 3042
    R  roll out: next free block 3042
    R  <ROLL-UA> get index (1): user:35  bnr:63
    R  out: next[0] = 3042 first 1 rnum 49
    R  <ROLL-FL> get block (1): 3217
    R  roll out: next free block 3217
    R  out: next[3042] = 3217 first 0 rnum 49
    R  HEADER: id DTADPT class 20 len 2048 n_len 20
    R  HEADER: id PRADPL class 20 len 16048 n_len 20
    R  HEADER: id BICIOB class 4 len 5168 n_len 5168
    R  HEADER: id BIPIOB class 4 len 5168 n_len 5168
    R  <ROLL-FL> get block (1): 1228
    R  roll out: next free block 1228
    R  out: next[3217] = 1228 first 0 rnum 49
    R  HEADER: id BICQCB class 4 len 400 n_len 400
    R  HEADER: id BIPQCB class 4 len 400 n_len 400
    R  HEADER: id BILOGK class 4 len 96 n_len 96
    R  HEADER: id BIPRIN class 4 len 576 n_len 576
    R  HEADER: id DEXT   class 4 len 480 n_len 480
    R  HEADER: id BTCKEY class 4 len 304 n_len 304
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  <ROLL-FL> get block (1): 803
    R  roll out: next free block 803
    R  out: next[1228] = 803 first 0 rnum 49
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  <ROLL-FL> get block (1): 876
    R  roll out: next free block 876
    R  out: next[803] = 876 first 0 rnum 49
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  <ROLL-FL> get block (1): 3015
    R  roll out: next free block 3015
    R  out: next[876] = 3015 first 0 rnum 49
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id RSTSOO class 4 len 1616 n_len 1616
    R  HEADER: id CUABPT class 20 len 180048 n_len 10148
    R  <ROLL-FL> get block (1): 3898
    R  roll out: next free block 3898
    R  out: next[3015] = 3898 first 0 rnum 49
    R  <ROLL-FL> get block (1): 3889
    R  roll out: next free block 3889
    R  out: next[3898] = 3889 first 0 rnum 49
    R  roll out area[2]
    R  rrol_area_end[2] = 141db7fff
    R  HEADER: id FADM__ class 4 len 16080 n_len 16080
    R  <ROLL-UA> get index (1): user:35  bnr:63
    R  <ROLL-UA> get first(4): user:35 mode:0 imode:0 not set
    R  <ROLL-FL> get block (1): 3643
    R  roll out: next free block 3643
    R  <ROLL-UA> get index (1): user:35  bnr:63
    R  out: next[0] = 3643 first 1 rnum 50
    R  <ROLL-FL> get block (1): 3644
    R  roll out: next free block 3644
    R  out: next[3643] = 3644 first 0 rnum 50
    R  HEADER: id Id: // class 4 len 48 n_len 48
    R  HEADER: id dyrdyp class 4 len 96 n_len 96
    R  HEADER: id abload class 4 len 96 n_len 96
    R  HEADER: id abgetw class 4 len 112 n_len 112
    R  <ROLL-FL> get block (1): 4344
    R  roll out: next free block 4344
    R  out: next[3644] = 4344 first 0 rnum 50
    R  HEADER: id abload class 4 len 96 n_len 96
    R  HEADER: id abgetw class 4 len 96 n_len 96
    R  HEADER: id ÿÿÿÿÿÿ class 1 len 2448 n_len 20
    R  HEADER: id abstor class 4 len 131120 n_len 131120
    R  <ROLL-FL> get block (1): 4343
    R  roll out: next free block 4343
    R  out: next[4344] = 4343 first 0 rnum 50
    R  <ROLL-FL> get block (1): 4342
    R  roll out: next free block 4342
    R  out: next[4343] = 4342 first 0 rnum 50
    R  <ROLL-FL> get block (1): 4341
    R  roll out: next free block 4341
    R  out: next[4342] = 4341 first 0 rnum 50
    R  <ROLL-FL> get block (1): 4340
    R  roll out: next free block 4340
    R  out: next[4341] = 4340 first 0 rnum 50
    R  <ROLL-FL> get block (1): 4339
    R  roll out: next free block 4339
    R  out: next[4340] = 4339 first 0 rnum 50
    R  <ROLL-FL> get block (1): 4356
    R  roll out: next free block 4356
    R  out: next[4339] = 4356 first 0 rnum 50
    R  <ROLL-FL> get block (1): 678
    R  roll out: next free block 678
    R  out: next[4356] = 678 first 0 rnum 50
    R  <ROLL-FL> get block (1): 2396
    R  roll out: next free block 2396
    R  out: next[678] = 2396 first 0 rnum 50
    R  <ROLL-FL> get block (1): 2156
    R  roll out: next free block 2156
    R  out: next[2396] = 2156 first 0 rnum 50
    R  <ROLL-FL> get block (1): 2100
    R  roll out: next free block 2100
    R  out: next[2156] = 2100 first 0 rnum 50
    R  <ROLL-FL> get block (1): 2891
    R  roll out: next free block 2891
    R  out: next[2100] = 2891 first 0 rnum 50
    R  <ROLL-FL> get block (1): 783
    R  roll out: next free block 783
    R  out: next[2891] = 783 first 0 rnum 50
    R  <ROLL-FL> get block (1): 670
    R  roll out: next free block 670
    R  out: next[783] = 670 first 0 rnum 50
    R  <ROLL-FL> get block (1): 687
    R  roll out: next free block 687
    R  out: next[670] = 687 first 0 rnum 50
    R  <ROLL-FL> get block (1): 3212
    R  roll out: next free block 3212
    R  out: next[687] = 3212 first 0 rnum 50
    R  <ROLL-FL> get block (1): 1796
    R  roll out: next free block 1796
    R  out: next[3212] = 1796 first 0 rnum 50
    R  HEADER: id abinit class 4 len 28496 n_len 28496
    R  <ROLL-FL> get block (1): 1555
    R  roll out: next free block 1555
    R  out: next[1796] = 1555 first 0 rnum 50
    R  <ROLL-FL> get block (1): 1145
    R  roll out: next free block 1145
    R  out: next[1555] = 1145 first 0 rnum 50
    R  <ROLL-FL> get block (1): 52
    R  roll out: next free block 52
    R  out: next[1145] = 52 first 0 rnum 50
    R  HEADER: id abgetw class 4 len 12048 n_len 12048
    R  <ROLL-FL> get block (1): 4001
    R  roll out: next free block 4001
    R  out: next[52] = 4001 first 0 rnum 50
    R  HEADER: id abgetw class 4 len 8048 n_len 8048
    R  <ROLL-FL> get block (1): 691
    R  roll out: next free block 691
    R  out: next[4001] = 691 first 0 rnum 50
    R  HEADER: id abgetw class 4 len 1040 n_len 1040
    R  <ROLL-FL> get block (1): 3970
    R  roll out: next free block 3970
    R  out: next[691] = 3970 first 0 rnum 50
    R  HEADER: id abstor class 4 len 288 n_len 288
    R  HEADER: id abinit class 4 len 5328 n_len 5328
    R  HEADER: id abdseg class 4 len 16432 n_len 16432
    R  <ROLL-FL> get block (1): 1958
    R  roll out: next free block 1958
    R  out: next[3970] = 1958 first 0 rnum 50
    R  <ROLL-FL> get block (1): 67
    R  roll out: next free block 67
    R  out: next[1958] = 67 first 0 rnum 50
    R  HEADER: id abdseg class 4 len 5280 n_len 5280
    R  <ROLL-FL> get block (1): 2818
    R  roll out: next free block 2818
    R  out: next[67] = 2818 first 0 rnum 50
    R  HEADER: id abstac class 4 len 4656 n_len 4656
    R  <ROLL-FL> get block (1): 3179
    R  roll out: next free block 3179
    R  out: next[2818] = 3179 first 0 rnum 50
    R  HEADER: id abstac class 4 len 4144 n_len 4144
    R  HEADER: id abstac class 4 len 2096 n_len 2096
    R  HEADER: id abstac class 4 len 1248 n_len 1248
    R  HEADER: id abgetw class 4 len 16432 n_len 16432
    R  <ROLL-FL> get block (1): 3166
    R  roll out: next free block 3166
    R  out: next[3179] = 3166 first 0 rnum 50
    R  <ROLL-FL> get block (1): 450
    R  roll out: next free block 450
    R  out: next[3166] = 450 first 0 rnum 50
    R  HEADER: id abloca class 4 len 320 n_len 320
    R  HEADER: id abstor class 4 len 131120 n_len 131120
    R  <ROLL-FL> get block (1): 896
    R  roll out: next free block 896
    R  out: next[450] = 896 first 0 rnum 50
    R  <ROLL-FL> get block (1): 3856
    R  roll out: next free block 3856
    R  out: next[896] = 3856 first 0 rnum 50
    R  <ROLL-FL> get block (1): 310
    R  roll out: next free block 310
    R  out: next[3856] = 310 first 0 rnum 50
    R  <ROLL-FL> get block (1): 3684
    R  roll out: next free block 3684
    R  out: next[310] = 3684 first 0 rnum 50
    R  <ROLL-FL> get block (1): 3803
    R  roll out: next free block 3803
    R  out: next[3684] = 3803 first 0 rnum 50
    R  <ROLL-FL> get block (1): 3804
    R  roll out: next free block 3804
    R  out: next[3803] = 3804 first 0 rnum 50
    R  <ROLL-FL> get block (1): 3782
    R  roll out: next free block 3782
    R  out: next[3804] = 3782 first 0 rnum 50
    R  <ROLL-FL> get block (1): 616
    R  roll out: next free block 616
    R  out: next[3782] = 616 first 0 rnum 50
    R  <ROLL-FL> get block (1): 1850
    R  roll out: next free block 1850
    R  out: next[616] = 1850 first 0 rnum 50
    R  <ROLL-FL> get block (1): 3851
    R  roll out: next free block 3851
    R  out: next[1850] = 3851 first 0 rnum 50
    R  <ROLL-FL> get block (1): 3852
    R  roll out: next free block 3852
    R  out: next[3851] = 3852 first 0 rnum 50
    R  <ROLL-FL> get block (1): 474
    R  roll out: next free block 474
    R  out: next[3852] = 474 first 0 rnum 50
    R  <ROLL-FL> get block (1): 3801
    R  roll out: next free block 3801
    R  out: next[474] = 3801 first 0 rnum 50
    R  <ROLL-FL> get block (1): 3112
    R  roll out: next free block 3112
    R  out: next[3801] = 3112 first 0 rnum 50
    R  <ROLL-FL> get block (1): 4109
    R  roll out: next free block 4109
    R  out: next[3112] = 4109 first 0 rnum 50
    R  <ROLL-FL> get block (1): 2695
    R  roll out: next free block 2695
    R  out: next[4109] = 2695 first 0 rnum 50
    R  HEADER: id abinit class 4 len 28496 n_len 28496
    R  <ROLL-FL> get block (1): 1002
    R  roll out: next free block 1002
    R  out: next[2695] = 1002 first 0 rnum 50
    R  <ROLL-FL> get block (1): 1355
    R  roll out: next free block 1355
    R  out: next[1002] = 1355 first 0 rnum 50
    R  <ROLL-FL> get block (1): 459
    R  roll out: next free block 459
    R  out: next[1355] = 459 first 0 rnum 50
    R  <ROLL-FL> get block (1): 585
    R  roll out: next free block 585
    R  out: next[459] = 585 first 0 rnum 50
    R  HEADER: id abgetw class 4 len 12048 n_len 12048
    R  <ROLL-FL> get block (1): 342
    R  roll out: next free block 342
    R  out: next[585] = 342 first 0 rnum 50
    R  HEADER: id abgetw class 4 len 8048 n_len 8048
    R  <ROLL-FL> get block (1): 1984
    R  roll out: next free block 1984
    R  out: next[342] = 1984 first 0 rnum 50
    R  HEADER: id abgetw class 4 len 1040 n_len 1040
    R  <ROLL-FL> get block (1): 3259
    R  roll out: next free block 3259
    R  out: next[1984] = 3259 first 0 rnum 50
    R  HEADER: id abstor class 4 len 288 n_len 288
    R  HEADER: id abinit class 4 len 5328 n_len 5328
    R  HEADER: id abdseg class 4 len 16432 n_len 16432
    R  <ROLL-FL> get block (1): 2285
    R  roll out: next free block 2285
    R  out: next[3259] = 2285 first 0 rnum 50
    R  <ROLL-FL> get block (1): 239
    R  roll out: next free block 239
    R  out: next[2285] = 239 first 0 rnum 50
    R  HEADER: id abdseg class 4 len 5280 n_len 5280
    R  <ROLL-FL> get block (1): 3733
    R  roll out: next free block 3733
    R  out: next[239] = 3733 first 0 rnum 50
    R  HEADER: id abstac class 4 len 4656 n_len 4656
    R  HEADER: id abstac class 4 len 4144 n_len 4144
    R  <ROLL-FL> get block (1): 2382
    R  roll out: next free block 2382
    R  out: next[3733] = 2382 first 0 rnum 50
    R  HEADER: id abstac class 4 len 2096 n_len 2096
    R  HEADER: id abstac class 4 len 1248 n_len 1248
    R  HEADER: id abgetw class 4 len 16432 n_len 16432
    R  <ROLL-FL> get block (1): 2911
    R  roll out: next free block 2911
    R  out: next[2382] = 2911 first 0 rnum 50
    R  <ROLL-FL> get block (1): 2935
    R  roll out: next free block 2935
    R  out: next[2911] = 2935 first 0 rnum 50
    R  HEADER: id abloca class 4 len 320 n_len 320
    R  HEADER: id abload class 4 len 11312 n_len 11312
    R  <ROLL-FL> get block (1): 2675
    R  roll out: next free block 2675
    R  out: next[2935] = 2675 first 0 rnum 50
    R  <ROLL-FL> get block (1): 851
    R  roll out: next free block 851
    R  out: next[2675] = 851 first 0 rnum 50
    R  HEADER: id abload class 4 len 96 n_len 96
    R  HEADER: id abdseg class 4 len 1072 n_len 1072
    R  HEADER: id abgetw class 4 len 96 n_len 96
    R  HEADER: id abgetw class 4 len 320 n_len 320
    R  HEADER: id dyrdyp class 4 len 3680 n_len 3680
    R  HEADER: id ablink class 4 len 33008 n_len 33008
    R  <ROLL-FL> get block (1): 4143
    R  roll out: next free block 4143
    R  out: next[851] = 4143 first 0 rnum 50
    R  <ROLL-FL> get block (1): 4142
    R  roll out: next free block 4142
    R  out: next[4143] = 4142 first 0 rnum 50
    R  <ROLL-FL> get block (1): 1682
    R  roll out: next free block 1682
    R  out: next[4142] = 1682 first 0 rnum 50
    R  <ROLL-FL> get block (1): 936
    R  roll out: next free block 936
    R  out: next[1682] = 936 first 0 rnum 50
    R  compres factor 75
    R  SemRel
    R  leave rrol_out: ok
    M  M  ThRollOut: act roll state = DP_ROLLED_OUT
    M  ThRollOut: roll level <> 0, don't call ab_rollout
    P  enter pg_com
    P  pg_com: 0 blks in buf, 0 in file, 0 new since last commit
    P  leave pg_com: ok
    M  ThRollOut: full roll out of U35 M0 I0 (Level 7) ok
    C  -->oci_break (con_hdl=-1, cb=0)
    M  *** WARNING => sql break failed (-1)
    M  ThErrHandle: don't try rollback again
    M  ThErrHandle: call ThrCoreInfo
    A  + not rolled in
    A  RFC get SPA_SESSION_ARFC: NORMAL
    E  EnqRollback: No action required
    M  SigIRegisterRoutine: handler for signal 11 installed (catch_dumperror)
    M  SigIRegisterRoutine: handler for signal 10 installed (catch_dumperror)
    B Wed Jul 16 13:06:49 2008
    B  dsql_open (con_da=(0,R/3),stmt="SELECT TLINE, SEQNO FROM SNAPT ...",#binds=3,name=SNAPT                         ,#input=3)
    C  -->oci_alloc_stmt (con_hdl=0)
    C  <--oci_alloc_stmt (stmth_p=14225feb0)
    C  -->oci_prepare_stmt (con_hdl=0, stmt=SELECT TLINE, SEQNO FROM SNAPT WHERE LANGU = :A0 A ..., stmt_ln=0, stmth_p=14225feb0)
    C  -->oci_bind (stmth_p=14225feb0, cnt=3)
    C  -->oci_execute_stmt (con_hdl=0, stmth_p=14225feb0, iters=0, rowoff=0, query=1)
    B  dsql_fetch (con_da=(0,R/3),cu_id=1,#output=2)
    C  -->oci_define (stmth_p=14225feb0, cnt=2)
    C  -->oci_fetch (con_hdl=0, stmth_p=14225feb0, nrows=650)
    B  dsql_close (con_da=(0,R/3),cu_id=1)
    C  -->oci_free_stmt (stmth_p=14225feb0)
    B  dsql_open (con_da=(0,R/3),stmt="SELECT TLINE, SEQNO FROM SNAPT ...",#binds=3,name=SNAPT                         ,#input=3)
    C  -->oci_alloc_stmt (con_hdl=0)
    C  <--oci_alloc_stmt (stmth_p=14225ff70)
    C  -->oci_prepare_stmt (con_hdl=0, stmt=SELECT TLINE, SEQNO FROM SNAPT WHERE LANGU = :A0 A ..., stmt_ln=0, stmth_p=14225ff70)
    C  -->oci_bind (stmth_p=14225ff70, cnt=3)
    C  -->oci_execute_stmt (con_hdl=0, stmth_p=14225ff70, iters=0, rowoff=0, query=1)
    B  dsql_fetch (con_da=(0,R/3),cu_id=1,#output=2)
    C  -->oci_define (stmth_p=14225ff70, cnt=2)
    C  -->oci_fetch (con_hdl=0, stmth_p=14225ff70, nrows=650)
    B  dsql_close (con_da=(0,R/3),cu_id=1)
    C  -->oci_free_stmt (stmth_p=14225ff70)
    B  dsql_open (con_da=(0,R/3),stmt="SELECT TLINE, SEQNO FROM SNAPT ...",#binds=3,name=SNAPT                         ,#input=3)
    C  -->oci_alloc_stmt (con_hdl=0)
    C  <--oci_alloc_stmt (stmth_p=14225feb0)
    C  -->oci_prepare_stmt (con_hdl=0, stmt=SELECT TLINE, SEQNO FROM SNAPT WHERE LANGU = :A0 A ..., stmt_ln=0, stmth_p=14225feb0)
    C  -->oci_bind (stmth_p=14225feb0, cnt=3)
    C  -->oci_execute_stmt (con_hdl=0, stmth_p=14225feb0, iters=0, rowoff=0, query=1)
    B  dsql_fetch (con_da=(0,R/3),cu_id=1,#output=2)
    C  -->oci_define (stmth_p=14225feb0, cnt=2)
    C  -->oci_fetch (con_hdl=0, stmth_p=14225feb0, nrows=650)
    B  dsql_close (con_da=(0,R/3),cu_id=1)
    C  -->oci_free_stmt (stmth_p=14225feb0)
    M  RmCleanUpResources2: hdr/tbl/ext_tbl = 9029188/0/0
    M  RmCleanUpResources2: no resources registered
    M  SigIRegisterRoutine: handler for signal 11 installed (catch_dumperror)
    M  SigIRegisterRoutine: handler for signal 10 installed (catch_dumperror)
    M  ThIErrHandle: Entering ThErrHdlUser
    M  ThErrHdlUser: set th_errno (11)
    M  ThErrHdlUser: save context
    M  ThEmContextDetach2: detach T34/M0 from em memory (em_hdl=116)
    M  ThDBDisconnect: disconnect from data base
    B  Disconnecting from ALL connections:
    B  Wp  Hdl ConName              ConCnt ConState     TX  PRM RCT Date     Time
    B  034 000 R/3                  000000 ACTIVE       YES YES NO  20080716 130546
    C  Disconnecting from connection 0 ...
    C  -->oci_free_stmt (stmth_p=142265af0)
    C  -->oci_free_stmt (stmth_p=142265a30)
    C  -->oci_free_stmt (stmth_p=14225fa30)
    C  -->oci_free_stmt (stmth_p=14225faf0)
    C  -->oci_free_stmt (stmth_p=14225fc70)
    C  -->oci_free_stmt (stmth_p=142265bb0)
    C  -->oci_logoff(con_hdl=0)
    C  -->oci_free_stmt (stmth_p=142265f70)
    C  Now I'm disconnected from ORACLE
    B  Disconnected from connection 0
    B  statistics db_con_commit (com_total=5, com_forced=1, com_tx=1)
    B  statistics db_con_rollback (roll_total=0, roll_forced=0, roll_tx=0)
    M  ThErrHandle: disconnect o.k.
    M  ***LOG Q02=> wp_halt, WPStop (Workproc34 1557514)
    M  SigIGenAction: return from exithandler ThSigHandler(FALSE)
    M  set mode of sig 11 to BLOCKED and send to own pid
    M
    M  CORE DUMP ...

  • Cannot add printer...Error message Print Spooler not running

    just purchased HP with vista.  I had a HP Photosmart 6525 that did work at one time and then it stopped.   Thinking the printer was the problem, I bought an HP 5660 and i get the same error messages.  It did work to begin with but has stopped.  I have unplugged and replugged in everything.  Tried downloading drivers again and keep getting errors.  I get an option to download the drivers from windows update or windows/INF/oem.inf.  It does not matter which I choose as I keep getting a message that windows found driver software for your device but encountered an erro while attempting to install it.  On of the installers for this device cannot perform the installation at this time.  When I go to add on a printer I get the message that Windows can't open Add printer.  The local print spooler is not running. Please restart the spooler or restart the machine.  I have restarted the machine many times and gone through the help with the spooler and there is nothing there to be spooled.    I have downloaded and run the print & scan doctor, but that did not help.   thanks for any and all help 

    The spooler is part of WIndows, if it is stopped (or broken), no printer will work.Try clear and restart the spooler (this page may help: http://hpanswers.blogspot.com/2008/10/how-to-start-stop-and-restart-print.html and if this doesn't solve the problem, you need to reinstall Windows (or run a system recovery to reset Windows).

  • Calling Spool while running in Foreground

    Hi,
    If I run a classical report in background, the output of this automatically goes to the Spool, which I can see using SP01/SP02.
    But, the user wants to send the output of the report while running in Foreground too.
    Customer's Says: "in the foreground, the user must be prompted to send the output to the spool".
    Please help me with the logic.
    Thanks in advance,
    Ishaq.

    Hi,
    I have tried your code for generating spool in foreground(below). The spool no gets generated but I am not getting the data in spool.
    NEW-PAGE PRINT ON
            LINE-SIZE 220
            IMMEDIATELY 'X'
            KEEP IN SPOOL 'X'
            NEW LIST IDENTIFICATION 'X'
            NO DIALOG.
            PERFORM header.
            PERFORM output USING wa_final.
            NEW-PAGE PRINT OFF.
    Then after I have to send mail with a PDF attachment.
    Please suggest.
    Regards,
    Binay.

  • My start up disc is full and my MAC isnt running properly

    My Mac Book Pro was bought in 2010, It has loads of pictures, vidoes etc. Now it is saying my "start up disc is full" I have no idea what to do next!
    I have tried burning videos to take them off the computer but they never come out with sound.  I have tried to delete unnecessary items but want to keep music etc on the computer. Any ideas how to fix this, get the computer running properly and BURN DVDs with sound!
    Signed,
    Super Frusterated!

    One way or another you need to get stuff off the hard drive, be it trash what you don't need or archive what you want to save somewhere or get an external hard rive and store stuff there. Then worry about how to burn videos with sound.

  • AV says it isnt running

    I've got a Win 7 x64 machine running Avira IS, the Action Centre says that Avira isn't running but when I check the processes it is, it doenst matter how many times ive selected that I trust the vendor Windows cannot change it to 'running'.
    So I buy a MBP and put Win 7 x64 on and install Kaspersky IS15 and Windows is doing the same thing, so that's 2 machines one of which is a fresh install and both are genuine software with the same faults, has to be OS related?
    Any ideas how I can solve this.
    Regards
    Darren

    Hi Darren,
    Please explain a bit about the sentence “getting the error for View Firewall Options but this is being monitored by Kaspersky”.
    Do you find any event error logs as I mentioned in the last reply?
    We are performing clean boot to check if any third party application is causing the issue, as clean boot helps in eliminating software conflicts. Follow these steps given in the link below to start the computer in clean boot.
    Reference:
    http://support.microsoft.com/kb/929135
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • My Minecraft isnt running on Mac

    My minecrfat was working a couple days ago but then i went on and it said cannot connect to minecraft.net for 2 hole days and I could play on my PC. So i deleted all of minecrafts files and re downloaded it. When I try to log in it says cannot connect to minecraft.net and in brackets it says (not downloaded). Ive tryed everything. Can somebody please help me.

    Clean up in what sense?
    For privacy and internet use OnyX and CCleaner for Mac over at MacUpdate.com
    For issues with corrupted caches, OnyX
    To free up room on the boot drive, see "Storage Drive" here
    Most commonly used backup methods
    For performance issues see this:
    Why is my computer slow?
    For selling, securely removing data and paranoia issues see this
    How do I securely delete data from the machine?

  • Windows 7; Printers Have Disappeared; Printer Spooler won't stay running.

    I'm using Windows 7 Home Premium and an Epson Stylus Photo R220 printer. I also had a few virtual printers (ie: Snagit) installed before the problems started.
    All of the printers (from my Devices and Printers) have disappeared, except for a generic "USB Printer" selection that shows it is my Epson R220. I can't print to it, and when I try to print a document and try to "Add Printer", a warning pops up saying "Can't
    Add Printer. The local print spooler service is not running. Please restart the spooler or restart the machine." I've tried both with no success.
    Sometimes, when I try to start the Print Spooler, I get a message "Error 1067: The process terminated unexpectedly." or it starts and just stops again.
    I have also tried reinstalling the driver for my printer as specified from Epson's website, but the installer can't detect my printer, and if I try manually finding the port, nothing comes up, which I find odd since my computer recognizes when the printer
    is attached.
    Lastly, and I'm hoping it's not connected although I think it likely is, last night my computer had troubles starting Windows. So I did as it directed and I loaded my Windows CD into the computer and had it "Repair the problem". After several minutes, Windows
    booted fine again.
    Now I really don't want to have to reinstall Windows, as that will remove all of my program files, so I'm hoping that's not the only solution. Any ideas?

    I have wrestled with this issue on a client's computer for a few days now and I am coming to the conclusion that a Windows Update (do not know which one) has caused the problem.
    Windows 7 Professional 64-bit installation
    Printers disappeared from Devices and Printers and from the list of printers within applications.  A reboot does nothing and there is a DCOM error that occasionally pops up, but the client has only seen it and I don't know the specifics.
    Any attempt to start the Print Spooler gives me a 1053 error, which is "The service did not respond to the start or control request in a timely fashion."
    Doing a NET START SPOOLER from a command prompt gives me "The service is not responding to the control function."
    As a last resort I did an in-place upgrade of Windows 7 (run setup on the installation DVD from Windows - not from boot - and choose the upgrade option.  All Windows system files are restored and user information is left in tact.)
    This completely solved the problem.  After doing this, however, the Windows Updates need to be brought up to date, so I went through the updating process.  15 minutes after I left, the client called me and said his printers were gone again.
    I have come back today to figure this out and after trying a couple more things I decided to do a System Restore, the last of which was created before the installation of Windows Updates.  After running restore, the system rebooted and all printers
    were there and the spooler was running normally.
    Because I thought there was some other issue, I again ran Windows Update to bring back the same updates I had done before.
    Guess what?   No printers, spooler not working.
    I am now going to restore again to before the 64 windows updates that installed and turn off the automatic update function until Microsoft figures out what is wrong and comes up with a patch.
    This is what I believe the problem is.  I am going to look at the list of updates and check to see if Microsoft did a DCOM update, because that might be the problem, since DCOM is a dependency of the spooler and because there was some kind of DCOM error.

  • RMAN spool file empty after the run

    DB Version: 10gR2
    OS : SunOs 5.10
    In CATALOG mode, i run scripts in OS path like below
    connect target sys/oracle123 catalog rman/secretpass@rmancat @'/path_in_targetdb_machine/bkp.rcv'bkp.rc looks like below. The backup runs fine and the spool file gets created. But the spool file is empty ! Any idea why?
    spool log to /home/oracle/spool.log
    run{
    crosscheck backup;
    crosscheck archivelog all;
    crosscheck copy;
    crosscheck backup of database;
    crosscheck backup of controlfile;
    delete expired backup;
    delete noprompt expired archivelog all;
    delete noprompt obsolete device type disk;
    run {
    recover copy of database with tag "INCR_BKP";
         backup check logical incremental level 1 format '/bkp_dir/INCR_%d_%u' for recover of copy with tag "INCR_BKP" database;
         backup (archivelog all  format='/bkp_dir/arch_logs/ARCH_%d_%T_%u_s%s_p%p' DELETE ALL INPUT TAG "arch_logs");
         backup format '/bkp_dir/ctrl_file/RMAN_CTL_%s:%t:%p.bkp' current controlfile;
    spool log off;
    exit;

    Hello,
    If you intend to get the logs of the RMAN statement execution, you may instead use the option LOG when you launch RMAN. For instance,
    rman @<rman_script>.rcv LOG <rman_log>.logHope this help.
    Best regards,
    Jean-Valentin

  • HP Laserjet Pro CM 1415fn crashes and spooler service stops

    Hi Guys, 
    Please assist. I have an HP Laserjet Pro CM1415fn multifunction printer installed on an XP OS. Recently the printer started to print giberish when I tried to print from any application (word, notepad, wordpad, image and fax viewer etc). I also noticed a popoup error message - Run a DLL as an App error. I unistalled the printer software and drivers and restarted, this after running a scan with malware bytes (no detections), and I was unable to get the printer to re-installed after. I keep getting a RPC service not found and Spooler subsystem App has encountered a problem and needs to close. I have checked that all services are running, but nothing is working. After much prodding and poking, I eventually noticed that all errors are directly associated with hppccompio.dll. Even explorer crashes when I try to access printer properties. What should I do? I hope ifnormation was sufficient enough. Also, printer is connected via USB.

    Hi Opp1,
    Welcome to the HP Forums, I hope you enjoy your experience!
    I understand you are unable to reinstall the printer software.
    I will be happy to help you.
    The print spooler is part of the Windows operating system and if it doesn't stay running the printer software won't install or print.
    You could try the following steps to see if this will resolve the issue.
    Normally with spooler problems the first thing to do is to clear the print queue.
    Open a Run window (Windows Logo key+R), type cmd and press Enter.
    Now type these commands, which are in capitals for clarity:
    NET STOP SPOOLER and press Enter
    DEL %SYSTEMROOT%\SYSTEM32\SPOOL\PRINTERS\*.* and press Enter
    NET START SPOOLER and press Enter
    EXIT and press Enter
    If you are still having issues with the print spooler stopped then right click on the start button, left click on explore, open the windows folder, open system32 folder, open the spool folder, open the printer's folder, then delete everything on the right window.
    Then go back and try and start the print spooler again.
    Run a full uninstall of the printer software. Disconnect the USB cable.
    To uninstall from CD:
    Go start and select computer.
    Right click on the CD for the printer and left click open in a new window.
    Double click on uninstall.
    Uninstall printer from the C Drive.
    Go to start, computer, c:, windows, program files or program files x86, HP, printer name. Double click uninstall. Restart the computer.
    Check to make sure the print spooler is running.
    Ran the installation again. Don't connect the USB cable until prompted.
    If the print spooler stops again you will need to contact the computer manufacturer to resolve this issue.
    Hope this helps.
    Thank you for posting on the HP Forums.
    Have a great weekend!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Quark Xpress shows err "Spooler Subsystem App needs to close" - HP Laserjet Pro P1606DN

    Purchased a new HP Laserjet Pro P1606 DN network printer. Installation went smooth on all computers.
    When people tried to print from Quark Xpress, the document get spooled and loaded to the print queue and then we get the error "Spooler subsystem app experienced a problem and needs to close"
    The recovery has been set to "restart the service" for print spooler.
    Users are able to print from other applications.
    Just found a thread that stated to disable Advanced Printer settings on the Advanced tab of Properties. Checked but the issue still persists.
    Users are on Windows XP and printer was using the smart install from the printer.
    Kindly advise if there is something else to tweak in the printer properties or something to tweak in Quark Xpress v6.1.
    thanks in advance for the support

    Hi Opp1,
    Welcome to the HP Forums, I hope you enjoy your experience!
    I understand you are unable to reinstall the printer software.
    I will be happy to help you.
    The print spooler is part of the Windows operating system and if it doesn't stay running the printer software won't install or print.
    You could try the following steps to see if this will resolve the issue.
    Normally with spooler problems the first thing to do is to clear the print queue.
    Open a Run window (Windows Logo key+R), type cmd and press Enter.
    Now type these commands, which are in capitals for clarity:
    NET STOP SPOOLER and press Enter
    DEL %SYSTEMROOT%\SYSTEM32\SPOOL\PRINTERS\*.* and press Enter
    NET START SPOOLER and press Enter
    EXIT and press Enter
    If you are still having issues with the print spooler stopped then right click on the start button, left click on explore, open the windows folder, open system32 folder, open the spool folder, open the printer's folder, then delete everything on the right window.
    Then go back and try and start the print spooler again.
    Run a full uninstall of the printer software. Disconnect the USB cable.
    To uninstall from CD:
    Go start and select computer.
    Right click on the CD for the printer and left click open in a new window.
    Double click on uninstall.
    Uninstall printer from the C Drive.
    Go to start, computer, c:, windows, program files or program files x86, HP, printer name. Double click uninstall. Restart the computer.
    Check to make sure the print spooler is running.
    Ran the installation again. Don't connect the USB cable until prompted.
    If the print spooler stops again you will need to contact the computer manufacturer to resolve this issue.
    Hope this helps.
    Thank you for posting on the HP Forums.
    Have a great weekend!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • I have a macbook pro running 10.8.5. I know little about computers but have started my computer in safe boot as this is the only way I can connect to Safari.

    I am currently in safeboot as Safari will not open otherwise.  my emails are working fine.  I do not know much about computers but looked at a couple of previous discussions and have pasted the results of an Etrecheck - please can you tell me why Safari isnt running like usual!  my daughter likes using my computer for games but she has another user id.  I would be grateful for help.  Also is Safeboot ok to use?
    Hardware Information:
              MacBook Pro (13-inch, Mid 2012)
              MacBook Pro - model: MacBookPro9,2
              1 2.5 GHz Intel Core i5 CPU: 2 cores
              4 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 512 MB
    System Software:
              OS X 10.8.5 (12F45) - Uptime: 0 days 0:35:53
    Disk Information:
              MATSHITADVD-R   UJ-8A8 
              APPLE HDD HTS547550A9E384 disk0 : (500.11 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 499.25 GB (408.33 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
              com.rim.driver.BlackBerryUSBDriverInt          (0.0.74)
    Launch Daemons:
              [System] com.adobe.fpsaud.plist 3rd-Party support link
              [System] com.genieoinnovation.macextension.client.plist 3rd-Party support link
              [System] com.google.keystone.daemon.plist 3rd-Party support link
              [System] com.oracle.java.Helper-Tool.plist 3rd-Party support link
              [System] com.rim.BBDaemon.plist 3rd-Party support link
              [System] com.trusteer.rooks.rooksd.plist 3rd-Party support link
              [System] org.macosforge.xquartz.privileged_startx.plist 3rd-Party support link
    Launch Agents:
              [System] com.genieoinnovation.macextension.plist 3rd-Party support link
              [System] com.google.keystone.agent.plist 3rd-Party support link
              [System] com.oracle.java.Java-Updater.plist 3rd-Party support link
              [System] com.rim.BBAlbumArtCacher.plist 3rd-Party support link
              [System] com.rim.BBLaunchAgent.plist 3rd-Party support link
              [System] com.trusteer.rapport.rapportd.plist 3rd-Party support link
              [System] org.macosforge.xquartz.startx.plist 3rd-Party support link
    User Launch Agents:
              [not loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [not loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [not loaded] com.facebook.videochat.[redacted].plist 3rd-Party support link
              [not loaded] jp.co.canon.Inkjet_Extended_Survey_Agent.plist 3rd-Party support link
    User Login Items:
              iTunesHelper
              AdobeResourceSynchronizer
              Mail
              Canon IJ Network Scanner Selector2
              Safari
    Internet Plug-ins:
              DirectorShockwave: Version: 11.6.5r635 3rd-Party support link
              Google Earth Web Plug-in: Version: 6.1 3rd-Party support link
              Unity Web Player: Version: UnityPlayer version 4.3.1f1 - SDK 10.6 3rd-Party support link
              CouponPrinter-FireFox: Version: Version 1.0.11X
              AdobePDFViewerNPAPI: Version: 10.1.8 3rd-Party support link
              FlashPlayer-10.6: Version: 12.0.0.77 - SDK 10.6 3rd-Party support link
              Silverlight: Version: 4.0.60531.0 3rd-Party support link
              Flash Player: Version: 12.0.0.77 - SDK 10.6 Outdated! Update
              QuickTime Plugin: Version: 7.7.1
              iPhotoPhotocast: Version: 7.0
              AdobePDFViewer: Version: 10.1.8 3rd-Party support link
              EPPEX Plugin: Version: 3.0.5.0 3rd-Party support link
              JavaAppletPlugin: Version: Java 7 Update 51 3rd-Party support link
    Safari Extensions:
              Twitter for Safari: Version: 1.02
              Bing Highlights: Version: 1.0.24
    Audio Plug-ins:
              AirPlay: Version: 1.7 - SDK 10.8
              iSightAudio: Version: 7.7.1 - SDK 10.8
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.8
    3rd Party Preference Panes:
              Flash Player  3rd-Party support link
              Java  3rd-Party support link
              Trusteer Endpoint Protection  3rd-Party support link
    Old Applications:
              None
    Time Machine:
              Skip System Files: NO
              Mobile backups: ON
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 464.96 GB Disk used: 84.67 GB
              Destinations:
                        Time Machine Backups [Local] (Last used)
                        Total size: 465.44 GB
                        Total number of backups: 5
                        Oldest backup: 2012-08-03 18:22:53 +0000
                        Last backup: 2013-03-22 21:18:30 +0000
                        Size of backup disk: Adequate
                                  Backup size 465.44 GB > (Disk used 84.67 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   3%          WindowServer
                   1%          ps
                   0%          SystemUIServer
                   0%          configd
                   0%          tccd
    Top Processes by Memory:
              197 MB          Safari
              123 MB          WebProcess
              57 MB          EtreCheck
              53 MB          WindowServer
              53 MB          Dock
    Virtual Memory Information:
              493 MB          Free RAM
              1.04 GB          Active RAM
              307 MB          Inactive RAM
              2.17 GB          Wired RAM
              228 MB          Page-ins
              0 B          Page-outs

    Uninstall Genieo:
    http://www.thesafemac.com/arg-genieo/
    See if that makes a difference.
    Ciao.
    DawnHerbie wrote:
    Also is Safeboot ok to use?
    Yes, it will do no harm, but it is meant for trouble shooting and you should not have to use it all the time.
    Message was edited by: OGELTHORPE

Maybe you are looking for

  • IDOC to JDBC scenario in case of Cost Element Group IDOC.

    This is an IDOC to JDBC scenario. The Cost Element Group IDOC is having different segments. The main segment E1COGH (1...unbound) is consisting of different subsegment like E1OGS (0...unbound) & E1COGV (0...unbound). The main segment (E1COGH) along w

  • HDV playback with quicktime won't work

    I have some video on a hard drive that was captured in final cut as HDV clips. Even though the clips are .mov files, the video won't play in quicktime. Quicktime tells me that I need to download video components to play the video in full, but it does

  • Sales Order Item charge

    In the Sales Order item line have lines charge, How to insert the charge ? Is it set in the Item Master or Price List ,please let me know ? thanks

  • How to pass pdf documents through idocs

    I wanted to know how to pass pdf document along with a transaction code like sales order or travel expense manager with the help of IDOCs.

  • FPGA Timekeeper 1.1b0 GetStatus.vi Locked indicator never goes False?!

    Hi Using "SyncTime.vi" which is part of the "FPGA Timekeeper 1.1b0" library, I am keeping sync with UTC time determined by an NI-9467 GPS module. Very much like the examples. I am determining when the FPGA Timekeeper is locked to this time source usi