MM initialization tables

Hi Experts,
I have a poroblem with the inventory scenario in BW. We have the data loaded in BW. The problem is that we have to add another field to the cube and we have to load again.We have loaded goods movements 2LIS_03_BF data in a DSO but we haven't in BW 2LIS_03_BX data and neither in PSA.
We are thinking to init the MC03BX0SETUP table in R3 and to load 2LIS_03_BX data from R3 but load 2LIS_03_BF old data movements from the ODS in BW. So, we avoid to recalculate movements again in R3 because we would need some weeks to finish the process.
Tha question is that we are not sure if the process would works correctly because initial stock data would not be the same than the first time we calculate but we think It would works. I have done some test in development system and it works.
Could you give me any advise or confirm it would works?
Thanks.
Isaac.

Hi Issac,
        Some of my questions related to your requirement.
ODS you have in BI is standard or write optimized ODS. Does your DSO contains all fields required for loading the cube ie the fields used in standard routines of inventory cube including ROCANCEL field.
If yes you can take an outage and pull bf delta and ensure that you have movements as of now.(R3 and bi in sink)
Delete inventory cube and load freshly as below.
Load BX Freshly from R3 to BI inventory cube - Compress as marker
Load UM data for current period from R3 freshly if your business have revaluation. Compress as No Marker
After outage
Load BF from DSO you have in BI to inventory cube and compress all of them as no marker(Reason : BX contains values as of now)
All New deltas - Marker compression
Check them and let me know if you have further questions
Thanks,
Arun

