Table control small Issues , Plz help in tracing the problem

Hello John , Rich , Anand & all
My sorting is working fine but thr is small problem
1. user has habit of pressing enter after everything,
    after entering the values in editable fields in Table control , it doesnt retain the entered values but if he presses save button  immediately after entering values , it saves .
how 2 hold the values after pressing enter  button
2. Now with this code , it saves the table control content but doesnt display the latest values immediately on the screen .
3. User doesnt want to press SAVE button , he wants save the Table control content by pressing ENTER button,
  What is the OK_CODE value for Enter Button plz ?
Plllllzzzzz help me for god sake ASAP.
<u><b>Everyone whoever make an attempt is going to get 10 pnts.</b></u>
==========================
FLOW Logic
PROCESS BEFORE OUTPUT.
MODULE SET_STATUS.
LOOP AT ITAB
WITH CONTROL TCL1
CURSOR TCL1-CURRENT_LINE .
MODULE SET_LINE_COUNT .
ENDLOOP.
PROCESS AFTER INPUT.
MODULE GET_OK_CODE .
MODULE EXIT_COMAND AT EXIT-COMMAND.
MODULE SCROLL_SORT.
LOOP AT ITAB.
MODULE UPDATE_MOD.
ENDLOOP.
==========================
REPORT ZSD_REP_ORDER_BANK_CHANGE NO STANDARD PAGE HEADING LINE-SIZE 255.
TABLES: VBAK,VBAP,VBRK,ZSD_TABL_ORDBANK,MARA,KONV.
CONTROLS: TCL1 TYPE TABLEVIEW USING SCREEN 0200.
DATA: ITAB LIKE ZSD_TABL_ORDBANK OCCURS 0 WITH HEADER LINE,
      WA_ITAB LIKE ZSD_TABL_ORDBANK,
      OK_CODE LIKE SY-UCOMM,
      SAVE_OK_CODE LIKE SY-UCOMM,
      UPD_OK_CODE LIKE SY-UCOMM,
      ANSWER TYPE C,
      I LIKE SY-LOOPC ,
      J LIKE SY-LOOPC,
      V_LINES LIKE SY-LOOPC,
      LINE_COUNT LIKE SY-LOOPC,
      STS  TYPE N,
      EMGRP LIKE MARA-EXTWG,
      QTY LIKE ZSD_TABL_ORDBANK-QTY,
      UPRICE LIKE ZSD_TABL_ORDBANK-UPRICE,
      TOT LIKE ZSD_TABL_ORDBANK-TOT,
      INO LIKE VBAP-POSNR,
      COL TYPE CXTAB_COLUMN,
      COPIED_ONCE ,
      FLDNAME(100),HELP(100).
FIELD-SYMBOLS:
     <FS_ITAB> LIKE LINE OF ITAB,
     <FS_TCL1> LIKE LINE OF TCL1-COLS.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-000.
  SELECT-OPTIONS: S_CCODE FOR ZSD_TABL_ORDBANK-CCODE
                          NO INTERVALS NO-EXTENSION  OBLIGATORY,
                  S_SORG  FOR ZSD_TABL_ORDBANK-SORG
                          NO INTERVALS NO-EXTENSION  OBLIGATORY,
                  S_DCHAN FOR ZSD_TABL_ORDBANK-DISTCHAN,
                  S_DIV FOR ZSD_TABL_ORDBANK-DIV,
                  S_MATNO FOR ZSD_TABL_ORDBANK-MATNO,
                  S_CUSTNO FOR ZSD_TABL_ORDBANK-CUSTNO ,
                  S_QTNO FOR ZSD_TABL_ORDBANK-QTNO,
                  S_QTDAT FOR ZSD_TABL_ORDBANK-QTDAT,
                  S_QTVDAT FOR ZSD_TABL_ORDBANK-QTVALDAT,
                  S_SONO   FOR ZSD_TABL_ORDBANK-SONO.
SELECTION-SCREEN END OF BLOCK b1.
AT SELECTION-SCREEN.
   SELECT * FROM  ZSD_TABL_ORDBANK
               INTO  TABLE ITAB
               WHERE CCODE IN S_CCODE
                 AND SORG IN  S_SORG
                 AND DISTCHAN IN  S_DCHAN
                 AND DIV IN S_DIV
                 AND MATNO IN  S_MATNO
                 AND CUSTNO IN  S_CUSTNO
                 AND QTNO IN  S_QTNO
                 AND QTDAT IN  S_QTDAT
                 AND QTVALDAT IN  S_QTVDAT
                 AND SONO IN  S_SONO .
      IF SY-SUBRC EQ 0.
         REFRESH ITAB.
         CLEAR COPIED_ONCE.
         CALL SCREEN 0200.
      ELSE.
         MESSAGE E012(ZQOTBANK) .
      ENDIF.
*&      Module  SET_STATUS  OUTPUT
      text
MODULE SET_STATUS OUTPUT.
  SET PF-STATUS '0200'.
  SET TITLEBAR '0200'.
    IF COPIED_ONCE IS INITIAL.
      SELECT * FROM  ZSD_TABL_ORDBANK
               INTO  TABLE ITAB
               WHERE CCODE IN S_CCODE
                 AND SORG IN  S_SORG
                 AND DISTCHAN IN  S_DCHAN
                 AND DIV IN S_DIV
                 AND MATNO IN  S_MATNO
                 AND CUSTNO IN  S_CUSTNO
                 AND QTNO IN  S_QTNO
                 AND QTDAT IN  S_QTDAT
                 AND QTVALDAT IN  S_QTVDAT
                 AND SONO IN  S_SONO .
      IF SY-SUBRC EQ 0.
        DESCRIBE TABLE ITAB LINES V_LINES.
        TCL1-LINES = V_LINES.
      ENDIF.
      COPIED_ONCE = 'X'.
      REFRESH CONTROL 'TCL1' FROM SCREEN '0200'.
   ENDIF.
      LOOP AT ITAB.
         QTY = ITAB-QTY.
         UPRICE  = ITAB-UPRICE.
         TOT = QTY * UPRICE .
         ITAB-TOT = TOT .
         CLEAR: QTY, UPRICE, TOT.
         QTY = ITAB-CGL_QTY.
         UPRICE  = ITAB-CGL_UPRICE.
         TOT = QTY * UPRICE .
         ITAB-CGL_TOT = TOT .
         CLEAR: QTY, UPRICE, TOT.
         QTY = ITAB-BHEL_QTY.
         UPRICE  = ITAB-BHEL_UPRICE.
         TOT = QTY * UPRICE .
         ITAB-BHEL_TOT = TOT .
         CLEAR: QTY, UPRICE, TOT.
         QTY = ITAB-ALSTOM_QTY.
         UPRICE  = ITAB-ALSTOM_UPRICE.
         TOT = QTY * UPRICE .
         ITAB-ALSTOM_TOT = TOT .
         CLEAR: QTY, UPRICE, TOT.
         QTY = ITAB-SIEMENS_QTY.
         UPRICE  = ITAB-SIEMENS_UPRICE.
         TOT = QTY * UPRICE .
         ITAB-SIEMENS_TOT = TOT .
         CLEAR: QTY, UPRICE, TOT.
         QTY = ITAB-TELK_QTY.
         UPRICE  = ITAB-TELK_UPRICE.
         TOT = QTY * UPRICE .
         ITAB-TELK_TOT = TOT .
         CLEAR: QTY, UPRICE, TOT.
         QTY = ITAB-OTH_QTY.
         UPRICE  = ITAB-OTH_UPRICE.
         TOT = QTY * UPRICE .
         ITAB-OTH_TOT = TOT .
         CLEAR: QTY, UPRICE, TOT.
         MODIFY ITAB.
      ENDLOOP.
ENDMODULE.                 " SET_STATUS  OUTPUT
*&      Module  SET_LINE_COUNT  INPUT
      text
MODULE SET_LINE_COUNT OUTPUT.
  LINE_COUNT = SY-LOOPC.
