BBP_GET_STATUS_2 Message E 031

Hy Experts!,
In my requirement, i´m looking the planned JOBS with the BBP_GET_STATUS_2 program in SRM 4.00. A lot of these Jobs are returned with message E 031 in SPOOL, with empty description, because there is not a Symbol Text 031 in BBP_GET_STATUS_2 Text Elements.
I was searching OSS Notes, and forums threats posted with BBP_GET_STATUS_2 messages, but i can´t found a solution.
Did you know an OSS Note that may resolve it?
The code in program is:
  DESCRIBE TABLE gt_sc_refdata LINES lines_refdata.
  IF lines_refdata < 1.
    IF  lt_guid_ignore[] IS INITIAL.
      PERFORM error_and_leave.
    ELSE.
      DESCRIBE TABLE lt_guid_ignore LINES lines_refdata.
      NEW-PAGE NO-HEADING.
      FORMAT COLOR 6.
WRITE: /, text-200, / 'E 031' , /10 lines_refdata ,
text-031, text-200.
      WRITE: /.
      WRITE: /.
      EXIT.
    ENDIF.
  ENDIF.
Regards.

Hi,
Check for notes related to E 031 and locks, there was a note, 1420833, released to combat too much locking in SM12 from the BBP_GET_STATUS_2 report which was dealt with by this note, it is a side effect of note 1342152
Regards,
jason