Similar Messages

  • Dynamic Initialization of PL/SQL collection ...

    Hi,
    I trying to initialize table type using execute immediate but get the following error:
    DECLARE
         TYPE SCHEMA_LIST IS TABLE OF ALL_USERS.USERNAME%TYPE;
         L_SCHEMAS SCHEMA_LIST;
    BEGIN
    EXECUTE IMMEDIATE ' BEGIN :b1 := SCHEMA_LIST ('''||FN_GET_CONFIGVALUE ('PRAM1')||'''); END; ' USING OUT L_SCHEMAS;
    FOR L_IDX IN L_SCHEMAS.FIRST..L_SCHEMAS.LAST LOOP
    DBMS_OUTPUT.PUT_LINE
                   L_SCHEMAS(L_IDX)
    END LOOP;
    END;
    ERROR at line 7:
    ORA-06550: line 7, column 138:
    PLS-00457: expressions have to be of SQL types
    ORA-06550: line 7, column 9:
    PL/SQL: Statement ignored
    The function FN_GET_CONFIGVALUE ('PRAM1') which takes one input parameter would return a comma seperated list which I would then initialize to the table type.
    Any Idea ?
    Thanks !
    Pat

    Patza,
    It seems one cannot initialize( i.e. "USING" and "RETURNING" ) index-table, record and boolean-type expressions in dynamic SQL, only true PL/SQL expressions can be used. Since you are trying to initialize a table type, this is where the problem lies. If I may suggest, perhaps accepting the output in some alternative way (i.e. variables or somesuch) might fix the problem.
    Kindest regards,
    Stefan
    Message was edited by:
    Stefan Bexkens

  • How do I add a new row to an AbstractTableModel?

    I'm having an issue with adding new data to a table row. Every row I add contains the same data which is always the last data I grabbed from my database. I'm not sure if my issue has to do with how I set up the data to be passed or the table itself or both... Any help would be appreciated. It seems like the tablemodel is holding the memory spot ArrayList I'm passing. If I have to set up an arraylist of arraylists, to pass how do I do that?
    My output is always:
    1,4,Laser,10,120,100
    1,4,Laser,10,120,100
    1,4,Laser,10,120,100
    1,4,Laser,10,120,100
    Desired output:
    1,1,Beam,10,99,100
    1,2,Canon,10,120,100
    1,3,Missile,10,66,100
    1,4,Laser,10,120,100
         * Extract weaponIDs by hullType from weapon database
    private void setWeapons(int hullType){
    // equpModel is the tableModel
        equipModel.clearTable();
        Weapon tempWeapon = new Weapon();
        ArrayList newData = new ArrayList();
        for (Iterator <Weapon> i = dataBaseManager.weaponList.iterator(); i.hasNext(); ){
            tempWeapon = i.next();
            if (tempWeapon.weaponClass == hullType){
                newData.add(0,1);
                newData.add(1,tempWeapon.weaponID);
                newData.add(2,tempWeapon.weaponName);
                newData.add(3,tempWeapon.weaponCps);
                newData.add(4,tempWeapon.weaponMass);
                newData.add(5,tempWeapon.weaponCost);
                equipModel.insertRow(newData);
    }Here is a snipet from the table class
    public class GenTableModel extends AbstractTableModel {
      private ArrayList data; // Holds the table data
      private String[] columnNames; // Holds the column names.
       * Constructor: Initializes the table structure, including number of columns
       * and column headings. Also initializes table data with default values.
       * @param columnscolumns[] array of column titles.
       * @param defaultvdefaultv array of default value objects, for each column.
       * @param rowsrows number of rows initially.
      public GenTableModel(String[] columns, Object[] defaultv, int rows) {
        // Initialize number of columns and column headings
        columnNames = new String[ columns.length ];
        for(int i = 0; i < columns.length; i++) {
          columnNames [ i ] = new String(columns [ i ]);
        // Instantiate Data ArrayList, and fill it up with default values
        data = new ArrayList();
        for(int i = 0; i < rows; i++) {
          ArrayList cols = new ArrayList();
          for(int j = 0; j < columns.length; j++) {
            cols.add(defaultv [ j ]);
          data.add(cols);
       * Adds a new row to the table.
       * @param newrowArrayList new row data
      public void insertRow(ArrayList newrow) {     
        data.add(newrow);
        super.fireTableDataChanged();
       * Clears the table data.
      public void clearTable() {
        data = new ArrayList();
        super.fireTableDataChanged();
    }

    Hi thanks again for responding
    Here is the Initialization, including the panel and scrollpane it sits on.
          // Table attempt
            JPanel tablePanel = new JPanel(new BorderLayout());
            tablePanel.setBounds(PANEL_X+2*PANEL_DISTANCE, PANEL_Y, PANEL_WIDTH+300, PANEL_HEIGHT);
            title = BorderFactory.createTitledBorder(blackLine, "Table List");
            tablePanel.setBorder(title);
    // This is column tile plus one dummy initilization set.
            String[] columnNames = {"DB", "ID", "Name", "CPS", "Energy", "Mass", "Cost"};
            Object[] data = {new Integer(0),new Integer(0), "Empty", new Integer(0),
                        new Integer(0),new Integer(0),new Integer(0)};
    // here is the GenTableModel creation
            equipModel = new GenTableModel(columnNames, data, 1);
            equipmentTable = new JTable(equipModel);
            equipmentTable.setRowSelectionAllowed(true);
            equipmentTable.setFillsViewportHeight(true);
            equipmentTable.setColumnSelectionAllowed(false);
            TableColumn column = null;
            column = equipmentTable.getColumnModel().getColumn(0);
            column.setPreferredWidth(20);
            column = equipmentTable.getColumnModel().getColumn(1);
            column.setPreferredWidth(20);
            JScrollPane scrollPane = new JScrollPane(equipmentTable);
            tablePanel.add(scrollPane);
            add(tablePanel);
        Here is the full code for GenTableModel. It is as you guessed.
    public class GenTableModel extends AbstractTableModel {
      private ArrayList data; // Holds the table data
      private String[] columnNames; // Holds the column names.
      public GenTableModel(String[] columns, Object[] defaultv, int rows) {
        // Initialize number of columns and column headings
        columnNames = new String[ columns.length ];
        for(int i = 0; i < columns.length; i++) {
          columnNames [ i ] = new String(columns [ i ]);
        // Instantiate Data ArrayList, and fill it up with default values
        data = new ArrayList();
        for(int i = 0; i < rows; i++) {
          ArrayList cols = new ArrayList();
          for(int j = 0; j < columns.length; j++) {
            cols.add(defaultv [ j ]);
          data.add(cols);
      public int getColumnCount() {
        return columnNames.length;
      public int getRowCount() {
        return data.size();
      public String getColumnName(int col) {
        return columnNames [ col ];
      public Object getValueAt(int row, int col) {
        ArrayList colArrayList = (ArrayList) data.get(row);
        return colArrayList.get(col);
      public Class getColumnClass(int col) {
        // If value at given cell is null, return default class-String
        return getValueAt(0, col) == null ? String.class
                                          : getValueAt(0, col).getClass();
      public void setValueAt(Object obj, int row, int col) {
        ArrayList colArrayList = (ArrayList) data.get(row);
        colArrayList.set(col, obj);
      public void insertRow(ArrayList newrow) {     
        data.add(newrow);
        super.fireTableDataChanged();
      public void deleteRow(int row) {
        data.remove(row);
        super.fireTableDataChanged();
      public void deleteAfterSelectedRow(int row) {
        int size = this.getRowCount();
        int n = size - (row + 1);
        for(int i = 1; i <= n; i++) {
          data.remove(row + 1);
        super.fireTableDataChanged();
      public ArrayList getRow(int row) {
        return (ArrayList) data.get(row);
      public void updateRow(ArrayList updatedRow, int row) {
        data.set(row, updatedRow);
        super.fireTableDataChanged();
      public void clearTable() {
        data = new ArrayList();
        super.fireTableDataChanged();
    }

  • Make movement type relevant for BW Purchasing Extractor

    How do I make a movement type relevant for a Purchasing extractor? Specifically 2lis_02_SGR.
    The SAP functional team (I am on the BW team) started using movement type 161 and 162 for goods receipts. They set up the movement type in OMJJ in ECC. But it does not flow into BW via the 2lis_02_SGR extractor.
    I went into the Transaction Key for BW and added 161 and 162 and now they show up in the table - V_TMCLVBW / TMCLVBW, but they are not flagged as statistically relevant. I have tried to go to tcodes MCB0 and MCB_ but get an SAP error "
    View/table V_TMCLBW can only be displayed and maintained with restrictions
    " and I do not know what this means or how to get past it so I can edit the table.
    I have tried resetting up the initialization tables for Purchasing, but the movement types still do not come in the extractor. I think this is because the table still does not have these movement types flagged as statistically relevant.
    Thanks
    Jeff

    I have gotten a developers key, so I was able to make V_TMCLVBW editable via MCB_ but this still brings me back to the change view for transaction key maintenance for transfer into BW. But I still can not figure out how to make the movement types relevant for BW.

  • Module Pool Programming - Calling SAP Standard Text Screen

    Hi Gurus
    I am working on Module Pool Programming...In the one of the screen there is a column named "Description"  where I need to keep a Button to call a SAP standard text editing screen and what ever information I enter in the field should be downloadable
    is this option possible?If so...Plz send me the Sample code
    Thanks
    Ganesh

    Hi Gani,
    I can help you till getting the text editor in your module pool program.
    TOP
    PROGRAM  ZREDDY_TEXT.
    constants: line_length type i value 132.
       data:
    reference to wrapper class of control
       g_editor type ref to cl_gui_textedit,
    reference to custom container: necessary to bind TextEdit Control
       g_editor_container type ref to cl_gui_custom_container,
       g_repid like sy-repid,                        " getting program name
       g_ok_code like sy-ucomm,                " return code from screen
       g_mytable(132) type c occurs 0,        " getting the text of table
       g_mycontainer(30) type c,                " string for the containers
       v_result(256) type c,                        " getting the text of table control
       gw_thead like thead,                        " for header information
       it_line type table of tline with header line. " internal table of type tline
    PBO
    MODULE STATUS_0900 OUTPUT.
      SET PF-STATUS 'ZTEXT'.
    SET TITLEBAR 'xxx'.
    if g_editor is initial.
    create control container
       create object g_editor_container
       exporting
       container_name = 'CUSTOM_CONTROL' " Make sure when you create custom container in layout give name as Custom container
       exceptions
       cntl_error = 1
       cntl_system_error = 2
       create_error = 3
       lifetime_error = 4
       lifetime_dynpro_dynpro_link = 5.
       g_mycontainer = 'CUSTOM_CONTROL'.
    create calls constructor, which initializes, creates and links
    TextEdit Control
      create object g_editor
       exporting
       parent = g_editor_container
       wordwrap_mode =
    cl_gui_textedit=>wordwrap_off
       cl_gui_textedit=>wordwrap_at_fixed_position
    cl_gui_textedit=>WORDWRAP_AT_WINDOWBORDER
       wordwrap_position                      = line_length
       wordwrap_to_linebreak_mode     = cl_gui_textedit=>true.
       refresh g_mytable.  " to initialize table upon OK_CODE 'BACK' at PAI
       endif.
    ENDMODULE.                 " STATUS_0900  OUTPUT
    Cheers!!
    Balu
    Edited by: Balu CH on Oct 22, 2008 8:55 PM

  • Handling sessions in BDC

    Hi all,
             What do we code to create a new session in BDC Call transaction method.
             Let me explain the situation in brief.
        I have an issue where in i need to upload 5000 records. As per requirement i am supposed to upload only 1000 per session. Please let me know how to create new session dynamically and move the processed data to sessions. And also let me know how to handle the errors in those records after processing 500 records.
           I know that Message_format is the FM to know to errors but I need to handle them dynamically.
    Guess we need to go by session method to handle errors but how to do that dynamically.
    Thanks and Regards
    Amit.

    Hi Amit,
    Suppose all your records are in table infile.
    Keep a counter such that when each record in the table is processed, the counter is incremented.
    When 1000 records are processed, call the insert bdc function. Reset the function.
    Thus dynamically you create 5 sessions if there are five records.
    In the following table, I am creating bdc sessions for the transaction FBV1. It has two screens.
    1000 for the first screen(header details) and 3000 for all other records(line item details)
    LOOP AT infile.
        PERFORM create_bdc.
    ENDLOOP.
    IF abend_job = false.
        PERFORM format_scrn_0300_last.
        PERFORM insert_bdcdata.
      ENDIF.
    form create_bdc.
       sy-subrc = 0.
      IF new_bdc EQ true.
        PERFORM open_bdc.
        IF abend_job = true.
          EXIT.
        ENDIF.
      ENDIF.
      IF first_time = true.
        CLEAR ba_cnt_tab.
        PERFORM format_scrn_0100. /* to process first screen
        PERFORM format_break_fields.
      ELSEIF detail_rec_cnt = 999. /* When the number of records is 999 process the last record and insert the session
        PERFORM format_scrn_0300_last.
        PERFORM insert_bdcdata.
        IF abend_job = false.
          MOVE: true TO bdc_tab_created.
          PERFORM format_scrn_0100. /* Again call the header screen and put the header details.
          PERFORM format_break_fields.
        ENDIF.
      ELSE.
        PERFORM format_scrn_0300_detail. /* Processing of Details records otherwise.
        PERFORM format_break_fields.
      ENDIF.
      IF abend_job = false.
        IF first_time = true.
          MOVE: true          TO bdc_tab_created,
                false         TO first_time.
        ENDIF.
      ELSE.
        EXIT.
      ENDIF.
    ENDFORM.
    Format Break Fields
    FORM format_break_fields.
    This form format fields necessary for breaking logic and postions
    the BA_CNT_TAB at the Business Area being processed.
      MOVE: infile-cost_center   TO prev_cost_center,
            infile-business_area TO prev_business_area,
            infile-amount        TO prev_amount,
            infile-dollar_amt    TO prev_dollar_amt,
            infile-order+2(12)   TO prev_order,
            infile-wbs_element   TO prev_wbs_element,
            infile-text          TO prev_text,
            infile-due_on_date   TO prev_due_on_date.
      SHIFT prev_order LEFT DELETING LEADING space.
    ENDFORM.
    format screen 0100
    FORM format_scrn_0100.
    This form contains the logic to create screen 0100
      sy-subrc = 0.
      IF ba_cnt_tab-business_area NE infile-business_area.
    Position BA_CNT_TAB at business area currently processing.
        LOOP AT ba_cnt_tab.
          IF ba_cnt_tab-business_area = infile-business_area.
            EXIT.
          ENDIF.
        ENDLOOP.
      ENDIF.
      PERFORM dynpro_saplf040_0100 USING infile-post_key infile-accnt.
    ENDFORM.
    FORMAT SCREEN 0300 FOR LAST DETAIL
    FORM format_scrn_0300_last.
    This form formats the last detail screen 0300 and a phantom entry
    if needed.  Screen 0002 is also formatted for each 0300.
      ADD: prev_dollar_amt TO phantom_accum,
           1               TO detail_rec_cnt.
      IF prev_dollar_amt GT 0.
        ADD: prev_dollar_amt TO amt_debit_added.
      ELSE.
        ADD: prev_dollar_amt TO amt_credit_added.
      ENDIF.
      IF detail_rec_cnt LT ba_cnt_tab-rec_cnt.
        IF phantom_accum LT 0.
    Reverse posting key since being posted as an offset to the accumulated
    Amount.
          MOVE debit_pk TO posting_key.
          num_data = phantom_accum * -1.
        ELSE.
          MOVE credit_pk  TO posting_key.
          num_data = phantom_accum.
        ENDIF.
        PERFORM dynpro_saplf040_0300 USING prev_amount prev_text
          prev_due_on_date posting_key phantom_accnt.
        PERFORM dynpro_saplkacb_0002 USING prev_cost_center
          prev_business_area prev_order prev_wbs_element.
        MOVE num_data TO char_data.
        PERFORM dynpro_saplf040_0300 USING char_data '' '' '' ''.
        PERFORM bdc_value USING 'BDC_OKCODE' post.
        PERFORM dynpro_saplkacb_0002 USING ' ' prev_business_area ' ' ' '.
      ELSE.
        PERFORM dynpro_saplf040_0300 USING prev_amount prev_text
          prev_due_on_date '' ''.
        PERFORM bdc_value USING 'BDC_OKCODE' post.
        PERFORM dynpro_saplkacb_0002 USING prev_cost_center
          prev_business_area prev_order prev_wbs_element.
      ENDIF.
      CLEAR:       detail_rec_cnt,
                   phantom_accum.
    ENDFORM.
    FORMAT DETAIL FOR SCREEN 0300
    FORM format_scrn_0300_detail.
    This FORM formats screen 0300 for a detail record along with its
    screen 0002
      ADD: prev_dollar_amt TO phantom_accum.
      PERFORM dynpro_saplf040_0300 USING prev_amount prev_text
        prev_due_on_date infile-post_key infile-accnt.
      PERFORM dynpro_saplkacb_0002 USING prev_cost_center
        prev_business_area prev_order prev_wbs_element.
      IF prev_dollar_amt LT 0.
        ADD: prev_dollar_amt TO amt_credit_added.
      ELSE.
        ADD: prev_dollar_amt TO amt_debit_added.
      ENDIF.
      ADD: 1               TO detail_rec_cnt.
    ENDFORM.
    Dynpro for program SAPMF05A  Screen 0100
    FORM dynpro_saplf040_0100 USING post_key post_accnt.
    This FORM formats SCREEN 0100
    This PERFORM is done once for each screen.
      PERFORM bdc_dynpro USING 'SAPLF040' '0100'.
    This PERFORM is done as many times as there are fields to be
    populated for the screen being processed.
      PERFORM bdc_value  USING 'BKPF-BLDAT' header-doc_mdy.
      PERFORM bdc_value  USING 'BKPF-BUDAT' header-post_mdy.
      PERFORM bdc_value  USING 'BKPF-BLART' header-doc_type.
      PERFORM bdc_value  USING 'BKPF-BUKRS' header-company_code.
      PERFORM bdc_value  USING 'BKPF-MONAT' header-period.
      PERFORM bdc_value  USING 'BKPF-WAERS' header-currency.
      PERFORM bdc_value  USING 'BKPF-XBLNR' header-reference_doc.
      PERFORM bdc_value  USING 'BKPF-BKTXT' header-text.
    *Begin of change by Priya Vasudevan for including checkbox
    PERFORM BDC_VALUE  USING 'VBKPF-XBWAE' CONTROL.
    *End of change
      IF header-rate NE space.
        PERFORM bdc_value USING 'BKPF-KURSF' header-rate.
      ENDIF.
      IF header-translation_date NE space.
        PERFORM bdc_value USING 'BKPF-WWERT' header-translation_date.
      ENDIF.
      PERFORM bdc_value  USING 'RF05V-NEWBS' post_key.
      PERFORM bdc_value  USING 'RF05V-NEWKO' post_accnt.
    ENDFORM.
    Dynpro for program SAPLF040  Screen 0300
    FORM dynpro_saplf040_0300 USING amount text due_on_date
                                    post_key post_accnt.
    This FORM formats SCREEN 0300
    This PERFORM is done once for each screen.
      PERFORM bdc_dynpro USING 'SAPLF040' '0300'.
    This PERFORM is done as many times as there are fields to be
    populated for the screen being processed.
      PERFORM bdc_value  USING 'BSEG-WRBTR' amount.
    *Begin of change by Priya Vasudevan for addition of assign no and tax .
    PERFORM BDC_VALUE  USING 'BSEG-ZUONR' ASSIGNMENT_NUMBER.
    PERFORM BDC_VALUE  USING 'BKPF-XMWST' TAX_CALCULATE.
    *End of change
      PERFORM bdc_value  USING 'RF05V-NEWBS' post_key.
      PERFORM bdc_value  USING 'RF05V-NEWKO' post_accnt.
      IF due_on_date NE space.
        PERFORM bdc_value USING 'BSEG-ZFBDT' due_on_date.
      ENDIF.
      IF text NE space.
        PERFORM bdc_value USING 'BSEG-SGTXT' text.
      ENDIF.
    ENDFORM.
    Dynpro for program SAPLKACB  Screen 0002
    FORM dynpro_saplkacb_0002 USING cost_center business_area order wbs.
    This FORM formats SCREEN 0002 WHICH IS A POP-UP SCREEN
    THAT DOES NOT APPEAR DURING ON-LINE PROCESSING
    This PERFORM is done once for each screen.
      PERFORM bdc_dynpro USING 'SAPLKACB' '0002'.
    This PERFORM is done as many times as there are fields to be
    populated for the screen being processed.
      IF cost_center NE space.
        PERFORM bdc_value  USING 'COBL-KOSTL' cost_center.
      ENDIF.
      IF business_area NE space.
        PERFORM bdc_value  USING 'COBL-GSBER' business_area.
      ENDIF.
      IF order NE space.
        PERFORM bdc_value USING 'COBL-AUFNR' order.
      ENDIF.
      IF wbs NE space.
        PERFORM bdc_value USING 'COBL-PS_PSP_PNR'  wbs.
      ENDIF.
    ENDFORM.
    BDC Dynpro
    FORM bdc_dynpro USING pgm scrn.
    This FORM formats the transaction that tells the BDC which screen is
    to be populated.
      CLEAR bdc_tab.
      MOVE: pgm             TO bdc_tab-program,
            scrn            TO bdc_tab-dynpro,
            begin           TO bdc_tab-dynbegin.
      APPEND bdc_tab.
    ENDFORM.
    BDC Value
    FORM bdc_value USING field val.
    This FORM tells the BDC which field is to be populated and the value
    to use.
      CLEAR bdc_tab.
      MOVE: field           TO bdc_tab-fnam,
            val             TO bdc_tab-fval.
      APPEND bdc_tab.
    ENDFORM.
    FORM open_bdc.
    This routine opens the BDC data file
      sy-subrc = 0.
      CALL FUNCTION 'BDC_OPEN_GROUP'
           EXPORTING
                client              = sy-mandt
                group               = group_name
                keep                = 'X'
                user                = sy-uname
           EXCEPTIONS
                client_invalid      = 1
                destination_invalid = 2
                group_invalid       = 3
                group_is_locked     = 4
                holddate_invalid    = 5
                internal_error      = 6
                queue_error         = 7
                running             = 8
                system_lock_error   = 9
                user_invalid        = 10
                OTHERS              = 11.
      IF sy-subrc NE 0.
        MOVE: true TO abend_job.
        CASE sy-subrc.
          WHEN 01.
            PERFORM process_msg USING '109' sy-mandt 'BDC OPEN' ''.
          WHEN 02.
            PERFORM process_msg USING '109' 'BDC OPEN' '' ''.
          WHEN 03.
            PERFORM process_msg USING '111' 'BDC OPEN' '' ''.
          WHEN 04.
            PERFORM process_msg USING '124' 'BDC OPEN' '' ''.
          WHEN 05.
            PERFORM process_msg USING '112' 'BDC OPEN' '' ''.
          WHEN 06.
            PERFORM process_msg USING '113' 'BDC OPEN' '' ''.
          WHEN 07.
            PERFORM process_msg USING '114' 'BDC OPEN' '' ''.
          WHEN 08.
            PERFORM process_msg USING '115' 'BDC OPEN' '' ''.
          WHEN 09.
            PERFORM process_msg USING '125' 'BDC OPEN' '' ''.
          WHEN 10.
            PERFORM process_msg USING '116' 'BDC OPEN' '' ''.
          WHEN 11.
            PERFORM process_msg USING '126' 'BDC OPEN' '' ''.
        ENDCASE.
      ELSE.
        MOVE: true TO bdc_openned,
              false TO new_bdc.
      ENDIF.
    ENDFORM.
    Insert BDC data
    FORM insert_bdcdata.
    This routine inserts a scenario into the BDC batch session.
    Add the actual value of the particular Transaction code relevant
    to the scenario being processed for the constant TRANS_CODE.
      sy-subrc = 0.
      CALL FUNCTION 'BDC_INSERT'
           EXPORTING
                tcode          = trans_code
           TABLES
                dynprotab      = bdc_tab
           EXCEPTIONS
                internal_error = 1
                not_open       = 2
                queue_error    = 3
                tcode_invalid  = 4
                OTHERS         = 5.
      IF sy-subrc NE 0.
        MOVE: true TO abend_job.
        CASE sy-subrc.
          WHEN 01.
            PERFORM process_msg USING '113' 'BDC INSERT' '' ''.
          WHEN 02.
            PERFORM process_msg USING '117' 'BDC INSERT' '' ''.
          WHEN 03.
            PERFORM process_msg USING '114' 'BDC INSERT' '' ''.
          WHEN 04.
            PERFORM process_msg USING '118' 'BDC INSERT' '' ''.
          WHEN 05.
            PERFORM process_msg USING '126' 'BDC INSERT' '' ''.
        ENDCASE.
      ELSE.
        bdc_trans_cnt = bdc_trans_cnt + 1.
      ENDIF.
    Initialize table after inserting the processed BDC Transactions
    for one scenario
      REFRESH bdc_tab.
    ENDFORM.
    End of Job Routine
    FORM eoj_routine.
      IF bdc_openned = true.
        PERFORM close_bdc.
        IF bdc_tab_created = true AND
           abend_job = false.
          TRANSLATE submit TO UPPER CASE.
          IF submit = 'X'.
            PERFORM submit_bdc_to_batch.
           ELSE.
            CLEAR : msg1, msg2, msg3.
            CONCATENATE 'Session' group_name INTO msg1 SEPARATED BY space.
            msg2 = 'has been created. '.
            msg3 = 'Please use SM35 to process the session.'.
            MESSAGE i150 WITH msg1 msg2 msg3   .
          ENDIF.
          IF abend_job = false.
            PERFORM update_date_control_file.
          ENDIF.
        ENDIF.
      ENDIF.
      IF abend_job = true.
        PERFORM abend_job.
        PERFORM alert_check.
      ELSE.
    These writes are an example of control totals that would be included
    on a control report.
        PERFORM: process_msg USING '174' total_recs '' 'NC',
                 process_msg USING '176' bdc_trans_cnt '' 'NC',
                 process_msg USING '148' tot_debit '' 'NC',
                 process_msg USING '149' tot_credit '' 'NC',
                 process_msg USING '173' interface_id '' ''.
       WRITE: /1 ' End of Job Run'.
        TRANSLATE temp_unix_name TO LOWER CASE.
        SHIFT full_fil_name UP TO temp_unix_name+0(9).
        SUBMIT zuxmv WITH filename EQ full_fil_name
                    WITH frompath EQ temp_unix_path
                    WITH to_path  EQ temp_arc_path
                    exporting list to memory
                     AND RETURN.
      ENDIF.
      SUBMIT zuxlp WITH filename = temp_log_name
                   WITH path     = temp_log_path
                   WITH printer  = temp_printer
                   exporting list to memory
                    AND RETURN.
      IF abend_job = true.
        IF execution = 'ONLINE'.
          PERFORM process_msg USING '100' in_trailer-interface_id '' ''.
          MESSAGE a100 WITH in_trailer-interface_id.
        ENDIF.
      ENDIF.
      CLOSE DATASET logfile.
    ENDFORM.
    Close BDC data
    FORM close_bdc.
    This routine closes the BDC batch session.
      sy-subrc = 0.
      CALL FUNCTION 'BDC_CLOSE_GROUP'
           EXCEPTIONS
                not_open    = 1
                queue_error = 2
                OTHERS      = 3.
      IF sy-subrc NE 0.
        MOVE: true TO abend_job.
        CASE sy-subrc.
          WHEN 01.
            PERFORM process_msg USING '117' 'BDC CLOSE' '' ''.
          WHEN 02.
            PERFORM process_msg USING '114' 'BDC CLOSE' '' ''.
          WHEN 03.
            PERFORM process_msg USING '126' 'BDC CLOSE' '' ''.
        ENDCASE.
      ENDIF.
    ENDFORM.
    Submit BDC to Batch
    FORM submit_bdc_to_batch.
    This FORM submits the completed BDC Table to Batch to be processed
    for all the transactions processed from the Interface input file.
    Changes made by sthomas on 11.16.2005
      SUBMIT rsbdcsub WITH mappe EQ group_name
                      with Z_VERARB EQ 'X'
    *Code inserted by sthomas on 16.11.2005
                      WITH fehler EQ ' '
                      EXPORTING LIST TO MEMORY
                      AND RETURN.
      WAIT UP TO 2 SECONDS.
      SELECT  * UP TO 1 ROWS INTO TABLE i_apqi
         FROM apqi
          WHERE groupid = group_name
          AND   credate <= sy-datum
          AND   cretime <= sy-uzeit
          ORDER BY cretime DESCENDING.
      READ TABLE i_apqi INDEX 1.
      clear : msg1, msg2, msg3.
      concatenate 'Session' group_name into msg1 SEPARATED BY SPACE.
      IF i_apqi-qstate = 'F'.
        msg2 = 'has been successfully processed'.
        MESSAGE i150 WITH msg1 msg2.
      ELSEIF i_apqi-qstate = 'E'.
         msg2 = 'has been processed with errors.'.
         msg3 = 'Please use SM35 to view the errors'.
        MESSAGE i150 WITH msg1 msg2 msg3 .
      ELSE.
        msg2 = 'has been transferred to the background for'.
        msg3 = 'processing. Please use SM35 to view the status'.
        MESSAGE i150 WITH msg1 msg2 msg3.
      ENDIF.
    End of code.
    End of change
    ENDFORM.
    Update date control file
    FORM update_date_control_file.
    This routine will update the Interface Date/Time Control File with
    the Date/Time Stamp of the current file just processed successfully.
    The parameter FILE_OPERATION indicates that the control file is to
    be updated with the new stamp and the status of the Interface/file
    will be set to 'C' for complete.
      CALL FUNCTION 'Z_PROCESS_INTERFACE_CTL_TABLE'
           EXPORTING
                file_id           = in_trailer-interface_id
                file_name         = in_trailer-file_name
                file_date         = in_trailer-date
                file_time         = in_trailer-time
                file_operation    = '2'
           EXCEPTIONS
                dup_file_error    = 1
                file_id_not_found = 2
                table_not_updated = 3
                OTHERS            = 4.
      IF sy-subrc NE 0.
        MOVE: true TO abend_job.
        CASE sy-subrc.
          WHEN 01.
            PERFORM process_msg USING '127' in_trailer-interface_id
              in_trailer-file_name 'OPERATION 2'.
          WHEN 02.
            PERFORM process_msg USING '128' in_trailer-interface_id
              in_trailer-file_name 'OPERATION 2'.
          WHEN 03.
            PERFORM process_msg USING '129' 'ZTAG' '' ''.
          WHEN 04.
            PERFORM process_msg USING '126' 'OPERATION 2' '' ''.
        ENDCASE.
      ENDIF.
    ENDFORM.
    Abend Job
    FORM abend_job.
    This form updates the Interface Date/Time Control File with a status
    of 'A' to indicate that this Interface has abended.  The Date/Time
    stamp on the Control file will not be updated with the date/time
    from the current file.  The parameter FILE_OPERATION OF '3' initiates
    this process.  Any time Operation '3' is used with the
    Date/Time Control File, the calling program must abend using an 'A'
    Message.  A generic abend message of 100 has been set up in the
    T100 table.
      CALL FUNCTION 'Z_PROCESS_INTERFACE_CTL_TABLE'
           EXPORTING
                file_id           = in_trailer-interface_id
                file_name         = in_trailer-file_name
                file_date         = in_trailer-date
                file_time         = in_trailer-time
                file_operation    = '3'
           EXCEPTIONS
                dup_file_error    = 1
                file_id_not_found = 2
                table_not_updated = 3
                OTHERS            = 4.
      IF sy-subrc NE 0.
        CASE sy-subrc.
          WHEN 01.
            PERFORM process_msg USING '127' in_trailer-interface_id
              in_trailer-file_name 'OPERATION 3'.
          WHEN 02.
            PERFORM process_msg USING '128' in_trailer-interface_id
              in_trailer-file_name 'OPERATION 3'.
          WHEN 03.
            PERFORM process_msg USING '129' 'ZTAG' 'OPERATION 3' ''.
          WHEN 04.
            PERFORM process_msg USING '126' 'OPERATION 3' '' ''.
        ENDCASE.
      ENDIF.
      PERFORM process_msg USING '100' in_trailer-interface_id '' ''.
    ENDFORM.
    INCLUDE zi000002.
    Feel free to ask any doubt in this logic.
    Regards,
    Susmitha

  • Add 0x before sending RS232 messages

    Hi, I have an issue using comwrt function, the message I d like to send is like 0103040F000F unfortunately comwrt function convert each character as  hexadecimal ascii so the message sent looks like 30 31 33 ...... and I actually like to send the exact message 0103040F000F  on port so I have tried to use comwrtbyte function sending my datas byte per byte 01, 03 but I cannot send A to F values literally I must put a 0x before each, but I don't know how to put the whole thing in a variable,
    int SendMessage (char *in)
        int len = 0;
        int i=0;
        int val=0;
        int ByteToSend;
        char *CharByteToSend;
        char Hexa[3]; Hexa[2]=0;
        len = strlen(in);
        CharByteToSend=(char*)malloc(5*sizeof(char));
        CharByteToSend[0]='0';
        CharByteToSend[1]='x';
        do                                 
            strncpy(CharByteToSend+2, in+i, 2);  CharByteToSend[4] = 0;
            ByteToSend = atoi(CharByteToSend);
            ComWrtByte(1, ByteToSend);
            i++;
            *in++;
        while(i<len);
        return 0;

    Hi Olivier,
    I am attaching the code fragments I use for CRC calculation and control in Modbus protocol: take a look and see if they give you the correct results. These have been used with several instruments (Siemens S7 plc, CHINO and CAL Controls temperature regulators and so on) so they should be ok for you too.
    Before any instruction:
    #define CRC16  0xA001     // To calculate CRC tables
    static unsigned char crc_table_1[256];  // Table for CRC1 calculation
    static unsigned char crc_table_2[256];  // Table for CRC2 calculation
    At program start (or before you begin preparing Modbus messages with their CRC):
    //                             Initialize tables for CRC calculation
    void InitCRC(void)
     unsigned char i;
     unsigned int mask, crc, mem;
     for (mask = 0; mask < 256; mask++) {
      crc = mask;
      for (i = 0; i < 8; i++) {
       mem = (unsigned int)(crc & 0x0001) ;
       crc /= 2;
       if (mem)
        crc ^= CRC16 ;
      crc_table_2[mask] = (unsigned char) (crc & 0xff); // lobyte
      crc_table_1[mask] = (unsigned char) (crc >> 8);   // hibyte
     return;
    Calculate CRC when preparing a message to send out:
    //          Computes the CRC and append to the buffer with the data to be transmitted
    // Parameters:    buf = message buffer
    //                size = lengh of message buffer excluding the crc (crc will be appended to buf
    //                         so you must pass a buffer with extra lenght)
    // Return values: none
    void CalcCRC(unsigned char * buf, unsigned char size)
     unsigned char car, i;
     unsigned char crc0, crc1;
     crc0 = 0xff;
     crc1 = 0xff;
     for (i = 0; i < size; i++) {
      car  = buf[i];
      car  = * ((unsigned char *) buf + i);
      car ^= crc0;
      crc0 = (unsigned char) (crc1 ^ crc_table_2[car]);
      crc1 = crc_table_1[car];
     * (buf + size)     = crc0;  // CRC low
     * (buf + size + 1) = crc1;  // CRC high
     return;
    When checking CRC on a received message:
    //           CRC check and match with the CRC found on the received data buffer
    // Parameters:    buf = message buffer
    //                size = lengh of message buffer excluding the crc
    // Return values: 0 if CRC ok
    //                1 if CRC bad
    //                If CRC is bad the data packet is corrupted, so it is necessary to discard it.
    int CheckCRC(unsigned char * buf, unsigned char size)
      unsigned char car, i;
      unsigned char crc0, crc1;
      unsigned int  crc_calc, crc_read;
      crc0 = 0xff;
      crc1 = 0xff;
      for(i = 0; i < size; i++) {
        car  = buf[i];
        car  = * ((unsigned char *) buf + i);
        car ^= crc0;
        crc0 = (unsigned char) (crc1 ^ crc_table_2[car]);
        crc1 = crc_table_1[car];
      crc_calc  = (crc1 << 8) + crc0;
      crc_read = * (buf + size) + 256 * (* (buf + size + 1));
      return (crc_read != crc_calc);
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Iptable-filter problem

    I am having trouble using iptables on my computer.
    When I try to start the iptables service, it fails with the error
    iptables-restore v1.4.19.1: iptables-restore: unable to initialize table 'filter'
    So it seems that iptable_filter isn't being loaded and modprobe returns this message:
    modprobe iptable_filter
    modprobe: ERROR could not insert 'iptable_filter': Unknown symbol in module, or unknown parameter (see dmesg)
    So it seems like a kernel problem? I have restarted multiple times since the last Linux update.

    cat /proc/cmdline
    BOOT_IMAGE=../vmlinuz-linux root=/dev/sda2 rw ipv6.disable=1 initrd=../initramfs-linux.img
    -- Logs begin at Mon 2013-08-26 01:39:04 UTC, end at Sun 2013-11-03 06:38:10 UTC. --
    Nov 01 09:48:57 danserver systemd-journal[133]: Runtime journal is using 1.3M (max 386.8M, leaving 580.3M of free 3.7G, current limit 386.8M).
    Nov 01 09:48:57 danserver systemd-journal[133]: Runtime journal is using 1.3M (max 386.8M, leaving 580.3M of free 3.7G, current limit 386.8M).
    Nov 01 09:48:57 danserver kernel: Initializing cgroup subsys cpuset
    Nov 01 09:48:57 danserver kernel: Initializing cgroup subsys cpu
    Nov 01 09:48:57 danserver kernel: Initializing cgroup subsys cpuacct
    Nov 01 09:48:57 danserver kernel: Linux version 3.11.6-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Oct 18 23:22:36 CEST 2013
    Nov 01 09:48:57 danserver kernel: Command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sda2 rw ipv6.disable=1 initrd=../initramfs-linux.img
    Nov 01 09:48:57 danserver kernel: e820: BIOS-provided physical RAM map:
    Nov 01 09:48:57 danserver kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
    Nov 01 09:48:57 danserver kernel: BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
    Nov 01 09:48:57 danserver kernel: BIOS-e820: [mem 0x00000000000e2000-0x00000000000fffff] reserved
    Nov 01 09:48:57 danserver kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000cff8ffff] usable
    Nov 01 09:48:57 danserver kernel: BIOS-e820: [mem 0x00000000cff90000-0x00000000cffa7fff] ACPI data
    Nov 01 09:48:57 danserver kernel: BIOS-e820: [mem 0x00000000cffa8000-0x00000000cffcffff] ACPI NVS
    Nov 01 09:48:57 danserver kernel: BIOS-e820: [mem 0x00000000cffd0000-0x00000000cfffffff] reserved
    Nov 01 09:48:57 danserver kernel: BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
    Nov 01 09:48:57 danserver kernel: BIOS-e820: [mem 0x0000000100000000-0x000000021fffffff] usable
    Nov 01 09:48:57 danserver kernel: NX (Execute Disable) protection: active
    Nov 01 09:48:57 danserver kernel: SMBIOS 2.5 present.
    Nov 01 09:48:57 danserver kernel: DMI: System manufacturer System Product Name/M4A88T-V EVO, BIOS 0405 12/15/2010
    Nov 01 09:48:57 danserver kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Nov 01 09:48:57 danserver kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Nov 01 09:48:57 danserver kernel: No AGP bridge found
    Nov 01 09:48:57 danserver kernel: e820: last_pfn = 0x220000 max_arch_pfn = 0x400000000
    Nov 01 09:48:57 danserver kernel: MTRR default type: uncachable
    Nov 01 09:48:57 danserver kernel: MTRR fixed ranges enabled:
    Nov 01 09:48:57 danserver kernel: 00000-9FFFF write-back
    Nov 01 09:48:57 danserver kernel: A0000-EFFFF uncachable
    Nov 01 09:48:57 danserver kernel: F0000-FFFFF write-protect
    Nov 01 09:48:57 danserver kernel: MTRR variable ranges enabled:
    Nov 01 09:48:57 danserver kernel: 0 base 000000000000 mask FFFF80000000 write-back
    Nov 01 09:48:57 danserver kernel: 1 base 000080000000 mask FFFFC0000000 write-back
    Nov 01 09:48:57 danserver kernel: 2 base 0000C0000000 mask FFFFF0000000 write-back
    Nov 01 09:48:57 danserver kernel: 3 disabled
    Nov 01 09:48:57 danserver kernel: 4 disabled
    Nov 01 09:48:57 danserver kernel: 5 disabled
    Nov 01 09:48:57 danserver kernel: 6 disabled
    Nov 01 09:48:57 danserver kernel: 7 disabled
    Nov 01 09:48:57 danserver kernel: TOM2: 0000000230000000 aka 8960M
    Nov 01 09:48:57 danserver kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Nov 01 09:48:57 danserver kernel: e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
    Nov 01 09:48:57 danserver kernel: e820: last_pfn = 0xcff90 max_arch_pfn = 0x400000000
    Nov 01 09:48:57 danserver kernel: found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
    Nov 01 09:48:57 danserver kernel: Scanning 1 areas for low memory corruption
    Nov 01 09:48:57 danserver kernel: Base memory trampoline at [ffff880000098000] 98000 size 24576
    Nov 01 09:48:57 danserver kernel: Using GB pages for direct mapping
    Nov 01 09:48:57 danserver kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Nov 01 09:48:57 danserver kernel: [mem 0x00000000-0x000fffff] page 4k
    Nov 01 09:48:57 danserver kernel: BRK [0x01b2f000, 0x01b2ffff] PGTABLE
    Nov 01 09:48:57 danserver kernel: BRK [0x01b30000, 0x01b30fff] PGTABLE
    Nov 01 09:48:57 danserver kernel: BRK [0x01b31000, 0x01b31fff] PGTABLE
    Nov 01 09:48:57 danserver kernel: init_memory_mapping: [mem 0x21fe00000-0x21fffffff]
    Nov 01 09:48:57 danserver kernel: [mem 0x21fe00000-0x21fffffff] page 2M
    Nov 01 09:48:57 danserver kernel: BRK [0x01b32000, 0x01b32fff] PGTABLE
    Nov 01 09:48:57 danserver kernel: init_memory_mapping: [mem 0x21c000000-0x21fdfffff]
    Nov 01 09:48:57 danserver kernel: [mem 0x21c000000-0x21fdfffff] page 2M
    Nov 01 09:48:57 danserver kernel: init_memory_mapping: [mem 0x200000000-0x21bffffff]
    Nov 01 09:48:57 danserver kernel: [mem 0x200000000-0x21bffffff] page 2M
    Nov 01 09:48:57 danserver kernel: init_memory_mapping: [mem 0x00100000-0xcff8ffff]
    Nov 01 09:48:57 danserver kernel: [mem 0x00100000-0x001fffff] page 4k
    Nov 01 09:48:57 danserver kernel: [mem 0x00200000-0x3fffffff] page 2M
    Nov 01 09:48:57 danserver kernel: [mem 0x40000000-0xbfffffff] page 1G
    Nov 01 09:48:57 danserver kernel: [mem 0xc0000000-0xcfdfffff] page 2M
    Nov 01 09:48:57 danserver kernel: [mem 0xcfe00000-0xcff8ffff] page 4k
    Nov 01 09:48:57 danserver kernel: init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    Nov 01 09:48:57 danserver kernel: [mem 0x100000000-0x1ffffffff] page 1G
    Nov 01 09:48:57 danserver kernel: RAMDISK: [mem 0x7fd09000-0x7fffffff]
    Nov 01 09:48:57 danserver kernel: ACPI: RSDP 00000000000fbb80 00024 (v02 ACPIAM)
    Nov 01 09:48:57 danserver kernel: ACPI: XSDT 00000000cff90100 0005C (v01 121510 XSDT1028 20101215 MSFT 00000097)
    Nov 01 09:48:57 danserver kernel: ACPI: FACP 00000000cff90290 000F4 (v03 121510 FACP1028 20101215 MSFT 00000097)
    Nov 01 09:48:57 danserver kernel: ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20130517/tbfadt-603)
    Nov 01 09:48:57 danserver kernel: ACPI: DSDT 00000000cff90450 0ECD4 (v01 A1684 A1684001 00000001 INTL 20060113)
    Nov 01 09:48:57 danserver kernel: ACPI: FACS 00000000cffa8000 00040
    Nov 01 09:48:57 danserver kernel: ACPI: APIC 00000000cff90390 0007C (v01 121510 APIC1028 20101215 MSFT 00000097)
    Nov 01 09:48:57 danserver kernel: ACPI: MCFG 00000000cff90410 0003C (v01 121510 OEMMCFG 20101215 MSFT 00000097)
    Nov 01 09:48:57 danserver kernel: ACPI: OEMB 00000000cffa8040 00072 (v01 121510 OEMB1028 20101215 MSFT 00000097)
    Nov 01 09:48:57 danserver kernel: ACPI: SRAT 00000000cff9f8a0 000E8 (v01 AMD FAM_F_10 00000002 AMD 00000001)
    Nov 01 09:48:57 danserver kernel: ACPI: HPET 00000000cff9f990 00038 (v01 121510 OEMHPET 20101215 MSFT 00000097)
    Nov 01 09:48:57 danserver kernel: ACPI: SSDT 00000000cff9f9d0 0088C (v01 A M I POWERNOW 00000001 AMD 00000001)
    Nov 01 09:48:57 danserver kernel: ACPI: Local APIC address 0xfee00000
    Nov 01 09:48:57 danserver kernel: SRAT: PXM 0 -> APIC 0x00 -> Node 0
    Nov 01 09:48:57 danserver kernel: SRAT: PXM 0 -> APIC 0x01 -> Node 0
    Nov 01 09:48:57 danserver kernel: SRAT: PXM 0 -> APIC 0x02 -> Node 0
    Nov 01 09:48:57 danserver kernel: SRAT: PXM 0 -> APIC 0x03 -> Node 0
    Nov 01 09:48:57 danserver kernel: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
    Nov 01 09:48:57 danserver kernel: SRAT: Node 0 PXM 0 [mem 0x00100000-0xcfffffff]
    Nov 01 09:48:57 danserver kernel: SRAT: Node 0 PXM 0 [mem 0x100000000-0x22fffffff]
    Nov 01 09:48:57 danserver kernel: NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xcfffffff] -> [mem 0x00000000-0xcfffffff]
    Nov 01 09:48:57 danserver kernel: NUMA: Node 0 [mem 0x00000000-0xcfffffff] + [mem 0x100000000-0x21fffffff] -> [mem 0x00000000-0x21fffffff]
    Nov 01 09:48:57 danserver kernel: Initmem setup node 0 [mem 0x00000000-0x21fffffff]
    Nov 01 09:48:57 danserver kernel: NODE_DATA [mem 0x21fff9000-0x21fffdfff]
    Nov 01 09:48:57 danserver kernel: [ffffea0000000000-ffffea00087fffff] PMD -> [ffff880217a00000-ffff88021f5fffff] on node 0
    Nov 01 09:48:57 danserver kernel: Zone ranges:
    Nov 01 09:48:57 danserver kernel: DMA [mem 0x00001000-0x00ffffff]
    Nov 01 09:48:57 danserver kernel: DMA32 [mem 0x01000000-0xffffffff]
    Nov 01 09:48:57 danserver kernel: Normal [mem 0x100000000-0x21fffffff]
    Nov 01 09:48:57 danserver kernel: Movable zone start for each node
    Nov 01 09:48:57 danserver kernel: Early memory node ranges
    Nov 01 09:48:57 danserver kernel: node 0: [mem 0x00001000-0x0009dfff]
    Nov 01 09:48:57 danserver kernel: node 0: [mem 0x00100000-0xcff8ffff]
    Nov 01 09:48:57 danserver kernel: node 0: [mem 0x100000000-0x21fffffff]
    Nov 01 09:48:57 danserver kernel: On node 0 totalpages: 2031405
    Nov 01 09:48:57 danserver kernel: DMA zone: 64 pages used for memmap
    Nov 01 09:48:57 danserver kernel: DMA zone: 21 pages reserved
    Nov 01 09:48:57 danserver kernel: DMA zone: 3997 pages, LIFO batch:0
    Nov 01 09:48:57 danserver kernel: DMA32 zone: 13247 pages used for memmap
    Nov 01 09:48:57 danserver kernel: DMA32 zone: 847760 pages, LIFO batch:31
    Nov 01 09:48:57 danserver kernel: Normal zone: 18432 pages used for memmap
    Nov 01 09:48:57 danserver kernel: Normal zone: 1179648 pages, LIFO batch:31
    Nov 01 09:48:57 danserver kernel: ACPI: PM-Timer IO Port: 0x808
    Nov 01 09:48:57 danserver kernel: ACPI: Local APIC address 0xfee00000
    Nov 01 09:48:57 danserver kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Nov 01 09:48:57 danserver kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Nov 01 09:48:57 danserver kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    Nov 01 09:48:57 danserver kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    Nov 01 09:48:57 danserver kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
    Nov 01 09:48:57 danserver kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
    Nov 01 09:48:57 danserver kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    Nov 01 09:48:57 danserver kernel: IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    Nov 01 09:48:57 danserver kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Nov 01 09:48:57 danserver kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Nov 01 09:48:57 danserver kernel: ACPI: IRQ0 used by override.
    Nov 01 09:48:57 danserver kernel: ACPI: IRQ2 used by override.
    Nov 01 09:48:57 danserver kernel: ACPI: IRQ9 used by override.
    Nov 01 09:48:57 danserver kernel: Using ACPI (MADT) for SMP configuration information
    Nov 01 09:48:57 danserver kernel: ACPI: HPET id: 0x8300 base: 0xfed00000
    Nov 01 09:48:57 danserver kernel: smpboot: Allowing 6 CPUs, 2 hotplug CPUs
    Nov 01 09:48:57 danserver kernel: nr_irqs_gsi: 40
    Nov 01 09:48:57 danserver kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
    Nov 01 09:48:57 danserver kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    Nov 01 09:48:57 danserver kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000e1fff]
    Nov 01 09:48:57 danserver kernel: PM: Registered nosave memory: [mem 0x000e2000-0x000fffff]
    Nov 01 09:48:57 danserver kernel: PM: Registered nosave memory: [mem 0xcff90000-0xcffa7fff]
    Nov 01 09:48:57 danserver kernel: PM: Registered nosave memory: [mem 0xcffa8000-0xcffcffff]
    Nov 01 09:48:57 danserver kernel: PM: Registered nosave memory: [mem 0xcffd0000-0xcfffffff]
    Nov 01 09:48:57 danserver kernel: PM: Registered nosave memory: [mem 0xd0000000-0xff9fffff]
    Nov 01 09:48:57 danserver kernel: PM: Registered nosave memory: [mem 0xffa00000-0xffffffff]
    Nov 01 09:48:57 danserver kernel: e820: [mem 0xd0000000-0xff9fffff] available for PCI devices
    Nov 01 09:48:57 danserver kernel: Booting paravirtualized kernel on bare hardware
    Nov 01 09:48:57 danserver kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:6 nr_node_ids:1
    Nov 01 09:48:57 danserver kernel: PERCPU: Embedded 29 pages/cpu @ffff88021fc00000 s86528 r8192 d24064 u262144
    Nov 01 09:48:57 danserver kernel: pcpu-alloc: s86528 r8192 d24064 u262144 alloc=1*2097152
    Nov 01 09:48:57 danserver kernel: pcpu-alloc: [0] 0 1 2 3 4 5 - -
    Nov 01 09:48:57 danserver kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1999641
    Nov 01 09:48:57 danserver kernel: Policy zone: Normal
    Nov 01 09:48:57 danserver kernel: Kernel command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sda2 rw ipv6.disable=1 initrd=../initramfs-linux.img
    Nov 01 09:48:57 danserver kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Nov 01 09:48:57 danserver kernel: Checking aperture...
    Nov 01 09:48:57 danserver kernel: No AGP bridge found
    Nov 01 09:48:57 danserver kernel: Node 0: aperture @ c4000000 size 32 MB
    Nov 01 09:48:57 danserver kernel: Aperture pointing to e820 RAM. Ignoring.
    Nov 01 09:48:57 danserver kernel: Your BIOS doesn't leave a aperture memory hole
    Nov 01 09:48:57 danserver kernel: Please enable the IOMMU option in the BIOS setup
    Nov 01 09:48:57 danserver kernel: This costs you 64 MB of RAM
    Nov 01 09:48:57 danserver kernel: Mapping aperture over 65536 KB of RAM @ c4000000
    Nov 01 09:48:57 danserver kernel: PM: Registered nosave memory: [mem 0xc4000000-0xc7ffffff]
    Nov 01 09:48:57 danserver kernel: Memory: 7851488K/8125620K available (5050K kernel code, 799K rwdata, 1696K rodata, 1140K init, 1288K bss, 274132K reserved)
    Nov 01 09:48:57 danserver kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
    Nov 01 09:48:57 danserver kernel: Preemptible hierarchical RCU implementation.
    Nov 01 09:48:57 danserver kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Nov 01 09:48:57 danserver kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Nov 01 09:48:57 danserver kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=6.
    Nov 01 09:48:57 danserver kernel: NR_IRQS:8448 nr_irqs:728 16
    Nov 01 09:48:57 danserver kernel: Console: colour VGA+ 80x25
    Nov 01 09:48:57 danserver kernel: console [tty0] enabled
    Nov 01 09:48:57 danserver kernel: allocated 32505856 bytes of page_cgroup
    Nov 01 09:48:57 danserver kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Nov 01 09:48:57 danserver kernel: hpet clockevent registered
    Nov 01 09:48:57 danserver kernel: tsc: Fast TSC calibration using PIT
    Nov 01 09:48:57 danserver kernel: tsc: Detected 3013.705 MHz processor
    Nov 01 09:48:57 danserver kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6029.55 BogoMIPS (lpj=10045683)
    Nov 01 09:48:57 danserver kernel: pid_max: default: 32768 minimum: 301
    Nov 01 09:48:57 danserver kernel: Security Framework initialized
    Nov 01 09:48:57 danserver kernel: AppArmor: AppArmor disabled by boot time parameter
    Nov 01 09:48:57 danserver kernel: Yama: becoming mindful.
    Nov 01 09:48:57 danserver kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Nov 01 09:48:57 danserver kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Nov 01 09:48:57 danserver kernel: Mount-cache hash table entries: 256
    Nov 01 09:48:57 danserver kernel: Initializing cgroup subsys memory
    Nov 01 09:48:57 danserver kernel: Initializing cgroup subsys devices
    Nov 01 09:48:57 danserver kernel: Initializing cgroup subsys freezer
    Nov 01 09:48:57 danserver kernel: Initializing cgroup subsys net_cls
    Nov 01 09:48:57 danserver kernel: Initializing cgroup subsys blkio
    Nov 01 09:48:57 danserver kernel: tseg: 0000000000
    Nov 01 09:48:57 danserver kernel: CPU: Physical Processor ID: 0
    Nov 01 09:48:57 danserver kernel: CPU: Processor Core ID: 0
    Nov 01 09:48:57 danserver kernel: mce: CPU supports 6 MCE banks
    Nov 01 09:48:57 danserver kernel: LVT offset 0 assigned for vector 0xf9
    Nov 01 09:48:57 danserver kernel: process: using AMD E400 aware idle routine
    Nov 01 09:48:57 danserver kernel: Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64
    tlb_flushall_shift: 4
    Nov 01 09:48:57 danserver kernel: Freeing SMP alternatives memory: 20K (ffffffff819e6000 - ffffffff819eb000)
    Nov 01 09:48:57 danserver kernel: ACPI: Core revision 20130517
    Nov 01 09:48:57 danserver kernel: ACPI: All ACPI Tables successfully acquired
    Nov 01 09:48:57 danserver kernel: ftrace: allocating 20100 entries in 79 pages
    Nov 01 09:48:57 danserver kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Nov 01 09:48:57 danserver kernel: smpboot: CPU0: AMD Athlon(tm) II X4 640 Processor (fam: 10, model: 05, stepping: 03)
    Nov 01 09:48:57 danserver kernel: Performance Events: AMD PMU driver.
    Nov 01 09:48:57 danserver kernel: ... version: 0
    Nov 01 09:48:57 danserver kernel: ... bit width: 48
    Nov 01 09:48:57 danserver kernel: ... generic registers: 4
    Nov 01 09:48:57 danserver kernel: ... value mask: 0000ffffffffffff
    Nov 01 09:48:57 danserver kernel: ... max period: 00007fffffffffff
    Nov 01 09:48:57 danserver kernel: ... fixed-purpose events: 0
    Nov 01 09:48:57 danserver kernel: ... event mask: 000000000000000f
    Nov 01 09:48:57 danserver kernel: process: System has AMD C1E enabled
    Nov 01 09:48:57 danserver kernel: process: Switch to broadcast mode on CPU0
    Nov 01 09:48:57 danserver kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Nov 01 09:48:57 danserver kernel: process: Switch to broadcast mode on CPU1
    Nov 01 09:48:57 danserver kernel: process: Switch to broadcast mode on CPU2
    Nov 01 09:48:57 danserver kernel: smpboot: Booting Node 0, Processors #1 #2 #3
    Nov 01 09:48:57 danserver kernel: Brought up 4 CPUs
    Nov 01 09:48:57 danserver kernel: smpboot: Total of 4 processors activated (24119.20 BogoMIPS)
    Nov 01 09:48:57 danserver kernel: process: Switch to broadcast mode on CPU3
    Nov 01 09:48:57 danserver kernel: devtmpfs: initialized
    Nov 01 09:48:57 danserver kernel: PM: Registering ACPI NVS region [mem 0xcffa8000-0xcffcffff] (163840 bytes)
    Nov 01 09:48:57 danserver kernel: RTC time: 9:48:53, date: 11/01/13
    Nov 01 09:48:57 danserver kernel: NET: Registered protocol family 16
    Nov 01 09:48:57 danserver kernel: node 0 link 0: io port [1000, ffffff]
    Nov 01 09:48:57 danserver kernel: TOM: 00000000d0000000 aka 3328M
    Nov 01 09:48:57 danserver kernel: Fam 10h mmconf [mem 0xe0000000-0xefffffff]
    Nov 01 09:48:57 danserver kernel: node 0 link 0: mmio [a0000, bffff]
    Nov 01 09:48:57 danserver kernel: node 0 link 0: mmio [d0000000, efffffff] ==> [d0000000, dfffffff]
    Nov 01 09:48:57 danserver kernel: node 0 link 0: mmio [f0000000, fe8fffff]
    Nov 01 09:48:57 danserver kernel: node 0 link 0: mmio [fe900000, feafffff]
    Nov 01 09:48:57 danserver kernel: node 0 link 0: mmio [feb00000, ffdfffff]
    Nov 01 09:48:57 danserver kernel: TOM2: 0000000230000000 aka 8960M
    Nov 01 09:48:57 danserver kernel: bus: [bus 00-07] on node 0 link 0
    Nov 01 09:48:57 danserver kernel: bus: 00 [io 0x0000-0xffff]
    Nov 01 09:48:57 danserver kernel: bus: 00 [mem 0x000a0000-0x000bffff]
    Nov 01 09:48:57 danserver kernel: bus: 00 [mem 0xd0000000-0xdfffffff]
    Nov 01 09:48:57 danserver kernel: bus: 00 [mem 0xf0000000-0xffffffff]
    Nov 01 09:48:57 danserver kernel: bus: 00 [mem 0x230000000-0xfcffffffff]
    Nov 01 09:48:57 danserver kernel: ACPI: bus type PCI registered
    Nov 01 09:48:57 danserver kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Nov 01 09:48:57 danserver kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Nov 01 09:48:57 danserver kernel: PCI: not using MMCONFIG
    Nov 01 09:48:57 danserver kernel: PCI: Using configuration type 1 for base access
    Nov 01 09:48:57 danserver kernel: PCI: Using configuration type 1 for extended access
    Nov 01 09:48:57 danserver kernel: bio: create slab <bio-0> at 0
    Nov 01 09:48:57 danserver kernel: ACPI: Added _OSI(Module Device)
    Nov 01 09:48:57 danserver kernel: ACPI: Added _OSI(Processor Device)
    Nov 01 09:48:57 danserver kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Nov 01 09:48:57 danserver kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Nov 01 09:48:57 danserver kernel: ACPI: EC: Look up EC in DSDT
    Nov 01 09:48:57 danserver kernel: ACPI: Executed 3 blocks of module-level executable AML code
    Nov 01 09:48:57 danserver kernel: ACPI: Interpreter enabled
    Nov 01 09:48:57 danserver kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    Nov 01 09:48:57 danserver kernel: ACPI: (supports S0 S1 S3 S4 S5)
    Nov 01 09:48:57 danserver kernel: ACPI: Using IOAPIC for interrupt routing
    Nov 01 09:48:57 danserver kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Nov 01 09:48:57 danserver kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    Nov 01 09:48:57 danserver kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Nov 01 09:48:57 danserver kernel: ACPI: No dock devices found.
    Nov 01 09:48:57 danserver kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Nov 01 09:48:57 danserver kernel: acpi PNP0A03:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Nov 01 09:48:57 danserver kernel: acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Nov 01 09:48:57 danserver kernel: PCI host bridge to bus 0000:00
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: root bus resource [mem 0xd0000000-0xdfffffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:00.0: [1022:9601] type 00 class 0x060000
    Nov 01 09:48:57 danserver kernel: pci 0000:00:01.0: [1043:9602] type 01 class 0x060400
    Nov 01 09:48:57 danserver kernel: pci 0000:00:09.0: [1022:9608] type 01 class 0x060400
    Nov 01 09:48:57 danserver kernel: pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
    Nov 01 09:48:57 danserver kernel: pci 0000:00:09.0: System wakeup disabled by ACPI
    Nov 01 09:48:57 danserver kernel: pci 0000:00:11.0: [1002:4390] type 00 class 0x01018f
    Nov 01 09:48:57 danserver kernel: pci 0000:00:11.0: reg 0x10: [io 0xb000-0xb007]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:11.0: reg 0x14: [io 0xa000-0xa003]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:11.0: reg 0x18: [io 0x9000-0x9007]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:11.0: reg 0x1c: [io 0x8000-0x8003]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:11.0: reg 0x20: [io 0x7000-0x700f]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:11.0: reg 0x24: [mem 0xfe8ffc00-0xfe8fffff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:11.0: set SATA to AHCI mode
    Nov 01 09:48:57 danserver kernel: pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    Nov 01 09:48:57 danserver kernel: pci 0000:00:12.0: reg 0x10: [mem 0xfe8fe000-0xfe8fefff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:12.0: System wakeup disabled by ACPI
    Nov 01 09:48:57 danserver kernel: pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
    Nov 01 09:48:57 danserver kernel: pci 0000:00:12.1: reg 0x10: [mem 0xfe8fd000-0xfe8fdfff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:12.1: System wakeup disabled by ACPI
    Nov 01 09:48:57 danserver kernel: pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    Nov 01 09:48:57 danserver kernel: pci 0000:00:12.2: reg 0x10: [mem 0xfe8ff800-0xfe8ff8ff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:12.2: supports D1 D2
    Nov 01 09:48:57 danserver kernel: pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    Nov 01 09:48:57 danserver kernel: pci 0000:00:12.2: System wakeup disabled by ACPI
    Nov 01 09:48:57 danserver kernel: pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    Nov 01 09:48:57 danserver kernel: pci 0000:00:13.0: reg 0x10: [mem 0xfe8fc000-0xfe8fcfff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:13.0: System wakeup disabled by ACPI
    Nov 01 09:48:57 danserver kernel: pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
    Nov 01 09:48:57 danserver kernel: pci 0000:00:13.1: reg 0x10: [mem 0xfe8fb000-0xfe8fbfff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:13.1: System wakeup disabled by ACPI
    Nov 01 09:48:57 danserver kernel: pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    Nov 01 09:48:57 danserver kernel: pci 0000:00:13.2: reg 0x10: [mem 0xfe8ff400-0xfe8ff4ff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:13.2: supports D1 D2
    Nov 01 09:48:57 danserver kernel: pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    Nov 01 09:48:57 danserver kernel: pci 0000:00:13.2: System wakeup disabled by ACPI
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.1: reg 0x10: [io 0x0000-0x0007]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.1: reg 0x14: [io 0x0000-0x0003]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.1: reg 0x18: [io 0x0000-0x0007]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.1: reg 0x1c: [io 0x0000-0x0003]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.1: reg 0x20: [io 0xff00-0xff0f]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.2: reg 0x10: [mem 0xfe8f4000-0xfe8f7fff 64bit]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.2: System wakeup disabled by ACPI
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: System wakeup disabled by ACPI
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.5: reg 0x10: [mem 0xfe8fa000-0xfe8fafff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.5: System wakeup disabled by ACPI
    Nov 01 09:48:57 danserver kernel: pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
    Nov 01 09:48:57 danserver kernel: pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
    Nov 01 09:48:57 danserver kernel: pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
    Nov 01 09:48:57 danserver kernel: pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
    Nov 01 09:48:57 danserver kernel: pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
    Nov 01 09:48:57 danserver kernel: pci 0000:01:05.0: [1002:9715] type 00 class 0x030000
    Nov 01 09:48:57 danserver kernel: pci 0000:01:05.0: reg 0x10: [mem 0xd0000000-0xdfffffff pref]
    Nov 01 09:48:57 danserver kernel: pci 0000:01:05.0: reg 0x14: [io 0xc000-0xc0ff]
    Nov 01 09:48:57 danserver kernel: pci 0000:01:05.0: reg 0x18: [mem 0xfeae0000-0xfeaeffff]
    Nov 01 09:48:57 danserver kernel: pci 0000:01:05.0: reg 0x24: [mem 0xfe900000-0xfe9fffff]
    Nov 01 09:48:57 danserver kernel: pci 0000:01:05.0: supports D1 D2
    Nov 01 09:48:57 danserver kernel: pci 0000:01:05.1: [1002:970f] type 00 class 0x040300
    Nov 01 09:48:57 danserver kernel: pci 0000:01:05.1: reg 0x10: [mem 0xfeaf4000-0xfeaf7fff]
    Nov 01 09:48:57 danserver kernel: pci 0000:01:05.1: supports D1 D2
    Nov 01 09:48:57 danserver kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:01.0: bridge window [mem 0xfe900000-0xfeafffff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Nov 01 09:48:57 danserver kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
    Nov 01 09:48:57 danserver kernel: pci 0000:02:00.0: reg 0x10: [io 0xd800-0xd8ff]
    Nov 01 09:48:57 danserver kernel: pci 0000:02:00.0: reg 0x18: [mem 0xfdfff000-0xfdffffff 64bit pref]
    Nov 01 09:48:57 danserver kernel: pci 0000:02:00.0: reg 0x20: [mem 0xfdff8000-0xfdffbfff 64bit pref]
    Nov 01 09:48:57 danserver kernel: pci 0000:02:00.0: supports D1 D2
    Nov 01 09:48:57 danserver kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 01 09:48:57 danserver kernel: pci 0000:02:00.0: System wakeup disabled by ACPI
    Nov 01 09:48:57 danserver kernel: pci 0000:00:09.0: PCI bridge to [bus 02]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:09.0: bridge window [io 0xd000-0xdfff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:09.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    Nov 01 09:48:57 danserver kernel: pci 0000:03:05.0: [8086:107c] type 00 class 0x020000
    Nov 01 09:48:57 danserver kernel: pci 0000:03:05.0: reg 0x10: [mem 0xfebe0000-0xfebfffff]
    Nov 01 09:48:57 danserver kernel: pci 0000:03:05.0: reg 0x14: [mem 0xfebc0000-0xfebdffff]
    Nov 01 09:48:57 danserver kernel: pci 0000:03:05.0: reg 0x18: [io 0xec00-0xec3f]
    Nov 01 09:48:57 danserver kernel: pci 0000:03:05.0: reg 0x30: [mem 0xfeba0000-0xfebbffff pref]
    Nov 01 09:48:57 danserver kernel: pci 0000:03:05.0: PME# supported from D0 D3hot D3cold
    Nov 01 09:48:57 danserver kernel: pci 0000:03:08.0: [1106:3044] type 00 class 0x0c0010
    Nov 01 09:48:57 danserver kernel: pci 0000:03:08.0: reg 0x10: [mem 0xfeb9f800-0xfeb9ffff]
    Nov 01 09:48:57 danserver kernel: pci 0000:03:08.0: reg 0x14: [io 0xe880-0xe8ff]
    Nov 01 09:48:57 danserver kernel: pci 0000:03:08.0: supports D2
    Nov 01 09:48:57 danserver kernel: pci 0000:03:08.0: PME# supported from D2 D3hot D3cold
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: PCI bridge to [bus 03] (subtractive decode)
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: bridge window [io 0xe000-0xefff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: bridge window [mem 0xfeb00000-0xfebfffff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: bridge window [mem 0xd0000000-0xdfffffff] (subtractive decode)
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
    Nov 01 09:48:57 danserver kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 *10 11 12 14 15)
    Nov 01 09:48:57 danserver kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 *10 11 12 14 15)
    Nov 01 09:48:57 danserver kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 10 *11 12 14 15)
    Nov 01 09:48:57 danserver kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 *11 12 14 15)
    Nov 01 09:48:57 danserver kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 *10 11 12 14 15)
    Nov 01 09:48:57 danserver kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 11 12 14 15) *0, disabled.
    Nov 01 09:48:57 danserver kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 4 *7 10 11 12 14 15)
    Nov 01 09:48:57 danserver kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 *10 11 12 14 15)
    Nov 01 09:48:57 danserver kernel: ACPI: Enabled 1 GPEs in block 00 to 1F
    Nov 01 09:48:57 danserver kernel: ACPI: \_SB_.PCI0: notify handler is installed
    Nov 01 09:48:57 danserver kernel: Found 1 acpi root devices
    Nov 01 09:48:57 danserver kernel: ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
    Nov 01 09:48:57 danserver kernel: vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
    Nov 01 09:48:57 danserver kernel: vgaarb: loaded
    Nov 01 09:48:57 danserver kernel: vgaarb: bridge control possible 0000:01:05.0
    Nov 01 09:48:57 danserver kernel: PCI: Using ACPI for IRQ routing
    Nov 01 09:48:57 danserver kernel: PCI: pci_cache_line_size set to 64 bytes
    Nov 01 09:48:57 danserver kernel: e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
    Nov 01 09:48:57 danserver kernel: e820: reserve RAM buffer [mem 0xcff90000-0xcfffffff]
    Nov 01 09:48:57 danserver kernel: NetLabel: Initializing
    Nov 01 09:48:57 danserver kernel: NetLabel: domain hash size = 128
    Nov 01 09:48:57 danserver kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Nov 01 09:48:57 danserver kernel: NetLabel: unlabeled traffic allowed by default
    Nov 01 09:48:57 danserver kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    Nov 01 09:48:57 danserver kernel: hpet0: 4 comparators, 32-bit 14.318180 MHz counter
    Nov 01 09:48:57 danserver kernel: Switched to clocksource hpet
    Nov 01 09:48:57 danserver kernel: pnp: PnP ACPI init
    Nov 01 09:48:57 danserver kernel: ACPI: bus type PNP registered
    Nov 01 09:48:57 danserver kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    Nov 01 09:48:57 danserver kernel: pnp 00:01: [dma 4]
    Nov 01 09:48:57 danserver kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    Nov 01 09:48:57 danserver kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    Nov 01 09:48:57 danserver kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
    Nov 01 09:48:57 danserver kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    Nov 01 09:48:57 danserver kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0103 (active)
    Nov 01 09:48:57 danserver kernel: pnp 00:06: [dma 0 disabled]
    Nov 01 09:48:57 danserver kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
    Nov 01 09:48:57 danserver kernel: system 00:07: [mem 0xfec00000-0xfec00fff] could not be reserved
    Nov 01 09:48:57 danserver kernel: system 00:07: [mem 0xfee00000-0xfee00fff] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x04d0-0x04d1] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x040b] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x04d6] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0c00-0x0c01] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0c14] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0c50-0x0c51] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0c52] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0c6c] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0c6f] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0cd0-0x0cd1] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0cd2-0x0cd3] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0cd4-0x0cd5] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0cd6-0x0cd7] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0cd8-0x0cdf] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0b00-0x0b3f] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0800-0x089f] could not be reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0b00-0x0b0f] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0b20-0x0b3f] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0900-0x090f] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0x0910-0x091f] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [io 0xfe00-0xfefe] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [mem 0xffb80000-0xffbfffff] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [mem 0xfec10000-0xfec1001f] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: [mem 0xfed40000-0xfed44fff] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    Nov 01 09:48:57 danserver kernel: system 00:09: [io 0x0230-0x023f] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:09: [io 0x0290-0x029f] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:09: [io 0x0300-0x030f] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:09: [io 0x0a30-0x0a3f] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    Nov 01 09:48:57 danserver kernel: system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved
    Nov 01 09:48:57 danserver kernel: system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    Nov 01 09:48:57 danserver kernel: system 00:0b: [mem 0x00000000-0x0009ffff] could not be reserved
    Nov 01 09:48:57 danserver kernel: system 00:0b: [mem 0x000c0000-0x000cffff] could not be reserved
    Nov 01 09:48:57 danserver kernel: system 00:0b: [mem 0x000e0000-0x000fffff] could not be reserved
    Nov 01 09:48:57 danserver kernel: system 00:0b: [mem 0x00100000-0xcfffffff] could not be reserved
    Nov 01 09:48:57 danserver kernel: system 00:0b: [mem 0xfec00000-0xffffffff] could not be reserved
    Nov 01 09:48:57 danserver kernel: system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
    Nov 01 09:48:57 danserver kernel: pnp: PnP ACPI: found 12 devices
    Nov 01 09:48:57 danserver kernel: ACPI: bus type PNP unregistered
    Nov 01 09:48:57 danserver kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:01.0: bridge window [mem 0xfe900000-0xfeafffff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:09.0: PCI bridge to [bus 02]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:09.0: bridge window [io 0xd000-0xdfff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:09.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: PCI bridge to [bus 03]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: bridge window [io 0xe000-0xefff]
    Nov 01 09:48:57 danserver kernel: pci 0000:00:14.4: bridge window [mem 0xfeb00000-0xfebfffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: resource 8 [mem 0xd0000000-0xdfffffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfebfffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:01: resource 1 [mem 0xfe900000-0xfeafffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:02: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:03: resource 0 [io 0xe000-0xefff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:03: resource 1 [mem 0xfeb00000-0xfebfffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000dffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:03: resource 8 [mem 0xd0000000-0xdfffffff]
    Nov 01 09:48:57 danserver kernel: pci_bus 0000:03: resource 9 [mem 0xf0000000-0xfebfffff]
    Nov 01 09:48:57 danserver kernel: NET: Registered protocol family 2
    Nov 01 09:48:57 danserver kernel: TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    Nov 01 09:48:57 danserver kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Nov 01 09:48:57 danserver kernel: TCP: Hash tables configured (established 65536 bind 65536)
    Nov 01 09:48:57 danserver kernel: TCP: reno registered
    Nov 01 09:48:57 danserver kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
    Nov 01 09:48:57 danserver kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    Nov 01 09:48:57 danserver kernel: NET: Registered protocol family 1
    Nov 01 09:48:57 danserver kernel: pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
    Nov 01 09:48:57 danserver kernel: pci 0000:01:05.0: Boot video device
    Nov 01 09:48:57 danserver kernel: PCI: CLS 64 bytes, default 64
    Nov 01 09:48:57 danserver kernel: Unpacking initramfs...
    Nov 01 09:48:57 danserver kernel: Freeing initrd memory: 3036K (ffff88007fd09000 - ffff880080000000)
    Nov 01 09:48:57 danserver kernel: PCI-DMA: Disabling AGP.
    Nov 01 09:48:57 danserver kernel: PCI-DMA: aperture base @ c4000000 size 65536 KB
    Nov 01 09:48:57 danserver kernel: PCI-DMA: using GART IOMMU.
    Nov 01 09:48:57 danserver kernel: PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
    Nov 01 09:48:57 danserver kernel: LVT offset 1 assigned for vector 0x400
    Nov 01 09:48:57 danserver kernel: IBS: LVT offset 1 assigned
    Nov 01 09:48:57 danserver kernel: perf: AMD IBS detected (0x0000001f)
    Nov 01 09:48:57 danserver kernel: Scanning for low memory corruption every 60 seconds
    Nov 01 09:48:57 danserver kernel: audit: initializing netlink socket (disabled)
    Nov 01 09:48:57 danserver kernel: type=2000 audit(1383299333.613:1): initialized
    Nov 01 09:48:57 danserver kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Nov 01 09:48:57 danserver kernel: zbud: loaded
    Nov 01 09:48:57 danserver kernel: VFS: Disk quotas dquot_6.5.2
    Nov 01 09:48:57 danserver kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Nov 01 09:48:57 danserver kernel: msgmni has been set to 15469
    Nov 01 09:48:57 danserver kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Nov 01 09:48:57 danserver kernel: io scheduler noop registered
    Nov 01 09:48:57 danserver kernel: io scheduler deadline registered
    Nov 01 09:48:57 danserver kernel: io scheduler cfq registered (default)
    Nov 01 09:48:57 danserver kernel: pcieport 0000:00:09.0: irq 40 for MSI/MSI-X
    Nov 01 09:48:57 danserver kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Nov 01 09:48:57 danserver kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Nov 01 09:48:57 danserver kernel: GHES: HEST is not enabled!
    Nov 01 09:48:57 danserver kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Nov 01 09:48:57 danserver kernel: 00:06: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    Nov 01 09:48:57 danserver kernel: Linux agpgart interface v0.103
    Nov 01 09:48:57 danserver kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
    Nov 01 09:48:57 danserver kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Nov 01 09:48:57 danserver kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Nov 01 09:48:57 danserver kernel: mousedev: PS/2 mouse device common for all mice
    Nov 01 09:48:57 danserver kernel: rtc_cmos 00:02: RTC can wake from S4
    Nov 01 09:48:57 danserver kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    Nov 01 09:48:57 danserver kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    Nov 01 09:48:57 danserver kernel: cpuidle: using governor ladder
    Nov 01 09:48:57 danserver kernel: cpuidle: using governor menu
    Nov 01 09:48:57 danserver kernel: drop_monitor: Initializing network drop monitor service
    Nov 01 09:48:57 danserver kernel: TCP: cubic registered
    Nov 01 09:48:57 danserver kernel: IPv6: Loaded, but administratively disabled, reboot required to enable
    Nov 01 09:48:57 danserver kernel: NET: Registered protocol family 17
    Nov 01 09:48:57 danserver kernel: Key type dns_resolver registered
    Nov 01 09:48:57 danserver kernel: PM: Hibernation image not present or could not be loaded.
    Nov 01 09:48:57 danserver kernel: registered taskstats version 1
    Nov 01 09:48:57 danserver kernel: Magic number: 5:844:827
    Nov 01 09:48:57 danserver kernel: rtc_cmos 00:02: setting system clock to 2013-11-01 09:48:54 UTC (1383299334)
    Nov 01 09:48:57 danserver kernel: Freeing unused kernel memory: 1140K (ffffffff818c9000 - ffffffff819e6000)
    Nov 01 09:48:57 danserver kernel: Write protecting the kernel read-only data: 8192k
    Nov 01 09:48:57 danserver kernel: Freeing unused kernel memory: 1084K (ffff8800014f1000 - ffff880001600000)
    Nov 01 09:48:57 danserver kernel: Freeing unused kernel memory: 352K (ffff8800017a8000 - ffff880001800000)
    Nov 01 09:48:57 danserver systemd-udevd[57]: starting version 208
    Nov 01 09:48:57 danserver kernel: SCSI subsystem initialized
    Nov 01 09:48:57 danserver kernel: ACPI: bus type USB registered
    Nov 01 09:48:57 danserver kernel: usbcore: registered new interface driver usbfs
    Nov 01 09:48:57 danserver kernel: usbcore: registered new interface driver hub
    Nov 01 09:48:57 danserver kernel: usbcore: registered new device driver usb
    Nov 01 09:48:57 danserver kernel: ACPI: bus type ATA registered
    Nov 01 09:48:57 danserver kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Nov 01 09:48:57 danserver kernel: libata version 3.00 loaded.
    Nov 01 09:48:57 danserver kernel: ehci-pci: EHCI PCI platform driver
    Nov 01 09:48:57 danserver kernel: ehci-pci 0000:00:12.2: EHCI Host Controller
    Nov 01 09:48:57 danserver kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Nov 01 09:48:57 danserver kernel: ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
    Nov 01 09:48:57 danserver kernel: ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Nov 01 09:48:57 danserver kernel: ehci-pci 0000:00:12.2: debug port 1
    Nov 01 09:48:57 danserver kernel: ehci-pci 0000:00:12.2: irq 17, io mem 0xfe8ff800
    Nov 01 09:48:57 danserver kernel: ohci-pci: OHCI PCI platform driver
    Nov 01 09:48:57 danserver kernel: ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
    Nov 01 09:48:57 danserver kernel: hub 1-0:1.0: USB hub found
    Nov 01 09:48:57 danserver kernel: hub 1-0:1.0: 6 ports detected
    Nov 01 09:48:57 danserver kernel: ehci-pci 0000:00:13.2: EHCI Host Controller
    Nov 01 09:48:57 danserver kernel: ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
    Nov 01 09:48:57 danserver kernel: ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Nov 01 09:48:57 danserver kernel: ehci-pci 0000:00:13.2: debug port 1
    Nov 01 09:48:57 danserver kernel: ehci-pci 0000:00:13.2: irq 19, io mem 0xfe8ff400
    Nov 01 09:48:57 danserver kernel: ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
    Nov 01 09:48:57 danserver kernel: hub 2-0:1.0: USB hub found
    Nov 01 09:48:57 danserver kernel: hub 2-0:1.0: 6 ports detected
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:12.0: OHCI PCI host controller
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:12.0: irq 16, io mem 0xfe8fe000
    Nov 01 09:48:57 danserver kernel: firewire_ohci 0000:03:08.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
    Nov 01 09:48:57 danserver kernel: hub 3-0:1.0: USB hub found
    Nov 01 09:48:57 danserver kernel: hub 3-0:1.0: 3 ports detected
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:12.1: OHCI PCI host controller
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:12.1: new USB bus registered, assigned bus number 4
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:12.1: irq 16, io mem 0xfe8fd000
    Nov 01 09:48:57 danserver kernel: hub 4-0:1.0: USB hub found
    Nov 01 09:48:57 danserver kernel: hub 4-0:1.0: 3 ports detected
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:13.0: OHCI PCI host controller
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 5
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:13.0: irq 18, io mem 0xfe8fc000
    Nov 01 09:48:57 danserver kernel: hub 5-0:1.0: USB hub found
    Nov 01 09:48:57 danserver kernel: hub 5-0:1.0: 3 ports detected
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:13.1: OHCI PCI host controller
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:13.1: new USB bus registered, assigned bus number 6
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:13.1: irq 18, io mem 0xfe8fb000
    Nov 01 09:48:57 danserver kernel: hub 6-0:1.0: USB hub found
    Nov 01 09:48:57 danserver kernel: hub 6-0:1.0: 3 ports detected
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:14.5: OHCI PCI host controller
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 7
    Nov 01 09:48:57 danserver kernel: ohci-pci 0000:00:14.5: irq 18, io mem 0xfe8fa000
    Nov 01 09:48:57 danserver kernel: hub 7-0:1.0: USB hub found
    Nov 01 09:48:57 danserver kernel: hub 7-0:1.0: 2 ports detected
    Nov 01 09:48:57 danserver kernel: ahci 0000:00:11.0: version 3.0
    Nov 01 09:48:57 danserver kernel: ahci 0000:00:11.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
    Nov 01 09:48:57 danserver kernel: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc
    Nov 01 09:48:57 danserver kernel: scsi0 : ahci
    Nov 01 09:48:57 danserver kernel: scsi1 : ahci
    Nov 01 09:48:57 danserver kernel: scsi2 : ahci
    Nov 01 09:48:57 danserver kernel: scsi3 : ahci
    Nov 01 09:48:57 danserver kernel: ata1: SATA max UDMA/133 abar m1024@0xfe8ffc00 port 0xfe8ffd00 irq 22
    Nov 01 09:48:57 danserver kernel: ata2: SATA max UDMA/133 abar m1024@0xfe8ffc00 port 0xfe8ffd80 irq 22
    Nov 01 09:48:57 danserver kernel: ata3: SATA max UDMA/133 abar m1024@0xfe8ffc00 port 0xfe8ffe00 irq 22
    Nov 01 09:48:57 danserver kernel: ata4: SATA max UDMA/133 abar m1024@0xfe8ffc00 port 0xfe8ffe80 irq 22
    Nov 01 09:48:57 danserver kernel: pata_atiixp 0000:00:14.1: setting latency timer to 64
    Nov 01 09:48:57 danserver kernel: scsi4 : pata_atiixp
    Nov 01 09:48:57 danserver kernel: scsi5 : pata_atiixp
    Nov 01 09:48:57 danserver kernel: ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xff00 irq 14
    Nov 01 09:48:57 danserver kernel: ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xff08 irq 15
    Nov 01 09:48:57 danserver kernel: firewire_core 0000:03:08.0: created device fw0: GUID 001e8c000042fe5f, S400
    Nov 01 09:48:57 danserver kernel: ata2: SATA link down (SStatus 0 SControl 300)
    Nov 01 09:48:57 danserver kernel: ata4: SATA link down (SStatus 0 SControl 300)
    Nov 01 09:48:57 danserver kernel: ata3: SATA link down (SStatus 0 SControl 300)
    Nov 01 09:48:57 danserver kernel: usb 5-1: new low-speed USB device number 2 using ohci-pci
    Nov 01 09:48:57 danserver kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Nov 01 09:48:57 danserver kernel: ata1.00: ATA-8: WDC WD3200AAJS-56M0A0, 01.03E01, max UDMA/133
    Nov 01 09:48:57 danserver kernel: ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Nov 01 09:48:57 danserver kernel: ata1.00: configured for UDMA/133
    Nov 01 09:48:57 danserver kernel: scsi 0:0:0:0: Direct-Access ATA WDC WD3200AAJS-5 01.0 PQ: 0 ANSI: 5
    Nov 01 09:48:57 danserver kernel: sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    Nov 01 09:48:57 danserver kernel: sd 0:0:0:0: [sda] Write Protect is off
    Nov 01 09:48:57 danserver kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Nov 01 09:48:57 danserver kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Nov 01 09:48:57 danserver kernel: sda: sda1 sda2 sda3
    Nov 01 09:48:57 danserver kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Nov 01 09:48:57 danserver kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Nov 01 09:48:57 danserver kernel: usbcore: registered new interface driver usbhid
    Nov 01 09:48:57 danserver kernel: usbhid: USB HID core driver
    Nov 01 09:48:57 danserver kernel: input: CHESEN USB Keyboard as /devices/pci0000:00/0000:00:13.0/usb5/5-1/5-1:1.0/input/input0
    Nov 01 09:48:57 danserver kernel: hid-generic 0003:0A81:0101.0001: input,hidraw0: USB HID v1.10 Keyboard [CHESEN USB Keyboard] on usb-0000:00:13.0-1/input0
    Nov 01 09:48:57 danserver kernel: input: CHESEN USB Keyboard as /devices/pci0000:00/0000:00:13.0/usb5/5-1/5-1:1.1/input/input1
    Nov 01 09:48:57 danserver kernel: hid-generic 0003:0A81:0101.0002: input,hidraw1: USB HID v1.10 Device [CHESEN USB Keyboard] on usb-0000:00:13.0-1/input1
    Nov 01 09:48:57 danserver kernel: tsc: Refined TSC clocksource calibration: 3013.426 MHz
    Nov 01 09:48:57 danserver kernel: usb 5-2: new low-speed USB device number 3 using ohci-pci
    Nov 01 09:48:57 danserver kernel: input: Lenovo Mini Wireless Keyboard as /devices/pci0000:00/0000:00:13.0/usb5/5-2/5-2:1.0/input/input2
    Nov 01 09:48:57 danserver kernel: hid-generic 0003:17EF:6014.0003: input,hidraw2: USB HID v1.11 Keyboard [Lenovo Mini Wireless Keyboard] on usb-0000:00:13.0-2/input0
    Nov 01 09:48:57 danserver kernel: input: Lenovo Mini Wireless Keyboard as /devices/pci0000:00/0000:00:13.0/usb5/5-2/5-2:1.1/input/input3
    Nov 01 09:48:57 danserver kernel: hid-generic 0003:17EF:6014.0004: input,hiddev0,hidraw3: USB HID v1.11 Mouse [Lenovo Mini Wireless Keyboard] on usb-0000:00:13.0-2/input1
    Nov 01 09:48:57 danserver kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    Nov 01 09:48:57 danserver systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Nov 01 09:48:57 danserver systemd[1]: Set hostname to <danserver>.
    Nov 01 09:48:57 danserver kernel: Switched to clocksource tsc
    Nov 01 09:48:57 danserver systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    Nov 01 09:48:57 danserver systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Nov 01 09:48:57 danserver systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Nov 01 09:48:57 danserver systemd[1]: Expecting device sys-subsystem-net-devices-enp2s0.device...
    Nov 01 09:48:57 danserver systemd[1]: Starting Remote File Systems.
    Nov 01 09:48:57 danserver systemd[1]: Reached target Remote File Systems.
    Nov 01 09:48:57 danserver systemd[1]: Starting LVM2 metadata daemon socket.
    Nov 01 09:48:57 danserver systemd[1]: Listening on LVM2 metadata daemon socket.
    Nov 01 09:48:57 danserver systemd[1]: Starting Device-mapper event daemon FIFOs.
    Nov 01 09:48:57 danserver systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Nov 01 09:48:57 danserver systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Nov 01 09:48:57 danserver systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Nov 01 09:48:57 danserver systemd[1]: Starting Delayed Shutdown Socket.
    Nov 01 09:48:57 danserver systemd[1]: Listening on Delayed Shutdown Socket.
    Nov 01 09:48:57 danserver systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Nov 01 09:48:57 danserver systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Nov 01 09:48:57 danserver systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Nov 01 09:48:57 danserver systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Nov 01 09:48:57 danserver systemd[1]: Starting Paths.
    Nov 01 09:48:57 danserver systemd[1]: Reached target Paths.
    Nov 01 09:48:57 danserver systemd[1]: Starting Encrypted Volumes.
    Nov 01 09:48:57 danserver systemd[1]: Reached target Encrypted Volumes.
    Nov 01 09:48:57 danserver systemd[1]: Starting udev Kernel Socket.
    Nov 01 09:48:57 danserver systemd[1]: Listening on udev Kernel Socket.
    Nov 01 09:48:57 danserver systemd[1]: Starting udev Control Socket.
    Nov 01 09:48:57 danserver systemd[1]: Listening on udev Control Socket.
    Nov 01 09:48:57 danserver systemd[1]: Starting Journal Socket.
    Nov 01 09:48:57 danserver systemd[1]: Listening on Journal Socket.
    Nov 01 09:48:57 danserver systemd[1]: Mounting Huge Pages File System...
    Nov 01 09:48:57 danserver systemd[1]: Starting udev Coldplug all Devices...
    Nov 01 09:48:57 danserver systemd[1]: Started Load Kernel Modules.
    Nov 01 09:48:57 danserver systemd[1]: Starting Apply Kernel Variables...
    Nov 01 09:48:57 danserver systemd[1]: Started Set Up Additional Binary Formats.
    Nov 01 09:48:57 danserver systemd[1]: Mounting Debug File System...
    Nov 01 09:48:57 danserver systemd[1]: Starting Create list of required static device nodes for the current kernel...
    Nov 01 09:48:57 danserver systemd[1]: Mounting Configuration File System...
    Nov 01 09:48:57 danserver systemd[1]: Mounting POSIX Message Queue File System...
    Nov 01 09:48:57 danserver systemd[1]: Starting Setup Virtual Console...
    Nov 01 09:48:57 danserver systemd[1]: Starting Journal Service...
    Nov 01 09:48:57 danserver systemd[1]: Started Journal Service.
    Nov 01 09:48:57 danserver systemd-journal[133]: Journal started
    Nov 01 09:48:57 danserver systemd[1]: Mounted FUSE Control File System.
    Nov 01 09:48:57 danserver systemd[1]: Starting Swap.
    Nov 01 09:48:57 danserver systemd[1]: Reached target Swap.
    Nov 01 09:48:57 danserver systemd[1]: Mounting Temporary Directory...
    Nov 01 09:48:57 danserver systemd[1]: Started File System Check on Root Device.
    Nov 01 09:48:57 danserver systemd[1]: Starting Remount Root and Kernel File Systems...
    Nov 01 09:48:57 danserver systemd[1]: Expecting device dev-sda1.device...
    Nov 01 09:48:57 danserver systemd[1]: Starting Root Slice.
    Nov 01 09:48:57 danserver systemd[1]: Created slice Root Slice.
    Nov 01 09:48:57 danserver systemd[1]: Starting User and Session Slice.
    Nov 01 09:48:57 danserver systemd[1]: Created slice User and Session Slice.
    Nov 01 09:48:57 danserver systemd[1]: Starting System Slice.
    Nov 01 09:48:57 danserver systemd[1]: Created slice System Slice.
    Nov 01 09:48:57 danserver systemd[1]: Starting system-netctl.slice.
    Nov 01 09:48:57 danserver systemd[1]: Created slice system-netctl.slice.
    Nov 01 09:48:57 danserver systemd[1]: Starting system-getty.slice.
    Nov 01 09:48:57 danserver systemd[1]: Created slice system-getty.slice.
    Nov 01 09:48:57 danserver systemd[1]: Starting Slices.
    Nov 01 09:48:57 danserver systemd[1]: Reached target Slices.
    Nov 01 09:48:57 danserver systemd[1]: Expecting device dev-sda3.device...
    Nov 01 09:48:57 danserver systemd[1]: Mounted Huge Pages File System.
    Nov 01 09:48:57 danserver systemd[1]: Started Apply Kernel Variables.
    Nov 01 09:48:57 danserver systemd[1]: Mounted Debug File System.
    Nov 01 09:48:57 danserver systemd[1]: Mounted Configuration File System.
    Nov 01 09:48:57 danserver systemd[1]: Mounted POSIX Message Queue File System.
    Nov 01 09:48:57 danserver systemd[1]: Mounted Temporary Directory.
    Nov 01 09:48:57 danserver kernel: EXT4-fs (sda2): re-mounted. Opts: data=ordered
    Nov 01 09:48:57 danserver systemd[1]: Started Setup Virtual Console.
    Nov 01 09:48:57 danserver systemd[1]: Started Remount Root and Kernel File Systems.
    Nov 01 09:48:57 danserver systemd[1]: Started udev Coldplug all Devices.
    Nov 01 09:48:57 danserver systemd[1]: Starting Load/Save Random Seed...
    Nov 01 09:48:57 danserver systemd[1]: Started Create list of required static device nodes for the current kernel.
    Nov 01 09:48:57 danserver systemd[1]: Starting Create static device nodes in /dev...
    Nov 01 09:48:57 danserver systemd[1]: Started Load/Save Random Seed.
    Nov 01 09:48:57 danserver systemd[1]: Started Create static device nodes in /dev.
    Nov 01 09:48:57 danserver systemd[1]: Starting udev Kernel Device Manager...
    Nov 01 09:48:57 danserver systemd[1]: Starting Local File Systems (Pre).
    Nov 01 09:48:57 danserver systemd[1]: Reached target Local File Systems (Pre).
    Nov 01 09:48:57 danserver systemd[1]: Started udev Kernel Device Manager.
    Nov 01 09:48:57 danserver systemd-udevd[156]: starting version 208
    Nov 01 09:48:57 danserver kernel: ACPI: processor limited to max C-state 1
    Nov 01 09:48:57 danserver kernel: acpi-cpufreq: overriding BIOS provided _PSD data
    Nov 01 09:48:58 danserver kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4
    Nov 01 09:48:58 danserver kernel: ACPI: Power Button [PWRB]
    Nov 01 09:48:58 danserver kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    Nov 01 09:48:58 danserver kernel: ACPI: Power Button [PWRF]
    Nov 01 09:48:58 danserver kernel: wmi: Mapper loaded
    Nov 01 09:48:58 danserver kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Nov 01 09:48:58 danserver kernel: [drm] Initialized drm 1.1.0 20060810
    Nov 01 09:48:58 danserver kernel: ACPI Warning: 0x0000000000000b00-0x0000000000000b07 SystemIO conflicts with Region \SMRG 1 (20130517/utaddress-251)
    Nov 01 09:48:58 danserver kernel: ACPI Warning: 0x0000000000000b00-0x0000000000000b07 SystemIO conflicts with Region \_SB_.PCI0.SBRG.ASOC.SMRG 2 (20130517/utaddress-251)
    Nov 01 09:48:58 danserver kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Nov 01 09:48:58 danserver kernel: MCE: In-kernel MCE decoding enabled.
    Nov 01 09:48:58 danserver kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver v0.05
    Nov 01 09:48:58 danserver kernel: sp5100_tco: PCI Revision ID: 0x3c
    Nov 01 09:48:58 danserver kernel: sp5100_tco: failed to find MMIO address, giving up.
    Nov 01 09:48:58 danserver kernel: EDAC MC: Ver: 3.0.0
    Nov 01 09:48:58 danserver kernel: input: PC Speaker as /devices/platform/pcspkr/input/input6
    Nov 01 09:48:58 danserver kernel: AMD64 EDAC driver v3.4.0
    Nov 01 09:48:58 danserver kernel: EDAC amd64: DRAM ECC disabled.
    Nov 01 09:48:58 danserver kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    (Note that use of the override may cause unknown side effects.)
    Nov 01 09:48:58 danserver kernel: input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
    Nov 01 09:48:58 danserver kernel: input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
    Nov 01 09:48:58 danserver kernel: input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    Nov 01 09:48:58 danserver kernel: input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
    Nov 01 09:48:58 danserver kernel: input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
    Nov 01 09:48:58 danserver kernel: input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input12
    Nov 01 09:48:58 danserver kernel: input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input13
    Nov 01 09:48:58 danserver kernel: input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input14
    Nov 01 09:48:58 danserver kernel: snd_hda_intel 0000:01:05.1: setting latency timer to 64
    Nov 01 09:48:58 danserver kernel: e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
    Nov 01 09:48:58 danserver kernel: e1000: Copyright (c) 1999-2006 Intel Corporation.
    Nov 01 09:48:58 danserver kernel: microcode: CPU0: patch_level=0x010000b6
    Nov 01 09:48:58 danserver kernel: [drm] radeon kernel modesetting enabled.
    Nov 01 09:48:58 danserver kernel: microcode: CPU0: new patch_level=0x010000c8
    Nov 01 09:48:58 danserver kernel: microcode: CPU1: patch_level=0x010000b6
    Nov 01 09:48:58 danserver kernel: microcode: CPU1: new patch_level=0x010000c8
    Nov 01 09:48:58 danserver kernel: microcode: CPU2: patch_level=0x010000b6
    Nov 01 09:48:58 danserver kernel: microcode: CPU2: new patch_level=0x010000c8
    Nov 01 09:48:58 danserver kernel: microcode: CPU3: patch_level=0x010000b6
    Nov 01 09:48:58 danserver kernel: microcode: CPU3: new patch_level=0x010000c8
    Nov 01 09:48:58 danserver kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Nov 01 09:48:58 danserver kernel: input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:05.1/sound/card1/input15
    Nov 01 09:48:58 danserver kernel: kvm: disabled by bios
    Nov 01 09:48:58 danserver kernel: kvm: disabled by bios
    Nov 01 09:48:58 danserver systemd[1]: Starting Sound Card.
    Nov 01 09:48:58 danserver systemd[1]: Reached target Sound Card.
    Nov 01 09:48:58 danserver kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    Nov 01 09:48:58 danserver kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
    Nov 01 09:48:58 danserver kernel: r8169 0000:02:00.0: irq 41 for MSI/MSI-X
    Nov 01 09:48:58 danserver kernel: r8169 0000:02:00.0 eth0: RTL8168e/8111e at 0xffffc90011ade000, f4:6d:04:d7:52:d4, XID 0c200000 IRQ 41
    Nov 01 09:48:58 danserver kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    Nov 01 09:48:58 danserver kernel: [drm] initializing kernel modesetting (RS880 0x1002:0x9715 0x1043:0

  • ALV with pushbutton

    Hi all,
    When I create a ALV output with grid(using REUSE_ALV_GRID_DISPLAY), during output display I want a pushbutton to be displayed BEFORE each row.The row should not be editable.When I select the button, the whole row should be selected.
    What extra code should I add in my program?
    Thanks,
    Shivaa......

    hi Vijay,
    I have added the code as you suggested.Isee the output as I wanted.But, when I click 'BACK' pushbutton,
    I get following runtime error-->  SNAP_NO_NEW_ENTRY...
    I am enclosing the code here..Let me know if I have done any mistake.
    REPORT  ZALV.
    initialization.
    tables: lfa1.
    type-pools: slis.
    data: itab like lfa1 occurs 3,
          fcat type slis_t_fieldcat_alv,
          layo type slis_layout_alv,
          pnam type sy-repid.
    layo-colwidth_optimize = 'X'.
    layo-zebra = 'X'.
    layo-detail_popup = 'X'.
    layo-box_fieldname = 'BOX_FIELD'.
    start-of-selection.
    pnam = sy-repid.
    select * up to 20 rows from lfa1 into table itab.
    perform calcat.
    perform gridout.
    form calcat.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
      EXPORTING
        I_PROGRAM_NAME               = pnam
        I_INTERNAL_TABNAME           = 'ITAB'
       I_STRUCTURE_NAME             =
       I_CLIENT_NEVER_DISPLAY       = 'X'
        I_INCLNAME                   = pnam
       I_BYPASSING_BUFFER           =
       I_BUFFER_ACTIVE              =
       CHANGING
         CT_FIELDCAT                  = fcat
    EXCEPTIONS
       INCONSISTENT_INTERFACE       = 1
       PROGRAM_ERROR                = 2
       OTHERS                       = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endform.
    form gridout.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
       I_INTERFACE_CHECK                 = ' '
       I_BYPASSING_BUFFER                = ' '
       I_BUFFER_ACTIVE                   = ' '
        I_CALLBACK_PROGRAM                = pnam
       I_CALLBACK_PF_STATUS_SET          = ' '
       I_CALLBACK_USER_COMMAND           = ' '
       I_CALLBACK_TOP_OF_PAGE            = ' '
       I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
       I_CALLBACK_HTML_END_OF_LIST       = ' '
       I_STRUCTURE_NAME                  =
       I_BACKGROUND_ID                   = ' '
        I_GRID_TITLE                      = 'Vendor Master Information'
       I_GRID_SETTINGS                   =
        IS_LAYOUT                         = layo
        IT_FIELDCAT                       = fcat
       IT_EXCLUDING                      =
       IT_SPECIAL_GROUPS                 =
       IT_SORT                           =
       IT_FILTER                         =
       IS_SEL_HIDE                       =
       I_DEFAULT                         = 'X'
       I_SAVE                            = ' '
       IS_VARIANT                        =
       IT_EVENTS                         =
       IT_EVENT_EXIT                     =
       IS_PRINT                          =
       IS_REPREP_ID                      =
       I_SCREEN_START_COLUMN             = 0
       I_SCREEN_START_LINE               = 0
       I_SCREEN_END_COLUMN               = 0
       I_SCREEN_END_LINE                 = 0
       IT_ALV_GRAPHICS                   =
       IT_HYPERLINK                      =
       IT_ADD_FIELDCAT                   =
       IT_EXCEPT_QINFO                   =
       I_HTML_HEIGHT_TOP                 =
       I_HTML_HEIGHT_END                 =
    IMPORTING
       E_EXIT_CAUSED_BY_CALLER           =
       ES_EXIT_CAUSED_BY_USER            =
       TABLES
         T_OUTTAB                          = itab
    EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • Unable to extract all the records initial run(for Datasource 0HR_PY_1).

    Hi All,
    I was trying to extract the data using 0HR_PY_1 Data Source (HR-Payroll related).  When I use Full update in BW, it extracts all the records from R/3 but when I use Init load to extract the data, it is not extracting all the records(some records are missing).
    So I dont know what exactly is happening. I also checked RSA7 and deleted the entry for this data source (this entry was created because we tried to do some test delta in the past).
    When I goto RSA3(Extractor Checker) and use update mode "F" (along with some selection criteria employee#284), it shows 550 records which is the correct number.But when I use the update mode "C"(Initialization of the delta transfer),  I just get 490 records only.
    So I am thinking is there anything I need to do to reset the initialization tables somewhere on r/3 side or do some kind of settings on r/3 by which I can extract all the records by using INIT load.

    I noticed a weird thing in RSA3,
    I tested this without any selection criteria.
    Using "F" update mode, the total number of records were 173,654
    Using "C" update mode, the total number of records were 176,205
    So, even though I was getting less number of records by using "Full" update mode, I was able to see the latest data I wanted. But When I use "C" update mode, even though the number of records is more, still I could not see the latest data (6/2007)???
    So dont know what exactly is happening!!

  • Custom dropdownbox for currency

    Hi Experts,
    I am trying to create dropdownbox for Currency in B2C scenario in checkout screen.
    I am able to capture values from shop admin but unable to place them in Table and ResultData. 
    It seems the issue is at initializing "com.sap.isa.core.util.table.Table tab" in the following code.
    How to initialize Table and capture value in ResultData?
            protected ResultData _supportedCurrencies;
         public ResultData readSupportedCurrencies(Shop shop)
              throws CommunicationException{
              if ( _supportedCurrencies == null ){
                   try{     
                        String supportedCurrencies = (String)shop.getExtensionData(CNpShopExtensionNames.CURRENCIES);
                        StringTokenizer st = new StringTokenizer(supportedCurrencies, ",");
                        com.sap.isa.core.util.table.Table tab = _supportedCurrencies.getTable();     
                        int i=1;
                        String sCurrency = "";
                        Object rowKey;
                        TableRow tabRow;
                        while(st.hasMoreTokens()){
                             sCurrency = st.nextToken();
                             rowKey = sCurrency;
                               tabRow = tab.insertRow();
                               tabRow.setRowKey((RowKey)rowKey);
                               tabRow.setValue(i, sCurrency);
                   }catch(Exception cex){
                        log.error("Exception occured in reading  currency "+ cex.toString());      
              return _supportedCurrencies;
    Venkat

    Fixed by myself.

  • EU_IMPORT ERROR: during UPG from 4.7ee TO ECC6.0

    hello masters
                I am getting error while upg from 4.7ee to ecc6.0 on oracle under SapUp ,
    >>EU_IMPORT ERROR:, log file "EX000015.DPR": only 0 times "R3load.exe: job completed" found.
    Analyze the log file EX000015.DPR for error messages or program abort.
    D:\usr\sap\put\exe\R3load.exe: START OF LOG: 20090224011912
    D:\usr\sap\put\exe\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP
    D:\usr\sap\put\exe\R3load.exe: version R7.00/V1.4
    Compiled Sep  1 2006 00:30:56
    D:\usr\sap\put\exe\R3load.exe -i D:\usr\sap\put\exchange\compack\EX000015.COD -p D:\usr\sap\put\log\EX000015.DPR -s D:\usr\sap\put\log\EX000015.DST -datacodepage 1100 -dbcodepage auto -nametab DDNTT~ DDNTF~ -t 4987
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): WE8DEC
    (SQL) INFO: SSEXC.SQL not found
    (DB) INFO: REPOSRC~ created #20090224011912
    (RFF) ERROR: invalid checksum in data file "E:\UPGRADESOFT\Export2\Export2\UPG12\DBINDEP\EX000015.001"
                 current table was "REPOSRC~"
    (DB) INFO: REPOSRC^0 created #20090224012304
    (DB) INFO: disconnected from DB
    D:\usr\sap\put\exe\R3load.exe: job finished with 1 error(s)
    D:\usr\sap\put\exe\R3load.exe: END OF LOG: 20090224012304

    Hi,
    1. Check whether DB is running or not
    2. R3trans -d (here what is the return code)
    3. post the following logs from the put/log
    EU_IMP1.ELG
    EU_IMP1.LOG
    Phase List for the Upgrade to SAP ERP 2005 700
    PREPARE Modules:
    Parameter input
    Initialization
    Import
    Extension
    Integration
    Installation
    General checks
    Activation checks
    Necessary checks for conversions
    Optional checks for conversions
    Modification support
    Pre-processing
    Upgrade Phase Groups:
    Import and Modification Transfer
    Shadow System Installation
    Shadow System Operations: SPDD and Activation
    Shadow Import
    Downtime phases I: Switch tables and Kernel
    Downtime phases II: Conversion, Main Import, XPRAs
    Post Processing
    Explanations
    u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2013
    PREPARE Modules
    PREPARE Module: Parameter input (Mandatory)
    Phase Duration PREPARE Actions Log Files User Actions
    BEGIN_PRE < 10s Checks upgrade directory
    KEY_CHK < 1% Prompts for keyword from SAP main upgrade note KEYCHK.LOG
    Check for upgrade correction package and enter upgrade keyword
    EXTRACTKRN_PRE < 10s Extracts kernel EXTRKRN.LOG
    none
    INITPUT_PRE dial Initializes R3up
    DB2 UDB for z/OS and OS/390:
    Tests JCL Submission
    Enter parameters
    DB2 UDB for z/OS and OS/390:
    Test JCL Submission
    DBCHK_PRE < 10s Determines database version and SAP release
    CONFCHK_IMP < 10s Tests operating system and database version Upgrade operating system and database to the required version, if necessary
    SOLMAN_CHK < 1% Prompts for keyword from solution manager SOLMANCHK.LOG
    Enter keyword generated by solution manager
    CHKSYSTYPE < 10s Determines if system is SAP or customer CHKSYSTYPE.LOG
    TOOLVERSION_INI < 10s Determines and checks the tool version TOOLVERS.LOG
    Upgrade tools if necessary
    DBCONNCHK_INI < 10s Tests if new tools can connect to the database DBCONNCHK.LOG
    J2EE_CHK < 10s As of start release 620:
    Checks if J2EE is also running J2EECHK.LOG
    info
    REQ_J2EEUPG < 1% CBU: Requests j2ee prepare and upgrade
    SETSYNC_PREP_STARTED dial events for sync with Jump
    REQ_READNOTE < 1% CBU: Requests cbu specific parameters
    INIT_CBU < 1% CBU: Requests cbu specific parameters
    CHECKGROUP_END0 < 1% End of module
    PREPARE Module: Initialization (Mandatory)
    Phase Duration PREPARE Actions Log Files User Actions
    INITCURENV < 10s Initializes internal administration information
    DBCHK_INI < 10s Determines database version and SAP release
    RFCCHK_INI < 10s Tests RFC connection RFCCHK_INI.LOG
    VERSCHK_INI < 10s Checks SAP release Upgrade to a valid source release, if necessary
    VALCHK_INI < 10s Tests target system: Is it a preliminary version? (Cannot upgrade the system) VALCHK.LOG
    UNICODE_CHK_PRE < 10s Checks, if DB is UNICODE UNICPTCP.LOG
    UNICHK.LOG
    SETSYNC_INFO_FINISHED dial events for sync with Jump
    UCMIG_DECISION < 10s For start release 46C to 46D:
    Check for combined Upgrade and Unicode Conversion UCMIGDEC.LOG
    CLNT_CHK_INI < 1% Checks whether clients are locked for SAP system upgrade EXECCT.LOG
    CLNTOUT.LOG
    Unlock clients for SAP system upgrade, if necessary
    PATCH_CHK1 < 1% Finds unconfirmed Support Packages and displays the result PATCHOUT.LOG
    EXECPT.LOG
    Call transaction SPAM to confirm any unconfirmed Support Packages, if necessary
    INTCHK_INI < 10s Checks whether the inactive nametab is empty
    ADJ_CNTRANS 1% ( Resolves inconsistencies in TABART-TABSPACE mapping ADJCNTRANS.LOG
    ADJCNTRANS.ELG
    INIT_CNTRANS < 10s Initializes the container name translator SELTAIA.LOG
    SELDBS.LOG
    INICNT.LOG
    Fix inconsistencies in TABART-TABSPACE mapping, if necessary. Additional informations are given in SAP Note 541542
    CNTRANS_PRE < 10s Makes adjustments to scripts for MCOD systems CNTPRE.LOG
    DMPSPC_INI < 10s Dumps database size DMPSPC_INI.LOG
    CHK_DB6_REG_PRE dial DB2 UDB for UNIX and Windows:
    Checks DB6 registry parameters
    SPACECHK_INI < 10s Checks database free space DBFPREP.LOG
    Extend the database, if necessary
    KRNCHK_DEST < 10s For start release 30D to 31I:
    Checks the SAP kernel version for the destination release KRNCHK.LOG
    Import kernel for the destnation release, if necessary
    DBPREP_CHK < 10s DB2 UDB for z/OS and OS/390:
    Performs DB2/390-specific checks DB2 UDB for z/OS and OS/390:
    Make preparations as described in SAP Note 400565
    EXECCV < 10s As of start release 46C:
    Reads cvers table EXECCV.LOG
    EXECAV < 1% Finds add-ons EXECAV.LOG
    COMPINFO_INI < 10s As of start release 46C:
    Get the component information after the addon selection COMPINFOINI.LOG
    ADDON_CHK dial Checks the current Add-on versions against the ranges in IS_RANGE.LST ADDONCHK.LOG
    ADDON_INFO dial print add-on information ADDONINFO.LOG
    ADDON_SPEC1 dial Requests add-on information ADDONSPEC1.LOG
    ADDON_TREAS dial Special actions for treasury ADDONTREAS.LOG
    ADDON_WFM dial As of start release 620:
    Special actions for wfmretail ADDONWFM.LOG
    ACE_CHK dial For start releases 620:
    Special actions for CRM ACECHK.LOG
    CRM_BILL dial For start release 610 to 620:
    Requests note handling CRMBILL.LOG
    PR_DBPAR dial ORACLE:
    Checks Oracle parameters PRDBPAR.LOG
    CHECKGROUP_END1 < 1% End of module
    PREPARE Module: Import (Mandatory)
    Phase Duration PREPARE Actions Log Files User Actions
    REQIMPORT dial Displays question Confirm execution of Import module
    READDATA 1% Reads data files from the upgrade CDs Mount each requested upgrade CD
    READDATA_EXT < 1% Reads additional data files from the upgrade CDs Mount each requested upgrade CD
    TOOLFIX_CHK < 1% Integrates the Upgrade Correction Package TOOLFIXCHK.LOG
    Unpacks the fix archive again to patch files from READDATA_EXT.
    CPYFIL0_CBU < 1% CBU: Copy files CBUCPY0.LOG
    EXEC_CPYFIL1_CBU < 1% CBU: Copy cbu specific files CBUCPY1.LOG
    FRP_CHK < 1% For start releases 640:
    Unpacks the FRP to the kernel directory FRPCHECK.LOG
    UNICODELIB_CHK1 < 10s Checks for missing UNICODE libs in kernel directory UCLIBCHK.LOG
    CNV_CHK_IMP < 10s Finds outstanding conversions and restart logs of terminated conversions Make conversions (after discussion with SAP consultant), if necessary
    ICNVCHK_IMP < 10s As of start release 40A:
    Checks whether incremental conversion from previous upgrade has finished ICNVEX.LOG
    ICNVLIST.LOG
    ICNVCHK.LOG
    Complete incremental conversion with transaction ICNV, if necessary
    SCRIPT_CHK_TOOL3 < 10s For start releases up to 31I:
    Avoids critical conversions in tool import CNVTST.LOG
    CLCNVTAB.LOG
    SCRIPTCHK.LOG
    SCRIPT_CHK_TOOL4 < 10s As of start release 40A:
    Avoids critical conversions in tool import CNVTST.LOG
    CLCNVTAB.LOG
    SCRIPTCHK.LOG
    SCRIPT2_TST_RESTART < 10s Performs actions for restart handling UPGPARAM.LOG
    REPTST.LOG
    SCRTREST.LOG
    TRBATCHK_IMP < 10s Checks whether table TRBAT is empty Perform any actions specified by R3up
    CLNT_CHK_IMP < 1% Checks whether clients are locked for SAP system upgrade EXECCT.LOG
    CLNTOUT.LOG
    Unlock clients for SAP system upgrade, if necessary
    INTCHK_IMP < 10s Checks whether the inactive nametab is empty
    SPACECHK_IMP < 10s Checks database free space DBFPREP.LOG
    Extend the database, if necessary
    PATCH_CHK2 < 10s Finds unconfirmed Support Packages and displays the result PATCHOUT.LOG
    EXECPT.LOG
    Call transaction SPAM to confirm any unconfirmed Support Packages, if necessary
    NTHISTCRE < 10s For start releases up to 40B:
    Creates tables for nametab administration so that new tools have access NTABHIST.LOG
    ALTER_TO < 1% Deletes tables that describe the delivery ALTER_TO.LOG
    TOOLIMPD1 2% For start release 30D to 31I:
    Prepares ABAP Dictionary for upgrade tools TOOLIMPD.ELG
    TOOLIMPD2 2% For start release 40A to 40B:
    Prepares ABAP Dictionary for upgrade tools TOOLIMPD.ELG
    TOOLIMPD3 2% For start release 45A to 46D:
    Prepares ABAP Dictionary for upgrade tools TOOLIMPD.ELG
    TOOLIMPD4 2% As of start release 610:
    Prepares ABAP Dictionary for upgrade tools TOOLIMPD.ELG
    MVNTAB_TOOL < 1% Activates nametabs for upgrade tools MVNTTOOL.ELG
    MVNTTOOL.LOG
    TOOLIMPI 1% Imports tools for the SAP system upgrade TOOLIMPI.ELG
    TOOLIMPM < 1% Imports tools for the SAP system upgrade TOOLIMPM.ELG
    TOOLIMP4_FIX < 1% For start releases up to 46D:
    Imports tools for the SAP system upgrade TOOLFIX.ELG
    TOOLIMP6_FIX < 1% As of start release 610:
    Imports tools for the SAP system upgrade TOOLFIX.ELG
    TOOLIMP4_UCMIG < 1% For start releases up to 46D:
    Imports tools for the combined Upgrade and Unicode Conversion TOOLUCMIG.ELG
    NPREPCRE0 3% Imports tables that describe the delivery from Upgrade CD1 PREPIMP.ELG
    JOB_RSUVSAVE < 1% Saves old entries of table UVERS PSUVSAVE.ELG
    PSUVSAVE.LOG
    UVERS_PREIMP < 10s As of start release 46B:
    Writes entry in table UVERS UVERSINI.LOG
    UVERS_INIT < 10s As of start release 46B:
    Writes entry in table UVERS UVERSINI.LOG
    SQLDB_UVERS_INIT (var For start releases up to 46A:
    Cleans tables for unicode conversion UVERSINS.LOG
    UVERS_CHK_IMP < 10s Checks consistency of table UVERS UVERSCHK_IMP.LOG
    BATCHCHK_IMP < 1% Tests whether the background server can access the upgrade directory BATCHCHK_IMP.LOG
    UCMIG_STATUS_SET0 < 10s Set status for combined Upgrade and Unicode Conversion UCMIGSETSTAT0.LOG
    JOB_RSCVINIT < 1% Initializes table CVERS PSCVINIT.ELG
    PSCVINIT.LOG
    RUN_RSPTBFIL_PREP < 1% Creates PUTTB and PUTTB_SHD tables RSPTBINI.ELG
    RSPTBINI.LOG
    READPUTTB_INI < 10s Reads table PUTTB and places it in the file system RDPUTTB.LOG
    JOB_RDDGENRS < 1% Generates tool reports RDDGENRS.LOG
    RUN_RDDITCUG < 1% For start release 30D to 31I:
    Generates GUIs PDDITCUG.ELG
    PDDITCUG.LOG
    RUN_RSINCGEN_IMP < 1% Adapts ABAP include RSTABINC to the system PSINCGEN.ELG
    PSINCGEN.LOG
    TR_BUF2HEAP_INSTIMP < 10s Moves upgrade requests from the INSTIMP.BUF buffer to the R3up buffer TPSHBUF.LOG
    TRB2H.LOG
    TR_EXT2HEAP < 10s Moves additional upgrade requests to the R3up buffer TREXT2HEAP.LOG
    TR_MODACT_IMP < 1% Calculates the amount of data from the upgrade requests TRMAIMP.LOG
    TRMAIMP.ELG
    SQLSCREXE_UPGPAR < 10s Makes parameter settings for the upgrade procedure PARAMSHD.LOG
    UPGPAR.ELG
    UPGPAR.LOG
    SQLDB_PARAMCOMP < 10s Makes parameter settings for the component upgrade procedure PARAMCOMP.LOG
    JOB_RDDPURI2 < 1% Does various cleanups PDDPURI2.ELG
    PDDPURI2.LOG
    CHECKGROUP_END2 < 1% End of module
    PREPARE Module: Extension (Mandatory)
    Phase Duration PREPARE Actions Log Files User Actions
    RUN_RSTODIRM_CLEAN < 1% Check delivery catalog for inconsistencies RSTODIRM.ELG
    RSTODIRM.LOG
    MULTSPC_UC < 10s Adapts space requirements
    ADDSPAREQ_0 < 10s Prepares space check on the database
    EXECLANG < 1% Determines installed languages EXECLG.LOG
    LANG_CHK < 10s Checks whether the new release supports the installed languages LANGOUT.LOG
    Delay upgrade until next release, if necessary
    LANG_SELECT 1% Copies data for the language import into the upgrade directory LANGSEL.LOG
    LANGSEL.ELG
    RUN_RSUPGSLI < 1% Configures the selective-language-import option RSUPGSLI.ELG
    RSUPGSLI.LOG
    SPAM_CHK_INI < 1% Checks SPAM version SPAMCHK.LOG
    UPLOAD_REQUEST dial Prompts you to retrieve packages UPLOADREQ.LOG
    Retrieve packages that are required, if necessary
    JOB_CBUPIFCHK < 1% CBU: Checks PIF file CBUPIFCHK.ELG
    CBUPIFCHK.LOG
    NCVERS_READ < 10s Determines components contained in the delivery NCVERSOUT.LOG
    COMPINFO_EXP < 10s Get the component information concerning export components COMPINFOEXP.LOG
    IS_MV_CHK1 < 10s Checks version of IS_MOVES.LST file ISMVCHK1.LOG
    NAVERS_READ < 10s Initializes NAVERS from delivered and customer addon components NAVERSOUT.LOG
    IS_INIT < 10s Initialize for IS phases IS_INIT.LOG
    IS_INST_BICONT < 10s For start releases up to 620:
    Fake BI_CONT installation IS_INST_BICONT.LOG
    IS_INST_LIST < 10s Fake addon Installations from list (if needed) IS_INST_LIST.LOG
    IS_MOVEMENT < 10s Determine/decide Add-on movements IS_MOVEMENT.LOG
    COMPINFO_ISMV < 10s Get the component information after the addon movements COMPINFOISMV.LOG
    SFW_MOVEMENT < 10s SFW Addon Movements SFW_MOVEMENT.LOG
    COMPINFO_SFWMV < 10s Get the component information after the sfw movements COMPINFOSFWMV.LOG
    ADDONSPEC_OIL dial For start releases up to 640:
    Special actions for IS_OIL ADDONSPEC_OIL.LOG
    ADDONSPEC_ISPSCA dial For start releases up to 640:
    Special actions for IS_PS-CA ADDONSPEC_ISPSCA.LOG
    RUN_RSUPGSFW < 1% For start releases up to 640:
    SFW only: Determines active BF(S) according to installed Addons RSUPGSFW.ELG
    RSUPGSFW.LOG
    IS_TABDMP < 1% Dump addon tables to file IS_DUMPTABLES1.LOG
    IS_SELECT dial Decide about all Add-ons IS_SELECT.LOG
    Decide what to do with the add-ons during the upgrade
    COMPINFO_ADDON < 10s Get the component information after the addon selection COMPINFOADDON.LOG
    ADDON_QCALC < 1% Calculates queue for selected add-ons ADDONQCALC.LOG
    SPDA_ADDONQCALC.LOG
    IS_MV_CHK2 < 10s Checks version of IS_MOVES.LST file ISMVCHK2.LOG
    TR_EXPPKG2HEAP < 10s Moves export packages to the R3up buffer TREXPPKG2HEAP.LOG
    PATCHK_EQUI < 10s Determines Support Package level for target release that corresponds to the level of the source release PATCHKEQUI.LOG
    PATCH_CHK3 < 1% Find unconfirmed Support Packages and checks whether the source release contains Support Packages that are more recent than the version of the target release PATCHOUT.LOG
    EXECPT.LOG
    Call transaction SPAM to confirm any unconfirmed Support Packages
    Call SAP Note 073510 to check whether you can upgrade the system or which Support Packages are equivalent to those in the target release.
    EXEC_CPYFIL3_CBU < 1% CBU: Copys PIF files CBUCPY3.LOG
    BIND_PATCH dial Includes Support Packages for the target release PATCHINT.LOG
    SPDA_PATCHINT.LOG Include Support Packages in the upgrade, if necessary
    COMPINFO_SPP < 10s Get the component information after the support package selection COMPINFOSPP.LOG
    ADDON_LANGINC < 1% Include Add-on language packages ADDONLANGINC.LOG
    SPDA_ADDONLANGINC.LOG
    TR_CMDIMPORT_FDTASKS < 10s Imports command files for full and delta tasks PCMDIMPFD.ELG
    PCMDIMPFD.LOG
    IS_MERGE < 10s Adds Supplement Tasks (without AOS) to the TRStorage IS_MERGE.LOG
    TR_QUEUE2HEAP < 10s Moves the upgrade requests of the queue to the R3up buffer TRQUEUE2HEAP.LOG
    TR_CMDIMPORT_PREPARE < 1% Imports piece lists for included Support Packages PCMDIMP.ELG
    PCMDIMP.LOG
    JOB_RDDIT020 < 1% Merges transports for add-ons in NAVERS PDDIT020.ELG
    PDDIT020.LOG
    IS_SYNC_20 < 1% Synchronizes NAVERS in file system ISSYNC20.LOG
    CONFLICT_CHECK < 1% Checks for conflicts according to transaction SPAM CONFLCHK.LOG
    SPDA_CONFLCHK.LOG
    ADJUSTPRP dial Prepares adjustment calculation: Imports command file flagged in other system, if necessary ADJUSTPRP.ELG
    Select command file, if necessary
    INTEG_PATCH < 1% Selects the Support Package integration file and imports the requests contained in it INTGPTCH.LOG
    UCMIG_REQINC < 10s Ask for customer request for preparation of Unicode Conversion UCMIGREQINC.LOG
    ICNVXRQ < 1% Checks prerequisites for ICNV DDICNV.LOG
    ICNVXRQ.ELG
    ICNVXRQ.LOG
    CHECKGROUP_END3 < 1% End of module
    PREPARE Module: Integration (Mandatory)
    Phase Duration PREPARE Actions Log Files User Actions
    IS_MERGE_I < 10s For start release 30D to 31I:
    Adds Supplement Tasks (without AOS) to the TRStorage IS_MERGE.LOG
    TR_CMDIMPORT_PREPARE_31I < 1% For start release 30D to 31I:
    Imports piece lists for included Support Packages PCMDIMP.ELG
    PCMDIMP.LOG
    RUN_RSTODIRM_BIND < 1% Preparation of the delivery directory RSTODIRM.ELG
    RSTODIRM.LOG
    TR_TODIR_MERGE_PATCH < 1% Merges included Support Packages with the delivery directory
    JOB_RDDIT021 < 1% Merges add-ons in the delivery list PDDIT021.ELG
    PDDIT021.LOG
    UVERS_UP_T < 1% Changes the status in table UVERS
    TR_MODACT_ADD < 1% Calculates the amount of data in add-on and language requests TRADIMP.LOG
    TRADIMP.ELG
    TR_MODACT_DISC < 1% Calculates the amount of data in additional Support Package requests TRDIIMP.LOG
    TRDIIMP.ELG
    TR_COLLTABS_PREP < 1% Totals data TRCOLLTA.LOG
    TRCOLLTA.ELG
    TABSPC_PREP 2-10 Calculates which tables are part of import into old tables TABSPCP.LOG
    TABSPCP.ELG
    ADDSPAREQ_N < 10s Prepares space check on the database
    ADDSPAREQ_S < 10s Prepares space check on the database
    ADDSPAREQ_T < 10s Prepares space check on the database
    CHECKGROUP_END10 < 1% End of module
    PREPARE Module: Installation (Mandatory)
    Phase Duration PREPARE Actions Log Files User Actions
    INITSHD dial Prompts for shadow parameters Enter shadow parameters
    SHDINST_CRE < 10s Creates directory structure for the shadow instance SHDINST_CRE.LOG
    SHDINST_CPY < 10s Copies the profiles SHDINST_CPY.LOG
    SHDINST_ADAPT < 10s Adapts the profiles to the shadow instance SHDINST_ADAPT.LOG
    SHDINST_MOD < 10s Adapts the system settings ALPSHDIN.LOG
    ALPSHDDF.LOG
    SHDINST_REQ < 10s Checks ports for shadow instance SHDINST_REQ.LOG
    Perform actions from CHECKS.LOG, if necessary
    SHDINST_OS < 10s Performs operating system-specific actions SHDINST_OS.LOG
    Perform actions from CHECKS.LOG , if necessary
    SHDINST_SDB_CHK < 10s Checks database-specific settings MaxDB: Adjust the database parameters MAXLOCKS and MAXUSERTASKS, if necessary
    SHDINST_DB_PREP < 1% Checks database-specific settings SHDUSREX.LOG
    SHDUSRCRE.LOG
    SHDDBPRP.LOG
    Perform actions from CHECKS.LOG, if necessary
    SHDINST_SWT_HOST < 10s Adjusts the profile of the shadow instance, if necessary SHDINST_SWT.LOG
    SHDINST_PFPAR < 10s Checks with sappfpar the shadow instance profile SHDINST_PFPAR.LOG
    Perform actions from CHECKS.LOG, if necessary
    RUN_RSUPGRFC < 1% Creates RFC connection SAP_UPGRADE_SHADOW_SYSTEM PSUPGRFC.ELG
    PSUPGRFC.LOG
    CHECKGROUP_END11 < 1% End of module
    PREPARE Module: General checks (Mandatory)
    Phase Duration PREPARE Actions Log Files User Actions
    CONFCHK < 1% Tests operating system and database version Upgrade operating system and database to the required version, if necessary
    DB_ACTION_RUN_PRE < 1% DB2 UDB for UNIX and Windows:
    Remove volatile flags DBACTRUN.LOG
    CHK_DB6_PAR_PRE dial DB2 UDB for UNIX and Windows:
    Checks DB6 parameters
    SPACECHK_GEN < 1% Checks database free space DBFPLUSD.LOG
    Extend the database, if necessary
    TOOLVERSION_EXE < 10s Determines and checks the tool version of the new kernel TOOLVRSEXE.LOG
    Upgrade $(PUTPATH)/exe if necessary
    UNICODELIB_CHK2 < 10s Checks for missing UNICODE libs in kernel directory UCLIBCHK.LOG
    FREECHK < 1% Checks disk space for logs and SAP kernel
    Checks whether the SAP kernel can be overwritten Increase disk space, if necessary
    Check SAP kernel write authorization, if necessary
    LC_CHECK < 1% Checks Livecache LCCHECK.LOG
    Checks Livecache
    PROFSET < 10s For start releases up to 46C:
    Sets DDIC autorizations PROFSET.LOG
    DB_ACTION_PRE < 1% ORACLE:
    Performs database-specific actions SELDBSL.LOG
    ALTDBS.LOG
    DBACTPRE.LOG
    DB_ACTION_EXTMAN < 1% ORACLE:
    Determines extent management on database Oracle EXTMAN.LOG
    DBACTEMA.LOG
    REPACHK < 1% Finds SAP objects locked in repairs or requests REPACHK.LOG
    Release repairs and requests, if necessary
    CNV_CHK_GEN < 1% Finds outstanding conversions and restart logs of terminated conversions Make conversions (after discussion with SAP consultant), if necessary
    TRBATCHK_GEN < 1% Checks whether table TRBAT is empty Perform any actions specified by R3up
    CLNT_CHK_GEN < 1% Checks whether clients are locked for SAP system upgrade EXECCT.LOG
    CLNTOUT.LOG
    Unlock clients for SAP system upgrade, if necessary
    SCRIPT_TST_DDART < 1% Checks entries in table TA and IA CUSTTA.LOG
    SCRPTDDA.LOG
    If errors occur, see SAP Note 500252
    JOB_RSAUCHK_DUP < 1% Checks for double F rules RSAUCHKD.ELG
    RSAUCHKD.LOG
    See SAP Note 431886
    JOB_RSAODSACTIVATE_PRE < 1% Performs TADIR cleaning PSATADIR.ELG
    PSATADIR.LOG
    JOB_RSTLIBG < 1% Checks TADIR objects RSTLIBG.ELG
    RSTLIBG.LOG
    JOB_STRU_TADIR_GEN_1 < 1% Performs TADIR insert PSTRUGEN.ELG
    PSTRUGEN.LOG
    JOB_SDLINIT_TABLES_70 < 1% Performs SDLINIT preparations PSDLINIT.ELG
    PSDLINIT.LOG
    JOB_RSUPGRCHECK_PRE < 1% Checks consistency of generated repository PSUPGCHK.ELG
    PSUPGCHK.LOG
    JOB_RSMD_UPGR_PRE < 1% Performs component-specific checks PSMDCHK.ELG
    PSMDCHK.LOG
    JOB_RSODSO_GUID_CHK < 1% As of start release 610:
    Performs component-specific checks PSODCHK.ELG
    PSODCHK.LOG
    JOB_CRM_UPGRADE50 < 1% For start release 610 to 620:
    Removes duplicate table entries CRM_UPGRADE50.ELG
    CRM_UPGRADE50.LOG
    JOB_SDLINIT_TABLES_PRE < 1% As of start release 620:
    Performs BW specific checks RSSM_SDLINIT.ELG
    RSSM_SDLINIT.LOG
    JOB_CHECK_RSMONICDP_PRE < 1% As of start release 610:
    Performs BW specific checks RSSM_RSMONICDP.ELG
    RSSM_RSMONICDP.LOG
    JOB_DROP_TMPOBJ_PRE < 1% Deletes invalid nametab entries RSDR_NAMT_CL.ELG
    RSDR_NAMT_CL.LOG
    JOB_TS_UPG41 < 1% For start releases up to 620:
    Performs index check TSUPG41.ELG
    TSUPG41.LOG
    NTACT_CHK 2% Checks the consistency of the nametab entries NTCHK.ELG
    NTCHK.LOG
    Perform any actions specified by R3up
    INTCHK_GEN < 1% Checks whether the inactive nametab is empty
    SINXCHK < 1% Checks the consistency of the indexes in the substitution tables SINXCHK.LOG
    Delete indexes, if necessary
    VIEWCHK < 1% Checks for conflicts between customer tables in the SAP name range and delivered views VIEWCHK.LOG
    Delete tables, if necessary
    ENVCHK_PRE < 10s Checks whether profiles of user adm can be modified Assign write authorization to the user profiles, if necessary
    FRONTREQ_PRE < 10s Displays information about the upgrade of the front end software Upgrade the front end software, if necessary
    UVERS_CHK_GEN < 10s Checks consistency of table UVERS UVERSCHK_GEN.LOG
    BATCHCHK_GEN < 1% Tests whether background server can access the upgrade directory BATCHCHK_GEN.LOG
    PROFCHK < 10s Checks whether the profile names specified in phase INITPUT correspond with the names used by the SAP system PROFCHK.LOG
    Correct entries with R3up set stdpar, if necessary
    JOB_RXPRECHK_PRE < 1% For start release 30D to 31I:
    Performs preliminary checks for the XPRA RLXPRA40 PXPRECHK.ELG
    PXPRECHK.LOG
    JOB_RSVBCHCK_PRE < 1% Checks whether outstanding updates tasks and queued RFCs exist PSVBCHCK.ELG
    PSVBCHCK.LOG
    Check outstanding update tasks with transaction SM13 and queued RFCs with transaction SMQ1
    RUN_RSCHECKEXC < 1% For start release 610 to 6ZZ:
    Find tables in exchange table space that are not exchanged ( SAP Note 674070) RSCHECKEXC.ELG
    RSCHECKEXC.LOG
    SCRIPT_TST_TCPDB < 1% Checks code page settings TCPDB.LOG
    SCRTCPDB.LOG
    See SAP Note 015023, if necessary
    SCRIPT_TST_TCPDB_UC < 1% Checks code page settings TCPDB.LOG
    SCRTCPDB.LOG
    See SAP Note 015023, if necessary
    REMEMBER_N410963 < 10s ORACLE, for start releases up to 46D:
    Checks Oracle start release REMN410.LOG
    See SAP Note 410963, if necessary
    JOB_SRM_PRE_CHECKS_1 < 1% SRM specific checks PSRMPRE.ELG
    PSRMPRE.LOG
    JOB_J_3GJUPGCD < 1% As of start release 40B:
    DIMP specific checks PJ_3GJUPGCD.ELG
    PJ_3GJUPGCD.LOG
    CHECKGROUP_END4 < 1% End of module
    PREPARE Module: Activation checks (Mandatory)
    Phase Duration PREPARE Actions Log Files User Actions
    JOB_RADDRCHK < 1% For start releases up to 40B:
    Prepares for renaming of data elements PADDRCHK.ELG
    PADDRCHK.LOG
    Correct naming conflicts as described in SAP Note 096905
    ACTREF_CHK < 1% Checks whether activation errors might occur during the upgrade RSTODIRX.LOG
    RSTODIRX.ELG
    Remove references to SAP data elements and domains
    RUN_RSUPGDEC_PRE < 1% Checks if current structure extensions collide with the DDIC enhancement category of the target release RSUPGDEC.ELG
    RSUPGDEC.LOG
    Adjust include or consider help from SAP SAP Note 493387
    CHECKGROUP_END5 < 1% End of module
    PREPARE Module: Necessary checks for conversions (Mandatory)
    Phase Duration PREPARE Actions Log Files User Actions
    CNV_AVOID < 1% For start release 30C to 31I:
    Finds tables that can be reduced in size before the upgrade to speed up the conversion Reduce the size of the tables as described in SAP Note 076431
    JOB_RSCNVADR < 1% For start releases up to 40B:
    Prepares address data conversion PSCNVADR.ELG
    PSCNVADR.LOG
    Start the report for preparing the address data conversion as described in SAP Note 082167 and SAP Note 097032 as well as adaptions to number ranges as described in SAP Note 319986 and SAP Note 379769
    REQ_APOUPG0 dial Prompts for checks for the LiveCache Save the live cache: follow the instructions given in the manual
    JOB_MC01_CACL_CDP_PRE < 1% For start releases up to 610:
    Performs consistence check CDPCON.ELG
    CDPCON.LOG
    CHECKGROUP_END6 < 1% End of module
    PREPARE Module: Optional checks for conversions (Optional)
    Phase Duration PREPARE Actions Log Files User Actions
    CNV_LIST < 1% Finds tables that are converted during the upgrade (if known to SAP) and lists them in a file
    ADDSPAREQ_AD < 10s Summarizes the results of all space checks
    DYNSPCADD < 1% Checks the database space requirements dynamically:
    Space needed temporarily for conversion
    Space for new secondary indexes
    DYNSPC.LOG
    SPACECHK_OPT < 1% Checks database free space DBFPLUSD.LOG
    Extend the database, if necessary
    CHECKGROUP_END7 < 1% End of module
    PREPARE Module: Modification support (Optional)
    Phase Duration PREPARE Actions Log Files User Actions
    SETPAR_PDIFFEXP_PRE < 1% Sets parameters for RDDIT006 SQLPDIFP.LOG
    SETPDIFP.LOG
    SETPDIFP.ELG
    RUN_RDDIT006_PRE < 1% Finds conflicts with central SAP Web Application Server objects DIFFCALC.ELG
    DIFFCALC.LOG
    Contact SAP to get modifications to central SAP Web Application Server objects, if necessary
    ADJUSTCHK_PRE < 1% Finds objects to be adjusted - preparation for transactions SPDD and SPAU ADJUSTCP.LOG
    ADJUSTCP.ELG
    Call transaction SPDD or SPAU to display modifications
    CHECKGROUP_END8 < 1% End of module
    PREPARE Module: Pre-processing (Optional)
    Phase Duration PREPARE Actions Log Files User Actions
    RUN_RSWBO230_PRE < 1% Deletes SAP requests from previous upgrades PSWBO230.ELG
    PSWBO230.LOG
    SAVE_VAR_CHK dial As of start release 40B:
    Requests SAVE_VAR information SAVEVARCHK.LOG
    Answer SAVE_VAR prompt
    JOB_RASUVAR1 < 1% As of start release 40B:
    save variants, see note 712297 PASUVAR1.ELG
    PASUVAR1.LOG
    CHECKGROUP_END9 < 1% End of module
    u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2014u2013
    Upgrade Phase Groups
    Upgrade Phase Group: Configuration and Initialization
    Phase Duration Upgrade Actions Log Files User Actions
    BEGIN < 10s Checks upgrade directory
    INITPUT dial Initializes R3up
    DB2 UDB for z/OS and OS/390:
    Checks parameters and JCL submission service DB2 UDB for z/OS and OS/390:
    Enter parameters
    DBCHK < 1% Determines database version and SAP release
    SETSYNC_UPGR_STARTED dial events for sync with Jump
    SETSYNC_PREUP_STARTED dial events for sync with Jump
    VERSCHK < 1% Checks SAP release Upgrade to a valid source release first, if necessary
    UVERS_CHK < 1% Checks consistency of table UVERS UVERSCHK.LOG
    BATCHCHK < 1% Tests whether background server can access the upgrade directory BATCHCHK.LOG
    PATCH_CHK < 1% Finds unconfirmed Support Packages and displays the result PATCHOUT.LOG
    EXECPT.LOG
    Call transaction SPAM to confirm any unconfirmed Support Packages, if necessary
    CLNT_CHK < 1% Checks whether clients are locked for SAP system upgrade EXECCT.LOG
    CLNTOUT.LOG
    Unlock clients for SAP system upgrade, if necessary
    INTCHK < 1% Checks whether the inactive nametab is empty
    TOOLVERSION_UPG < 1% Determines all tool version TOOLVERS.LOG
    Upgrade tools if necessary
    ADDON_SPEC2 dial Requests add-on information ADDONSPEC2.LOG
    ADDONKEY_CHK < 1% Prompts for keyword for industry solution, if necessary
    ADDONKEY.LOG
    Enter keyword for industry solution, if necessary
    JDKCHK_UPG < 1% Checks availability of JDK JDKCHK.LOG
    Install JDK, if necessary
    SHDINST_CHK1 < 1% Checks the shadow instance SHDINST_CHK1.LOG
    INITSUBST < 1% Initializes for System Switch Upgrade Enter parameters
    FRONTREQ < 1% Informs users that they must import a new version of the SAP GUI Confirm
    CONFCHK_X < 1% Tests operating system and database version Upgrade operating system and database to the required version, if necessary
    VIEWCHK1 < 1% Finds conflicts between delivered views and customer tables in the SAP name range VIEWCHK1.LOG
    Delete tables, if necessary
    REPACHK1 < 1% Finds SAP objects locked in repairs or requests REPACHK1.LOG
    UCMIG_STATUS_CHK1 < 10s Check status of Unicode Conversion Preparations on the start release UCMIGCHKSTAT1.LOG
    JOB_RSVBCHCK2 < 1% Checks whether outstanding updates tasks and queued RFCs exist PSVBCHCK.ELG
    PSVBCHCK.LOG
    Check outstanding update tasks with transaction SM13 and queued RFCs with transaction SMQ1
    RUN_RSWBO230 0-2% Deletes SAP requests from previous upgrades PSWBO230.ELG
    PSWBO230.LOG
    JOB_RXPRECHK < 1% For start release 30D to 31I:
    Makes preliminary checks for the XPRA RLXPRA40 PXPRECHK.ELG
    PXPRECHK.LOG
    JOB_RS_OLTPSOURCE < 1% Performs OLTP source cleaning PSOLTPSC.ELG
    PSOLTPSC.LOG
    JOB_RSAODSACTIVATE < 1% Performs TADIR cleaning PSATADIR.ELG
    PSATADIR.LOG
    TABSPC_UPG < 1% Checks database version if it was too low during PREPARE TABSPCU.LOG
    TABSPCU.ELG
    CHK_DB6_REG_UPG dial DB2 UDB for UNIX and Windows:
    Checks DB6 registry parameters
    DB_ACTION_RUNSTATS 1% DB2 UDB for UNIX and Windows:
    Remove volatile flags DBACTRUN.LOG
    CHK_DB6_PAR_UPG dial DB2 UDB for UNIX and Windows:
    Checks DB6 parameters
    SPACECHK_ALL < 1% Checks free space on the database DBFPLUSD.LOG
    Extend the database, if necessary
    FREECHK_X < 1% Checks free space in the file system Confirm
    Enlarge the file system, if necessary
    DMPSPC_X < 1% Provides information on freespace in the database DMPSPC_X.LOG
    JOB_BTCTRNS0 < 1% As of start release 45A, strategy Resource-minimized:
    Deschedules background jobs BTCTRNS1.ELG
    BTCTRNS1.LOG
    UCMIG_STATUS_CHK21 < 10s Strategy Resource-minimized:
    Check status of Unicode Conversion Preparations on the start release UCMIGCHKSTAT2.LOG
    SETPAR_PDIFFEXP < 1% Sets parameters for RDDIT006 SQLPDIFU.LOG
    SETPDIFU.LOG
    SETPDIFU.ELG
    RUN_RSPTBFIL_INIT 1% Enters source release information in table PUTTB_SHD RSPTBINI.ELG
    RSPTBINI.LOG
    READPUTTB_UPG < 1% Reads table PUTTB and places it in the file system RDPUTTB.LOG
    SQLDB_SWITCH_DOCU < 1% enabling of shadow import for docu objects PUTTBDOKTL.LOG
    LOCKEU_PRE < 1% Strategy downtime-minimized: Prompts for time from when ABAP Workbench is locked LOCKEUPR.LOG
    Strategy downtime-minimized: Respond to prompt for lock time
    CHECKCDMOUNTS < 1% Checks whether all required CDs for the EU_IMPORT phases are available If a CD is missing, change the mount directories or, if you do not use mount directories, ignore the prompt
    Upgrade Phase Group: Import and Modification Transfer
    Phase Duration Upgrade Actions Log Files User Actions
    DB_ACTION_UPG < 1% Performs database-specific actions SELDBSU.LOG
    ALTDBS.LOG
    DBACTUPG.LOG
    CNTRANS_TPL < 10s MCOD only: Adapts container names in R3load CNTTPL.LOG
    SQLSCREXE_UPGEU1 < 1% Performs actions for restart handling PARAMEU1.LOG
    UPGPAREU.ELG
    UPGPAREU.LOG
    JOB_MC01_CACL_CDP_POST1 < 1% For start releases up to 610, strategy Resource-minimized:
    Performs consistence check CDPCON1.ELG
    CDPCON1.LOG
    REQSTOP_APO1 dial Strategy Resource-minimized:
    Prompts, if system may be stopped Confirm, that the system may be stopped
    LOCKSYS_APO1 < 1% Strategy Resource-minimized:
    Locks SAP system for user access LOCKSYSAPO.LOG
    STOPSAP_LCD1 < 1% Strategy Resource-minimized:
    Stops SAP system Isolate the central instance and stop all application servers
    STARTSAP_LCD1 < 1% Strategy Resource-minimized:
    Starts SAP system
    REQ_APOUPG1 dial Strategy Resource-minimized:
    Prompts to save the live cache Save the live cache: follow the instructions given in the manual
    SETSYNC_PREUP_FINI_R1 dial Strategy Resource-minimized:
    events for sync with Jump
    GETSYNC_PREUP_FINI_R1 dial Strategy Resource-minimized:
    events for sync with Jump
    SETSYNC_DOWN_START_R1 dial Strategy Resource-minimized:
    events for sync with Jump
    SETSYNC_EULCK_START_R1 dial Strategy Resource-minimized:
    events for sync with Jump
    JOB_GN_BEF_UPG_CRM40_1 < 1% Strategy Resource-minimized, as of start release 610:
    Performs consistence check MWCRM1.ELG
    MWCRM1.LOG
    EU_IMPORT1 1-2% Copies substitution set from Upgrade CD to the shadow tables EU_IMP1.ELG
    EU_IMP1.LOG
    Mount requested Upgrade CD, if necessary
    NTACT_NODBPOS < 1% Cleans up nametab NTSHDNDB.ELG
    NTSHDNDB.LOG
    NTACT_CONV_UC < 1% Generates nametabs of shadow tables in shadow nametab conv_uc NTSHDCUC.ELG
    NTSHDCUC.LOG
    SHADOW_NTACT_CP < 1% Generates nametabs of shadow tables in the shadow nametab NTSHDCP.ELG
    NTSHDCP.LOG
    SQLDB_SHDI_DOC31I_ON1 < 1% For start releases up to 31I:
    enabling of shadow import for docu objects, special handling startrelease 3.1I SHDI_DOC31I.LOG
    EU_IMPORT2 5-8% Copies substitution set from Upgrade CD to the shadow tables EU_IMP2.ELG
    EU_IMP2.LOG
    Mount requested Upgrade CD, if necessary
    EU_IMPORT3 2-5% Copies substitution set from Upgrade CD to the shadow tables EU_IMP3.ELG
    EU_IMP3.LOG
    Mount requested Upgrade CD, if necessary
    READDATA_EU4 < 1% Copies substitution set from Upgrade CD to the shadow tables, if necessary Mount requested upgrade CD, if necessary
    EU_IMPORT4 6-10 Copies substitution set from Upgrade CD to the shadow tables EU_IMP4.ELG
    EU_IMP4.LOG
    Mount requested Upgrade CD, if necessary
    EU_IMPORT5 15-2 Copies substitution set from Upgrade CD to the shadow tables EU_IMP5.ELG
    EU_IMP5.LOG
    Mount requested Upgrade CD, if necessary
    EU_IMPORT6 < 10s Copies substitution set from Upgrade CD to the shadow tables EU_IMP6.ELG
    EU_IMP6.LOG
    Mount requested Upgrade CD, if necessary
    EU_IMPORT7 < 10s Copies substitution set from Upgrade CD to the shadow tables EU_IMP7.ELG
    EU_IMP7.LOG
    Mount requested Upgrade CD, if necessary
    EUVIEWIMP < 1% Imports views for shadow tables ALTER34V.LOG
    INDQUE_CHK < 1% SAP DB:
    Checks for indexes INDQUECHK.LOG
    TR_APPENDBUF_UPG1 < 10s Moves upgrade requests from the R3up buffer to the hyperbuffer TRAPPB.LOG
    SHADOW_IMPORT_UPG1 1-6% Imports upgrade and language data into the shadow tables (no new tables) SHDUPGIMP1.ELG
    STARTSAP_IMP < 1% Starts SAP system if it was stopped during phase EU_IMPORT1
    REPACHK2 < 1% Finds SAP objects locked in repairs or requests REPACHK2.LOG
    Confirm locks for ABAP Workbench if not yet done in phase LOCKEU_PRE
    SETSYNC_EULCK_START_D1 dial Strategy Downtime-minimized:
    events for sync with Jump
    SETSYNC_EULCK_START_R2 dial Strategy Resource-minimized:
    events for sync with Jump
    UVERS_UP_U < 1% Changes the status in table UVERS
    CNV_CHK_XT < 1% Finds outstanding conversions and restart logs for conversions that have not been completed Make conversions (after discussion with SAP consultant), if necessary
    TRBATCHK_XT < 1% Checks whether table TRBAT is empty Perform any actions specified by R3up, if necessary
    LIST_LOAD < 1% Generates list of programs that need to be generated LISTLOAD.LOG
    JOB_RDDTAXIT < 1% Selects generated objects SYSPREP.ELG
    SYSPREP.LOG
    JOB_STRU_TADIR_GEN_2 < 1% Performs TADIR insert PSTRUGEN.ELG
    PSTRUGEN.LOG
    JOB_RSGENYTT < 1% Copies nametabs to table DDYTT/F PSGENYTT.ELG
    PSGENYTT.LOG
    SUBSTNT_INS < 1% Creates nametab entries for the new substitution tables STBNTINS.LOG
    RUN_RSINCGEN < 1% Generates include program for accessing substitution tables PSINCGEN.ELG
    PSINCGEN.LOG
    JOB_SRM_PRE_CHECKS_2 < 1% SRM specific checks PSRMPRE.ELG
    PSRMPRE.LOG
    RUN_RDDIT006 1-3% Determines deviations of the current system from the future standard SAP system (objects and modifications that need to be copied) DIFFCALC.ELG
    DIFFCALC.LOG
    ADJUSTCHK < 1% Determines ABAP Dictionary objects that need to be adjusted ADJUSTCK.LOG
    ADJUSTCK.ELG
    Confirm R3up message, if necessary
    JOB_RSPUSCAD < 1% Exports documentation created or modified by customer PSPUSCA4.ELG
    PSPUSCA4.LOG
    DB_ACTION_LOWQ1 < 1% Performs switch for DIFFEXP phases LOWERQ.LOG
    DBACTLQ1.LOG
    DIFFEXPADDE (var Exports content of add-on objects not stored in shadow tables DIFFEXPA.ELG
    DIFFEXPA.LOG
    SQLDB_LOCKFLAG_CCI (var Perform database correction after export LOCKFLAGRESET_CCI.LOG
    DIFFEXPADD (var Copies Dictionary part for add-on objects to the shadow tables DIFFEXPA.ELG
    DIFFEXPA.LOG
    DIFFEXPPKGE (var Exports content of support package ects not stored in shadow tables DIFFEXPP.ELG
    DIFFEXPP.LOG
    SQLDB_LOCKFLAG_CCP (var Perform database correction after export LOCKFLAGRESET_CCP.LOG
    DIFFEXPPKG (var Copies Dictionary part for support package objects to the shadow tables DIFFEXPP.ELG
    DIFFEXPP.LOG
    DIFFEXPLAN (var Exports language content of support packages not stored in shadow tables DIFFEXPL.ELG
    DIFFEXPL.LOG
    SQLDB_LOCKFLAG_CCL (var Perform database correction after export LOCKFLAGRESET_CCL.LOG
    DIFFEXPGEN 2% Copies Dictionary part of generated objects to the shadow tables DIFFEXPG.ELG
    DIFFEXPG.LOG
    DIFFEXPMOD < 1% Copies unsent modified objects to the shadow tables DIFFEXPR.ELG
    DIFFEXPR.LOG
    DIFFEXPCUSTE (var Export content of customer developments not stored in shadow tables DIFFEXPC.ELG
    DIFFEXPC.LOG
    SQLDB_LOCKFLAG_CCC (var Perform database correction after export LOCKFLAGRESET_CCC.LOG
    DIFFEXPCUST (var Copies Dictionary part of customer developments to the shadow tables DIFFEXPC.ELG
    DIFFEXPC.LOG
    DIFFEXPDDIV < 1% Exports inactive ABAP Dictionary versions DIFFEXPD.ELG
    DIFFEXPD.LOG
    DIFFEXPDOCU < 1% Exports customer extensions to SAP object documentation DIFFEXPO.ELG
    DIFFEXPO.LOG
    DIFFEXPCDOC < 1% Exports documentation for customer objects DIFFEXCO.ELG
    DIFFEXCO.LOG
    DIFFEXPTSAP < 1% Exports local private objects and test objects in the SAP name range DIFFEXPT.ELG
    DIFFEXPT.LOG
    DB_ACTION_UPQ1 < 1% Performs switch for DIFFEXP phases UPPERQ.LOG
    DBACTUQ1.LOG
    JOB_RDDSAVTE < 1% Copies technical settings in the ABAP Dictionary PDDSAVTE.ELG
    PDDSAVTE.LOG
    RUN_RDDCP4TB < 1% Copies non-delivered TADIR entries to the shadow tables PDDCP4TB.ELG
    PDDCP4TB.LOG
    RUN_RDDDL4TB < 1% Deletes entries for deleted objects from the shadow table TADIR PDDDL4TB.ELG
    PDDDL4TB.LOG
    RUN_RSTRESNC < 1% Copies namespace reservations to the shadow tables PSTRESNC.ELG
    PSTRESNC.LOG
    JOB_RDDINDPR < 1% Finds all secondary indexes INXPREP.ELG
    INXPREP.LOG
    Upgrade Phase Group: Shadow System Installation
    Phase Duration Upgrade Actions Log Files User Actions
    ALTEXT_MAXALL < 1% ORACLE:
    Sets tablespace extents as unlimited SELALTAB.LOG
    DBACTGRA.LOG
    DBACTGRA.ELG
    SQLSCREXE_MLI4 < 10s For start releases up to 46D:
    Creates the license for the shadow instance CPMLICHK.LOG
    SQLEXEML.ELG
    SQLEXEML.LOG
    SQLSCREXE_MLI6 < 10s As of start release 610:
    Creates the license for the shadow instance CPMLICHK.LOG
    SQLEXEML.ELG
    SQLEXEML.LOG
    SQLDB_CPUSR < 10s Initializes authorizations SQLEXUS.LOG
    PSCRGEN_ALIAS < 10s Generates scripts for aliases/views/synonyms SQLGENAL.ELG
    SQLGENAL.LOG
    SCRGEN_ALI_ORG < 10s Generates scripts for shadow instance SGALORG.ELG
    SGALORG.LOG
    DB_ACTION_GRANT < 1% SAP DB:
    Generates grant scripts SELTAB.LOG
    DBACTGRA.LOG
    SQLSCREXE_GRANT < 1% SAP DB:
    Grants privileges PTBALIGR.LOG
    SQLEXEGR.ELG
    SQLEXEGR.LOG
    SCEXEC_GRANT 1% Except SAP DB:
    Grants privileges SQLEXEGR.LOG
    SCEXEC_ALIAS 1% Creates aliases/views/synonyms SQLEXEAL.LOG
    SQLSCREXE_GRA_ORG < 1% Executes scripts for shadow instance ALORGR.LOG
    SEGRORG.ELG
    SEGRORG.LOG
    SQLSCREXE_ALI_ORG < 1% Executes scripts for shadow instance ALORDC.LOG
    SEDCORG.ELG
    SEDCORG.LOG
    SQLSCREXE_SEQ < 10s Creates sequence SEQUE.LOG
    SQLEXESE.ELG
    SQLEXESE.LOG
    VIEWIMP_BAS < 1% Creates views for the SAP Web Application Server VIEWIMP.ELG
    VIEWIMP.LOG
    TR_TRK2HEAP_INIT < 10s Copies requests to the R3up buffer TRSHDIN.LOG
    TP_ACTION_CP2SINI < 1% Copies a small number of control entries to shadow tables CP2SHDI.ELG
    CP2SHDI.LOG
    SHADOW_NTACT_DEL < 1% Deletes nametabs of shadow tables in the shadow nametab NTSHDDEL.ELG
    NTSHDDEL.LOG
    SQLDB_SHDI_DOC31I_OFF1 < 1% For start releases up to 31I:
    enabling of shadow import for docu objects, special handling startrelease 3.1I SHDI_DOC31I.LOG
    EXEC_SMOFF_SHD < 10s Switches off the Session Manager for the upgrade EXECSMF.LOG
    JOB_GN_BEF_UPG_CRM40_2 < 1% Strategy Resource-minimized, as of start release 610:
    Performs consistence check MWCRM2.ELG
    MWCRM2.LOG
    JOB_MC01_CACL_CDP_POST2 < 1% For start releases up to 610, strategy Resource-minimized:
    Performs consistence check CDPCON2.ELG
    CDPCON2.LOG
    REQSTOPPROD < 1% Strategy Resource-minimized:
    Stops production operation Confirm R3up prompt
    JOB_BTCTRNS2 < 1% As of start release 45A, strategy Resource-minimized:
    Deschedules background jobs BTCTRNS1.ELG
    BTCTRNS1.LOG
    UCMIG_STATUS_CHK22 < 10s Strategy Resource-minimized:
    Check status of Unicode Conversion Preparations on the start release UCMIGCHKSTAT2.LOG
    UCMIG_STATUS_CHK23 < 10s Strategy Downtime-minimized:
    Check status of Unicode Conversion Preparations on the start release UCMIGCHKSTAT2.LOG
    REQSTOP_APO2 dial Strategy Resource-minimized:
    Prompts, if system may be stopped Confirm, that the system may be stopped
    LOCKSYS_APO2 < 1% Strategy Resource-minimized:
    Locks SAP system for user access LOCKSYSAPO.LOG
    STOPSAP_LCD2 < 1% Strategy Resource-minimized:
    Stops SAP system Isolate the central instance and stop all application servers
    STARTSAP_LCD2 < 1% Strategy Resource-minimized:
    Starts SAP system
    REQ_APOUPG2 dial Strategy Resource-minimized:
    Prompts to save the live cache Save the live cache: follow the instructions given in the manual
    JOB_DROP_TMPOBJ_UPG1 < 1% Strategy Resource-minimized:
    Deletes temporary BW objects RSDR_NAMT_CL.ELG
    RSDR_NAMT_CL.LOG
    JOB_SDLINIT_TABLES_UPG1 < 1% Strategy Resource-minimized, as of start release 620:
    Deletes invalid nametab entries RSSM_SDLINIT.ELG
    RSSM_SDLINIT.LOG
    JOB_RDDPURIF_R < 1% Strategy Resource-minimized:
    Deletes inconsistent values from tables PDDPURIF.ELG
    PDDPURIF.LOG
    JOB_KEYIDX1_R < 1% Strategy Resource-minimized, MSSQL, for start releases up to 45B:
    Component-specific actions RKEYIDX1.ELG
    RKEYIDX1.LOG
    JOB_RSVBCHCK_R < 1% Strategy Resource-minimized:
    Checks whether outstanding updates tasks and queued RFCs exist PSVBCHCK.ELG
    PSVBCHCK.LOG
    Check outstanding update tasks with transaction SM13 and queued RFCs with transaction SMQ1
    INTCHK_SW < 1% Checks whether the inactive nametab is empty
    SETSYNC_PREUP_FINI_R2 dial Strategy Resource-minimized:
    events for sync with Jump
    GETSYNC_PREUP_FINI_R2 dial Strategy Resource-minimized:
    events for sync with Jump
    SETSYNC_DOWN_START_R2 dial Strategy Resource-minimized:
    events for sync with Jump
    STOPSAP_PROD < 1% Strategy Resource-minimized:
    Stops the production system
    Upgrade Phase Group: Shadow System Operations: SPDD and Activation
    Phase Duration Upgrade Actions Log Files User Actions
    CONFCHK_BAS < 1% Tests operating system and database version
    SHD_FIX_IMP < 1% Imports repair requests for shadow system SHD_FIX.ELG
    PORT_IMP_SHD < 1% Transports add-on-specific imports into the shadow system PORT_SHD.ELG
    SHDINST_CHK2 < 1% Checks the shadow instance SHDINST_CHK2.LOG
    START_SHDI_FIRST < 1% Starts the shadow system DEVTRACE.LOG
    STARTSFI.LOG
    STOP_SHDI_SW1 < 1% Stops shadow instance STOPSHDI.LOG
    SETSYNC_PREUP_FINI_SW dial events for sync with Jump
    GETSYNC_PREUP_FINI_SW dial events for sync with Jump

  • Design question: Link data between JFrames

    Dear all,
    I have a design question. I have this form in a JFrame where you can set an icon as a property. To achieve this, I have a "Set" button on the form which will open a new window with all the available icons. When you click an icon, I want the "icon" frame to be closed and the selected icon to be send to the original form. This is the way I do it now:
    Interface :
    public interface IconUpdate
    public void updateIcon(Icon icon);
    }Main frame with the "Set" button:
    public class Test extends JFrame implements IconUpdate, ActionListener
        private Icon icon = null;
        public Test()
            // add button and actionlistener and that kind of stuff
        public void actionPerformed(ActionEvent e)
            if(e.getSource() == btnSetIcon)
                new IconFrame(this);
        public void updateIcon(Icon icon)
            this.icon = icon;
    }The Icon frame:
    public class IconFrame extends JFrame implements ActionListener
        IconUpdate parent = null;
        public IconFrame(IconUpdate parent)
            this.parent = parent;
            // Initialize table,"Pick" button etc.
        public void actionPerformed(ActionEvent e)
            if(e.getSource() == btnPick)
                parent.updateIcon((Icon)list.getSelectedValue());
                this.dispose();
    }Maybe I made some spelling faults, but this is the way I implement it. Now my question is: is there another way to achieve my goal? If I have to create an interface for every "popup choose dialog" in my program, I have to create many of them. I know using a combobox in the main frame is an option, but I just want to use it this way. Can anyone tell me how I can rewrite this code to make it better / more professional?
    Tx in advance!!!
    Peter

    I can think of a couple options:
    1) Let IconFrame's constructor accept a Test parameter, instead of creating an interface.
    2) Make IconFrame into a modal dialog & have it store the user's selection in a variable. Then when you show the dialog, your action listener will block until the user selects an icon. Then you can call "getSelectedIcon()" to retrieve his/her selection. This would be much like the JOptionPane.showXXX() methods, and probably the cleaner solution.

  • How to initialize the setup table for GTMuFF08Global Trade ManagementuFF09?

    hi experts,
    I can find the datasource of GTM like 2LIS_46_SCL, 2LIS_46_ITM with rsa6.
    But when I use rsa3 to do test it, nothing found. I try to initialize the setup table, but I can not find it under SBIW.
    Please help me, many thanks. 
    Brgds/steve

    Hi
    These Data Sources are from LOGISTICS Try at Tcode.LBWE --Logistics **** Pit.
    Here is LO Cockpit Step By Step
    LO EXTRACTION
    - Go to Transaction LBWE (LO Customizing Cockpit)
    1). Select Logistics Application
           SD Sales BW
                Extract Structures
    2). Select the desired Extract Structure and deactivate it first.
    3). Give the Transport Request number and continue
    4). Click on `Maintenance' to maintain such Extract Structure
           Select the fields of your choice and continue
                 Maintain DataSource if needed
    5). Activate the extract structure
    6). Give the Transport Request number and continue
    - Next step is to Delete the setup tables
    7). Go to T-Code SBIW
    8). Select Business Information Warehouse
    i. Setting for Application-Specific Datasources
    ii. Logistics
    iii. Managing Extract Structures
    iv. Initialization
    v. Delete the content of Setup tables (T-Code LBWG)
    vi. Select the application (01 u2013 Sales & Distribution) and Execute
    - Now, Fill the Setup tables
    9). Select Business Information Warehouse
    i. Setting for Application-Specific Datasources
    ii. Logistics
    iii. Managing Extract Structures
    iv. Initialization
    v. Filling the Setup tables
    vi. Application-Specific Setup of statistical data
    vii. SD Sales Orders u2013 Perform Setup (T-Code OLI7BW)
            Specify a Run Name and time and Date (put future date)
                 Execute
    - Check the data in Setup tables at RSA3
    - Replicate the DataSource
    Use of setup tables:
    You should fill the setup table in the R/3 system and extract the data to BW - the setup tables is in SBIW - after that you can do delta extractions by initialize the extractor.
    Full loads are always taken from the setup tables
    Hope it helps

  • Delete the initialization of delta on open hub table

    HI Gurus
    I have loaded data from cube to open hub table using DTP with full update, later on i have loaded the data using a DTP with delta update. Now i am thinking that delta has been initialized on the open hub table, so now want to delete the initialization of delta on the open hub table. It would be great if some one could send me the response. 
    Thanks
    Rohit

    Hi Sam,
    If I understand you correctly,
    You have removed your Initialisation by going InfoPackage --> Scheduler --> Initialization Options for Source --> Removed the Request
    Then you did Init without Data Transfer
    Then you have the option from init withoout Data transfer to Delta in InfoPackage and Loaded the Data.
    Check in the Process Chain the InfoPackage you have mentioned in the selections may pointing towards Init load instead of Delta.
    Sudhakar.

Maybe you are looking for

  • Scrollfunction from the touchpad on a Satellite A100-812 does not work

    The scrollfunction of the touchpad (A100-812) does not work anymore. Device should work perfectly says hardware check.

  • Note 916654 - LM13: Verification field not cleared after [Enter] key

    Hi Experts, I'm facing the issue as stated in the OSS note 916654 - LM13: Verification field not cleared after [Enter] key. My current system is ECC, that is why the OSS is already applied to the ECC version. But the problem is, i still faced the pro

  • Random Pitch Function since 9.1.4 update

    Since the 9.1.4 update, whenever I try applying the random pitch function in the piano editor - I get number values instead of notes values. Clicking on one of the input fields changes it back to note values. Anyone else seeing this?

  • Screensharing login window won't quit

    I have had this problem over a year now. We have 3 Macs in the house - two iMacs and my MacBook Pro. Both the iMacs have screensharing enabled in their System Preferences. On my MBP, in the Finder window sidebar I select one of the other mac to view.

  • IChart Date updation problem in version 12.1

    Hi, I have created a Line iChart for a TagQuery in which I am passing  the Tags ,start date, end date and server (simulator) through the following script                                           var chart = document.iChart;           var qryObj = ch