ENDMODULE.                 " SET_LINE_COUNT  INPUT
*&      Module  GET_OK_CODE  INPUT
      text
MODULE GET_OK_CODE INPUT.
  IF OK_CODE = 'SAVE'.
     UPD_OK_CODE = OK_CODE.
  ENDIF.
ENDMODULE.                 " GET_OK_CODE  INPUT
*&      Module  EXIT_COMAND  INPUT
      text
MODULE EXIT_COMAND INPUT.
SAVE_OK_CODE = OK_CODE.
CLEAR OK_CODE.
CASE SAVE_OK_CODE.
    WHEN 'BACK'.
      CALL FUNCTION 'POPUP_TO_CONFIRM'
        EXPORTING
          TITLEBAR       = 'Order Bank Entry'
          TEXT_QUESTION  = 'Do you want to Go BacK ?'
          TEXT_BUTTON_1  = 'Yes'
          TEXT_BUTTON_2  = 'No'
          DEFAULT_BUTTON = '2'
        IMPORTING
          ANSWER         = ANSWER.
      IF ANSWER = '1'.
        LEAVE TO SCREEN 0.
      ELSE.
      ENDIF.
    WHEN '%EX'.
      CALL FUNCTION 'POPUP_TO_CONFIRM'
        EXPORTING
          TITLEBAR       = 'Order Bank Entry'
          TEXT_QUESTION  = 'Do you want to Exit ?'
          TEXT_BUTTON_1  = 'Yes'
          TEXT_BUTTON_2  = 'No'
          DEFAULT_BUTTON = '2'
        IMPORTING
          ANSWER         = ANSWER.
      IF ANSWER = '1'.
        LEAVE TO SCREEN 0.
      ELSE.
      ENDIF.
  ENDCASE.
ENDMODULE.                 " EXIT_COMAND  INPUT
*&      Module SCROLL INPUT
      text
MODULE SCROLL_SORT INPUT.
SAVE_OK_CODE = OK_CODE.
CLEAR OK_CODE.
CASE SAVE_OK_CODE.
  WHEN 'P--'.
      TCL1-TOP_LINE = 1.
  WHEN 'P-'.
      TCL1-TOP_LINE = TCL1-TOP_LINE - LINE_COUNT.
      IF TCL1-TOP_LINE LE 0.
         TCL1-TOP_LINE = 1.
      ENDIF.
  WHEN 'P+'.
      I = TCL1-TOP_LINE + LINE_COUNT.
      J = TCL1-LINES - LINE_COUNT + 1.
      IF J LE 0.
         J = 1.
      ENDIF.
      IF I LE J.
         TCL1-TOP_LINE = I.
      ELSE.
         TCL1-TOP_LINE = J.
      ENDIF.
  WHEN 'P++'.
      TCL1-TOP_LINE = TCL1-LINES - LINE_COUNT + 1.
      IF TCL1-TOP_LINE LE 0.
          TCL1-TOP_LINE = 1.
      ENDIF.
  WHEN 'SORTUP'.
      READ TABLE TCL1-COLS ASSIGNING <FS_TCL1> WITH KEY SELECTED = 'X'.
      IF SY-SUBRC = 0.
          SPLIT <FS_TCL1>-SCREEN-NAME AT '-' INTO HELP FLDNAME.
          SORT ITAB ASCENDING BY (FLDNAME).
      ENDIF.
  WHEN 'SORTDN'.
      READ TABLE TCL1-COLS ASSIGNING <FS_TCL1> WITH KEY SELECTED = 'X'.
      IF SY-SUBRC = 0.
          SPLIT <FS_TCL1>-SCREEN-NAME AT '-' INTO HELP FLDNAME.
          SORT ITAB DESCENDING BY (FLDNAME).
      ENDIF.
  ENDCASE.
ENDMODULE.                 " USER_COMMAND  INPUT
*&      Module  UPDATE_MOD  INPUT
      text
MODULE UPDATE_MOD INPUT.
CASE UPD_OK_CODE.
WHEN 'SAVE'.
      UPDATE ZSD_TABL_ORDBANK FROM ITAB .
      STS = SY-SUBRC .
      IF STS NE 0.
           MESSAGE E003(ZQOTBANK) .
      ENDIF.
  ENDCASE.
ENDMODULE.                 " UPDATE_MOD  INPUT
Thnx
Moni
Message was edited by: md monirujjaman

PROCESS BEFORE OUTPUT.
MODULE SET_STATUS.
LOOP AT      ITAB
      WITH    CONTROL TCL1
      CURSOR  TCL1-CURRENT_LINE .
   MODULE SET_LINE_COUNT .
ENDLOOP.
PROCESS AFTER INPUT.
MODULE GET_OK_CODE .
MODULE EXIT_COMAND AT EXIT-COMMAND.
MODULE SCROLL_SORT.
LOOP AT ITAB.
      MODULE UPDATE_ITAB.
ENDLOOP.
      MODULE UPDATE_TABLE.
changed modules are ......
*&      Module  UPDATE_MOD  INPUT
      text
MODULE UPDATE_ITAB INPUT.
    MODIFY TABLE ITAB FROM ITAB.
ENDMODULE.                 " UPDATE_MOD  INPUT
*&      Module  TABL_UPD  INPUT
      text
  MODULE UPDATE_TABLE INPUT.
   CASE UPD_OK_CODE.
   WHEN 'SAVE'.
    UPDATE ZSD_TABL_ORDBANK FROM TABLE ITAB .
    IF SY-SUBRC NE 0.
         MESSAGE E003(ZQOTBANK) .
    ENDIF.
   ENDCASE.
  ENDMODULE.                 " TABL_UPD  INPUT
now i m able 2 get the latest edited values from user immediately i press enter button and getting saved by pressing SAVE button but further problems are, i have one dropdown button for status 1 field , and  1 date field are not getting updated .
So further help plz.