Similar Messages

  • I would like to know what 'Product 031-11255' is.

    Hellow~
    I've got an error when downloading Mac OS X Update Combined 10.6.8 var.
    There is a install.log error message:
    Product 031-11255: no package found for identifier a
    I would like to know what 'Product 031-11255' is.
    PLeasekindly inform me as soon as possible.
    Waiting your rely~ !

    Thanks Kappy~
    I've never used Airport network for surfing to the internet on iMac.
    I don't want to use Airport network, Ethernet is enough.
    Is that all to turn it off on iMac computer .... anything else?
    Still... i couldn't update next version.
    I've got some error message when downloading Mac OS X Update Combined 10.6.8 var.
    install.log message on console below :
    Package Authoring: my.result.title and my.result.message not defined or empty
    Product 031-11255: distribution references package AirPortUtility.pkg not matched in catalog.
    Product 031-11255: no package found for identifier a
    What should i do ...resolve that message?
    Please inform me in detail if you know ~
    I'm waiting your reply as soon as possible. ~ ~

  • Error during BAPI_GOODSMVT_CREATE

    Hi Friends,
    I am using BAPI_GOODSMVT_CREATE for the doing GR for the Subcontracting Purchase order and getting the following Error messages.
    1   Of the required quantity of material 0006140000001A,1.400 M remain(s) open.
    Message Id  LB
    Message No 031
    2    Combination of movement type 543  and function selected not possible.
    Message Id  M7
    Message No 019
    Please suggest the solution.
    Krishan

    hi,
    *& Report  ZRPT_SUB_KO01GOODSMOVEMENT
    REPORT  ZRPT_SUB_KO01GOODSMOVEMENT.
    PARAMETERS : P_BAG(17)  TYPE C,
                 P_ZZORG LIKE zaUFK-ZZORG,
                 P_MATNR LIKE MARA-MATNR,
                 P_WERKS LIKE AUFK-WERKS,
                 P_WERK LIKE AFPO-PWERK,
                 P_DATE LIKE MKPF-BUDAT,
                 P_LGORT LIKE GOITEM-LGOBE.
    DATA : BDC_DATA TYPE STANDARD TABLE OF BDCDATA. "internla table for bdc data
      DATA : WA_BDC_DATA TYPE BDCDATA .                "work area for bdc data
      DATA : T_XMSEG TYPE   MSEG.
      DATA : T_XMKPF TYPE MKPF.
      DATA : V_BAGS1(17) TYPE C.
    DATA : BEGIN OF WA_MB1B,
           ZZGCODE TYPE ZMIGO-ZZGCODE,
           ZZGBAGS TYPE ZMIGO-ZZGBAGS,
           WERKS TYPE AUFK-WERKS,
           LGORT TYPE VBRP-LGORT,
           ZZORG TYPE zAUFK-ZZORG,
           END OF WA_MB1B.
    DATA : V_MATERIAL TYPE BAPI2017_GM_HEAD_RET-MAT_DOC.
    data : v_date(10) type c.
    DATA : T_GOODSMVT_HEADER TYPE BAPI2017_GM_HEAD_01,
           T_GOODSMVT_CODE TYPE BAPI2017_GM_CODE,
           T_GOODSMVT_ITEM TYPE STANDARD TABLE OF BAPI2017_GM_ITEM_CREATE,
           T_RETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    DATA : WA_GOODSMVT_ITEM TYPE BAPI2017_GM_ITEM_CREATE.
    DATA : BEGIN OF S_MARA,
           MEINS LIKE MARA-MEINS,
           END OF S_MARA.
    DATA : MATERIALDOCUMENT TYPE BAPI2017_GM_HEAD_RET-MAT_DOC.
    *FORM GOODSMOVEMENT TABLES T_RETURN
                             USING WA_MB1B LIKE WA_MB1B.
    SELECT SINGLE  MEINS
                   FROM MARA
                   INTO S_MARA
                   WHERE MATNR = P_MATNR.
       CONCATENATE p_date6(2) p_date4(2) p_date+0(4) INTO V_DATE SEPARATED BY '.'.
        T_GOODSMVT_HEADER-PSTNG_DATE = P_DATE.
        T_GOODSMVT_HEADER-DOC_DATE = P_DATE.
        T_GOODSMVT_CODE-GM_CODE = '04'.
        WA_GOODSMVT_ITEM-MATERIAL =      P_MATNR.                    "'000000000000001556'.
        WA_GOODSMVT_ITEM-PLANT  =        P_WERK.                     " '1000'.
        WA_GOODSMVT_ITEM-STGE_LOC =      P_LGORT.                    " '0001'.
        WA_GOODSMVT_ITEM-MOVE_TYPE =     'Z42'.
        WA_GOODSMVT_ITEM-VENDOR =         P_ZZORG.                   "'0000100224'.
        WA_GOODSMVT_ITEM-ENTRY_QNT =      P_BAG.                   " '1'.
        WA_GOODSMVT_ITEM-ENTRY_UOM =     S_MARA-MEINS.
        WA_GOODSMVT_ITEM-ENTRY_UOM_ISO = S_MARA-MEINS.
        WA_GOODSMVT_ITEM-MOVE_PLANT = P_WERKS.
        APPEND WA_GOODSMVT_ITEM TO T_GOODSMVT_ITEM.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
    EXPORTING
          GOODSMVT_HEADER          = T_GOODSMVT_HEADER
          GOODSMVT_CODE            = T_GOODSMVT_CODE
    IMPORTING
        MATERIALDOCUMENT           = V_MATERIAL
    TABLES
          GOODSMVT_ITEM            = T_GOODSMVT_ITEM
    RETURN                        = T_RETURN.
    BREAK shailajaa.
               EXPORT t_return  to MEMORY ID '123'.
               EXPORT V_MATERIAL TO MEMORY ID 'MAT'.
                CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
         EXPORTING
           WAIT          = ' '.
    *ENDFORM.

  • Archiving in SAP PI

    Hello,
    We are in process of archiving of SAP PI System.
    The configuration of system is as below:
    SAP Netweaver 7, SAP PI 7.0, Oracle 10g.
    I checked the SXMSPMAST, and found that there are lots of entries which are in state ARCH.
    SQL> select count(*) from sappip.SXMSPMAST where ITFACTION = 'ARCH' and MSGSTATE = '003';
      COUNT(*)
      11772771
    Hence i schedule the "ARV_BC_XMB_WRP*" job. This job is getting sucessfully completed also the corresponding "ARV_BC_XMB_DEL*" job is also getting complted ( checked output of each deletion job , it shows more than 10K messages deleted in each jobs.)
    I think this mean that messages are archiving and getting deleted from database.
    But my concern are:
    1) On daily basis there are approx 35 deletion jobs are running, But none of the job's output includes table SXMSCLUP. and in our case this
    is the biggest table in the database.
    eg: output of one deletion job is as below (
    Production Mode: Statistics for Deleted Data Objects
    Archive File Key 019170-006BC_XMB
    Number of Deleted Data Objects 10.832
    Deleted Database Space in MB 8,938
    - Tables 7,531
    - Indexes 1,407
    Type No. Description
    SXMSPEMAS 2.860 Integration Engine:
    Enhanced Message Queue (Master)
    SXMSPERROR 0 XML Message Broker:
    Message Queue (Incorrect Entries)
    SXMSPMAST 2.860 Integration Engine:
    Message Queue (Master)
    SXMSPVERS 8.580 Integration Engine:
    Message Version
    All the output of deletion job ARV_BC_XMB_DEL includes only these table.
    So does these jobs will archive/delete the data from SXMSCLUP?
    or we need to schedule some other jobs for this
    2) Even though several archiving jobs are running ( The archiving job is schedule to run once daily ) there is not significent difference in
    the count of ""no of messages for archiving" in the RSXMB_SHOW_STATUS. considering the message and adapter status.
    ( Count decrease by 30-40K/per day).if we consider proceeding with this speed, it will take huge amount of time to archive/delete messages.
    Is there any workaround for this?
    Output of  RSXMB_SHOW_STATUS
    Overview
    ========
    Time Stamp Not Included
    Number of Messages in Database:
    12,929,872
    Number of Messages in Client:
    12,929,879
    Number of Messages for Reorganization in Client:
    12,929,905
    Number of Messages to Be Archived in Client:
    11,882,234
    Number of Logically Deleted Messages in Client:
             0
    Number of Archived and Logically Deleted Messages in Client:
             0
    Message Status
    ==============
    Message Status:      000 Number:                  0
    Message Status:      001 Number:                 39
    Message Status:      002 Number:                  0
    Message Status:      003 Number:         11,813,699
    Message Status:      004 Number:                  0
    Message Status:      005 Number:                  0
    Message Status:      006 Number:                  0
    Message Status:      007 Number:                  0
    Message Status:      008 Number:                  0
    Message Status:      009 Number:                  7
    Message Status:      010 Number:              1,210
    Message Status:      011 Number:                  0
    Message Status:      012 Number:            179,966
    Message Status:      013 Number:                  0
    Message Status:      014 Number:            935,820
    Message Status:      015 Number:                  0
    Message Status:      016 Number:                  4
    Message Status:      017 Number:                  0
    Message Status:      018 Number:                  1
    Message Status:      019 Number:                  0
    Message Status:      020 Number:                  0
    Message Status:      021 Number:                  0
    Message Status:      022 Number:                  0
    Message Status:      023 Number:                  0
    Message Status:      024 Number:                  0
    Message Status:      025 Number:                  0
    Message Status:      026 Number:                  0
    Message Status:      027 Number:                  0
    Message Status:      028 Number:                  0
    Message Status:      029 Number:                  0
    Message Status:      030 Number:                  0
    Message Status:      031 Number:                  0
    Adapter Status
    ==============
    14.05.2014                  Program RSXMB_SHOW_STATUS                          2
    Adapter Status of Messages with Message Status:              003
    Adapter Status:      000 Number:            193,071
    Adapter Status:      001 Number:            185,086
    Adapter Status:      002 Number:                  0
    Adapter Status:      003 Number:                  0
    Adapter Status:      004 Number:                  0
    Adapter Status:      005 Number:                  0
    Adapter Status:      006 Number:         11,435,594
    Adapter Status:      007 Number:                  0
    Adapter Status:      008 Number:                  0
    Adapter Status:      009 Number:                  0
    Adapter Status:      010 Number:                  0
    Please suggest.

    Hi Mark,
    I am checking the messages on ABAP stack. The messages are missing and i am sure as i compared the messages of two consecutive dates and also sure those two messages are missing. Messages are not found in the table as well.
    I will check the notes, and proceed if i get to understand something.
    Meanwhile, actually two interfaces are involved here Sales and Loyality. Will try to explain the flow.
    The messages are in flow as shown above. All other messages are available only these two are missing highlighted in red.
    As logging_sync=1 so they are persisting but when delete job is running its lost while all other are available according to the retention period(40 days).
    Do reply if anything strikes.
    Thanks!

  • SM35 ( Transaction BDC is unknown)

    Hi, i have the next problem:
    I execute the program RV14BTCI that create a Session in SM35. When i execute the session this end succesfully and show me the options of exit or resume BI, not matter what opcion i chose the system show me the error messaje "Transaction BDC is unknown"  somebody knows what could be the reason of that?
    Thanks in advance

    Read this [Note 1590735 - Transaction selection screen or Easy Access after pushbutton|https://service.sap.com/sap/support/notes/1590735]
    For example, the navigation to the session overview no longer works after completing the run of a batch input session from SM35. Instead of the session overview, the system displays the transaction selection screen with the error message 00 031 "Transaction BDC is unknown".
    Ask basis to upgrade your Kernel SP (...)
    Regards,
    Raymond

  • Can Internal Table be declared dynamically

    Hi All ,
         iam facing a problem in delearing an internal table ,i let u know the query and the problem iam facing in that .
    Nothing but the include is used for the Replacment of a interface .
    1.iam trying to use an include which is called by nearly 100 programs .
    2.since i dont know the number of fields each program is using .
       since in the include i have to create a internal table that has to fullfill the needs of each and every program that uses this include .
    DATA:   objbin TYPE STANDARD TABLE OF solisti1 INITIAL
            SIZE 0 WITH HEADER LINE.
    internal table has to be created using the above table.
    example .
    program 1 may be having 4 fields ,and program 2 may be having 5 fields .
    can some one help me on this.
    Thanks,
    vinay .

    use
    REPORT ZUTIL_SEARCH_STRUCTURE MESSAGE-ID 031 .
    INCLUDE yDATA_TOP.
    INCLUDE ySEL_SCREEN.
    INCLUDE yFORMS.
    INITIALIZATION.
      P4 = 2.
      P5 = 1.
    AT SELECTION-SCREEN.
      IF P4 <= 0 OR P5 <= 0.
        MESSAGE E031 WITH 'Search Criteria Cannot be Zero!'.
      ENDIF.
    START-OF-SELECTION.
      PERFORM DYNAMIC_CODE.
    *&  Include           YDATA_TOP                                        *
    DATA : ITAB(72) OCCURS 0.
      DATA WA(200).
      DATA REC_CNT(3).
    *&  Include           YSEL_SCREEN                                      *
    SELECTION-SCREEN BEGIN OF BLOCK BLK WITH FRAME TITLE TEXT-001.
      PARAMETERS:P1 RADIOBUTTON GROUP COMP.
      PARAMETERS:P2 RADIOBUTTON GROUP COMP.
      PARAMETERS:P3 RADIOBUTTON GROUP COMP.
      SELECTION-SCREEN END OF BLOCK BLK.
      SELECTION-SCREEN BEGIN OF BLOCK BLK1 WITH FRAME TITLE TEXT-002.
      PARAMETERS : P4(3) OBLIGATORY.
      PARAMETERS : P5(5) OBLIGATORY .
      PARAMETERS : P6 AS CHECKBOX.
      SELECTION-SCREEN END OF BLOCK BLK1.
    *&  Include           YFORMS                                           *
    ***INCLUDE ZFORMS .
    *&      Form  DYNAMIC_CODE
          text
    -->  p1        text
    <--  p2        text
    FORM DYNAMIC_CODE.
      APPEND 'REPORT ZSEARCH NO STANDARD PAGE HEADING.' TO ITAB.
      APPEND 'TABLES : DD03L,DD02L.' TO ITAB.
      DATA TAB LIKE TEXTPOOL OCCURS 0 WITH HEADER LINE.
      APPEND 'SELECTION-SCREEN BEGIN OF BLOCK BLK' TO ITAB.
      APPEND 'WITH FRAME TITLE TEXT-001.' TO ITAB.
      DO P4 TIMES.
        REC_CNT = SY-INDEX.
        CONDENSE REC_CNT NO-GAPS.
        IF P1 = 'X'.
          CONCATENATE 'PARAMETERS:F' REC_CNT
          ' LIKE DD03L-FIELDNAME OBLIGATORY.'
          INTO WA.
          APPEND WA TO ITAB.
          TAB-ID = 'S'.
          CONCATENATE 'F'   REC_CNT  INTO WA.
          TAB-KEY = WA.
          CONCATENATE'$$$$$$$$' 'Field Name' REC_CNT  INTO WA.
          TAB-ENTRY = WA.
        ENDIF.
        IF P2 = 'X'.
          CONCATENATE 'PARAMETERS:D' REC_CNT
          ' LIKE DD03L-ROLLNAME OBLIGATORY.'
          INTO WA.
          APPEND WA TO ITAB.
          TAB-ID = 'S'.
          CONCATENATE 'D'   REC_CNT  INTO WA.
          TAB-KEY = WA.
          CONCATENATE'$$$$$$$$' 'Data Element' REC_CNT  INTO WA.
          TAB-ENTRY = WA.
        ENDIF.
        IF P3 = 'X'.
          APPEND 'SELECTION-SCREEN BEGIN OF LINE.' TO ITAB.
          CONCATENATE 'SELECTION-SCREEN COMMENT (15) FOR FIELD DT'
          REC_CNT '.' INTO WA.
          APPEND WA TO ITAB.
          CONCATENATE 'PARAMETERS:DT' REC_CNT
          ' LIKE DD03L-DATATYPE OBLIGATORY.'
          INTO WA.
          APPEND WA TO ITAB.
          CONCATENATE 'SELECTION-SCREEN COMMENT (16) FOR FIELD SIZE'
          REC_CNT '.' INTO WA.
          APPEND WA TO ITAB.
          CONCATENATE 'PARAMETERS:SIZE' REC_CNT
          ' LIKE DD03L-LENG OBLIGATORY.' INTO WA.
          APPEND WA TO ITAB.
          APPEND 'SELECTION-SCREEN END OF LINE.' TO ITAB.
          TAB-ID = 'S'.
          CONCATENATE 'DT'   REC_CNT  INTO WA.
          TAB-KEY = WA.
          CONCATENATE'$$$$$$$$' 'Data Type' REC_CNT  INTO WA.
          TAB-ENTRY = WA.
          APPEND TAB.
          TAB-ID = 'S'.
          CONCATENATE 'SIZE'   REC_CNT  INTO WA.
          TAB-KEY = WA.
          CONCATENATE'$$$$$$$$' 'Len. of Field' REC_CNT  INTO WA.
          TAB-ENTRY = WA.
        ENDIF.
        APPEND TAB.
      ENDDO.
      APPEND 'SELECTION-SCREEN END OF BLOCK BLK.' TO ITAB.
      APPEND 'DATA: BEGIN OF IT_FLD OCCURS 0,' TO ITAB.
      APPEND 'FIELDNAME TYPE DD03L-FIELDNAME,' TO ITAB.
      APPEND 'LENG TYPE DD03L-LENG,' TO ITAB.
      APPEND 'ROLLNAME LIKE DD03L-ROLLNAME,' TO ITAB.
      APPEND 'DATATYPE LIKE DD03L-DATATYPE,' TO ITAB.
      APPEND 'END OF IT_FLD.' TO ITAB.
      APPEND  'DATA : BEGIN OF IT_STRUCNAME OCCURS 0,' TO ITAB.
      APPEND 'TABNAME LIKE DD02L-TABNAME,' TO ITAB.
      APPEND  'END OF IT_STRUCNAME.' TO ITAB.
      APPEND 'DATA : BEGIN OF IT_MATCH OCCURS 0,' TO ITAB.
      APPEND 'TABNAME LIKE DD02L-TABNAME,' TO ITAB.
      APPEND 'END OF IT_MATCH.' TO ITAB.
      APPEND 'DATA COUNT(3) TYPE I.' TO ITAB.
      APPEND 'START-OF-SELECTION.' TO ITAB.
      DO P4 TIMES.
        REC_CNT = SY-INDEX.
        CONDENSE REC_CNT NO-GAPS.
        IF P1 = 'X'.
          CONCATENATE 'IT_FLD-FIELDNAME = ' '$' 'F' REC_CNT '.' INTO WA.
        ENDIF.
        IF P2 = 'X'.
          CONCATENATE 'IT_FLD-ROLLNAME = ' '$' 'D'
          REC_CNT '.' INTO WA.
        ENDIF.
        IF P3 = 'X'.
          CONCATENATE 'IT_FLD-DATATYPE = ' '$' 'DT'
          REC_CNT '.' INTO WA.
          REPLACE '$' WITH SPACE INTO WA.
          APPEND WA TO ITAB.
          CONCATENATE 'IT_FLD-LENG = ' '$' 'SIZE'
          REC_CNT '.' INTO WA.
        ENDIF.
        REPLACE '$' WITH SPACE INTO WA.
        APPEND WA TO ITAB.
        APPEND 'APPEND IT_FLD.' TO ITAB.
      ENDDO.
      CONCATENATE 'SELECT DISTINCT TABNAME FROM DD03L'
      'INTO TABLE IT_STRUCNAME'
      INTO WA
      SEPARATED BY SPACE.
      APPEND WA TO ITAB.
      APPEND 'FOR ALL ENTRIES IN IT_FLD' TO ITAB.
      IF P1 = 'X'.
        CONCATENATE  'WHERE FIELDNAME = IT_FLD-FIELDNAME AND'
        'AS4LOCAL = ''A'' .' INTO WA
        SEPARATED BY SPACE.
      ENDIF.
      IF P2 = 'X'.
        CONCATENATE  'WHERE ROLLNAME = IT_FLD-ROLLNAME AND'
        'AS4LOCAL = ''A'' .' INTO WA
        SEPARATED BY SPACE.
      ENDIF.
      IF P3  = 'X'.
        CONCATENATE  'WHERE DATATYPE = IT_FLD-DATATYPE AND'
                     'LENG = IT_FLD-LENG AND'
                      INTO WA
         SEPARATED BY SPACE.
        APPEND WA TO ITAB.
        WA =  'AS4LOCAL = ''A'' .' .
      ENDIF.
      APPEND WA TO ITAB.
      APPEND 'LOOP AT IT_STRUCNAME.' TO ITAB.
      IF P6 = 'X'.
        APPEND 'CLEAR DD02L-ACTFLAG.' TO ITAB.
        APPEND 'SELECT SINGLE ACTFLAG FROM DD02L' TO ITAB.
        APPEND 'INTO DD02L-ACTFLAG WHERE TABNAME = ' TO ITAB.
        APPEND 'IT_STRUCNAME-TABNAME' TO ITAB.
        APPEND 'AND AS4LOCAL = ''A''' TO ITAB.
        CONCATENATE
        'AND TABCLASS IN ( '
        '''VIEW'''
        '''APPEND'''
        '''INTTAB'''
        INTO WA.
        APPEND WA TO ITAB.
        APPEND 'IF SY-SUBRC EQ 0.' TO ITAB.
      ENDIF.
      APPEND 'DESCRIBE TABLE IT_MATCH.' TO ITAB.
      CONCATENATE 'IF SY-TFILL =' P5 '.' INTO WA SEPARATED BY SPACE.
      APPEND WA TO ITAB.
      APPEND 'EXIT.' TO ITAB.
      APPEND 'ENDIF.' TO ITAB.
      APPEND 'CLEAR COUNT.' TO ITAB.
      DO P4 TIMES.
        REC_CNT = SY-INDEX.
        APPEND 'CLEAR DD03L-AS4LOCAL.' TO ITAB.
        CONDENSE REC_CNT NO-GAPS.
        IF P1 = 'X'.
          APPEND
            'SELECT SINGLE AS4LOCAL  FROM DD03L INTO' TO
              ITAB.
          APPEND 'DD03L-AS4LOCAL' TO ITAB.
          CONCATENATE 'WHERE TABNAME = '
           'IT_STRUCNAME-TABNAME'
           INTO WA SEPARATED BY SPACE.
          APPEND WA TO ITAB.
          CONCATENATE 'AND FIELDNAME ='
          '$'
          'F' REC_CNT '$'  INTO WA.
          REPLACE '$' WITH SPACE INTO WA.
          REPLACE '$' WITH SPACE INTO WA.
        ENDIF.
        IF P2 = 'X'.
          APPEND
         'SELECT SINGLE AS4LOCAL  FROM DD03L INTO' TO
          ITAB.
          APPEND 'DD03L-AS4LOCAL' TO ITAB.
          CONCATENATE 'WHERE TABNAME = '
          'IT_STRUCNAME-TABNAME'
          INTO WA SEPARATED BY SPACE.
          APPEND WA TO ITAB.
          CONCATENATE 'AND ROLLNAME ='
          '$'
          'D' REC_CNT '$'  INTO WA.
          REPLACE '$' WITH SPACE INTO WA.
          REPLACE '$' WITH SPACE INTO WA.
        ENDIF.
        IF P3 = 'X'.
          APPEND
           'SELECT SINGLE AS4LOCAL  FROM DD03L INTO'
            TO  ITAB.
          APPEND 'DD03L-AS4LOCAL' TO ITAB.
          CONCATENATE 'WHERE TABNAME = '
         'IT_STRUCNAME-TABNAME'
          INTO WA SEPARATED BY SPACE.
          APPEND WA TO ITAB.
          CONCATENATE 'AND DATATYPE ='
          '$'
          'DT' REC_CNT INTO WA.
          REPLACE '$' WITH SPACE INTO WA.
          APPEND WA TO ITAB.
          CONCATENATE 'AND LENG =' '$' 'SIZE'
          REC_CNT INTO WA.
          REPLACE '$' WITH SPACE INTO WA.
        ENDIF.
        APPEND WA TO ITAB.
        IF P6 = 'X'.
          CONCATENATE 'AND POSITION = ' REC_CNT INTO WA
          SEPARATED BY SPACE.
          APPEND WA TO ITAB.
        ENDIF.
        APPEND  'AND AS4LOCAL = ''A'' .' TO ITAB.
        APPEND 'IF SY-SUBRC EQ 0.' TO ITAB.
        APPEND 'COUNT = COUNT + 1.' TO ITAB.
        APPEND 'ELSE.' TO ITAB.
        APPEND 'CONTINUE.' TO ITAB.
        APPEND 'ENDIF.' TO ITAB.
      ENDDO.
      CONCATENATE 'IF COUNT =' '$' P4  '.' INTO WA SEPARATED  BY SPACE.
      REPLACE '$' WITH SPACE INTO WA.
      APPEND WA TO ITAB.
      APPEND 'CLEAR IT_MATCH.' TO ITAB.
      APPEND 'IT_MATCH-TABNAME = IT_STRUCNAME-TABNAME.' TO ITAB.
      APPEND 'APPEND IT_MATCH.' TO ITAB.
      APPEND 'ENDIF.' TO ITAB.
      IF P6 = 'X'.
        APPEND 'ENDIF.' TO ITAB.
      ENDIF.
      APPEND 'ENDLOOP.' TO ITAB.
      APPEND 'SORT IT_MATCH BY TABNAME.' TO ITAB.
      APPEND 'WRITE :/25'  TO ITAB.
      APPEND  '''List of Structure(s) Matching the Criteria:''' TO ITAB.
      APPEND  'COLOR 4 ON.' TO ITAB.
      APPEND 'WRITE:/.' TO ITAB.
      APPEND 'WRITE:/33(33) SY-ULINE .' TO ITAB.
      APPEND'WRITE:/33 SY-VLINE,' TO ITAB.
      APPEND '34 ''Structure Name'' COLOR 2 ON,65 SY-VLINE.'
      TO ITAB.
      APPEND 'WRITE:/33(33) SY-ULINE .' TO ITAB.
      APPEND 'LOOP AT IT_MATCH.'
                                 TO ITAB.
      APPEND
      'WRITE:/33 SY-VLINE,34'
      TO ITAB.
      APPEND
      'IT_MATCH-TABNAME'
      TO ITAB.
      APPEND
      ',65 SY-VLINE. '
      TO ITAB.
      APPEND 'ENDLOOP.' TO ITAB.
      APPEND 'WRITE:/33(33) SY-ULINE .' TO ITAB.
      INSERT REPORT 'ZSEARCH' FROM ITAB.
      IF P1 = 'X'.
        TAB-ID = 'I'.
        TAB-KEY = '001'.
        TAB-ENTRY = 'Enter the Field Names to be Seached:'.
        APPEND TAB.
      ENDIF.
      IF P2 = 'X'.
        TAB-ID = 'I'.
        TAB-KEY = '001'.
        TAB-ENTRY = 'Enter the Data Elements to be Seached:'.
        APPEND TAB.
      ENDIF.
      IF P3 = 'X'.
        TAB-ID = 'I'.
        TAB-KEY = '001'.
        TAB-ENTRY = 'Enter the Data Types and  Lengths to be Seached:'.
        APPEND TAB.
      ENDIF.
      TAB-ID = 'R'.
      TAB-KEY = SPACE.
      TAB-ENTRY = 'Searches Structures/Tables'.
      APPEND TAB.
      INSERT TEXTPOOL 'ZSEARCH'  FROM TAB LANGUAGE SY-LANGU.
      SUBMIT ZSEARCH VIA SELECTION-SCREEN AND RETURN.
      DELETE REPORT 'ZSEARCH'.
    ENDFORM.                    " DYNAMIC_CODE
    Plz reward points and close the thread..
    gunjan

  • Error during Material Determination

    Hello,
    I have created a Material Determination based on Sales Organization / Material. When I save the Material Determination I am getting an error message NR:031 and am not able to save the document.
    Can anyone please let me know the reason for the same.
    Regards
    Regi K

    looks like a number range/buffer  problem.
    Double click the messsage to see the long text.
    Alternative you can see it in transaction SE91
    Enter NR as Message class and 031 as message number.
    click Display.
    Select the message and click button Long text
    Do the recommendated solution together with a basis consultant.

  • SRT 031 Empty SOAP Message received

    Hello,
    I have an external Web service wich it works under SOAPui, but when I generate a Proxy and a port in SAP using the WSDL file , and then i try to test it I have this error message.
    SOAP:1 031 SRT: Empty SOAP message received
    How can I solve this problem?
    Thanks in Advance.

    Hi Jitendra,
    We are having similar problems, we're getting the  SRT 031 Empty SOAP Message received error but the RFC destination is set up OK.
    Running the same webservice from other tools gets a response OK, so the issue must be on the ABAP/SOAManager side of things
    Do you have any more ideas of how to troubleshoot this?
    Thanks in advance
    Tony

  • ERROR MESSAGE when installing DB INSTANCE on WINDOWS/ORACLE

    Hi Friends,
    We are installing our SAP systems (currently SOLMAN 4.0) in a distributed mode. The Central Service Instance is successfully installed. But when we install the DB Instance, we have the following error message at the "Execute Service" step : "CAUGHT ESAPinstExecution in Modulecall"
    How to solve this problem.
    Tkx for your help.
    MMA

    Hi Sergo I ve restart the install. Here is the logfile:
    INFO 2008-12-07 14:51:08.031
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSx.
    INFO 2008-12-07 14:51:08.031
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSx.
    INFO 2008-12-07 14:51:11.734
    Creating file C:Program Filessapinst_instdirx.
    INFO 2008-12-07 14:51:11.734
    Removing file C:Program Filessapinst_instdirx.
    INFO 2008-12-07 14:51:13.656
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/statistic.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/statistic.3.xml'.
    INFO 2008-12-07 14:51:14.000
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/statistic.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/statistic.4.xml'.
    WARNING 2008-12-07 14:51:16.906
    Unable to get information about path
    LABEL.ASC using GetVolumeInformation. Operating system error message: Syntaxe du nom de fichier, de répertoire ou de volume incorrecte.
    INFO 2008-12-07 14:51:19.343
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/inifile.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/inifile.2.xml'.
    INFO 2008-12-07 14:51:19.359
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/inifile.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/inifile.3.xml'.
    INFO 2008-12-07 14:51:19.484
    Execute step
    Component  W2K_ServicePack_Check|ind|ind|ind|ind
    Preprocess  of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0
    INFO 2008-12-07 14:51:22.781
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/keydb.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/keydb.2.xml'.
    INFO 2008-12-07 14:51:22.828
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/statistic.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/statistic.5.xml'.
    INFO 2008-12-07 14:51:22.843
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_SCS_Instance|ind|ind|ind|ind|8|0
    INFO 2008-12-07 14:51:22.937
    Execute step getCD of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_Unpack|ind|ind|ind|ind|7|0
    INFO[E] 2008-12-07 14:51:23.218
    FSL-02077  File system export (share) sapmnt does not exist.
    INFO[E] 2008-12-07 14:51:23.265
    FSL-02077  File system export (share) sapmnt does not exist.
    INFO[E] 2008-12-07 14:51:23.281
    FSL-02077  File system export (share) saploc does not exist.
    INFO[E] 2008-12-07 14:51:23.343
    FSL-02077  File system export (share) sapmnt does not exist.
    INFO 2008-12-07 14:52:16.078
    Copying directory D:/KU_WINDOWS_I386_AUPG to: G:/.
    INFO 2008-12-07 14:52:16.078
    Creating directory G:ADA.
    INFO 2008-12-07 14:52:16.078
    Copying directory D:/KU_WINDOWS_I386_AUPG/ADA to: G:/ADA.
    INFO 2008-12-07 14:52:17.625
    Copied file 'D:/KU_WINDOWS_I386_AUPG/ADA/SAPEXEDB.SAR' to 'G:/ADA'.
    INFO 2008-12-07 14:52:17.625
    Creating directory G:DB2.
    INFO 2008-12-07 14:52:17.625
    Copying directory D:/KU_WINDOWS_I386_AUPG/DB2 to: G:/DB2.
    INFO 2008-12-07 14:52:18.984
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DB2/SAPEXEDB.SAR' to 'G:/DB2'.
    INFO 2008-12-07 14:52:18.984
    Creating directory G:DB4.
    INFO 2008-12-07 14:52:18.984
    Copying directory D:/KU_WINDOWS_I386_AUPG/DB4 to: G:/DB4.
    INFO 2008-12-07 14:52:19.781
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DB4/SAPEXEDB.SAR' to 'G:/DB4'.
    INFO 2008-12-07 14:52:19.796
    Creating directory G:DB6.
    INFO 2008-12-07 14:52:19.796
    Copying directory D:/KU_WINDOWS_I386_AUPG/DB6 to: G:/DB6.
    INFO 2008-12-07 14:52:21.125
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DB6/SAPEXEDB.SAR' to 'G:/DB6'.
    INFO 2008-12-07 14:52:21.125
    Creating directory G:DBINDEP.
    INFO 2008-12-07 14:52:21.125
    Copying directory D:/KU_WINDOWS_I386_AUPG/DBINDEP to: G:/DBINDEP.
    INFO 2008-12-07 14:52:22.687
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/IGSEXE.SAR' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:22.703
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/IGSHELPER.SAR' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:22.718
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/KERNEL.TOC' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:23.671
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/SAPCAR.EXE' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:47.218
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/SAPEXE.SAR' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:48.328
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/SAPMMC.SAR' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:48.343
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/UNINSTSAP.EXE' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:48.343
    Copied file 'D:/KU_WINDOWS_I386_AUPG/LABEL.ASC' to 'G:/'.
    INFO 2008-12-07 14:52:48.359
    Creating directory G:MSS.
    INFO 2008-12-07 14:52:48.359
    Copying directory D:/KU_WINDOWS_I386_AUPG/MSS to: G:/MSS.
    INFO 2008-12-07 14:52:48.468
    Copied file 'D:/KU_WINDOWS_I386_AUPG/MSS/INSTCOLL.EXE' to 'G:/MSS'.
    INFO 2008-12-07 14:52:49.718
    Copied file 'D:/KU_WINDOWS_I386_AUPG/MSS/SAPEXEDB.SAR' to 'G:/MSS'.
    INFO 2008-12-07 14:52:49.718
    Creating directory G:ORA.
    INFO 2008-12-07 14:52:49.718
    Copying directory D:/KU_WINDOWS_I386_AUPG/ORA to: G:/ORA.
    INFO 2008-12-07 14:52:50.531
    Copied file 'D:/KU_WINDOWS_I386_AUPG/ORA/DBATOOLS.SAR' to 'G:/ORA'.
    INFO 2008-12-07 14:52:52.328
    Copied file 'D:/KU_WINDOWS_I386_AUPG/ORA/SAPEXEDB.SAR' to 'G:/ORA'.
    INFO 2008-12-07 14:52:52.390
    Copied file 'D:/KU_WINDOWS_I386_AUPG/TOC.XML' to 'G:/'.
    INFO 2008-12-07 14:52:52.484
    Execute step fillUnpackTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_Unpack|ind|ind|ind|ind|7|0
    INFO[E] 2008-12-07 14:52:52.765
    FSL-02077  File system export (share) sapmnt does not exist.
    INFO 2008-12-07 14:52:52.843
    Execute step askUnpack of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_Unpack|ind|ind|ind|ind|7|0
    INFO 2008-12-07 14:52:53.109
    Execute step askSAPCrypto of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_Unpack|ind|ind|ind|ind|7|0
    INFO 2008-12-07 14:52:53.312
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSsummary.html.
    INFO 2008-12-07 14:54:24.765
    Execute step askDomain of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:00.437
    Execute step setDefaults of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:00.484
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:00.515
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:00.546
    Execute step getSID of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO[E] 2008-12-07 16:23:05.156
    FSL-02077  File system export (share) saploc does not exist.
    INFO[E] 2008-12-07 16:23:05.421
    FSL-02077  File system export (share) sapmnt does not exist.
    INFO[E] 2008-12-07 16:23:14.718
    FSL-01027  Account group="serveurbmsSAP_LocalAdmin" does not exist.
    INFO[E] 2008-12-07 16:23:19.250
    FSL-01027  Account group="serveurbmsSAP_BMS_LocalAdmin" does not exist.
    INFO 2008-12-07 16:23:22.109
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:22.203
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:22.281
    Execute step setDefaults of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:22.312
    Execute step askDomain of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:50.906
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:53.703
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:23:53.812
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:53.937
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:23:54.62
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:24:59.359
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:24:59.437
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:24:59.515
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:24:59.781
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:00.156
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML'.
    INFO 2008-12-07 16:25:00.171
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML'.
    INFO 2008-12-07 16:25:00.203
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:00.546
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:00.625
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:00.968
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:01.46
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:01.140
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:01.484
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:01.562
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:01.656
    Execute step runChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:03.875
    Removed environment variable SAPPARAM700 from current process environment.
    WARNING 2008-12-07 16:25:08.390
    Error 1332 (Le mappage entre les noms de compte et les ID de sécurité n'a pas été effectué.
    ) in execution of a 'LookupAccountSid()' function, line (739), with parameter ().
    INFO[E] 2008-12-07 16:25:08.390
    FSL-01000  Unable to convert "group name=""" to "ADs path" using function SyADsPath::getFullPath(iastring).
    WARNING 2008-12-07 16:25:08.390
    Internal error. DIAGNOSIS: Prerequisite Checker caught an unknown exception while executing client code. Technical exception description: (new TypeError("accountMgt.getGroup(parameters) has no properties", "NW_Doublestack_SCS|ind|ind|ind|ind", 69546)). SOLUTION: Contact your local support center.
    INFO 2008-12-07 16:25:08.468
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.html' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.1.html'.
    INFO 2008-12-07 16:25:08.468
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:25:08.468
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    WARNING 2008-12-07 16:25:35.906
    Error 1332 (Le mappage entre les noms de compte et les ID de sécurité n'a pas été effectué.
    ) in execution of a 'LookupAccountSid()' function, line (739), with parameter ().
    INFO[E] 2008-12-07 16:25:35.906
    FSL-01000 Unable to convert "group name=""" to "ADs path" using function SyADsPath::getFullPath(iastring).
    WARNING 2008-12-07 16:25:35.906
    Internal error. DIAGNOSIS: Prerequisite Checker caught an unknown exception while executing client code. Technical exception description: (new TypeError("accountMgt.getGroup(parameters) has no properties", "NW_Doublestack_SCS|ind|ind|ind|ind", 69546)). SOLUTION: Contact your local support center.
    INFO 2008-12-07 16:25:36.000
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.html' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.2.html'.
    INFO 2008-12-07 16:25:36.000
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:25:36.000
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:30:11.093
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.2.XML'.
    INFO 2008-12-07 16:30:11.125
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.5.XML'.
    INFO 2008-12-07 16:30:11.156
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.6.XML'.
    INFO 2008-12-07 16:30:11.234
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.7.XML'.
    INFO 2008-12-07 16:30:11.265
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.8.XML'.
    INFO 2008-12-07 16:30:11.312
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.9.XML'.
    INFO 2008-12-07 16:30:11.359
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.421
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.500
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.546
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.593
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.687
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.734
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.812
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.859
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.906
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:12.140
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:12.187
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:12.281
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:30:12.328
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:30:12.375
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:30:12.500
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:30:12.562
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:30:15.734
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:30:15.859
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:30:16.0
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:30:16.125
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:30:16.265
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:16.343
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:16.437
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:16.671
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:16.734
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML'.
    INFO 2008-12-07 16:30:16.750
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML'.
    INFO 2008-12-07 16:30:16.781
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:17.140
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:17.234
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:17.843
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:17.937
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:18.15
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:18.812
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:18.890
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:18.984
    Execute step runChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    WARNING 2008-12-07 16:30:24.687
    Error 1332 (Le mappage entre les noms de compte et les ID de sécurité n'a pas été effectué.
    ) in execution of a 'LookupAccountSid()' function, line (739), with parameter ().
    INFO[E] 2008-12-07 16:30:24.687
    FSL-01000 Unable to convert "group name=""" to "ADs path" using function SyADsPath::getFullPath(iastring).
    WARNING 2008-12-07 16:30:24.687
    Internal error. DIAGNOSIS: Prerequisite Checker caught an unknown exception while executing client code. Technical exception description: (new TypeError("accountMgt.getGroup(parameters) has no properties", "NW_Doublestack_SCS|ind|ind|ind|ind", 69546)). SOLUTION: Contact your local support center.
    INFO 2008-12-07 16:30:24.781
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.html' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.3.html'.
    INFO 2008-12-07 16:30:24.781
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:30:24.781
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:30:34.796
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.3.XML'.
    INFO 2008-12-07 16:30:34.828
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.10.XML'.
    INFO 2008-12-07 16:30:34.859
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.11.XML'.
    INFO 2008-12-07 16:30:34.906
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.12.XML'.
    INFO 2008-12-07 16:30:34.937
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.13.XML'.
    INFO 2008-12-07 16:30:35.0
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.62
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.140
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.187
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.234
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.328
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.375
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.468
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.531
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.578
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.812
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.859
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.953
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:30:36.0
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:30:36.46
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:30:36.187
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:30:36.234
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:30:38.578
    Execute step askDomain of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:30:44.546
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    WARNING[E] 2008-12-07 16:31:52.484
    FSL-04036 Logon failed. DIAGNOSIS: The system could not log on user BMSAFRICA msadm because the user has not been granted the right to log on interactively to this computer. SOLUTION: Check the user rights assignment (Local Security Policy). Make sure that the user has been assigned the right "Log on locally", has not been assigned the right "Deny logon locally", the rights are effective and there is no domain policy that overrides these right assignments. You can try whether the user has the necessary rights using the runas command (runas /profile /user:BMSAFRICA msadm).
    WARNING[E] 2008-12-07 16:31:52.484
    FSL-00001 System call failed. Error 1385 (Échec d'ouverture de session : l'utilisateur ne bénéficie pas du type d'ouverture de session demandé sur cet ordinateur.
    ) in execution of system call 'LogonUser' with parameter (bmsadm, BMSAFRICA, *******, LOGON32_LOGON_INTERACTIVE,LOGON32_PROVIDER_DEFAULT,&hUserToken), line (1014) in file (synxccuren.cpp).
    INFO 2008-12-07 16:32:08.906
    Execute step askDomain of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:32:19.796
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    WARNING 2008-12-07 16:32:24.406
    Unable to get the name of a domain controller for domain SERVEURSAP.
    INFO[E] 2008-12-07 16:32:31.156
    FSL-01027 Account user="SERVEURSAP msadm" does not exist.
    WARNING 2008-12-07 16:32:35.687
    Unable to get the name of a domain controller for domain SERVEURSAP.
    INFO[E] 2008-12-07 16:32:35.687
    FSL-01027 Account user="SERVEURSAPSAPServiceBMS" does not exist.
    WARNING 2008-12-07 16:36:27.843
    Unable to get the name of a domain controller for domain SERVEURSAP.
    INFO[E] 2008-12-07 16:36:34.593
    FSL-01027 Account user="SERVEURSAP msadm" does not exist.
    WARNING 2008-12-07 16:36:39.187
    Unable to get the name of a domain controller for domain SERVEURSAP.
    INFO[E] 2008-12-07 16:36:39.187
    FSL-01001 Unable to check existence of account SERVEURSAPSAPServiceBMS. Erreur non spécifiée
    INFO 2008-12-07 16:36:39.375
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:36:39.515
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:36:39.640
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:36:39.781
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:36:39.921
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:40.0
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:40.93
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:40.328
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:40.390
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML'.
    INFO 2008-12-07 16:36:40.406
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML'.
    INFO 2008-12-07 16:36:40.453
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:40.812
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:40.906
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:42.375
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:42.468
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:42.546
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:43.218
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:43.296
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:43.390
    Execute step runChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    WARNING 2008-12-07 16:36:51.468
    Error 1332 (Le mappage entre les noms de compte et les ID de sécurité n'a pas été effectué.
    ) in execution of a 'LookupAccountSid()' function, line (739), with parameter ().
    INFO[E] 2008-12-07 16:36:51.468
    FSL-01000 Unable to convert "group name=""" to "ADs path" using function SyADsPath::getFullPath(iastring).
    WARNING 2008-12-07 16:36:51.468
    Internal error. DIAGNOSIS: Prerequisite Checker caught an unknown exception while executing client code. Technical exception description: (new TypeError("accountMgt.getGroup(parameters) has no properties", "NW_Doublestack_SCS|ind|ind|ind|ind", 69546)). SOLUTION: Contact your local support center.
    INFO 2008-12-07 16:36:51.562
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.html' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.4.html'.
    INFO 2008-12-07 16:36:51.562
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:36:51.562
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    WARNING 2008-12-07 16:38:55.828
    Error 1332 (Le mappage entre les noms de compte et les ID de sécurité n'a pas été effectué.
    ) in execution of a 'LookupAccountSid()' function, line (739), with parameter ().
    INFO[E] 2008-12-07 16:38:55.828
    FSL-01000 Unable to convert "group name=""" to "ADs path" using function SyADsPath::getFullPath(iastring).
    WARNING 2008-12-07 16:38:55.828
    Internal error. DIAGNOSIS: Prerequisite Checker caught an unknown exception while executing client code. Technical exception description: (new TypeError("accountMgt.getGroup(parameters) has no properties", "NW_Doublestack_SCS|ind|ind|ind|ind", 69546)). SOLUTION: Contact your local support center.
    INFO 2008-12-07 16:38:55.906
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.html' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.5.html'.
    INFO 2008-12-07 16:38:55.921
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:38:55.921
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:47:31.500
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.4.XML'.
    INFO 2008-12-07 16:47:31.546
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.14.XML'.
    INFO 2008-12-07 16:47:31.609
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.15.XML'.
    INFO 2008-12-07 16:47:31.656
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.16.XML'.
    INFO 2008-12-07 16:47:31.718
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.17.XML'.
    INFO 2008-12-07 16:47:31.750
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.18.XML'.
    INFO 2008-12-07 16:47:31.812
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:31.875
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:31.953
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.15
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.62
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.140
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.187
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.281
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.328
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.375
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.640
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.687
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.781
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:47:32.812
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:47:32.875
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:47:33.0
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:47:33.62
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:47:34.875
    Execute step askDomain of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:47:51.875
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    WARNING[E] 2008-12-07 16:48:59.015
    FSL-04036 Logon failed. DIAGNOSIS: The system could not log on user BMSAFRICA msadm because the user has not been granted the right to log on interactively to this computer. SOLUTION: Check the user rights assignment (Local Security Policy). Make sure that the user has been assigned the right "Log on locally", has not been assigned the right "Deny logon locally", the rights are effective and there is no domain policy that overrides these right assignments. You can try whether the user has the necessary rights using the runas command (runas /profile /user:BMSAFRICA msadm).
    WARNING[E] 2008-12-07 16:48:59.015
    FSL-00001 System call failed. Error 1385 (Échec d'ouverture de session : l'utilisateur ne bénéficie pas du type d'ouverture de session demandé sur cet ordinateur.
    ) in execution of system call 'LogonUser' with parameter (bmsadm, BMSAFRICA, *******, LOGON32_LOGON_INTERACTIVE,LOGON32_PROVIDER_DEFAULT,&hUserToken), line (1014) in file (synxccuren.cpp).
    INFO 2008-12-07 16:51:48.703
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:51:48.828
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:51:48.984
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:51:49.125
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:51:49.265
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:49.343
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:49.437
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:49.671
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:49.750
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML'.
    INFO 2008-12-07 16:51:49.765
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML'.
    INFO 2008-12-07 16:51:49.796
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:50.156
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:50.250
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:52.0
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:52.78
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:52.171
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:53.718
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:53.812
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:53.906
    Execute step runChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    WARNING 2008-12-07 16:52:01.421
    Error 1332 (Le mappage entre les noms de compte et les ID de sécurité n'a pas été effectué.
    ) in execution of a 'LookupAccountSid()' function, line (739), with parameter ().
    INFO[E] 2008-12-07 16:52:01.421
    FSL-01000 Unable to convert "group name=""" to "ADs path" using function SyADsPath::getFullPath(iastring).
    WARNING 2008-12-07 16:52:01.437
    Internal error. DIAGNOSIS: Prerequisite Checker caught an unknown exception while executing client code. Technical exception description: (new TypeError("accountMgt.getGroup(parameters) has no properties", "NW_Doublestack_SCS|ind|ind|ind|ind", 69546)). SOLUTION: Contact your local support center.
    INFO 2008-12-07 16:52:01.750
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.html' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.6.html'.
    INFO 2008-12-07 16:52:01.750
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:52:01.750
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.

  • How-to get rid of ADF messages (10.1.3 Production)

    In JDev 10.1.3 Production, how does one get rid of these ADF WARNINGs and NOTIFICATIONs?
    Regards,
    Al Malin
    P.S. Thanks for the release :-)
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    **** Unable to obtain password from principals.xml. Using default.
    C:\jdev1013\jdev\system\oracle.j2ee.10.1.3.36.73\embedded-oc4j\config>
    C:\jdev1013\jdk\bin\javaw.exe -client -classpath C:\jdev1013\j2ee\home\oc4j.jar;C:\jdev1013\jdev\lib\jdev-oc4j-embedded.jar -Xverify:none -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config C:\jdev1013\jdev\system\oracle.j2ee.10.1.3.36.73\embedded-oc4j\config\server.xml
    [waiting for the server to complete its initialization...]
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 9688 ms.
    Target URL -- http://158.52.196.54:8988/gpa-ViewController-context-root/faces/logon.jsp
    06/01/31 13:34:28 Oracle Containers for J2EE 10g (10.1.3.0.0) initialized
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Short,null)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Short)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Byte,null)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Byte)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Integer,null)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Integer)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Long,null)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Long)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Float,null)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Float)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Double,null)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Double)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(javax.faces.LongRange)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.DateTime,null)
    Jan 31, 2006 1:34:31 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Number,null)
    2006-01-31 13:34:33.390 WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    2006-01-31 13:34:33.421 NOTIFICATION ADF Faces is running with time-stamp checking enabled. This should not be used in a production environment. See the oracle.adf.view.faces.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml
    2006-01-31 13:34:34.531 WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    2006-01-31 13:34:34.578 WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    2006-01-31 13:34:55.734 WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    Jan 31, 2006 1:34:57 PM com.whirlpool.sjtc.gpa.view.backing.LogonBB logon
    INFO: malinaa logged on
    2006-01-31 13:34:57.640 WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    2006-01-31 13:34:57.671 WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    2006-01-31 13:35:03.640 WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    Jan 31, 2006 1:35:03 PM com.whirlpool.sjtc.gpa.view.backing.SearchBB appListenSearch
    INFO: Search wherePredicate=a.requester_emp_id_key = sjtcapp.emp_id_key_fcn('malinaa') SessionInfo: gpaNbr/userid/PAInfo=null/malinaa/null
    2006-01-31 13:35:04.031 WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    2006-01-31 13:35:04.062 WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    2006-01-31 13:35:06.515 WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    Jan 31, 2006 1:35:06 PM com.whirlpool.sjtc.gpa.view.backing.ProductApprovalBB <init>
    INFO: Constructor. SessionInfo: gpaNbr/userid/PAInfo=100002/malinaa/null
    Jan 31, 2006 1:35:07 PM com.whirlpool.sjtc.gpa.view.backing.ProductApprovalBB populateFormFields
    INFO: Populate - pa.retrieve(). SessionInfo: gpaNbr/userid/PAInfo=100002/malinaa/null
    2006-01-31 13:35:07.687 WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    2006-01-31 13:35:07.718 WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.

    Right my point was this is standard logging and you can control it.
    As it happens the only warnings I get are from com.sun.faces.* - You'll have to ask Sun why they are putting out at that level.
    I don't know why the Filter errors are coming up - that is not normal and suggests that there is a configuration problem
    The particular message:
    006-01-31 13:34:33.421 NOTIFICATION ADF Faces is running with time-stamp checking
    enabled. This should not be used in a production environment. See the
    oracle.adf.view.faces.CHECK_FILE_MODIFICATION property in WEB-INF/web.xmlWill only happen in the embedded OC4J and will disappear when the app is deployed unless you actively switch the feature on.

  • ALV .....uregent plzz (some error message while executing)

    *& Report  ZAREPAS22
    REPORT  zarepas22 LINE-SIZE 250.
    TABLES : vbak,vbap,likp,lips,vbrk,vbrp,kna1,vbfa.
    DATA : ok_code              LIKE        sy-ucomm,
           g_container          TYPE scrfname VALUE 'BCALV8_GRID_DEMO_0100_VASU',
           docking              TYPE REF TO cl_gui_docking_container,
           splitter_1           TYPE REF TO cl_gui_splitter_container,
           splitter_2           TYPE REF TO cl_gui_splitter_container,
           splitter_3           TYPE REF TO cl_gui_splitter_container,
           cell_top1            TYPE REF TO cl_gui_container,
           cell_bottom1         TYPE REF TO cl_gui_container,
           cell_top2            TYPE REF TO cl_gui_container,
           cell_bottom2         TYPE REF TO cl_gui_container,
           cell_left            TYPE REF TO cl_gui_container,
           cell_middle          TYPE REF TO cl_gui_container,
           cell_right           TYPE REF TO cl_gui_container,
           grid1                TYPE REF TO cl_gui_alv_grid,
           grid2                TYPE REF TO cl_gui_alv_grid,
           grid3                TYPE REF TO cl_gui_alv_grid,
           grid4                TYPE REF TO cl_gui_alv_grid,
           grid5                TYPE REF TO cl_gui_alv_grid.
    DATA: li_fieldcat1          TYPE lvc_t_fcat,
          li_fieldcat2          TYPE lvc_t_fcat,
          li_fieldcat3          TYPE lvc_t_fcat,
          li_fieldcat4          TYPE lvc_t_fcat,
          li_fieldcat5          TYPE lvc_t_fcat,
          lv_layout             TYPE lvc_s_layo,
          lv_variant            TYPE disvariant.
    TYPES:BEGIN OF gty_itab1,
          vbeln                 TYPE vbak-vbeln,
          kunnr                 TYPE vbak-kunnr,
          erdat                 TYPE vbak-erdat,
    END OF gty_itab1.
    TYPES:BEGIN OF gty_itab2,
          vbeln                 TYPE vbap-vbeln,
          posnr                 TYPE vbap-posnr,
          matnr                 TYPE vbap-matnr,
          kwmeng                TYPE vbap-kwmeng,
          netwr                 TYPE vbap-netwr,
    END OF gty_itab2.
    TYPES:BEGIN OF gty_itab3,
          vbeln                 TYPE likp-vbeln,
          ernam                 TYPE likp-ernam,
          erzet                 TYPE likp-erzet,
          posnr                 TYPE lips-posnr,
          matnr                 TYPE lips-matnr,
    END OF gty_itab3.
    TYPES:BEGIN OF gty_itab4,
          vbeln                 TYPE vbrk-vbeln,
          fkart                 TYPE vbrk-fkart,
          posnr                 TYPE vbrp-posnr,
          fkimg                 TYPE vbrp-fkimg,
    END OF gty_itab4.
    TYPES:BEGIN OF gty_itab5,
          kunnr                 TYPE kna1-kunnr,
          name1                 TYPE kna1-name1,
          name2                 TYPE kna1-name2,
    END OF gty_itab5.
    DATA:gt_itab1 TYPE STANDARD TABLE OF gty_itab1,
         gwa_itab1 TYPE gty_itab1.
    DATA:gt_itab2 TYPE STANDARD TABLE OF gty_itab2,
         gwa_itab2 TYPE gty_itab2.
    DATA:gt_itab3 TYPE STANDARD TABLE OF gty_itab3,
         gwa_itab3 TYPE gty_itab3.
    DATA:gt_itab4 TYPE STANDARD TABLE OF gty_itab4,
         gwa_itab4 TYPE gty_itab4.
    DATA:gt_itab5 TYPE STANDARD TABLE OF gty_itab5,
         gwa_itab5 TYPE gty_itab5.
    Global data
    DATA: gt_fieldcat TYPE STANDARD TABLE OF lvc_s_fcat,
          gwa_fieldcat LIKE LINE OF gt_fieldcat.
    Macro to fill field catalog
    DEFINE m_fill_field_catalog.
      gwa_fieldcat-tabname   = &1.
      gwa_fieldcat-fieldname = &2.
      gwa_fieldcat-scrtext_s = &3.
      gwa_fieldcat-scrtext_l = &4.
      Append field catalog details to field catalog internal table
      append gwa_fieldcat to gt_fieldcat.
    END-OF-DEFINITION.
    *selection screen for selecting range of values
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_vbeln FOR vbak-vbeln.   " OBLIGATORY.      " OBLIGATORY
    SELECTION-SCREEN END OF BLOCK b1.
          CLASS lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS:
          handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
            IMPORTING
              e_row
              e_column
              es_row_no
              sender.  " sending control, i.e. ALV grid that raised event
    ENDCLASS.                    "lcl_eventhandler DEFINITION
          CLASS lcl_eventhandler IMPLEMENTATION
    CLASS lcl_eventhandler IMPLEMENTATION.
      METHOD handle_double_click.
    *DEFINE LOCAL DATA.
    *DISTINGUISH ACCORDING TO SENDING GRID INSTANCE
        CASE sender.
          WHEN grid1.
            READ TABLE gt_itab1 INTO gwa_itab1 INDEX e_row-index.
            CHECK ( gwa_itab1-vbeln IS NOT INITIAL ).
            CALL METHOD grid1->set_current_cell_via_id
              EXPORTING
                is_row_no = es_row_no.
            CALL METHOD cl_gui_cfw=>set_new_ok_code
              EXPORTING
                new_code = 'ORDER_DETAILS'.
          WHEN grid2.
            READ TABLE gt_itab2 INTO gwa_itab2 INDEX e_row-index.
            CHECK ( gwa_itab2-vbeln IS NOT INITIAL ).
            CALL METHOD grid2->set_current_cell_via_id
              EXPORTING
                is_row_no = es_row_no.
            CALL METHOD cl_gui_cfw=>set_new_ok_code
              EXPORTING
                new_code = 'DELIVERY_DETAILS'.
          WHEN grid3.
            READ TABLE gt_itab3 INTO gwa_itab3 INDEX e_row-index.
            CHECK ( gwa_itab3-vbeln IS NOT INITIAL ).
            CALL METHOD grid3->set_current_cell_via_id
              EXPORTING
                is_row_no = es_row_no.
            CALL METHOD cl_gui_cfw=>set_new_ok_code
              EXPORTING
                new_code = 'BILLING_DETAILS'.
          WHEN grid4.
            READ TABLE gt_itab4 INTO gwa_itab4 INDEX e_row-index.
            CHECK ( gwa_itab4-vbeln IS NOT INITIAL ).
            CALL METHOD grid4->set_current_cell_via_id
              EXPORTING
                is_row_no = es_row_no.
            CALL METHOD cl_gui_cfw=>set_new_ok_code
              EXPORTING
                new_code = 'BILLING_DETAILS'.
          WHEN grid5.
            READ TABLE gt_itab5 INTO gwa_itab5 INDEX e_row-index.
            CHECK ( gwa_itab5-kunnr IS NOT INITIAL ).
          WHEN OTHERS.
        ENDCASE.
      ENDMETHOD.                    "handle_double_click
    ENDCLASS.    "lcl_eventhandler IMPLEMENTATION
    START-OF-SELECTION.
      SELECT vbeln kunnr erdat FROM vbak INTO TABLE gt_itab1
                              WHERE vbeln IN  s_vbeln.
    creating docking container
      CREATE OBJECT docking
        EXPORTING
         parent     = cl_gui_container=>screen0
         ratio      = 90
       EXCEPTIONS
        OTHERS      = 6.
      IF sy-subrc EQ 0.
      ENDIF.
    Create splitter container
      CREATE OBJECT splitter_1
          EXPORTING
            parent            = docking
            rows              = 1
            columns           = 3
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
      IF sy-subrc  EQ 0.
      ENDIF.
    Get cell container
      CALL METHOD splitter_1->get_container
        EXPORTING
          row       = 1
          column    = 1
        RECEIVING
          container = cell_left.
      CALL METHOD splitter_1->get_container
        EXPORTING
          row       = 1
          column    = 2
        RECEIVING
          container = cell_middle.
      CALL METHOD splitter_1->get_container
        EXPORTING
          row       = 1
          column    = 3
        RECEIVING
          container = cell_right.
    Create 2nd splitter container
      CREATE OBJECT splitter_2
      EXPORTING
          parent            = cell_left
          rows              = 2
          columns           = 1
        EXCEPTIONS
          cntl_error        = 1
          cntl_system_error = 2
          OTHERS            = 3.
      IF sy-subrc  EQ 0.
      ENDIF.
    Get cell container
      CALL METHOD splitter_2->get_container
        EXPORTING
          row       = 1
          column    = 1
        RECEIVING
          container = cell_top1.
      CALL METHOD splitter_2->get_container
        EXPORTING
          row       = 2
          column    = 1
        RECEIVING
          container = cell_bottom1.
    Create 3rd splitter container
      CREATE OBJECT splitter_3
          EXPORTING
            parent            = cell_middle
            rows              = 2
            columns           = 1
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
      IF sy-subrc  EQ 0.
      ENDIF.
    Get cell container
      CALL METHOD splitter_3->get_container
        EXPORTING
          row       = 1
          column    = 1
        RECEIVING
          container = cell_top2.
      CALL METHOD splitter_3->get_container
        EXPORTING
          row       = 2
          column    = 1
        RECEIVING
          container = cell_bottom2.
    Create ALV grids
      CREATE OBJECT grid1
        EXPORTING
          i_parent          = cell_top1
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc  EQ 0.
      ENDIF.
      CREATE OBJECT grid2
        EXPORTING
          i_parent          = cell_bottom1
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc  EQ 0.
      ENDIF.
      CREATE OBJECT grid3
        EXPORTING
          i_parent          = cell_top2
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc  EQ 0.
      ENDIF.
      CREATE OBJECT grid4
        EXPORTING
          i_parent          = cell_bottom2
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc  EQ 0.
      ENDIF.
      CREATE OBJECT grid5
        EXPORTING
          i_parent          = cell_right
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc  EQ 0.
      ENDIF.
    Set event handler
      SET HANDLER: lcl_eventhandler=>handle_double_click FOR grid1.
      SET HANDLER: lcl_eventhandler=>handle_double_click FOR grid2.
      SET HANDLER: lcl_eventhandler=>handle_double_click FOR grid3.
      SET HANDLER: lcl_eventhandler=>handle_double_click FOR grid4.
      SET HANDLER: lcl_eventhandler=>handle_double_click FOR grid5.
    lv_layout-zebra             = 'X'.
    lv_layout-cwidth_opt        = 'X'.
    lv_variant                  = 'ZAREPAS22'.
    Display data
      PERFORM prepare_alv_fieldcat1  CHANGING li_fieldcat1.
    *commented lines i suppose to include here....
      CALL METHOD grid1->set_table_for_first_display
        EXPORTING
          is_variant      = lv_variant
          i_save          = 'A'
          i_default       = space
          is_layout       = lv_layout
        CHANGING
          it_outtab       = gt_itab1
          it_fieldcatalog = li_fieldcat1
        EXCEPTIONS
          OTHERS          = 4.
      PERFORM prepare_alv_fieldcat2  CHANGING li_fieldcat2.
      CALL METHOD grid2->set_table_for_first_display
        EXPORTING
          is_variant      = lv_variant
          i_save          = 'A'
          i_default       = space
          is_layout       = lv_layout
        CHANGING
          it_outtab       = gt_itab2
          it_fieldcatalog = li_fieldcat2
        EXCEPTIONS
          OTHERS          = 4.
      PERFORM prepare_alv_fieldcat3  CHANGING li_fieldcat3.
      CALL METHOD grid3->set_table_for_first_display
        EXPORTING
          is_variant      = lv_variant
          i_save          = 'A'
          i_default       = space
          is_layout       = lv_layout
        CHANGING
          it_outtab       = gt_itab3
          it_fieldcatalog = li_fieldcat3
        EXCEPTIONS
          OTHERS          = 4.
      PERFORM prepare_alv_fieldcat4  CHANGING li_fieldcat4.
      CALL METHOD grid4->set_table_for_first_display
        EXPORTING
          is_variant      = lv_variant
          i_save          = 'A'
          i_default       = space
          is_layout       = lv_layout
        CHANGING
          it_outtab       = gt_itab4
          it_fieldcatalog = li_fieldcat4
        EXCEPTIONS
          OTHERS          = 4.
      PERFORM prepare_alv_fieldcat5  CHANGING li_fieldcat5.
      CALL METHOD grid5->set_table_for_first_display
        EXPORTING
          is_variant      = lv_variant
          i_save          = 'A'
          i_default       = space
          is_layout       = lv_layout
        CHANGING
          it_outtab       = gt_itab5
          it_fieldcatalog = li_fieldcat5
        EXCEPTIONS
          OTHERS          = 4.
    Link the docking container to the target dynpro
      CALL METHOD docking->link
        EXPORTING
          repid  = syst-repid
          dynnr  = '0100'
        EXCEPTIONS
          OTHERS = 4.
      IF sy-subrc  EQ 0.
      ENDIF.
    NOTE: dynpro does not contain any elements (ok_code -> GD_OKCODE)
      CALL SCREEN '0100'.
    END-OF-SELECTION.
    *&      Module  STATUS_0100  OUTPUT
          text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS_0100'.
    SET TITLEBAR 'xxx'.
    Refresh display of detail ALV list
      CALL METHOD grid2->refresh_table_display
        EXCEPTIONS
          OTHERS = 2.
      IF sy-subrc  EQ 0.
      ENDIF.
    Refresh display of detail ALV list
      CALL METHOD grid3->refresh_table_display
        EXCEPTIONS
          OTHERS = 2.
      IF sy-subrc  EQ 0.
      ENDIF.
    Refresh display of detail ALV list
      CALL METHOD grid4->refresh_table_display
        EXCEPTIONS
          OTHERS = 2.
      IF sy-subrc  EQ 0.
      ENDIF.
    Refresh display of detail ALV list
      CALL METHOD grid5->refresh_table_display
        EXCEPTIONS
          OTHERS = 2.
      IF sy-subrc  EQ 0.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    MODULE user_command_0100 INPUT.
      CASE sy-ucomm.
        WHEN 'BACK' OR
             'EXIT'  OR
             'CANCEL'.
          SET SCREEN 0.LEAVE SCREEN.
    USER HAS PUSHED BUTTON "DISPLAY OREDERS"
        WHEN 'ORDER_DETAILS'.
          PERFORM order_show_details.
        WHEN 'DELIVERY_DETAILS'.
          PERFORM delivery_show_details.
        WHEN 'BILLING_DETAILS'.
          PERFORM billing_show_details.
        WHEN OTHERS.
      ENDCASE.
      CLEAR : ok_code.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  ORDER_SHOW_DETAILS
          text
    -->  p1        text
    <--  p2        text
    FORM order_show_details .
    define local data
      DATA:
        ld_row      TYPE i,
        gwa_itab1     TYPE vbak.
      CALL METHOD grid1->get_current_cell
        IMPORTING
          e_row = ld_row.
      READ TABLE gt_itab1 INTO gwa_itab1 INDEX ld_row.
      CHECK ( syst-subrc = 0 ).
      SELECT kunnr name1 name2 FROM  kna1 INTO TABLE gt_itab5
             WHERE  kunnr  = gwa_itab1-kunnr.
      SELECT vbeln posnr matnr kwmeng netwr FROM  vbap INTO TABLE gt_itab2
             WHERE  vbeln  = gwa_itab1-vbeln.
    *REFRESH: gt_LIPS.
    ENDFORM.                    " ORDER_SHOW_DETAILS
    *&      Form  DELIVERY_SHOW_DETAILS
          text
    -->  p1        text
    <--  p2        text
    FORM delivery_show_details .
    define local data
      DATA:
        ld_row      TYPE i.
       gwa_itab2     TYPE vbap.
      CALL METHOD grid2->get_current_cell
        IMPORTING
          e_row = ld_row.
      READ TABLE gt_itab2 INTO gwa_itab2 INDEX ld_row.
      CHECK ( syst-subrc = 0 ).
      SELECT SINGLE * FROM vbfa WHERE vbelv = gwa_itab2-vbeln
                                  AND vbtyp_n = 'J'.
      SELECT posnr matnr FROM lips INTO TABLE gt_itab3
           WHERE vbeln = vbfa-vbeln
             AND vgpos = gwa_itab2-posnr.
    *REFRESH: gt_LIPS.
    ENDFORM.                    " DELIVERY_SHOW_DETAILS
    *&      Form  BILLING_SHOW_DETAILS
          text
    -->  p1        text
    <--  p2        text
    FORM billing_show_details .
    define local data
      DATA:
        ld_row      TYPE i.
       gwa_itab3     TYPE lips.
      CALL METHOD grid3->get_current_cell
        IMPORTING
          e_row = ld_row.
      READ TABLE gt_itab3 INTO gwa_itab3 INDEX ld_row.
      CHECK ( syst-subrc = 0 ).
      SELECT SINGLE * FROM vbfa WHERE vbelv = gwa_itab3-vbeln
                                  AND vbtyp_n = 'M'.
      SELECT posnr fkimg FROM vbrp INTO TABLE gt_itab4
           WHERE vbeln = vbfa-vbeln
             AND vgpos = gwa_itab3-posnr.
    ENDFORM.                    " BILLING_SHOW_DETAILS
    *&      Form  prepare_alv_fieldcat
    FORM prepare_alv_fieldcat1  CHANGING lpi_fieldcat1 TYPE lvc_t_fcat.
      m_fill_field_catalog 'GTY_ITAB1' 'VBELN' 'Ord Num'(004) 'Order Number'(005).
      m_fill_field_catalog 'GTY_ITAB1' 'kunnr' 'sold party'(006) 'SOLD TO PARTY'(007).
      m_fill_field_catalog 'GTY_ITAB1' 'ERDAT' 'Ord Date'(008) 'Order Date'(009).
      lpi_fieldcat1[] = gt_fieldcat[].
      REFRESH gt_fieldcat.
    ENDFORM.                    "prepare_alv_fieldcat1
    *&      Form  prepare_alv_fieldcat
          text
         -->LPI_FIELDCAT  text
    FORM prepare_alv_fieldcat2  CHANGING lpi_fieldcat2 TYPE lvc_t_fcat.
      m_fill_field_catalog 'GTY_ITAB2' 'vbeln'  'sales Doc'(010) 'sales document'(011).
      m_fill_field_catalog 'GTY_ITAB2' 'POSNR'  'sales Doc'(012) 'sales documentITEM'(013).
      m_fill_field_catalog 'GTY_ITAB2' 'matnr'  'Mat num'(014) 'material number'(015).
      m_fill_field_catalog 'GTY_ITAB2' 'kwmeng' '*** ord qty'(016) 'cumilative order qty'(017).
      m_fill_field_catalog 'GTY_ITAB2' 'netwr'  'nwt val'(018) 'net val of item'(019).
      lpi_fieldcat2[] = gt_fieldcat[].
      REFRESH gt_fieldcat.
    ENDFORM.                    "prepare_alv_fieldcat2
    *&      Form  prepare_alv_fieldcat
          text
         -->LPI_FIELDCAT  text
    FORM prepare_alv_fieldcat3  CHANGING lpi_fieldcat3 TYPE lvc_t_fcat.
      m_fill_field_catalog 'GTY_ITAB3' 'posnr'  'del item'(020) 'delivery item'(021).
      m_fill_field_catalog 'GTY_ITAB3' 'matnr'  'mat num'(022) 'material number'(023).
      lpi_fieldcat3[] = gt_fieldcat[].
      REFRESH gt_fieldcat.
    ENDFORM.                    "prepare_alv_fieldcat3
    *&      Form  prepare_alv_fieldcat
          text
         -->LPI_FIELDCAT  text
    FORM prepare_alv_fieldcat4  CHANGING lpi_fieldcat4 TYPE lvc_t_fcat.
      m_fill_field_catalog 'GTY_ITAB4' 'posnr'  'bill item'(024) 'billing item'(025).
      m_fill_field_catalog 'GTY_ITAB4' 'fkimg'  'act inv'(026) 'actuval inv qty'(028).
      lpi_fieldcat4[] = gt_fieldcat[].
      REFRESH gt_fieldcat.
    ENDFORM.                    "prepare_alv_fieldcat4
    *&      Form  prepare_alv_fieldcat
          text
         -->LPI_FIELDCAT  text
    FORM prepare_alv_fieldcat5  CHANGING lpi_fieldcat5 TYPE lvc_t_fcat.
      m_fill_field_catalog 'GTY_ITAB5' 'kunnr'  'cust no'(029) 'cust number'(030).
      m_fill_field_catalog 'GTY_ITAB5' 'name1'  'name1'(031) 'name1'(032).
      m_fill_field_catalog 'GTY_ITAB5' 'name2'  'name2'(033) 'name2'(034).
      lpi_fieldcat5[] = gt_fieldcat[].
      REFRESH gt_fieldcat.
    ENDFORM.                    "prepare_alv_fieldcat5
    *appending
    *FORM append_catalog1 USING value(p_fname)
                             value(p_tname)
                             value(p_coltext).
    DATA : v_fcat TYPE lvc_s_fcat.
            v_fcat-fieldname = p_fname.
            v_fcat-ref_table = p_tname.
            v_fcat-coltext   = p_coltext.
    APPEND v_fcat TO li_fieldcat1.
    *ENDFORM.                    "append_catalog

    Hi Srinivas,
    What is the Report Requirement,
    What is the Error Message u r getting.

  • BBP_GET_STATUS_2 - issue

    Hi Guy's , We are currently on SRM7 and recently have noticed that when the BBP_GET_STATUS_2 job is run it is applying a lock in table USR02 in ECC which causes the ECC system to stale. I have checked the SM37 Log and there i could see the following
    message "These requirements were blocked during update by other users" with the list of SC object Id.
    I have gone through some notes and seems like we can improve the performance by applying 1590401. However could not see any information on why it is locking table usr02 in ECC. has anyone faced this similiar problem.
    Please advise and shre your experience on how it was fixed.
    Thanks
    Saj

    Hello Saj,
    could you please check SRM How-To below:
    [BBP_GET_STATUS_2 causes the error u201CLock Table Overflowu201D|http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=235674617]
    Maybe it could be relevant for you.
    Regards.
    Laurent.

  • Requirements reappear in Sourcing Cockpit after running BBP_GET_STATUS_2

    I have set up plan-driven procurement in the extended classic scenario in SRM 5.0 with an ECC 5.0 back-end. When I assign a vendor to a shopping cart in the sourcing cockpit for an external requirement, it disappears from the worklist. As soon as I have run program BBP_GET_STATUS_2 and I run transaction BBPSOCO01 again, the SC will appear in the worklist again although a PO has been created in both SRM as in the Back-end system. The status of the SC is ordered, the Purchase Requisition is not send again to SRM and I have implemented all relevant notes for program BBP_GET_STATUS_2. How can I prevent that shopping carts are being ordered multiple times? The problem is similar to the problem from KA posted on 9 July 2007, only this is not yet solved.

    Hi Nishant,
    Thanks for your answer. The problem I have that I have already applied note 1050349. Besides note 1050349 I have also implemented the following notes:
    0000691569 Error messages in BBP_GET_STATUS_2                         
    0000989891 BBP_GET_STATUS_2: Incorr quantity determination in back end
    0001001882 BID: Requirement reappears in sourcing cockpit             
    0001012124 SHP not reappear in SOCO after backend PO delete           
    0001027598 BBP_GET_STATUS_2: Error message E 011 in back end          
    0001032713 BBP_GET_STATUS_2: incorrect sourcing indicator             
    0001033208 Complete sourcing indicator is getting lost                
    0001040847 Requirement is removed from sourcing after BBP_GET_STATUS_2
    0001041334 BBP_GET_STATUS_2 cannot handle more than one PO            
    0001044351 BBP_GET_STATUS_2: Error message with reservation           
    0001049989 External requirements: Object id not found error in XI     
    0001050349 Sourced Shopping cart reappears in Sourcing cockpit.       
    0001055375 BBP_GET_STATUS_2: Error message during conversion          
    0001056941 Shp. cart sent back to SOCO in case of P. Req. or Reservatio
    0001062223 BBP_GET_STATUS_2: Performance and runtime error            
    0001062565 No reference of backend Object ID is updated in Shop. cart 
    0001066128 Shp cart item is not updated from the related PO           
    0001084144 BBP_GET_STATUS_2 sourcing relevant indicator               
    0001088315 External Requirement: Sourcing ind. flag is wrongly set    
    0001106550 SOCO: completed requirement is sent back to SOCO           
    Do you have other recommendations?
    Regards,
    Jos van den Berg

  • **Error message on installation of Adobe Reader for Mac**:   "Installer: Package name is Adobe reader XI (11.0.07) Installer: Upgrading at base path / installer: The upgrade failed (The installer encountered an error that caused the installation to fail.

    Here are screen shots of the two error messages.
    I have tried trashing Adobe Reader and reinstalling, and removing the library files for the browser plugin and reinstalling.

    The file is 18 MB, which obviously exceeds what your form will allow me to paste. Here are the entires for September 5:
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdated (200)[180]: BackgroundActivity: Starting Background Check Activity
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: Automatic check parameters: autoDownload=YES, autoConfigData=YES, autoCriticalInstall=YES
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: Fired early. Should check=FALSE (i=86280.000000, l=2014-09-04 17:54:40 +0000) (A/C=YES)
    Sep  5 06:00:16 --- last message repeated 1 time ---
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: 1 user-visible product(s): 031-05873
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: 0 enabled config-data product(s):  (want active updates only)
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdated (200)[180]: BackgroundActivity: Starting background actions
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdated (200)[180]: BackgroundActivity: Finished Background Check Activity
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdate_notify_agent (501)[35041]: softwareupdate_notify_agent[uid=501]: Running for UpdatesAvailable
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdate_notify_agent (501)[35041]: AssertionMgr: Take com.apple.softwareupdate.NotifyAgentAssertion assertion with type BackgroundTask for pid 35041
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdated (200)[180]: Adding client SUUpdateServiceClient pid=35041, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_notify_agent)
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdate_notify_agent (501)[35041]: softwareupdate_notify_agent[uid=501]: Notifying with params: {
         SoftwareUpdateCount = 1;
         SoftwareUpdatesAvailable = 1;
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdate_notify_agent (501)[35041]: softwareupdate_notify_agent[uid=501]: appstoreupdateagent notified
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdate_notify_agent (501)[35041]: AssertionMgr: Cancel com.apple.softwareupdate.NotifyAgentAssertion assertion for pid 35041
    Sep  5 06:00:16 rbb-mac-pro.home softwareupdated (200)[180]: Removing client SUUpdateServiceClient pid=35041, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_notify_agent)
    Sep  5 09:16:01 rbb-mac-pro.home installer[35656]: Product archive /Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe Reader XI Installer.pkg trustLevel=202
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20I nstaller.pkg#application.pkg
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20I nstaller.pkg#browserPlugin.pkg
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20I nstaller.pkg#support.pkg
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: Set authorization level to root for session
    Sep  5 09:16:02 rbb-mac-pro.home runner[35680]: Administrator authorization granted.
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: Will use PK session
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: Starting installation:
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: Configuring volume "SSD 256G Boot Disk"
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: Preparing disk for local booted install.
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: Free space on "SSD 256G Boot Disk": 8 GB (8000942080 bytes).
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.35656aAqVkt"
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: IFPKInstallElement (3 packages)
    Sep  5 09:16:02 rbb-mac-pro.home installer[35656]: Using authorization level of root for IFPKInstallElement
    Sep  5 09:16:02 rbb-mac-pro.home installd[35681]: installd: Starting
    Sep  5 09:16:02 rbb-mac-pro.home installd[35681]: installd: uid=0, euid=0
    Sep  5 09:16:02 rbb-mac-pro.home installd[35681]: PackageKit: Adding client PKInstallDaemonClient pid=35656, uid=0 (/usr/sbin/installer)
    Sep  5 09:16:03 rbb-mac-pro.home installer[35656]: PackageKit: Enqueuing install with boosting
    Sep  5 09:16:03 rbb-mac-pro.home installd[35681]: PackageKit: ----- Begin install -----
    Sep  5 09:16:03 rbb-mac-pro.home installd[35681]: PackageKit: request=PKInstallRequest <3 packages, destination=/>
    Sep  5 09:16:03 rbb-mac-pro.home installd[35681]: PackageKit: packages=(
         "PKLeopardPackage <file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20 Installer.pkg#application.pkg>",
         "PKLeopardPackage <file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20 Installer.pkg#browserPlugin.pkg>",
         "PKLeopardPackage <file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20 Installer.pkg#support.pkg>"
    Sep  5 09:16:03 rbb-mac-pro.home installd[35681]: PackageKit: Will do receipt-based obsoleting for package identifier com.adobe.acrobat.reader.11007.reader.app.pkg.en_US (prefix path=Applications)
    Sep  5 09:16:03 rbb-mac-pro.home installd[35681]: PackageKit: Will do receipt-based obsoleting for package identifier com.adobe.acrobat.reader.11007.reader.browser.pkg.en_US (prefix path=Library/Internet Plug-Ins)
    Sep  5 09:16:03 rbb-mac-pro.home installd[35681]: PackageKit: Will do receipt-based obsoleting for package identifier com.adobe.acrobat.reader.11007.reader.appsupport.pkg.en_US (prefix path=Library/Application Support)
    Sep  5 09:16:03 rbb-mac-pro.home installd[35681]: PackageKit: Extracting file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20I nstaller.pkg#application.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/3BB 3C775-90BB-4850-AEF0-359D1D31FF14.activeSandbox/Root/Applications, uid=0)
    Sep  5 09:16:04 rbb-mac-pro.home installd[35681]: PackageKit: Extracting file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20I nstaller.pkg#browserPlugin.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/3BB 3C775-90BB-4850-AEF0-359D1D31FF14.activeSandbox/Root/Library/Internet Plug-Ins, uid=0)
    Sep  5 09:16:04 rbb-mac-pro.home installd[35681]: PackageKit: Extracting file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20I nstaller.pkg#support.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/3BB 3C775-90BB-4850-AEF0-359D1D31FF14.activeSandbox/Root/Library/Application Support, uid=0)
    Sep  5 09:16:04 rbb-mac-pro.home installd[35681]: PackageKit: prevent user idle system sleep
    Sep  5 09:16:04 rbb-mac-pro.home installd[35681]: PackageKit: suspending backupd
    Sep  5 09:16:04 rbb-mac-pro.home installd[35681]: PackageKit: Executing script "./preinstall" in /private/tmp/PKInstallSandbox.FpH0c2/Scripts/com.adobe.acrobat.reader.11007.reader.app.pk g.en_US.pscf1z
    Sep  5 09:16:04 rbb-mac-pro.home install_monitor[35682]: Temporarily excluding: /Applications, /Library, /System, /bin, /private, /sbin, /usr
    Sep  5 09:16:06 rbb-mac-pro.home installd[35681]: ./preinstall: A user is running an instance of Adobe Reader in a browser. Installation failure.
    Sep  5 09:16:06 rbb-mac-pro.home installd[35681]: ./preinstall: Adobe Acrobat Pro or Adobe Reader were found running.
    Sep  5 09:16:06 rbb-mac-pro.home install_monitor[35682]: Re-included: /Applications, /Library, /System, /bin, /private, /sbin, /usr
    Sep  5 09:16:06 rbb-mac-pro.home installd[35681]: PackageKit: releasing backupd
    Sep  5 09:16:06 rbb-mac-pro.home installd[35681]: PackageKit: allow user idle system sleep
    Sep  5 09:16:06 rbb-mac-pro.home installd[35681]: PackageKit: Install Failed: Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”." UserInfo=0x7ffb18658820 {NSFilePath=./preinstall, NSURL=file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20 XI%20Installer.pkg#application.pkg, PKInstallPackageIdentifier=com.adobe.acrobat.reader.11007.reader.app.pkg.en_US, NSLocalizedDescription=An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”.} {
         NSFilePath = "./preinstall";
         NSLocalizedDescription = "An error occurred while running scripts from the package \U201cAdobe Reader XI Installer.pkg\U201d.";
         NSURL = "file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20 Installer.pkg#application.pkg";
         PKInstallPackageIdentifier = "com.adobe.acrobat.reader.11007.reader.app.pkg.en_US";
    Sep  5 09:16:06 rbb-mac-pro.home installd[35681]: PackageKit: Running idle tasks
    Sep  5 09:16:06 rbb-mac-pro.home installer[35656]: install:didFailWithError:Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”." UserInfo=0x7fa54a781ef0 {NSFilePath=./preinstall, NSURL=file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20 XI%20Installer.pkg#application.pkg, PKInstallPackageIdentifier=com.adobe.acrobat.reader.11007.reader.app.pkg.en_US, NSLocalizedDescription=An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”.}
    Sep  5 09:16:06 rbb-mac-pro.home installd[35681]: PackageKit: Removing client PKInstallDaemonClient pid=35656, uid=0 (/usr/sbin/installer)
    Sep  5 09:16:06 rbb-mac-pro.home installd[35681]: PackageKit: Done with sandbox removals
    Sep  5 09:16:07 rbb-mac-pro.home installer[35656]: Install failed: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
    Sep  5 09:16:07 rbb-mac-pro.home installd[35681]: PackageKit: Sandbox /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/53D2A2C7-EC8C-44 5E-ABA8-A2F67CA1D1FD.sandbox: relevance 868
    Sep  5 09:32:35 rbb-mac-pro.home installer[35930]: Product archive /Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe Reader XI Installer.pkg trustLevel=202
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20I nstaller.pkg#application.pkg
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20I nstaller.pkg#browserPlugin.pkg
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20I nstaller.pkg#support.pkg
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: Set authorization level to root for session
    Sep  5 09:32:36 rbb-mac-pro.home runner[35934]: Administrator authorization granted.
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: Will use PK session
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: Starting installation:
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: Configuring volume "SSD 256G Boot Disk"
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: Preparing disk for local booted install.
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: Free space on "SSD 256G Boot Disk": 7.99 GB (7987646464 bytes).
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.35930WMZuUG"
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: IFPKInstallElement (3 packages)
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: Using authorization level of root for IFPKInstallElement
    Sep  5 09:32:36 rbb-mac-pro.home installd[35681]: PackageKit: Adding client PKInstallDaemonClient pid=35930, uid=0 (/usr/sbin/installer)
    Sep  5 09:32:36 rbb-mac-pro.home installer[35930]: PackageKit: Enqueuing install with boosting
    Sep  5 09:32:36 rbb-mac-pro.home installd[35681]: PackageKit: ----- Begin install -----
    Sep  5 09:32:36 rbb-mac-pro.home installd[35681]: PackageKit: request=PKInstallRequest <3 packages, destination=/>
    Sep  5 09:32:36 rbb-mac-pro.home installd[35681]: PackageKit: packages=(
         "PKLeopardPackage <file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20 Installer.pkg#application.pkg>",
         "PKLeopardPackage <file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20 Installer.pkg#browserPlugin.pkg>",
         "PKLeopardPackage <file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20 Installer.pkg#support.pkg>"
    Sep  5 09:32:36 rbb-mac-pro.home installd[35681]: PackageKit: Will do receipt-based obsoleting for package identifier com.adobe.acrobat.reader.11007.reader.app.pkg.en_US (prefix path=Applications)
    Sep  5 09:32:36 rbb-mac-pro.home installd[35681]: PackageKit: Will do receipt-based obsoleting for package identifier com.adobe.acrobat.reader.11007.reader.browser.pkg.en_US (prefix path=Library/Internet Plug-Ins)
    Sep  5 09:32:36 rbb-mac-pro.home installd[35681]: PackageKit: Will do receipt-based obsoleting for package identifier com.adobe.acrobat.reader.11007.reader.appsupport.pkg.en_US (prefix path=Library/Application Support)
    Sep  5 09:32:37 rbb-mac-pro.home installd[35681]: PackageKit: Extracting file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20I nstaller.pkg#application.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/B10 E70F1-C2AA-4012-9CF8-1AC26239D69D.activeSandbox/Root/Applications, uid=0)
    Sep  5 09:32:37 rbb-mac-pro.home installd[35681]: PackageKit: Extracting file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20I nstaller.pkg#browserPlugin.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/B10 E70F1-C2AA-4012-9CF8-1AC26239D69D.activeSandbox/Root/Library/Internet Plug-Ins, uid=0)
    Sep  5 09:32:38 rbb-mac-pro.home installd[35681]: PackageKit: Extracting file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20I nstaller.pkg#support.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/B10 E70F1-C2AA-4012-9CF8-1AC26239D69D.activeSandbox/Root/Library/Application Support, uid=0)
    Sep  5 09:32:38 rbb-mac-pro.home installd[35681]: PackageKit: prevent user idle system sleep
    Sep  5 09:32:38 rbb-mac-pro.home installd[35681]: PackageKit: suspending backupd
    Sep  5 09:32:38 rbb-mac-pro.home installd[35681]: PackageKit: Executing script "./preinstall" in /private/tmp/PKInstallSandbox.ZhfffK/Scripts/com.adobe.acrobat.reader.11007.reader.app.pk g.en_US.IG3VCZ
    Sep  5 09:32:38 rbb-mac-pro.home install_monitor[35941]: Temporarily excluding: /Applications, /Library, /System, /bin, /private, /sbin, /usr
    Sep  5 09:32:39 rbb-mac-pro.home installd[35681]: ./preinstall: A user is running an instance of Adobe Reader in a browser. Installation failure.
    Sep  5 09:32:39 rbb-mac-pro.home installd[35681]: ./preinstall: Adobe Acrobat Pro or Adobe Reader were found running.
    Sep  5 09:32:39 rbb-mac-pro.home install_monitor[35941]: Re-included: /Applications, /Library, /System, /bin, /private, /sbin, /usr
    Sep  5 09:32:39 rbb-mac-pro.home installd[35681]: PackageKit: releasing backupd
    Sep  5 09:32:39 rbb-mac-pro.home installd[35681]: PackageKit: allow user idle system sleep
    Sep  5 09:32:39 rbb-mac-pro.home installd[35681]: PackageKit: Install Failed: Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”." UserInfo=0x7ffb18538f80 {NSFilePath=./preinstall, NSURL=file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20 XI%20Installer.pkg#application.pkg, PKInstallPackageIdentifier=com.adobe.acrobat.reader.11007.reader.app.pkg.en_US, NSLocalizedDescription=An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”.} {
         NSFilePath = "./preinstall";
         NSLocalizedDescription = "An error occurred while running scripts from the package \U201cAdobe Reader XI Installer.pkg\U201d.";
         NSURL = "file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20XI%20 Installer.pkg#application.pkg";
         PKInstallPackageIdentifier = "com.adobe.acrobat.reader.11007.reader.app.pkg.en_US";
    Sep  5 09:32:39 rbb-mac-pro.home installd[35681]: PackageKit: Running idle tasks
    Sep  5 09:32:39 rbb-mac-pro.home installer[35930]: install:didFailWithError:Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”." UserInfo=0x7fd1ff33ec40 {NSFilePath=./preinstall, NSURL=file://localhost/Volumes/48959e06cea5a2de3d0927bafc535e446b206756/Adobe%20Reader%20 XI%20Installer.pkg#application.pkg, PKInstallPackageIdentifier=com.adobe.acrobat.reader.11007.reader.app.pkg.en_US, NSLocalizedDescription=An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”.}
    Sep  5 09:32:39 rbb-mac-pro.home installd[35681]: PackageKit: Removing client PKInstallDaemonClient pid=35930, uid=0 (/usr/sbin/installer)
    Sep  5 09:32:39 rbb-mac-pro.home installd[35681]: PackageKit: Done with sandbox removals
    Sep  5 09:32:40 rbb-mac-pro.home installd[35681]: PackageKit: Sandbox /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/53D2A2C7-EC8C-44 5E-ABA8-A2F67CA1D1FD.sandbox: relevance 856
    Sep  5 09:32:40 rbb-mac-pro.home installer[35930]: Install failed: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
    Sep  5 09:35:30 rbb-mac-pro.home installer[36035]: Product archive /Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe Reader XI Installer.pkg trustLevel=202
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20I nstaller.pkg#application.pkg
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20I nstaller.pkg#browserPlugin.pkg
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20I nstaller.pkg#support.pkg
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: Set authorization level to root for session
    Sep  5 09:35:31 rbb-mac-pro.home runner[36038]: Administrator authorization granted.
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: Will use PK session
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: Starting installation:
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: Configuring volume "SSD 256G Boot Disk"
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: Preparing disk for local booted install.
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: Free space on "SSD 256G Boot Disk": 7.99 GB (7988830208 bytes).
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.36035YrYxDS"
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: IFPKInstallElement (3 packages)
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: Using authorization level of root for IFPKInstallElement
    Sep  5 09:35:31 rbb-mac-pro.home installd[35681]: PackageKit: Adding client PKInstallDaemonClient pid=36035, uid=0 (/usr/sbin/installer)
    Sep  5 09:35:31 rbb-mac-pro.home installer[36035]: PackageKit: Enqueuing install with boosting
    Sep  5 09:35:31 rbb-mac-pro.home installd[35681]: PackageKit: ----- Begin install -----
    Sep  5 09:35:31 rbb-mac-pro.home installd[35681]: PackageKit: request=PKInstallRequest <3 packages, destination=/>
    Sep  5 09:35:31 rbb-mac-pro.home installd[35681]: PackageKit: packages=(
         "PKLeopardPackage <file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20 Installer.pkg#application.pkg>",
         "PKLeopardPackage <file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20 Installer.pkg#browserPlugin.pkg>",
         "PKLeopardPackage <file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20 Installer.pkg#support.pkg>"
    Sep  5 09:35:31 rbb-mac-pro.home installd[35681]: PackageKit: Will do receipt-based obsoleting for package identifier com.adobe.acrobat.reader.11007.reader.app.pkg.en_US (prefix path=Applications)
    Sep  5 09:35:31 rbb-mac-pro.home installd[35681]: PackageKit: Will do receipt-based obsoleting for package identifier com.adobe.acrobat.reader.11007.reader.browser.pkg.en_US (prefix path=Library/Internet Plug-Ins)
    Sep  5 09:35:31 rbb-mac-pro.home installd[35681]: PackageKit: Will do receipt-based obsoleting for package identifier com.adobe.acrobat.reader.11007.reader.appsupport.pkg.en_US (prefix path=Library/Application Support)
    Sep  5 09:35:32 rbb-mac-pro.home installd[35681]: PackageKit: Extracting file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20I nstaller.pkg#application.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/D23 D9523-A6BD-4DFD-AA3F-1AEE9AC362EF.activeSandbox/Root/Applications, uid=0)
    Sep  5 09:35:33 rbb-mac-pro.home installd[35681]: PackageKit: Extracting file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20I nstaller.pkg#browserPlugin.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/D23 D9523-A6BD-4DFD-AA3F-1AEE9AC362EF.activeSandbox/Root/Library/Internet Plug-Ins, uid=0)
    Sep  5 09:35:33 rbb-mac-pro.home installd[35681]: PackageKit: Extracting file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20I nstaller.pkg#support.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/D23 D9523-A6BD-4DFD-AA3F-1AEE9AC362EF.activeSandbox/Root/Library/Application Support, uid=0)
    Sep  5 09:35:33 rbb-mac-pro.home installd[35681]: PackageKit: prevent user idle system sleep
    Sep  5 09:35:33 rbb-mac-pro.home installd[35681]: PackageKit: suspending backupd
    Sep  5 09:35:33 rbb-mac-pro.home installd[35681]: PackageKit: Executing script "./preinstall" in /private/tmp/PKInstallSandbox.VbuI7L/Scripts/com.adobe.acrobat.reader.11007.reader.app.pk g.en_US.g6ogq4
    Sep  5 09:35:33 rbb-mac-pro.home install_monitor[36045]: Temporarily excluding: /Applications, /Library, /System, /bin, /private, /sbin, /usr
    Sep  5 09:35:34 rbb-mac-pro.home installd[35681]: ./preinstall: A user is running an instance of Adobe Reader in a browser. Installation failure.
    Sep  5 09:35:34 rbb-mac-pro.home installd[35681]: ./preinstall: Adobe Acrobat Pro or Adobe Reader were found running.
    Sep  5 09:35:34 rbb-mac-pro.home install_monitor[36045]: Re-included: /Applications, /Library, /System, /bin, /private, /sbin, /usr
    Sep  5 09:35:35 rbb-mac-pro.home installd[35681]: PackageKit: releasing backupd
    Sep  5 09:35:35 rbb-mac-pro.home installd[35681]: PackageKit: allow user idle system sleep
    Sep  5 09:35:35 rbb-mac-pro.home installd[35681]: PackageKit: Install Failed: Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”." UserInfo=0x7ffb1d2624b0 {NSFilePath=./preinstall, NSURL=file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20 XI%20Installer.pkg#application.pkg, PKInstallPackageIdentifier=com.adobe.acrobat.reader.11007.reader.app.pkg.en_US, NSLocalizedDescription=An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”.} {
         NSFilePath = "./preinstall";
         NSLocalizedDescription = "An error occurred while running scripts from the package \U201cAdobe Reader XI Installer.pkg\U201d.";
         NSURL = "file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20 Installer.pkg#application.pkg";
         PKInstallPackageIdentifier = "com.adobe.acrobat.reader.11007.reader.app.pkg.en_US";
    Sep  5 09:35:35 rbb-mac-pro.home installd[35681]: PackageKit: Running idle tasks
    Sep  5 09:35:35 rbb-mac-pro.home installer[36035]: install:didFailWithError:Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”." UserInfo=0x7fda8d84ffc0 {NSFilePath=./preinstall, NSURL=file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20 XI%20Installer.pkg#application.pkg, PKInstallPackageIdentifier=com.adobe.acrobat.reader.11007.reader.app.pkg.en_US, NSLocalizedDescription=An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”.}
    Sep  5 09:35:35 rbb-mac-pro.home installd[35681]: PackageKit: Removing client PKInstallDaemonClient pid=36035, uid=0 (/usr/sbin/installer)
    Sep  5 09:35:35 rbb-mac-pro.home installd[35681]: PackageKit: Done with sandbox removals
    Sep  5 09:35:35 rbb-mac-pro.home installd[35681]: PackageKit: Sandbox /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/53D2A2C7-EC8C-44 5E-ABA8-A2F67CA1D1FD.sandbox: relevance 854
    Sep  5 09:35:35 rbb-mac-pro.home installer[36035]: Install failed: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
    Sep  5 09:45:53 rbb-mac-pro.home installer[36203]: Product archive /Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe Reader XI Installer.pkg trustLevel=202
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20I nstaller.pkg#application.pkg
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20I nstaller.pkg#browserPlugin.pkg
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20I nstaller.pkg#support.pkg
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: Set authorization level to root for session
    Sep  5 09:45:54 rbb-mac-pro.home runner[36206]: Administrator authorization granted.
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: Will use PK session
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: Starting installation:
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: Configuring volume "SSD 256G Boot Disk"
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: Preparing disk for local booted install.
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: Free space on "SSD 256G Boot Disk": 7.97 GB (7966429184 bytes).
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.36203xXq5rH"
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: IFPKInstallElement (3 packages)
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: Using authorization level of root for IFPKInstallElement
    Sep  5 09:45:54 rbb-mac-pro.home installd[35681]: PackageKit: Adding client PKInstallDaemonClient pid=36203, uid=0 (/usr/sbin/installer)
    Sep  5 09:45:54 rbb-mac-pro.home installer[36203]: PackageKit: Enqueuing install with boosting
    Sep  5 09:45:54 rbb-mac-pro.home installd[35681]: PackageKit: ----- Begin install -----
    Sep  5 09:45:54 rbb-mac-pro.home installd[35681]: PackageKit: request=PKInstallRequest <3 packages, destination=/>
    Sep  5 09:45:54 rbb-mac-pro.home installd[35681]: PackageKit: packages=(
         "PKLeopardPackage <file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20 Installer.pkg#application.pkg>",
         "PKLeopardPackage <file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20 Installer.pkg#browserPlugin.pkg>",
         "PKLeopardPackage <file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20 Installer.pkg#support.pkg>"
    Sep  5 09:45:54 rbb-mac-pro.home installd[35681]: PackageKit: Will do receipt-based obsoleting for package identifier com.adobe.acrobat.reader.11007.reader.app.pkg.en_US (prefix path=Applications)
    Sep  5 09:45:54 rbb-mac-pro.home installd[35681]: PackageKit: Will do receipt-based obsoleting for package identifier com.adobe.acrobat.reader.11007.reader.browser.pkg.en_US (prefix path=Library/Internet Plug-Ins)
    Sep  5 09:45:54 rbb-mac-pro.home installd[35681]: PackageKit: Will do receipt-based obsoleting for package identifier com.adobe.acrobat.reader.11007.reader.appsupport.pkg.en_US (prefix path=Library/Application Support)
    Sep  5 09:45:54 rbb-mac-pro.home installd[35681]: PackageKit: Extracting file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20I nstaller.pkg#application.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/4A6 5B724-F4F8-44D3-83F1-A089D0369C90.activeSandbox/Root/Applications, uid=0)
    Sep  5 09:45:55 rbb-mac-pro.home installd[35681]: PackageKit: Extracting file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20I nstaller.pkg#browserPlugin.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/4A6 5B724-F4F8-44D3-83F1-A089D0369C90.activeSandbox/Root/Library/Internet Plug-Ins, uid=0)
    Sep  5 09:45:55 rbb-mac-pro.home installd[35681]: PackageKit: Extracting file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20I nstaller.pkg#support.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/4A6 5B724-F4F8-44D3-83F1-A089D0369C90.activeSandbox/Root/Library/Application Support, uid=0)
    Sep  5 09:45:55 rbb-mac-pro.home installd[35681]: PackageKit: prevent user idle system sleep
    Sep  5 09:45:55 rbb-mac-pro.home installd[35681]: PackageKit: suspending backupd
    Sep  5 09:45:55 rbb-mac-pro.home installd[35681]: PackageKit: Executing script "./preinstall" in /private/tmp/PKInstallSandbox.nzFhDo/Scripts/com.adobe.acrobat.reader.11007.reader.app.pk g.en_US.ZoZ7nT
    Sep  5 09:45:55 rbb-mac-pro.home install_monitor[36207]: Temporarily excluding: /Applications, /Library, /System, /bin, /private, /sbin, /usr
    Sep  5 09:45:57 rbb-mac-pro.home installd[35681]: ./preinstall: A user is running an instance of Adobe Reader in a browser. Installation failure.
    Sep  5 09:45:57 rbb-mac-pro.home installd[35681]: ./preinstall: Adobe Acrobat Pro or Adobe Reader were found running.
    Sep  5 09:45:57 rbb-mac-pro.home install_monitor[36207]: Re-included: /Applications, /Library, /System, /bin, /private, /sbin, /usr
    Sep  5 09:45:57 rbb-mac-pro.home installd[35681]: PackageKit: releasing backupd
    Sep  5 09:45:57 rbb-mac-pro.home installd[35681]: PackageKit: allow user idle system sleep
    Sep  5 09:45:57 rbb-mac-pro.home installd[35681]: PackageKit: Install Failed: Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”." UserInfo=0x7ffb18623250 {NSFilePath=./preinstall, NSURL=file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20 XI%20Installer.pkg#application.pkg, PKInstallPackageIdentifier=com.adobe.acrobat.reader.11007.reader.app.pkg.en_US, NSLocalizedDescription=An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”.} {
         NSFilePath = "./preinstall";
         NSLocalizedDescription = "An error occurred while running scripts from the package \U201cAdobe Reader XI Installer.pkg\U201d.";
         NSURL = "file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20XI%20 Installer.pkg#application.pkg";
         PKInstallPackageIdentifier = "com.adobe.acrobat.reader.11007.reader.app.pkg.en_US";
    Sep  5 09:45:57 rbb-mac-pro.home installd[35681]: PackageKit: Running idle tasks
    Sep  5 09:45:57 rbb-mac-pro.home installer[36203]: install:didFailWithError:Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”." UserInfo=0x7ff9a57575c0 {NSFilePath=./preinstall, NSURL=file://localhost/Volumes/45c3be4d73a4c26b0993d5a1b5aa0773f32307ed/Adobe%20Reader%20 XI%20Installer.pkg#application.pkg, PKInstallPackageIdentifier=com.adobe.acrobat.reader.11007.reader.app.pkg.en_US, NSLocalizedDescription=An error occurred while running scripts from the package “Adobe Reader XI Installer.pkg”.}
    Sep  5 09:45:57 rbb-mac-pro.home installd[35681]: PackageKit: Removing client PKInstallDaemonClient pid=36203, uid=0 (/usr/sbin/installer)
    Sep  5 09:45:57 rbb-mac-pro.home installd[35681]: PackageKit: Done with sandbox removals
    Sep  5 09:45:57 rbb-mac-pro.home installd[35681]: PackageKit: Sandbox /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/53D2A2C7-EC8C-44 5E-ABA8-A2F67CA1D1FD.sandbox: relevance 846
    Sep  5 09:45:58 rbb-mac-pro.home installer[36203]: Install failed: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdated (200)[180]: BackgroundActivity: Starting Background Check Activity
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: Automatic check parameters: autoDownload=YES, autoConfigData=YES, autoCriticalInstall=YES
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: Fired early. Should check=FALSE (i=86280.000000, l=2014-09-04 17:54:40 +0000) (A/C=YES)
    Sep  5 10:56:00 --- last message repeated 1 time ---
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: 1 user-visible product(s): 031-05873
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: 0 enabled config-data product(s):  (want active updates only)
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdated (200)[180]: BackgroundActivity: Starting background actions
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdated (200)[180]: BackgroundActivity: Finished Background Check Activity
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdate_notify_agent (501)[37557]: softwareupdate_notify_agent[uid=501]: Running for UpdatesAvailable
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdate_notify_agent (501)[37557]: AssertionMgr: Take com.apple.softwareupdate.NotifyAgentAssertion assertion with type BackgroundTask for pid 37557
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdated (200)[180]: Adding client SUUpdateServiceClient pid=37557, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_notify_agent)
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdate_notify_agent (501)[37557]: softwareupdate_notify_agent[uid=501]: Notifying with params: {
         SoftwareUpdateCount = 1;
         SoftwareUpdatesAvailable = 1;
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdate_notify_agent (501)[37557]: softwareupdate_notify_agent[uid=501]: appstoreupdateagent notified
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdate_notify_agent (501)[37557]: AssertionMgr: Cancel com.apple.softwareupdate.NotifyAgentAssertion assertion for pid 37557
    Sep  5 10:56:00 rbb-mac-pro.home softwareupdated (200)[180]: Removing client SUUpdateServiceClient pid=37557, uid=501, installAuth=NO rights=(), transactions=0 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_notify_agent)
    Sep  5 14:17:54 rbb-mac-pro.home softwareupdated (200)[180]: BackgroundActivity: Starting Background Check Activity
    Sep  5 14:17:54 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: Automatic check parameters: autoDownload=YES, autoConfigData=YES, autoCriticalInstall=YES
    Sep  5 14:17:54 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: Should Check=YES (i=86280.000000, l=2014-09-04 17:54:40 +0000) (A/C=YES)
    Sep  5 14:17:54 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: Fire periodic check for interval
    Sep  5 14:17:54 rbb-mac-pro.home softwareupdated (200)[180]: BackgroundActivity: Starting background actions
    Sep  5 14:17:54 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: checking for updates
    Sep  5 14:17:54 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: Scan for client pid 180 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated)
    Sep  5 14:17:56 rbb-mac-pro.home softwareupdated (200)[180]: SoftwareUpdate: Using catalog https://swscan.apple.com/content/catalogs/others/index-10.9-mountainlion-lion-snowleopard- leopard.merged-1.sucatalog.gz
    Sep  5 14:17:56 rbb-mac-pro.home softwareupdated (200)[180]: Added 1267 PPD versions for /Library/Printers/PPDs/Contents/Resources from cache as of 2014-09-03 22:15:49 +0000
    Sep  5 14:18:06 rbb-mac-pro.home softwareupdated (200)[180]: JS: 10.9.4
    Sep  5 14:18:06 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:06 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:06 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_Help does not require an update.
    Sep  5 14:18:06 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:06 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:06 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_Utility does not require an update.
    Sep  5 14:18:06 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:06 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_MonochromeLaser does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_Common does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_Help does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_ICA does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_MonochromeLaser does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_Utility does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_Common does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_ICA does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_Common does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_Help does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_ICA does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_MonochromeLaser does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_Utility does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_Common does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_Help does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_ICA does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_MonochromeLaser does not require an update.
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7840W
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:Brother;MODEL:MFC-7860DW
    Sep  5 14:18:07 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer Brother_Utility does not require an update.
    Sep  5 14:18:10 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:10 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:10 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Cmd2HP does not require an update.
    Sep  5 14:18:10 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:10 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:10 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_DriverCore does not require an update.
    Sep  5 14:18:10 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:10 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:10 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_PS3 does not require an update.
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_ImageEnhancement1 does not require an update.
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorsePDM does not require an update.
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Chuckwalla does not require an update.
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorsePL does not require an update.
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_DMF4 does not require an update.
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Fax2 does not require an update.
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorse does not require an update.
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_PSS does not require an update.
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Scan3 does not require an update.
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorsePSF does not require an update.
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorse does not require an update.
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:11 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorsePDM does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorsePIL1 does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorsePL does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorsePSF does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Chuckwalla does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Cmd2HP does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_DMF4 does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_DriverCore does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Fax2 does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_ImageEnhancement1 does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_PS3 does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_PSS does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Pdf2Pdf2 does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Scan3 does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorsePIL1 does not require an update.
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:12 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Pdf2Pdf2 does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorse does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorsePDM does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorsePIL1 does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorsePL does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_CHorsePSF does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Chuckwalla does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Cmd2HP does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_DMF4 does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_DriverCore does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Fax2 does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_ImageEnhancement1 does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_PS3 does not require an update.
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:13 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_PSS does not require an update.
    Sep  5 14:18:14 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:Color LaserJet 2605
    Sep  5 14:18:14 rbb-mac-pro.home softwareupdated (200)[180]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP Color LaserJet 2605
    Sep  5 14:18:14 rbb-mac-pro.home softwareupdated (200)[180]: JS: Printer HP_Pdf2Pdf2 do

  • Message failing in SXMB_moni----Error while reading from the secure store

    Hi,
    The scenario is as below
    A file is picked up from a folder and processed to enrich it.This enriched file is then written back in a different folder.
    The message is failing in sxmb_moni while trying to write the file in the folder.
    The PI system is a system copy of another system and few of the configuration objects are transported through a tpz file to this PI system.The file receiver channel used to write this file is also transported through this tpz file.
    Below is the error seen in moni.:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?><!-- Call Adapter --> <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1"><SAP:Category>XIServer</SAP:Category><SAP:Code area="INTERNAL">AE_DETAILS_GET_ERROR</SAP:Code><SAP:P1/><SAP:P2/><SAP:P3/><SAP:P4/><SAP:AdditionalText>Error while reading from the secure store: ERROR_U: No service user password found for Adapter Engine</SAP:AdditionalText><SAP:Stack>Error while reading access data (URL, user, password) for the Adapter Engine
    </SAP:Stack><SAP:Retry>M</SAP:Retry></SAP:Error>
    Below is Trace log:
    <Trace level="1" type="B" name="PLSRV_CALL_ADAPTER"></Trace><!-- ************************************ -->
    <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV"></Trace><!-- ************************************ -->
    <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV_LOCAL"></Trace><!-- ************************************ -->
    <Trace level="1" type="B" name="CL_XMS_PLSRV_IE_ADAPTER-ENTER_PLSRV">
    <Trace level="1" type="B" name="CL_XMS_PLSRV_CALL_XMB-CALL_XMS_HTTP"></Trace><!-- ************************************ -->
    <Trace level="1" type="T">error reading secstore:Error while reading from the secure store: ERROR_UNKNOWN: System-dependent data for entry  changed:  / (SECSTORE,031) </Trace>
    <Trace level="1" type="System_Error">Error while reading access data (URL, user, password) for the Adapter Engine  </Trace>
    </Trace>
    </Trace>
    <Trace level="1" type="System_Error">Error exception return from pipeline processing! </Trace>
    <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_TO_PERSIST"></Trace><!-- ************************************ -->
    Is this because  PI system is a system copy of another system ?
    Regards,
    Sneha

    Error while reading access data (URL, user, password) for the Adapter Engine
    Check out Michal's reply:
    Re: URL for Central Adapter Engine
    As you said there was a system copy it may be the case that some things were not configured properly

Maybe you are looking for

  • Refreshing iViews

    hi all, i am having a scenario like this. i have two iViews both having tableViews. i am selecting multiple rows in the first iView and clicking the button. the selected rows has to be displayed in the second iview which has tableView. i dont want th

  • How to support non alphanumeric characters when using WORLD_LEXER?

    BASIC_LEXER has an attribute of printjoins which we can specify the non alphanumberic characters as normal alphanumberic in query and included with the token. However, WORLD_LEXER doesn't have this attribute. So in order to use some non alphanumberic

  • Lsmw to upload master data

    Hi, if we want to upload master data  for example customer master data,vendor master data and material master data. then which one is the best method  lsmw or BDC ? if we use lsmw then we need to use recording or direct input program. what will be th

  • Essbase and Shared Services

    Hi everyone, I have installed the complete EPM suite on a single machine. All the products work fine and everyting is configured correctly (according to the CONFIGURATOR) but I can't see Essbase in Shared Services? When I expand the Application Group

  • Comment être sûr de la configuration de ma camera pour skype, comment être sûr de la configuration de ma camera pour skype

    quel doit être le  nom du driver de la  camera " built in " ?  merci