Similar Messages

  • How to use table control in bdc, plz somebody tell me.

    Hi Gurus,
    Ples tell me
    how to use table control in bdc, plz somebody tell me.
    And send Sample CODE also. Thnaks in advance.

    hi,
    Table control / step loop in BDC
    Steploop and table contol is inevitable in certain transactions. When we run BDC for such transactions, we will face the situation: how many visible lines of steploop/tablecontrol are on the screen?
    Although we can always find certain method to deal with it, such as function code 'NP', 'POPO', considering some extreme situation: there is only one line visible one the screen, our BDC program should display an error message. (See transaction 'ME21', we you resize your screen to let only one row visible, you can not enter mutiple lines on this screen even you use 'NP')
    we can determine the number of visible lines on Transaction Screen from our Calling BDC program.
    Demo ABAP code has two purposes:
    1. how to determine number of visible lines and how to calculte page number;
    (the 'calpage' routine has been modify to meet general purpose usage)
    2. using field symbol in BDC program, please pay special attention to the difference
    in Static ASSIGN and Dynamic ASSIGN.
    Step1: go to screen painter to display the screen 121, then we can count the fixed line on this screen, there is 7 lines above the steploop and 2 lines below the steploop, so there are total 9 fixed lines on this screen. This means except these 9 lines, all the other line is for step loop.
    Then have a look at steploop itselp, one entry of it will occupy two lines.
    (Be careful, for table control, the head and the bottom scroll bar will possess another two fixed lines, and there is a maximum number for table line)
    Now we have : FixedLine = 9
    LoopLine = 2(for table control, LoopLine is always equal to 1)
    Step2: go to transaction itself(ME21) to see how it roll page, in ME21, the first line of new page is always occupied by the last line of last page, so it begin with index '02', but in some other case, fisrt line is empty and ready for input.
    Now we have: FirstLine = 0
    or FirstLine = 1 ( in our case, FirstLine is 1 because the first line of new page is fulfilled)
    Step3: write a subroutine calcalculating number of pages
    (here, the name of actual parameter is the same as formal parameter)
    global data: FixedLine type i, " number of fixed line on a certain screen
    LoopLine type i, " the number of lines occupied by one steploop item
    FirstLine type i, " possbile value 0 or 1, 0 stand for the first line of new " scrolling screen is empty, otherwise is 1
    Dataline type i, " number of items you will use in BDC, using DESCRIBE to get
    pageno type i, " you need to scroll screen how many times.
    line type i, " number of lines appears on the screen.
    index(2) type N, " the screen index for certain item
    begin type i, " from parameter of loop
    end type i. " to parameter of loop
    *in code sample, the DataTable-linindex stands for the table index number of this line
    form calpage using FixedLine type i (see step 1)
    LoopLine type i (see step 1)
    FirstLine type i (see step 2)
    DataLine type i ( this is the item number you will enter in transaction)
    changing pageno type i (return the number of page, depends on run-time visible line in table control/ Step Loop)
    changing line type i.(visible lines one the screen)
    data: midd type i,
    vline type i, "visible lines
    if DataLine eq 0.
    Message eXXX.
    endif.
    vline = ( sy-srows - FixedLine ) div LoopLine.
    *for table control, you should compare vline with maximum line of
    *table control, then take the small one that is min(vline, maximum)
    *here only illustrate step loop
    if FirstLine eq 0.
    pageno = DataLine div vline.
    if pageno eq 0.
    pageno = pageno + 1.
    endif.
    elseif FirstLine eq 1.
    pageno = ( DataLine - 1 ) div ( vline - 1 ) + 1.
    midd = ( DataLine - 1 ) mod ( vline - 1).
    if midd = 0 and DataLine gt 1.
    pageno = pageno - 1.
    endif.
    endif.
    line = vline.
    endform.
    Step4 write a subroutine to calculate the line index for each item.
    form calindex using Line type i (visible lines on the screen)
    FirstLine type i(see step 2)
    LineIndex type i(item index)
    changing Index type n. (index on the screen)
    if FirstLine = 0.
    index = LineIndex mod Line.
    if index = '00'.
    index = Line.
    endif.
    elseif FirstLine = 1.
    index = LineIndex mod ( Line - 1 ).
    if ( index between 1 and 0 ) and LineIndex gt 1.
    index = index + Line - 1.
    endif.
    if Line = 2.
    index = index + Line - 1.
    endif.
    endif.
    endform.
    Step5 write a subroutine to calculate the loop range.
    form calrange using Line type i ( visible lines on the screen)
    DataLine type i
    FirstLine type i
    loopindex like sy-index
    changing begin type i
    end type i.
    If FirstLine = 0.
    if loopindex = 1.
    begin = 1.
    if DataLine <= Line.
    end = DataLine.
    else.
    end = Line.
    endif.
    elseif loopindex gt 1.
    begin = Line * ( loopindex - 1 ) + 1.
    end = Line * loopindex.
    if end gt DataLine.
    end = DataLine.
    endif.
    endif.
    elseif FirstLine = 1.
    if loopindex = 1.
    begin = 1.
    if DataLine <= Line.
    end = DataLine.
    else.
    end = Line.
    endif.
    elseif loop index gt 1.
    begin = ( Line - 1 ) * ( loopindex - 1 ) + 2.
    end = ( Line - 1 ) * ( loopindex - 1 ) + Line.
    if end gt DataLine.
    end = DataLine.
    endif.
    endif.
    endif.
    endform.
    Step6
    using field sysbol in your BDC, for example: in ME21, but you should calculate each item will correponding to which index in steploop/Table Control
    form creat_bdc.
    field-symbols: , , .
    data: name1(14) value 'EKPO-EMATN(XX)',
    name2(14) value 'EKPO-MENGE(XX)',
    name3(15) value 'RM06E-SELKZ(XX)'.
    assign: name1 to ,
    name2 to ,
    name3 to .
    do pageno times.
    if sy-index gt 1
    *insert scroll page ok_code"
    endif.
    perform calrange using Line DataLine FirstLine sy-index
    changing begin end.
    loop at DataTable from begin to end.
    perform calindex using Line FirstLine DataTable-LineIndex changing Index.
    name1+11(2) = Index.
    name2+11(2) = Index.
    name3+12(2) = Index.
    perform bdcfield using DataTable-matnr.
    perform bdcfield using DataTable-menge.
    perform bdcfield using DataTable-indicator.
    endloop.
    enddo.
    example 1
    BDC table control is an area on the screen in which you can display data in tabular form. You process it using a loop. Table controls are comparable to step loop tables. While a table control consists of a single definition row, step loop blocks may extend over more than one row. Table controls are more flexible than step loops, and are intended to replace them
    When you need to handle a scenario like in sales order,it may contain more than one material,if you have more than one material We have to use table control,it will have number of columns and number of rows.
    Table controls allow you to enter, display, and modify tabular data easily on the screen
    Check this code,
    PARAMETERS: file1 LIKE rlgrap-filename.
    *Internal Table Declarations
    DATA: BEGIN OF itab OCCURS 0,
    matnr(18) TYPE c, "MaterialNumber
    werks(4) TYPE c, "Plant
    vdatu(10) TYPE c, "Valid From Date
    bdatu(10) TYPE c, "Valid To Date
    lifnr(10) TYPE c, "Vendor Number
    ekorg(4) TYPE c, "Purchasing Organization
    feskz TYPE c, "Fixed
    autet TYPE c, "MRP Indicator
    END OF itab.
    DATA: bdcdata LIKE TABLE OF bdcdata WITH HEADER LINE.
    *VARIABLES Declarations
    DATA: wa1 LIKE LINE OF itab. "Workarea for ITAB
    DATA: n TYPE i, "Check
    count TYPE i.
    DATA: cnt(2), "Counter
    wa(15). "Workarea to hold concatenatedvalue
    DATA v_msg(100).
    DATA: flag.
    DATA: file TYPE string.
    *Initialization event
    INITIALIZATION.
    *At-selection-screen event
    *To provide Input help for file name
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR file1.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    program_name = syst-cprog
    dynpro_number = syst-dynnr
    IMPORTING
    file_name = file1.
    *START-OF-SELECTION EVENT
    START-OF-SELECTION.
    MOVE file1 TO file.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = file
    filetype = 'ASC'
    has_field_separator = 'X'
    TABLES
    data_tab = itab
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *To populate BDCDATA and start data transfer
    LOOP AT itab .
    To validate Plant range
    IF itab-werks = '1000' OR itab-werks = '2000'
    OR itab-werks = '1008'.
    AT NEW werks.
    CLEAR: n.
    cnt = 1.
    PERFORM bdc_dynpro USING 'SAPLMEOR' '0200'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'EORD-MATNR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'EORD-MATNR'
    itab-matnr.
    PERFORM bdc_field USING 'EORD-WERKS'
    itab-werks.
    PERFORM bdc_dynpro USING 'SAPLMEOR' '0205'.
    CONCATENATE 'EORD-EKORG(' cnt ')' INTO wa.
    PERFORM bdc_field USING 'BDC_CURSOR'
    wa.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=BU'.
    ENDAT.
    IF n = 12.
    READ TABLE bdcdata WITH KEY fval = '=BU'.
    bdcdata-fval = '=NS'.
    MODIFY bdcdata INDEX sy-tabix TRANSPORTING fval.
    PERFORM bdc_dynpro USING 'SAPLMEOR' '0205'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'EORD-VDATU(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=BU'.
    cnt = 2.
    n = 2.
    ENDIF.
    CONCATENATE 'EORD-VDATU(' cnt ')' INTO wa.
    PERFORM bdc_field USING wa
    itab-vdatu.
    CONCATENATE 'EORD-BDATU(' cnt ')' INTO wa.
    PERFORM bdc_field USING wa
    itab-bdatu.
    CONCATENATE 'EORD-LIFNR(' cnt ')' INTO wa.
    PERFORM bdc_field USING wa
    itab-lifnr.
    CONCATENATE 'EORD-EKORG(' cnt ')' INTO wa.
    PERFORM bdc_field USING wa
    itab-ekorg.
    CONCATENATE 'RM06W-FESKZ(' cnt ')' INTO wa.
    PERFORM bdc_field USING wa
    itab-feskz.
    CONCATENATE 'EORD-AUTET(' cnt ')' INTO wa.
    PERFORM bdc_field USING wa
    itab-autet.
    IF n <> 12.
    n = cnt.
    ENDIF.
    cnt = cnt + 1.
    AT END OF werks.
    CALL TRANSACTION 'ME01' USING bdcdata
    UPDATE 'S'
    MODE 'A'.
    CLEAR:bdcdata,bdcdata[].
    CALL FUNCTION 'FORMAT_MESSAGE'
    EXPORTING
    id = sy-msgid
    lang = 'EN'
    no = sy-msgno
    v1 = sy-msgv1
    v2 = sy-msgv2
    v3 = sy-msgv3
    v4 = sy-msgv4
    IMPORTING
    msg = v_msg.
    WRITE:/ v_msg.
    CLEAR: bdcdata,bdcdata[],flag.
    ENDAT.
    ENDIF.
    ENDLOOP.
    Start new screen *
    FORM bdc_dynpro USING program dynpro.
    CLEAR bdcdata.
    bdcdata-program = program.
    bdcdata-dynpro = dynpro.
    bdcdata-dynbegin = 'X'.
    APPEND bdcdata.
    ENDFORM.
    Insert field values
    FORM bdc_field USING fnam fval.
    IF NOT fval IS INITIAL.
    CLEAR bdcdata.
    bdcdata-fnam = fnam.
    bdcdata-fval = fval.
    APPEND bdcdata.
    ENDIF.
    CLEAR wa.
    ENDFORM.
    Sample code 2
    THis is example to upload the Bank details of the Vendor which has the TC.
    REPORT zprataptable2
    NO STANDARD PAGE HEADING LINE-SIZE 255.
    DATA : BEGIN OF itab OCCURS 0,
    i1 TYPE i,
    lifnr LIKE rf02k-lifnr,
    bukrs LIKE rf02k-bukrs,
    ekorg LIKE rf02k-ekorg,
    ktokk LIKE rf02k-ktokk,
    anred LIKE lfa1-anred,
    name1 LIKE lfa1-name1,
    sortl LIKE lfa1-sortl,
    land1 LIKE lfa1-land1,
    akont LIKE lfb1-akont,
    fdgrv LIKE lfb1-fdgrv,
    waers LIKE lfm1-waers,
    END OF itab.
    DATA : BEGIN OF jtab OCCURS 0,
    j1 TYPE i,
    banks LIKE lfbk-banks,
    bankl LIKE lfbk-bankl,
    bankn LIKE lfbk-bankn,
    END OF jtab.
    DATA : cnt(4) TYPE n.
    DATA : fdt(20) TYPE c.
    DATA : c TYPE i.
    INCLUDE bdcrecx1.
    START-OF-SELECTION.
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
    filename = 'C:\first1.txt'
    filetype = 'DAT'
    TABLES
    data_tab = itab.
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
    filename = 'C:\second.txt'
    filetype = 'DAT'
    TABLES
    data_tab = jtab.
    LOOP AT itab.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0100'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RF02K-KTOKK'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'RF02K-LIFNR'
    itab-lifnr.
    PERFORM bdc_field USING 'RF02K-BUKRS'
    itab-bukrs.
    PERFORM bdc_field USING 'RF02K-EKORG'
    itab-ekorg.
    PERFORM bdc_field USING 'RF02K-KTOKK'
    itab-ktokk.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0110'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-LAND1'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'LFA1-ANRED'
    itab-anred.
    PERFORM bdc_field USING 'LFA1-NAME1'
    itab-name1.
    PERFORM bdc_field USING 'LFA1-SORTL'
    itab-sortl.
    PERFORM bdc_field USING 'LFA1-LAND1'
    itab-land1.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0120'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-KUNNR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKN(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTR'.
    cnt = 0.
    LOOP AT jtab WHERE j1 = itab-i1.
    cnt = cnt + 1.
    CONCATENATE 'LFBK-BANKS(' cnt ')' INTO fdt.
    PERFORM bdc_field USING fdt jtab-banks.
    CONCATENATE 'LFBK-BANKL(' cnt ')' INTO fdt.
    PERFORM bdc_field USING fdt jtab-bankl.
    CONCATENATE 'LFBK-BANKN(' cnt ')' INTO fdt.
    PERFORM bdc_field USING fdt jtab-bankn.
    IF cnt = 5.
    cnt = 0.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=P+'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKN(02)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTR'.
    ENDIF.
    ENDLOOP.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTR'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0210'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB1-FDGRV'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'LFB1-AKONT'
    itab-akont.
    PERFORM bdc_field USING 'LFB1-FDGRV'
    itab-fdgrv.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0215'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB1-ZTERM'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0220'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB5-MAHNA'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0310'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFM1-WAERS'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'LFM1-WAERS'
    itab-waers.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0320'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RF02K-LIFNR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTR'.
    PERFORM bdc_dynpro USING 'SAPLSPO1' '0300'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=YES'.
    PERFORM bdc_transaction USING 'XK01'.
    ENDLOOP.
    PERFORM close_group.
    Header file:
    1 63190 0001 0001 0001 mr bal188 b in 31000 a1 inr
    2 63191 0001 0001 0001 mr bal189 b in 31000 a1 inr
    TC file:
    1 in sb 11000
    1 in sb 12000
    1 in sb 13000
    1 in sb 14000
    1 in sb 15000
    1 in sb 16000
    1 in sb 17000
    1 in sb 18000
    1 in sb 19000
    1 in sb 20000
    1 in sb 21000
    1 in sb 22000
    2 in sb 21000
    2 in sb 22000
    Regards

  • Search Help on Table Control - Fill more than one field in the table?

    Hey everyone,
    I have built a screen with a Table Control on it... the fields of the table control are linked to an internal table...  The internal table has the line type of a structure I've defined in the data dictionary.  Within that structure in the data dictionary, I've linked some fields to search helps (For example, a MATNR and CUSTOMER search help)...  I've defined in the structure definition which fields from the search help are to be returned to which fields in the structure.
    The problem is, even though I have the search help set to export both the customer number and location when using the search help on the customer field, it still does not fill the location field within the table.  Is this a limitation of using search helps within table controls?
    I'm also finding that by defining the search help through the structure, instead of directly within the screen, the search help round button does not show up on the field, yet I can still press F4 to bring up the search help.  Is there a reason why it's not showing the search help clickable button even though it works fine using F4?
    For doing search helps in Table Controls, is it better to just build the search help, attach it directly to the field in the table, and then after the user picks the single field, use the PAI to run a select and fill the rest of the fields required?
    Thanks,
    Dallas

    Hi Dallas,
    (1)
    What  i understood is that you added a search help by defining it in the internal table type for a field customer number..in the search help you have 2 fields customer number and location...user press the search help ..then you need to fill 2 different fields or 1 field?
    if you need to fill the customer location or location (only one) then you need to set the "import" in the search help for whichever is required.....
    if you need to fill 2 or more different fields..then you can use the technique you have mentioned last , to do a select in PAI and fill the fields....but this you can use if the combination for the fields is unique...eg: u have customer number and location..if customer X can be mapped to location X and location Y..when a select statement is done there are 2 options..so in such cases it is better to leave the option to the user otherwise if there is a clear mapping like customer X can be mapped only to location X then you can use the select..
    (2)
    usually when you define it as a type in the internal table the icon doesn't show up..but you can do alternative like mentioned..go to the table,find the search help for the required field if present or create a new one if required and place the search help mentioned in the screen itself..so as to see the icon...sometimes users are adamant that they need the search help icon to be seen..so it depends on if your user
    (3)
    as in the example of customer number and location mentioned we can provide them different search helps and do the needful processing in PAI to fill the fields
    Table controls may be used for different purposes and requirements....even a checkbox,push button can be placed as a field in table control and used,but yes most of the time requirements are like what is mentioned in your case...
    Regards
    Byju

  • Hi iam using IPHONE4 , when i coonect it to my PC , itunes get hang and don't detect my iphone , how i can sort out this issue plz help me

    Hi iam using IPHONE4 , when i coonect it to my PC , itunes get hang and don't detect my iphone , how i can sort out this issue plz help me

    iPhone, iPad, or iPod touch not appearing in iTunes

  • ISSUE-PLZ HELP

    When the user Miro  Generating:-
    1. Give the Ref.No.Business places,
    service Sheet No.
    and  the G/L No.. its take in production server,
    But here actual its upated Medical Aid,G/l
    But its comes in Rawmaterial exemption,account  i.e not relevant account
    actual Here its comes in G/L medical account
    How its overthe issue plz help for me.
    2.In before indevelopment server do that same thing in DEvelopment server, its Give the Error mesage i.e DELIVRY NOT SERIVICE ETNRY SHEET ..............(number) doest not exit

    Hello,
    There are several public KB articles that may apply to your situation. But, rather than try and list them all here for you, I suggest you go here:
    http://btsc.webapps.blackberry.com/btsc/microsites/microsite.do
    Search on the exact error message and see any of the resulting articles are on point to your situation.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I have problem with daq..when it is connected with laptop it asks for all the options like sampling rate etc..It displays building VI and it stops..it is not processing further..cau u plz help to solve this problem

    i hav problem with daq initialisation...plz help to solve the above mentioned issue

    Hi muthu,
    we also have a problem: to less information…
    - What is connected to your laptop?
    - What is "it" in "it displays building VI"? Do you use the DAQ Assistent ExpressVI?
    - What means "plz"?
    And could you please put less text in the title of your message and more text (with relevant information) into the message body?
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Hi basis gurus, plz help me i have problem in loading the solman 4.0 sr3

    hi basis gurus, plz help me i have problem in loading the solution manager 4.0 sr3 on mssql 2005 with sp2,
    i am enclosing the error log.
    plz help me.
    INFO 2007-12-15 04:52:47.203
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/inifile.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/inifile.2.xml'.
    INFO 2007-12-15 04:52:47.234
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/inifile.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/inifile.3.xml'.
    INFO 2007-12-15 04:52:47.671
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/keydb.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/keydb.2.xml'.
    INFO 2007-12-15 04:52:47.671
    Execute step changeUserInstall of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|Preinstall|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:04.531
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\change.log.
    INFO 2007-12-15 04:53:04.546
    Output of change user /install is written to the logfile change.log.
    WARNING 2007-12-15 04:53:04.562
    Execution of the command "change user /install" finished with return code 1. Output:
    Install mode does not apply to a Terminal server configured for remote administration.
    INFO 2007-12-15 04:53:04.625
    Execute step chgautInstdirPublicAllOS4 of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|Preinstall|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:04.718
    Execute step replaceDLLs of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|Preinstall|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:04.843
    File not found: [C:/DOCUME1/ADMINI1/LOCALS~1/Temp/1/sapinst_exe.3432.1197711967/msvcp71.dll].
    INFO 2007-12-15 04:53:04.859
    File not found: [C:/DOCUME1/ADMINI1/LOCALS~1/Temp/1/sapinst_exe.3432.1197711967/msvcr71.dll].
    INFO 2007-12-15 04:53:04.921
    Execute step registerEventsDll of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|Preinstall|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:05.125
    Execute step AddPrivileges of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|Preinstall|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:05.343
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'SOLMAN\Administrator' on host '.'.
    INFO 2007-12-15 04:53:05.406
    Execute step checkInstDirPermissions of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|Preinstall|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:05.562
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\testfile.1.
    INFO 2007-12-15 04:53:05.562
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\testfile.1.
    INFO 2007-12-15 04:53:05.828
    Execute step
    Component  W2K_ServicePack_Check|ind|ind|ind|ind
    Preprocess  of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0.
    INFO 2007-12-15 04:53:24.640
    Execute step sync of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0.
    INFO 2007-12-15 04:53:24.859
    Execute step adminCheck of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0.
    INFO 2007-12-15 04:53:25.62
    Execute step W2KSPCheck of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0.
    INFO 2007-12-15 04:53:25.234
    Execute step XPSPCheck of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0.
    INFO 2007-12-15 04:53:25.421
    Execute step DNSCheck of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:25.546
    DNS is configured correctly.
    INFO 2007-12-15 04:53:25.609
    Execute step done of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:25.796
    Execute step checkParams of component |NW_Onehost|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:25.984
    Execute step fillContextForSoftwareFeatures of component |NW_Onehost|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:26.171
    Execute step loadUsageTypes of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features_Init|ind|ind|ind|ind|2|0.
    INFO 2007-12-15 04:53:28.62
    Execute step fillContextUsageTypes of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0.
    INFO 2007-12-15 04:53:28.265
    Execute step setAllPossible of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:28.859
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/usages_data.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/usages_data.1.xml'.
    INFO 2007-12-15 04:53:28.890
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/usages_data.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/usages_data.2.xml'.
    INFO 2007-12-15 04:53:28.921
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jexclude.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jexclude.1.xml'.
    INFO 2007-12-15 04:53:28.921
    Execute step determineScenarioParameters of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:29.140
    Execute step prepareUsagesTableForUserInputXml of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:29.640
    Execute step determinePossibleUsageTypesXml of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:30.468
    Execute step prepareUsagesTableForUserInputDB of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:30.578
    Execute step setDefaultsGuiValues of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:30.687
    Execute step setDefaultsStackDetermined of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:30.781
    Execute step chooseMandatory of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:31.296
    Execute step makeABAPPartsImpossible of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:31.390
    Execute step setDependencyRestrictions of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Prepare|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:32.0
    Execute step prepareScenario of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Select|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:53:32.468
    Execute step fillUsagesTable of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Select|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:53:33.515
    Execute step selectUsages of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Select|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:53:33.640
    Execute step selectUsagesNetWeaver of component |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features|ind|ind|ind|ind|3|0|SAP_Software_Features_Select|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:53:33.765
    Execute step determineStack of component |NW_Onehost|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:34.234
    Execute step determineCharSet of component |NW_Onehost|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:34.890
    Execute step fillContext2 of component |NW_Onehost|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:35.93
    Execute step startDefaultMode of component |NW_Onehost|ind|ind|ind|ind|0|0.
    INFO 2007-12-15 04:53:35.390
    Execute step fillContext of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:53:35.640
    Execute step setDefaults of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_getJavaHome|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:53:36.31
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 04:53:35 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 04:53:36.312
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar;C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/sapxmltoolkit.jar com.sap.ins.j2ee.TestClassLoader" finished with return code 0. Output: CORRECT
    INFO 2007-12-15 04:53:36.312
    Found a valid JAVA_HOME directory C:\j2sdk1.4.2_12 with JDK version 1.4.2_12.
    INFO 2007-12-15 04:55:54.593
    Copied file 'D:/D51032958/J2EE_OSINDEP/JDKVersion.xml' to '.'.
    INFO 2007-12-15 04:55:54.781
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar;C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/sapxmltoolkit.jar com.sap.ins.j2ee.TestClassLoader" finished with return code 0. Output: CORRECT
    INFO 2007-12-15 04:55:54.781
    Found a valid JAVA_HOME directory C:\j2sdk1.4.2_12 with JDK version 1.4.2_12.
    INFO 2007-12-15 04:55:54.953
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar;C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/sapxmltoolkit.jar com.sap.ins.j2ee.TestClassLoader" finished with return code 0. Output: CORRECT
    INFO 2007-12-15 04:55:55.62
    Execute step getCD of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_getJavaHome|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:55:55.281
    Execute step verifyJavaHome of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_getJavaHome|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:55:55.593
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 04:55:55 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 04:55:55.968
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 04:55:55 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 04:55:56.187
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar;C:/DOCUME1/ADMINI1/LOCALS1/Temp/3/sapinst_exe.2320.1197712344/JAR/sapxmltoolkit.jar com.sap.ins.j2ee.TestClassLoader" finished with return code 0. Output: CORRECT
    INFO 2007-12-15 04:55:56.390
    Execute step verifyPolicy of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_getJavaHome|ind|ind|ind|ind|1|0.
    INFO 2007-12-15 04:55:56.531
    Creating directory C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck.
    INFO 2007-12-15 04:55:56.546
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jdkPolicyCheck.
    INFO 2007-12-15 04:55:56.562
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 04:55:56.562
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\local_policy.log.
    INFO 2007-12-15 04:55:56.578
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile local_policy.log.
    INFO 2007-12-15 04:55:56.875
    Output of C:\j2sdk1.4.2_12\bin\jar.exe xvf C:/j2sdk1.4.2_12/jre/lib/security/local_policy.jar:
    extracted: META-INF/MANIFEST.MF
    extracted: META-INF/JCE_RSA.SF
    extracted: META-INF/JCE_RSA.RSA
      created: META-INF/
    extracted: default_local.policy
    extracted: exempt_local.policy
    INFO 2007-12-15 04:55:56.890
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jdkPolicyCheck.
    INFO 2007-12-15 04:55:56.890
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 04:55:56.906
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\US_export_policy.log.
    INFO 2007-12-15 04:55:56.906
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile US_export_policy.log.
    INFO 2007-12-15 04:55:57.62
    Output of C:\j2sdk1.4.2_12\bin\jar.exe xvf C:/j2sdk1.4.2_12/jre/lib/security/US_export_policy.jar:
    extracted: META-INF/MANIFEST.MF
    extracted: META-INF/JCE_RSA.SF
    extracted: META-INF/JCE_RSA.RSA
      created: META-INF/
    extracted: default_US_export.policy
    INFO 2007-12-15 04:55:57.78
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck\default_local.policy.
    INFO 2007-12-15 04:55:57.78
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck\default_US_export.policy.
    INFO 2007-12-15 04:55:57.78
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck\exempt_local.policy.
    INFO 2007-12-15 04:55:57.78
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck\META-INF\JCE_RSA.RSA.
    INFO 2007-12-15 04:55:57.78
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck\META-INF\JCE_RSA.SF.
    INFO 2007-12-15 04:55:57.78
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jdkPolicyCheck\META-INF\MANIFEST.MF.
    INFO 2007-12-15 04:55:57.78
    Removing directory C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jdkPolicyCheck/META-INF.
    INFO 2007-12-15 04:55:57.78
    Removing directory C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jdkPolicyCheck.
    INFO 2007-12-15 04:55:57.343
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 04:55:57 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 04:55:57.625
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 04:55:57 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 05:06:19.171
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:06:19.187
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\LABEL.log.
    INFO 2007-12-15 05:06:19.187
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile LABEL.log.
    INFO 2007-12-15 05:06:21.718
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf D:\D51032958\J2EE_OSINDEP\UT_SOLMAN\LABEL.ASC:
    INFO 2007-12-15 05:21:25.93
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:21:25.93
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\unrestrict142.log.
    INFO 2007-12-15 05:21:25.109
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile unrestrict142.log.
    INFO 2007-12-15 05:21:27.734
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf D:\unrestrict142.zip:
    US_export_policy.jar
    local_policy.jar
    INFO 2007-12-15 05:21:27.750
    Creating directory C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jcePolicyCheck.
    INFO 2007-12-15 05:21:27.765
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:21:27.765
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:21:27.781
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\unrestrict142.log.
    INFO 2007-12-15 05:21:27.781
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile unrestrict142.log.
    INFO 2007-12-15 05:21:27.937
    Output of C:\j2sdk1.4.2_12\bin\jar.exe xvf D:\unrestrict142.zip local_policy.jar:
    extracted: local_policy.jar
    INFO 2007-12-15 05:21:27.953
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:21:27.953
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:21:27.968
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\local_policy.log.
    INFO 2007-12-15 05:21:27.968
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile local_policy.log.
    INFO 2007-12-15 05:21:28.125
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf C:/PROGRA1/SAPINS1/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck/local_policy.jar:
    META-INF/MANIFEST.MF
    META-INF/IBMFW2.SF
    META-INF/IBMFW2.DSA
    META-INF/
    default_local.policy
    INFO 2007-12-15 05:21:28.125
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:21:28.125
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:21:28.156
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\local_policy.log.
    INFO 2007-12-15 05:21:28.156
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile local_policy.log.
    INFO 2007-12-15 05:21:28.312
    Output of C:\j2sdk1.4.2_12\bin\jar.exe xvf C:/PROGRA1/SAPINS1/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck/local_policy.jar META-INF/MANIFEST.MF:
    extracted: META-INF/MANIFEST.MF
    INFO 2007-12-15 05:21:28.546
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 05:21:28 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 05:26:40.343
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:26:40.343
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jce_policy-1_5_0.log.
    INFO 2007-12-15 05:26:40.343
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile jce_policy-1_5_0.log.
    INFO 2007-12-15 05:26:41.953
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf D:\jce_policy-1_5_0.zip:
    jce/
    jce/COPYRIGHT.html
    jce/README.txt
    jce/US_export_policy.jar
    jce/local_policy.jar
    INFO 2007-12-15 05:26:41.953
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jcePolicyCheck\local_policy.jar.
    INFO 2007-12-15 05:26:41.968
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jcePolicyCheck\META-INF\MANIFEST.MF.
    INFO 2007-12-15 05:26:41.968
    Removing directory C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck/META-INF.
    INFO 2007-12-15 05:26:41.968
    Removing directory C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:26:41.968
    Creating directory C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jcePolicyCheck.
    INFO 2007-12-15 05:26:41.984
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:26:41.984
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:26:42.0
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jce_policy-1_5_0.log.
    INFO 2007-12-15 05:26:42.15
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile jce_policy-1_5_0.log.
    INFO 2007-12-15 05:26:42.171
    Output of C:\j2sdk1.4.2_12\bin\jar.exe xvf D:\jce_policy-1_5_0.zip jce/local_policy.jar:
    extracted: jce/local_policy.jar
    INFO 2007-12-15 05:26:42.187
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:26:42.187
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:26:42.203
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\local_policy.log.
    INFO 2007-12-15 05:26:42.203
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile local_policy.log.
    INFO 2007-12-15 05:26:42.359
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf C:/PROGRA1/SAPINS1/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck/jce/local_policy.jar:
    META-INF/MANIFEST.MF
    META-INF/JCE_RSA.SF
    META-INF/JCE_RSA.RSA
    META-INF/
    default_local.policy
    INFO 2007-12-15 05:26:42.359
    Working directory changed to C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck.
    INFO 2007-12-15 05:26:42.359
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:26:42.390
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\local_policy.log.
    INFO 2007-12-15 05:26:42.390
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile local_policy.log.
    INFO 2007-12-15 05:26:42.562
    Output of C:\j2sdk1.4.2_12\bin\jar.exe xvf C:/PROGRA1/SAPINS1/SOLMAN/SYSTEM/MSS/CENTRAL/AS/jcePolicyCheck/jce/local_policy.jar META-INF/MANIFEST.MF:
    extracted: META-INF/MANIFEST.MF
    INFO 2007-12-15 05:26:42.796
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 05:26:42 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 05:26:43.93
    Execution of the command "C:\j2sdk1.4.2_12\bin\java.exe -classpath C:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: #
    #Sat Dec 15 05:26:42 EST 2007
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    sun.boot.library.path=C\:
    j2sdk1.4.2_12
    jre
    bin
    java.vm.version=1.4.2_12-b03
    java.vm.vendor=Sun Microsystems Inc.
    java.vendor.url=http\://java.sun.com/
    path.separator=;
    java.vm.name=Java HotSpot(TM) Client VM
    file.encoding.pkg=sun.io
    user.country=US
    sun.os.patch.level=Service Pack 2
    java.vm.specification.name=Java Virtual Machine Specification
    user.dir=C\:
    PROGRA1
    SAPINS1
    SOLMAN
    SYSTEM
    MSS
    CENTRAL
    AS
    java.runtime.version=1.4.2_12-b03
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.endorsed.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    endorsed
    os.arch=x86
    java.io.tmpdir=C\:
    DOCUME1
    ADMINI1
    LOCALS~1
    Temp
    3
    line.separator=\r\n
    java.vm.specification.vendor=Sun Microsystems Inc.
    user.variant=
    os.name=Windows 2003
    sun.java2d.fontpath=
    java.library.path=C\:
    j2sdk1.4.2_12
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    j2sdk1.4.2_12
    bin;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    DTS
    Binn
    ;C\:
    Program Files
    Microsoft SQL Server
    90
    Tools
    Binn
    VSShell
    Common7
    IDE
    java.specification.name=Java Platform API Specification
    java.class.version=48.0
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    os.version=5.2
    user.home=C\:
    Documents and Settings
    Administrator
    user.timezone=America/New_York
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    file.encoding=Cp1252
    java.specification.version=1.4
    java.class.path=C\:/DOCUME1/ADMINI1/LOCALS~1/Temp/3/sapinst_exe.2320.1197712344/JAR/ins-j2ee.jar
    user.name=Administrator
    java.vm.specification.version=1.0
    java.home=C\:
    j2sdk1.4.2_12
    jre
    sun.arch.data.model=32
    user.language=en
    java.specification.vendor=Sun Microsystems Inc.
    awt.toolkit=sun.awt.windows.WToolkit
    java.vm.info=mixed mode
    java.version=1.4.2_12
    java.ext.dirs=C\:
    j2sdk1.4.2_12
    jre
    lib
    ext
    sun.boot.class.path=C\:
    j2sdk1.4.2_12
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_12
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_12
    jre
    classes
    java.vendor=Sun Microsystems Inc.
    file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
    sun.io.unicode.encoding=UnicodeLittle
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    INFO 2007-12-15 05:28:26.93
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:28:26.109
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jce.log.
    INFO 2007-12-15 05:28:26.109
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile jce.log.
    INFO 2007-12-15 05:28:29.156
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf C:\j2sdk1.4.2_12\jre\lib\jce.jar:
    META-INF/MANIFEST.MF
    META-INF/JCE_RSA.SF
    META-INF/JCE_RSA.RSA
    META-INF/
    javax/
    javax/crypto/
    javax/crypto/interfaces/
    javax/crypto/interfaces/DHKey.class
    javax/crypto/interfaces/DHPublicKey.class
    javax/crypto/interfaces/DHPrivateKey.class
    javax/crypto/interfaces/PBEKey.class
    javax/crypto/SecretKey.class
    javax/crypto/spec/
    javax/crypto/spec/RC2ParameterSpec.class
    javax/crypto/spec/RC5ParameterSpec.class
    javax/crypto/spec/PBEParameterSpec.class
    javax/crypto/spec/IvParameterSpec.class
    javax/crypto/spec/DESKeySpec.class
    javax/crypto/spec/DESedeKeySpec.class
    javax/crypto/spec/DHGenParameterSpec.class
    javax/crypto/spec/DHParameterSpec.class
    javax/crypto/spec/DHPrivateKeySpec.class
    javax/crypto/spec/DHPublicKeySpec.class
    javax/crypto/spec/PBEKeySpec.class
    javax/crypto/spec/SecretKeySpec.class
    javax/crypto/Cipher.class
    javax/crypto/CipherSpi.class
    javax/crypto/SunJCE_b.class
    javax/crypto/SunJCE_c.class
    javax/crypto/SunJCE_d.class
    javax/crypto/SunJCE_e.class
    javax/crypto/SunJCE_f.class
    javax/crypto/SunJCE_g.class
    javax/crypto/SunJCE_h.class
    javax/crypto/SunJCE_i.class
    javax/crypto/SunJCE_j.class
    javax/crypto/SunJCE_k.class
    javax/crypto/SunJCE_l.class
    javax/crypto/SunJCE_m.class
    javax/crypto/SunJCE_n.class
    javax/crypto/ExemptionMechanism.class
    javax/crypto/SunJCE_o.class
    javax/crypto/SunJCE_p.class
    javax/crypto/CipherInputStream.class
    javax/crypto/CipherOutputStream.class
    javax/crypto/KeyAgreement.class
    javax/crypto/KeyAgreementSpi.class
    javax/crypto/KeyGenerator.class
    javax/crypto/KeyGeneratorSpi.class
    javax/crypto/Mac.class
    javax/crypto/MacSpi.class
    javax/crypto/ShortBufferException.class
    javax/crypto/SecretKeyFactory.class
    javax/crypto/SecretKeyFactorySpi.class
    javax/crypto/NullCipherSpi.class
    javax/crypto/EncryptedPrivateKeyInfo.class
    javax/crypto/ExemptionMechanismSpi.class
    javax/crypto/ExemptionMechanismException.class
    javax/crypto/SealedObject.class
    javax/crypto/SunJCE_q.class
    javax/crypto/NullCipher.class
    javax/crypto/BadPaddingException.class
    javax/crypto/IllegalBlockSizeException.class
    javax/crypto/NoSuchPaddingException.class
    javax/crypto/SunJCE_r.class
    javax/crypto/SunJCE_s.class
    javax/crypto/SunJCE_t.class
    javax/crypto/SunJCE_u.class
    INFO 2007-12-15 05:36:57.406
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 05:36:57.421
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jce.log.
    INFO 2007-12-15 05:36:57.437
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile jce.log.
    INFO 2007-12-15 05:37:00.234
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf C:\j2sdk1.4.2_12\jre\lib\jce.jar:
    META-INF/MANIFEST.MF
    META-INF/JCE_RSA.SF
    META-INF/JCE_RSA.RSA
    META-INF/
    javax/
    javax/crypto/
    javax/crypto/interfaces/
    javax/crypto/interfaces/DHKey.class
    javax/crypto/interfaces/DHPublicKey.class
    javax/crypto/interfaces/DHPrivateKey.class
    javax/crypto/interfaces/PBEKey.class
    javax/crypto/SecretKey.class
    javax/crypto/spec/
    javax/crypto/spec/RC2ParameterSpec.class
    javax/crypto/spec/RC5ParameterSpec.class
    javax/crypto/spec/PBEParameterSpec.class
    javax/crypto/spec/IvParameterSpec.class
    javax/crypto/spec/DESKeySpec.class
    javax/crypto/spec/DESedeKeySpec.class
    javax/crypto/spec/DHGenParameterSpec.class
    javax/crypto/spec/DHParameterSpec.class
    javax/crypto/spec/DHPrivateKeySpec.class
    javax/crypto/spec/DHPublicKeySpec.class
    javax/crypto/spec/PBEKeySpec.class
    javax/crypto/spec/SecretKeySpec.class
    javax/crypto/Cipher.class
    javax/crypto/CipherSpi.class
    javax/crypto/SunJCE_b.class
    javax/crypto/SunJCE_c.class
    javax/crypto/SunJCE_d.class
    javax/crypto/SunJCE_e.class
    javax/crypto/SunJCE_f.class
    javax/crypto/SunJCE_g.class
    javax/crypto/SunJCE_h.class
    javax/crypto/SunJCE_i.class
    javax/crypto/SunJCE_j.class
    javax/crypto/SunJCE_k.class
    javax/crypto/SunJCE_l.class
    javax/crypto/SunJCE_m.class
    javax/crypto/SunJCE_n.class
    javax/crypto/ExemptionMechanism.class
    javax/crypto/SunJCE_o.class
    javax/crypto/SunJCE_p.class
    javax/crypto/CipherInputStream.class
    javax/crypto/CipherOutputStream.class
    javax/crypto/KeyAgreement.class
    javax/crypto/KeyAgreementSpi.class
    javax/crypto/KeyGenerator.class
    javax/crypto/KeyGeneratorSpi.class
    javax/crypto/Mac.class
    javax/crypto/MacSpi.class
    javax/crypto/ShortBufferException.class
    javax/crypto/SecretKeyFactory.class
    javax/crypto/SecretKeyFactorySpi.class
    javax/crypto/NullCipherSpi.class
    javax/crypto/EncryptedPrivateKeyInfo.class
    javax/crypto/ExemptionMechanismSpi.class
    javax/crypto/ExemptionMechanismException.class
    javax/crypto/SealedObject.class
    javax/crypto/SunJCE_q.class
    javax/crypto/NullCipher.class
    javax/crypto/BadPaddingException.class
    javax/crypto/IllegalBlockSizeException.class
    javax/crypto/NoSuchPaddingException.class
    javax/crypto/SunJCE_r.class
    javax/crypto/SunJCE_s.class
    javax/crypto/SunJCE_t.class
    javax/crypto/SunJCE_u.class
    INFO 2007-12-15 06:43:51.609
    Working directory changed to C:\PROGRA1\SAPINS1\SOLMAN\SYSTEM\MSS\CENTRAL\AS.
    INFO 2007-12-15 06:43:51.609
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jce_policy-1_4_2.log.
    INFO 2007-12-15 06:43:51.625
    Output of C:\j2sdk1.4.2_12\bin\jar.exe is written to the logfile jce_policy-1_4_2.log.
    INFO 2007-12-15 06:43:52.984
    Output of C:\j2sdk1.4.2_12\bin\jar.exe tf D:\jce_policy-1_4_2.zip:
    jce/
    jce/local_policy.jar
    jce/US_export_policy.jar
    jce/README.txt
    jce/COPYRIGHT.html
    INFO 2007-12-15 06:43:52.984
    Removing file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\MSS\CENTRAL\AS\jcePolicyCheck\jce\local_policy.jar.

    Moving this thread to "basis" forum (sorry, I cannot move to SolMan forum).

  • When importing clips to iMovie11 the audio is missing. I have been able to successfully to this in the past and all of the sudden it is not working. Any help to solve the problem would be appreciated.

    When importing clips to iMovie11 the audio is missing. I have been able to successfully to this in the past and all of the sudden it is not working. Any help to solve the problem would be appreciated.
    Thank you for your help!

    Download/install an app is a know possible solution.
    3. Install another app from the App Store
    If all user-installed apps are not launching, it could be an Apple ID authorization issue. Download and install an app that isn't already installed on your device to reset this information.
    Note: If you have installed apps using multiple Apple ID accounts, you may need to perform this step for each account.
    Above from Apple's :
    iOS: Troubleshooting applications purchased from the App Store

  • Hi I've a big problem with adobe acrobat reader XI pro and I hope you can help me. The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reade

    Hi
    I've a big problem with adobe acrobat reader XI pro and I hope you can help me.
    The problem is; when I past copied text from some pdf books (not all of them) it past symbols only! wherever I past it! and even if I coped that text from another pdf reader (adobe pdf reader, internet browsers, ...etc.).
    This problem started to happen since yesterday when I installed adobe acrobat reader XI pro to try it before I buy it, and before that when I was using the free adobe pdf reader I was totally able to copy any text from any pdf and past it anywhere with nothing wrong.
    What can I do?
    thank you a lot.

    There is no product called Adobe Acrobat Reader Pro. There is
    - Adobe Acrobat Pro ($$)
    - Adobe Reader (free)
    Which do you have? And are you a programmer?

  • My Imac is ejecting every disk inserted in it, I cannot access the disks, can any body help me troubleshoot the problem. I am using snow leopard.

    My Imac is ejecting every disk inserted in it, I cannot access the disks, can any body help me troubleshoot the problem. I am using snow leopard.

    Try resetting the SMC Intel-based Macs: Resetting the System Management Controller (SMC) - Apple Support
    and PRAM How to Reset NVRAM on your Mac - Apple Support
    If those don't help you can try a cleaning disc or a quick shot of compressed air. Chances are that your drive has failed, join the club it's not all that uncommon. You can either have it replaced or purchase an inexpensive external drive. Don't buy the cute little Apple USB Superdrive, it won't work on macs with internal drives working or not.

  • HT1338 Could you please help me with the problem. I have mac os 10.7.4 on my macbook pro retina and want to update it to 10.7.5. I had been waiting for 2 hours to do it, but then it appeared that it was impossible. What should I do?

    Could you please help me with the problem. I have macbook with retina with mac os 10.7.4 ann want to update it to mac os 10.7.5. I had been waiting for 2 hours to do it and had tried 3 times but it appeared that it was impossible. What should I do?

    You can download the standalone updates:
    OS X Lion Update 10.7.5 (Client Combo)
    OS X Lion 10.7.5 Supplemental Update

  • Hello. the last month i face a problem with youtube at my macbook. most videos stop playing after maybe 20 - 25 sec. the same time the time bar stops moving. could you help me solve the problem? thank you

    hello. the last month i face a problem with youtube at my macbook. most videos stop playing after maybe 20 - 25 sec. the same time the time bar stops moving. could you help me solve the problem? thank you

    hello. the last month i face a problem with youtube at my macbook. most videos stop playing after maybe 20 - 25 sec. the same time the time bar stops moving. could you help me solve the problem? thank you

  • My iphone keeps freezing, then turning itself off. Please help me resolve the problem whatever it is

    My iphone keeps freezing, then turning itself off. Please help me resolve the problem whatever it may be.

    You said that you restored it.  "forgot to mentioned that ive tried all of that"
    When you restore, you can restore from backup or as new.
    Did you or did you not restore it?
    iPhone User Guide (For iOS 5.0 Software)

  • Dear Apple I buy a refurbish iPhone 5s the IMEI ******* and ICCID ******** and i restored the device when i restored its locked to iCloud and i don't know the username and password i hope to help me about the problem asap.  Best regard

    Dear Apple
    I buy a refurbish iPhone 5s the IMEI ******** and ICCID ********** and i restored the device when i restored its locked to iCloud and i don't know the username and password i hope to help me about the problem asap.
    Best regard
    <Edited by Host>

    This is a user forum. You aren't talking to Apple here.
    Return your iPhone for a refund. There is no way to remove the Activation Lock. Apple won't get involved.
    <Edited by Host>

  • HT5919 My company will not allow us to download iOS 7 due to software / security issues on our end. The problem is I need to download numbers but it says I need iOS 7. Is there any way to get an earlier update that's doesn't require ios7?

    My company will not allow us to download iOS 7 due to software / security issues on our end. The problem is I need to download numbers but it says I need iOS 7. Is there any way to get an earlier update of numbers that's doesn't require ios7?

    Thank you so much! It's updating now. I'm hoping that once the update is finished that it will sync like normal as well. Of course I'm still a bit confused/concerned about how it refused to update on it's own, but for now that's not a problem. Hopefully from now on there won't be any more problems.

Maybe you are looking for

  • Exchange 2013 SP1 - Error: Your request could not be completed

    When trying to log into the ECP I get an: Error Your request could not be completed.  Please try again later.    When I check the event viewer I get: WebHost failed to process a request.  Sender Information: System.ServiceModel.ServiceHostingEnvironm

  • DVD format for X61/X6 Ultrabase

    I've just gotten a new X61 with the X6 Ultrabase and DVD burner.  Please tell me what DVD media formats are compatible with that drive (for writing and creating system backups). I'd love to use my supply of Memorex DVD+RW disks.  They work fine on my

  • In-Ear Headphones Warranty?

    How do I get Apple to honor the warranty that came with my original in-ear headphones. I have bought 2 sets and both have stopped working. There is no online repair request form. When I call Apple support or the Apple store they keeps asking about my

  • Problem While Exporting the Output

    Dear All , I am facing a problem while exporting the ALV output to Spreadsheet. When I click on Menu LIST->Export-->Spreadsheet, One pop is coming with title "Save XXL list object in SAPOffice" In that it is asking me to save Name of the List object

  • Window update will not run... error "windows cannot currently check for updates because the service in not running?"

    i am running windows 7 64bit professional on an asus essentio series cm5675 i5 processor with 16gigs of ram any reason or what is causes the update program/service to not run?