Version is not coming in Tcode PC_PAYRESULT

We have written a payroll  driver program for non standard sap payroll countries with using Standard intrnational payroll driver. We getting results fine for all countries but the rpoblem is version is not coming for those countries. i.e.in Tcode PC_PAYRESULT the version is not coming. Please suggest us and also how to debugg the program ,in this program break point is not allowing. Thanks for advance help.............
With Regards,
T Rao

Hi,
check in client 000, if you don't have spanisch there, then most probably its not translated (yet)
you can transate yourself if needed...
Rgds
Nico

Similar Messages

  • Tcode KEFC and message:"Plan version is not supported"

    Hello all,
    Please is someone aware of solution for this situation:
    - I upload with tcode KEFC forecast datas from excel file in CO-PA
    - receiver records are created with errors
    - when I check for the errors system tells me that "Plan version is not supported, diagnosis : Plan version "0" has not been created in operating concern "1000", Procedure: Transfer version "0" to operating concern "1000" and maintain the attrributes for that version"
    - my concern is that when I check in customizing Planning, Initial Step: display view settings in operating concern details the version "0" is existingin the operati,ng concern "1000"
    So do you have a solution for this issue?
    Thanks and best regards
    JCO

    Hi Sudhakar,
    Thanks for answer but version "0" is tickled for Plan Actual, WIP and variance and I don't understand what to do about KEPM.
    Best regards
    JCO

  • Value are not coming (tcode cm50)

    hi expert ,
    in below code values are not comes into ITAB_TXTLINES (  WA_DATA ) . we use a standard program cm50 tcode . into
    customize program  memory but values is not coming into wa.
    values(arbpl ,werks,kapar,planr)
    this is my first time i use standard progarm
    so plz help
    REPORT  ZPP_CM50  LINE-SIZE 170..
    TYPE-POOLS : SLIS.
    DATA : INT_CAT TYPE SLIS_FIELDCAT_ALV,
           INT_FCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA : LS_LINE TYPE SLIS_LISTHEADER,
           VN_TOP  TYPE SLIS_T_LISTHEADER,
           IT_SORT TYPE  SLIS_T_SORTINFO_ALV,
           WA_SORT LIKE LINE OF IT_SORT.
    DATA : LAYOUT TYPE SLIS_LAYOUT_ALV.
    DATA: BEGIN OF SLIST_LISTLINE,
          LINE(1024)      TYPE   C,
          END OF SLIST_LISTLINE.
    DATA: ITAB_TXTLINES LIKE SLIST_LISTLINE OCCURS 0 WITH HEADER LINE.
    TABLES : CRHD , KAKO .
    DATA: BEGIN OF ITAB_DATA OCCURS 0,
          AA(20),LEVEL(20),ITEM(20),OBJ(20),OBJID(20),
          OBJDES(20),OVRFLW(20),QTY(20),UOM(20),ICT(20),
          END OF ITAB_DATA.
    DATA : WA_DATA LIKE ITAB_DATA.
    DATA: TEXT TYPE C LENGTH 10,
          RSPAR_TAB  TYPE TABLE OF RSPARAMS,
          RSPAR_LINE LIKE LINE OF RSPAR_TAB,
          RANGE_TAB  LIKE RANGE OF TEXT,
          RANGE_LINE LIKE LINE OF RANGE_TAB.
    *DATA: TEXT TYPE C LENGTH 10,
         RSPAR_TAB  TYPE TABLE OF RSPARAMS,
         RSPAR_LINE LIKE LINE OF RSPAR_TAB.
         RANGE_TAB  LIKE RANGE OF TEXT,
         RANGE_LINE LIKE LINE OF RANGE_TAB.
    DATA  : LIST_TAB TYPE TABLE OF ABAPLIST.
    SELECTION-SCREEN : BEGIN OF BLOCK ABC WITH FRAME TITLE TLT.
    SELECTION-SCREEN   SKIP 1.
    *SELECT-OPTIONS     ARBPL FOR CRHD-ARBPL.
    SELECT-OPTIONS     WERKS FOR CRHD-WERKS.
    SELECT-OPTIONS     KAPAR FOR KAKO-KAPAR.
    SELECT-OPTIONS     PLANR FOR KAKO-PLANR.
    SELECTION-SCREEN   SKIP 2.
    SELECTION-SCREEN : END OF BLOCK ABC.
    START-OF-SELECTION.
    *RSPAR_LINE-SELNAME = 'TRUST_ID'.
    RSPAR_LINE-KIND    = 'P'.
    RSPAR_LINE-LOW     = 'RPF1'."'VD06011013'.
    APPEND RSPAR_LINE TO RSPAR_TAB.
    CLEAR RSPAR_LINE.
    RSPAR_LINE-SELNAME = 'YEAR'.
    RSPAR_LINE-KIND    = 'P'.
    RSPAR_LINE-LOW     = '2009'.
    APPEND RSPAR_LINE TO RSPAR_TAB.
    CLEAR RSPAR_LINE.
    RSPAR_LINE-SELNAME = 'REPONAME'.
    RSPAR_LINE-KIND    = 'P'.
    RSPAR_LINE-LOW     = 'FORM3A'.
    APPEND RSPAR_LINE TO RSPAR_TAB.
    CLEAR RSPAR_LINE.
    SUBMIT RCCRY000 EXPORTING LIST TO MEMORY
    USING SELECTION-SCREEN '1000'
                    WITH CRHARBPL-LOW EQ ARBPL
                     WITH CRHWERKS-LOW EQ WERKS
                     WITH KAKKAPAR-LOW EQ KAPAR
                     WITH KAKPLANR-LOW EQ PLANR
                      AND  RETURN.
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          LISTOBJECT = LIST_TAB
        EXCEPTIONS
          NOT_FOUND  = 1
          OTHERS     = 2.
      CALL FUNCTION 'LIST_TO_ASCI'
        EXPORTING
          LIST_INDEX         = -1
          WITH_LINE_BREAK    = ' '
        TABLES
          LISTASCI           = ITAB_TXTLINES
          LISTOBJECT         = LIST_TAB
        EXCEPTIONS
          EMPTY_LIST         = 1
          LIST_INDEX_INVALID = 2
          OTHERS             = 3.
      LOOP AT ITAB_TXTLINES .                                   "from 5.
        CLEAR WA_DATA.
        SPLIT ITAB_TXTLINES AT '|' INTO: WA_DATA-AA
                                         WA_DATA-LEVEL
                                         WA_DATA-ITEM
                                         WA_DATA-OBJ
                                         WA_DATA-OBJID
                                         WA_DATA-OBJDES
                                         WA_DATA-OVRFLW
                                         WA_DATA-QTY
                                         WA_DATA-UOM
                                         WA_DATA-ICT.
       IF ITAB_TXTLINE-SY-INDEX .
    then
         DO 4 TIMES.
           REPLACE '.' IN WA_DATA-LEVEL WITH SPACE.
         ENDDO.
    *DELETE ITAB_DATA-INDEX=1." WHERE WA_DATA = ITAB_DATA.
         CONDENSE WA_DATA-LEVEL.
         IF NOT WA_DATA-LEVEL IS INITIAL and not WA_DATA-LEVEL cp 'Emp*'.
            APPEND WA_DATA TO ITAB_DATA.
         ENDIF.
       ENDIF.
      ENDLOOP.
    thanks.

    Hi,
    CM50 is generated from CM10 main program for parameter 'M'. It generates it on the runtime and exports values into memory. It's less likely you will be able to generate the whole set into a Z Program.
    I didn't find a function module to do so. But, with your consultants help you can create your own function module that gives results similar to CM50, it's merely calculation of capacity of workcenters for a period using the sales order booked against the work centers in that period. If you try a bit you can create it.
    Good luck.
    Also remember, before you post a code, use  ...

  • My new messages still not coming into my mail inbox, my Mac OS X version 10.6.8

    Can you please give me the correct detail for Mail Preference/account information both incoming mail server & outgoing mail server.
    My new messages still not coming into my mail inbox yet, still not working since yesterday. My sent mails are ok working. What,s number for Port & click on 'use SSL'? 110?
    My safari is working Internet..  My ipad2 is still working to receive my new messages via my mail inbox. Something miss in my mail preference? How to fix it?
    Regards lisa

    Here's my reply to another discussion on the general procedures for setting up a Mail account.
    But without the specifications defined by your ISP no one can tell you any more specific details.  They should have a web page somewhere (or call them) that supplies all the relevant information:
    Incoming (pop) mail server
    mail login user name and password
    pop port
    ssl requirements
    authentication type (password?)
    Outgoing (smtp) mail server
    smtp port
    ssl requirements
    authentication type (password?)
    mail login user name and password

  • Field is not coming in selection screen

    Hi all,
    In one of my report there is a field customer group in selection-screen. Report is working fine so i transport request to qas in qas that field is coming on selection screen and its working fine.
    But when i transport same request from qas to prd that field is not coming on selection screen.
    I try 2-3 times by making diffrent diffrent request but still same result. can any body please tell me why its happen in prd??
    regards
    Ankit

    Hi,
    What i would like to suggest u that u need to first
    is u have to convert the R/3 Production systems into the Quality one
    try using tcode BDLS
    read the documentation of BDLS.
    hope this helps u !!
    thanks
    ravi

  • Header is not coming in alv list display- urgent

    hi all,
    i am sending my code below....
    my requirement is in selection screen i have 4 radio buttons . if i click 1 radio button it will duiisplay data and and its header. report is working fine. my requirement id when i click r_mssng radio button(missing radio button) it is showing data correctsly. here i want to show header as 'Missing details report'.
    this is not coming in my report. anybody can suggest me.
    i am sending my code below....
    report zvra0001ftb13  message-id zv.
                            Confidential and Proprietary               
    *                          Celestica Corporation               
    *                           All Rights Reserved
    *ABAP Name:            ZVRA0001FTB13               
    *Created by:            Srinivasa Chakravarthi                    
    *Created on:            26/03/2003                    
    *SAP Version:        4.6 C
    *Description:       This report  displays details of foreign trades
                      and EHS based on the deliveries made to the outside
                      countries.
    *Input:              Selection Screen Criteria includes country of
                       origin,Company code, Sales Organisation,
                       Ship-to-party, Sold-to-paarty, Goods movement date,
                       Invoice number, Invoice type, Material , Material
                       Type, Exporter ID, Province of origin.
    *Output:             ALV output that contains Mode of Transport, Export
                       HS number, Commodity Description, Quantity, UOM,
                       Value, Country of Destination, Goods Origin
    *Dependency:         Nil
    *Modification Log:                              
    *CR#    Date       Coded     Transport     Description
    *====== ======== ========= ============= ===============================
    *5147  26/03/2003 Srinivas   ED1K922286     New Development     
    *8700  02/11/2004 H.Arular   ED1K938380     To check if entries of Comm
                                              Code(HS code)is less than 8
                                             digits and give a warning
                                              message.
    *18684 25/07/2007 MAHEEDHAR                 Merge the logic from report
                                              ZVRA0001FTB13_ERROR into
                                              report ZVRA0001FTB13 and
                                              added two radio buttons
                                              called missing data and non
                                              missing data, addedc logic
                                              accoriding to the radio
                                              buttons.
    *Declaring Tables.
    tables: likp,                         "Delivery document Header
            lips,                         "Delivery Document Item
            vbfa,                         "Sales document Flow
            bkpf,                         "Accounting Document Header
            eikp,                         "Foreign Trade:Export/Import Data
            eipo,                         "Foreign Trade:Export/ Import
                                          "Header data
            t618t,                        "Forein Trade:Mode of Transport
                                          "Description
            t604t,                        "Foreign Trade: Commodity Code/
                                          "Import Code number Description.
            mara,                         "Material master data.
            t005,                         "Countries
            t001,                         "Company Codes
            tvko,                         "Sales Organisations
            kna1,                         "Customer Master
            t003,                         "Document types
            t134,                         "Material types
            tvfk,
            konv,
            vbrk.
    constants : c_rep like vbrk-fkart value 'YGFB',
                c_for(10) value 'Foreign'.
    *Decalre Type pool for ALV
    type-pools: slis.
    *Type declaration for LIKP.
    types: begin of t_data1,
            vbeln  like  likp-vbeln,        "Delivery
            kunnr  like  likp-kunnr,
           end of t_data1.
    *Type declaration for  LIPS,VBFA.
    types: begin of t_data2,
            vbeln  like  lips-vbeln,      "Delivery
            posnr  like  lips-posnr,      "Delivery Item
            vbelv  like  vbfa-vbelv,      "Preceding SD document
            posnv  like  vbfa-posnv,        "Preceding item of SD document
            matnr  like  lips-matnr,        "Material Number
            meins  like  lips-meins,        "Base unit of measure
            lfimg  like  lips-lfimg,        "Actual Quantity Delivered
            mtart  like mara-mtart,
          end of t_data2.
    **Type declaration for  BKPF.
    *types: begin of t_data3,
           belnr  like  bkpf-belnr,        "Accounting Documnet number
           bukrs  like  bkpf-bukrs,        "Company Code
          end of t_data3.
    *Type declaration for  BKPF.
    types: begin of t_data3,
            vbeln like vbrk-belnr,        " Billing Doc
            fkart like vbrk-fkart,
            land1 like vbrk-land1,
           end of t_data3.
    *Type declaration for  EIPO.
    types: begin of t_data4,
           vbeln like lips-vbeln,         "Delivery
           posnr like lips-posnr,         "Delivery Item
           matnr like vbrp-matnr,
           fkimg like vbrp-fkimg,
           meins like vbrp-meins,
           verld like eipo-verld,         "Country of dispatch for Foreign
                                          "trade
           herkl like eipo-herkl,         "Country of origin of material
           grwrt like eipo-grwrt,         "Statistical value for Foreign
                                          " trade
           stawn like eipo-stawn,         "Commodity code for foreign trade
           expvz like eikp-expvz,         "Mode of transport for foreign
                                          "trade
          end of t_data4.
    *Type declaration for  T618T.
    types: begin of t_data5,
           land1 like  t618t-land1,       "Country key
           expvz like  t618t-expvz,       "Mode of Transport
           bezei like  t618t-bezei,       "Description
           end of t_data5.
    *Type declaration for  T604T.
    types: begin of t_data6,
           land1 like  t604t-land1,       "Country key
           stawn like  t604t-stawn,       "Commodity Code
           text1 like  t604t-text1,       "Description
           end of t_data6.
    *Type declaration for  T604T.
    types: begin of t_mara,
            matnr like mara-matnr,
           end of t_mara.
    types : begin of rep_val,
             vbelv like vbfa-vbelv,
             posnv like vbfa-posnv,
             vbeln like vbfa-vbeln,
             posnn like vbfa-posnn,
             uepos like vbap-uepos,
             posnr like vbap-posnr,
             netwr like vbap-netwr,
            end of rep_val.
    types : begin of t_price,
              vbeln like vbak-vbeln,
              posnr like vbap-posnr,
              knumv like konv-knumv,
              kposn like konv-kposn,
              kbetr like konv-kbetr,
              kpein like konv-kpein,
            end of t_price.
    data : t_sord type rep_val occurs 0 with header line.
    data : t_dord type rep_val occurs 0 with header line.
    data : t_rord type rep_val occurs 0 with header line.
    data : t_hord type rep_val occurs 0 with header line.
    data : t_ford type rep_val occurs 0 with header line.
    data : i_price type t_price occurs 0 with header line.
    data : i_price1 type t_price occurs 0 with header line.
    data : i_mara type t_mara occurs 0 with header line.
    data : i_sort     type slis_t_sortinfo_alv.
    DATA: t_layout     TYPE slis_layout_alv.
    *Declaring Selection screen.
    selection-screen begin of block b1 with frame title text-101.
    select-options:
       s_verld      for eipo-verld,                 "Country of Dest.
       s_bukrs      for bkpf-bukrs,                 "Company code
       s_vkorg      for likp-vkorg,                 "Sales Organisation
       s_kunnr     for likp-kunnr,                 "Ship-to-Party
       s_kunag     for likp-kunag,                 "Sold-to-party
       s_wadat     for likp-wadat_ist,             "Goods Movement date
       s_belnr     for vbrk-vbeln,                 "Invoice number
       s_blart     for vbrk-fkart.                 "Invoice type.
    selection-screen end of block b1.
    selection-screen begin of block b2 with frame title text-101.
    select-options:
       s_matnr      for mara-matnr,                 "Material
       s_mtart      for mara-mtart.                 "Material Type
    selection-screen end of block b2.
    selection-screen begin of block b3 with frame title text-101.
    parameters:
      p_export(30) type c default '1366770724RM' obligatory , "Exporter ID
      p_provi(30) type  c default 'ONTARIO' obligatory   ,
      p_sumid(30) type c default 'SUM0704'.
    "Province of Origin
    selection-screen end of block b3.
    selection-screen begin of block b4 with frame title text-104.
    parameters:
    r_summ radiobutton group zsum,
    r_dets radiobutton group zsum,
    r_mssng radiobutton group zsum,  " maheedhar
    R_NMSNG RADIOBUTTON GROUP ZSUM.   " MAHEEDHAR
    selection-screen skip.
    parameter : p_sum as checkbox .
    selection-screen end of block b4.
    selection-screen begin of block b5 with frame title text-105.
    select-options : s_i_kun for likp-kunnr.
    selection-screen end of block b5.
    *Data Declaration
    data: i_fieldcat type slis_t_fieldcat_alv.
    data: l_fieldcat type slis_fieldcat_alv .
    data: v_lin type i.
    data: v_lfstk type c value 'C'.
    data: v_vbtyp type c value 'U'.
    data: i_data1 type t_data1 occurs 0 with header line.
    data : begin of t_T005t occurs 0.
            include structure t005t.
    data : end of t_t005t.
    data: i_data2 type t_data2 occurs 0 with header line.
    data: t_delv type t_data2 occurs 0 with header line.
    data: t_bild type t_data2 occurs 0 with header line.
    data: i_data3 type t_data3 occurs 0 with header line.
    data: i_data4 type t_data4 occurs 0 with header line.
    data: i_data5 type t_data5 occurs 0 with header line.
    data: i_data6 type t_data6 occurs 0 with header line.
    *Declare Internal table for ALV output.
    data:  begin of i_output occurs 0,
           belnr     like  vbrk-vbeln,
           posnr     like  vbrp-posnr,
           bezei     like  t618t-bezei,
           stawn     like  eipo-stawn,
           text1     like  t604t-text1,
           quantity  type  p decimals 2,
           meins     like  lips-meins,
           value     type  p decimals 2,
           verld     like  t_t005t-landx,
           herkl     like  t_t005t-landx,
           strlen,                                              "ED1K938380
          end of i_output.
    maheedhar-start.
    data : i_output1 like i_output occurs 0 with header line,
           i_output2 like i_output occurs 0 with header line.
    maheedhar-end
    data : buff_out like i_output occurs 0 with header line.
    data:  begin of t_outsum occurs 0,
           bezei     like  t618t-bezei,
           stawn     like  eipo-stawn,
           text1     like  t604t-text1,
           quantity  type  p decimals 2,
           meins     like  lips-meins,
           value     type  p decimals 2,
           verld     like  t_t005t-landx,
           herkl     like  t_t005t-landx,
          end of t_outsum.
    data : v_ans.
    data : variante LIKE disvariant.
    data : v_repid LIKE sy-repid.
    data : wa_listheader   TYPE slis_listheader.
    data : t_listheader    TYPE slis_t_listheader.
    data : b_text(250).
    data: evntS type slis_t_event        with header line.  " MAHEEDHAR
          EVENT  AT SELECTION-SCREEN
    at selection-screen.
    *For Autorisation check
      perform authorisation_check.
    Validation of Selection screen
      perform check_entry.
          EVENT  START-OF-SELECTION
    start-of-selection.
    *Get  data
      perform select_data.
    **For calling ALV function modules
    MAHEEDHAR - START
      if r_mssng eq 'X'.
        DELETE I_OUTPUT WHERE BEZEI NE SPACE AND
                             STAWN NE SPACE AND
                             HERKL NE SPACE AND
                             VERLD NE SPACE.
        DESCRIBE TABLE I_OUTPUT LINES V_LIN.
        IF V_LIN > 0.
          PERFORM DISPLAY_OUTPUT.
        ELSE.
          MESSAGE E000 WITH TEXT-130.
        ENDIF.
      elseif R_SUMM eq 'X' OR R_DETS EQ 'X'.   "ENDIF.  " MAHEEDHAR
    MAHEEDHAR-END
        describe table i_output lines v_lin.
        if v_lin > 0.
          buff_out[] = i_output[].
       Begin of ED1K938380
       delete buff_out where stawn ne space or  "ED1K938380
                             verld eq space or
                             herkl eq space.
          delete buff_out where strlen ne 'X' or
                                verld eq space or
                                herkl eq space.
       End of ED1K938380
          describe table buff_out lines v_lin.
    Lines with no commodity code exists.
          if v_lin gt 0.
         concatenate text-902 text-903 into b_text.
            concatenate text-906 text-907 into b_text.          "ED1K938380
            CALL FUNCTION 'POPUP_TO_CONFIRM'
                 EXPORTING
                      TITLEBAR       = Text-901
                      TEXT_QUESTION  = b_text
                      TEXT_BUTTON_1  = 'Yes'
                      TEXT_BUTTON_2  = 'No'
                      DEFAULT_BUTTON = '2'
                 IMPORTING
                      ANSWER         = v_ans.
            if v_ans eq '1'.
              perform display_output.
            endif.
          else.
            perform display_output.
          endif.
        else.  " MAHEEDHAR
          message e000 with text-130.
        endif.
    MAHEEDHAR-START
    *"-- If non missing details radiobutton is selected
      elseif r_nmsng = 'X'.
    *"-- move data from i_output to i_output1.
        i_output1[] = i_output[].
        sort i_output  by belnr.
        sort i_output1 by belnr.
    *"-- to get missing data
        delete i_output1 where bezei ne space and
                               stawn ne space and
                               herkl ne space and
                               verld ne space.
        loop at i_output.
    *"-- compare two int tables with respective document number
          read table i_output1 with key belnr = i_output-belnr.
          if sy-subrc ne 0.
            move-corresponding i_output to i_output2.
            append i_output2.
            clear i_output2.
          endif.
        endloop.
        describe table i_output2 lines v_lin.
        if v_lin gt 0.
          perform display_output.
        else.
          message e000 with text-130.
        endif.
    MAHEEDHAR-END.
      ENDIF.  " MAHEEDHAR
          FORM SELECT_DATA                                              *
    form select_data.
      Data:l_strlen type i.                                     "ED1K938380
    *Get details from  LIKP.
      if s_i_kun[] is initial.
        select  likpvbeln likpkunnr
            into corresponding fields of table i_data1
            from likp
            inner join vbuk on likpvbeln = vbukvbeln
            where
              likp~vkorg in s_vkorg and
                likp~kunnr in s_kunnr and
                likp~kunag in s_kunag and
                likp~wadat_ist in s_wadat and
                vbuk~wbstk = 'C' .
      else.
        select  likpvbeln likpkunnr
             into corresponding fields of table i_data1
             from likp
             inner join vbuk on likpvbeln = vbukvbeln
             where
              (  ( likp~vkorg in s_vkorg and
                 likp~kunnr in s_kunnr and
                 likp~kunag in s_kunag and
                 likp~wadat_ist in s_wadat and
                 vbuk~wbstk = 'C' )
                 or
                 likp~kunnr in s_i_kun and
                 likp~wadat_ist in s_wadat and
                 vbuk~wbstk = 'C' )  .
      endif.
    if sy-subrc ne 0.
       message e000 with text-200.
    endif.
    *Get details from table  LIPS
      select     lips~vbeln
                 lips~posnr
                 vbfa~vbeln
                 vbfa~posnn
                 lips~matnr
                 lips~meins
                 lips~lfimg
                 mara~mtart
                 from lips
                inner join vbfa on   vbfavbelv = lipsvbeln
                                and   vbfaposnv = lipsposnr
                  inner join mara on maramatnr = lipsmatnr
                  into  table i_data2
                  for all entries in  i_data1
                 where
                   lips~vbeln = i_data1-vbeln and
                   lips~matnr in s_matnr and
                   vbfa~vbeln in s_belnr and
                   mara~mtart in s_mtart and
                  vbfa~vbtyp_n = 'U'.
      if sy-subrc ne 0.
        message e000 with text-201.
      endif.
      t_delv[] = i_data2[].
      t_bild[] = i_data2[].
      sort t_delv by vbeln.
      delete adjacent duplicates from t_delv comparing vbeln.
      sort t_bild by vbeln ascending vbelv descending.
      delete adjacent duplicates from t_bild comparing vbeln.
    *Get details of Accounting document number
      select vbeln fkart land1 from vbrk
                 into table i_data3
                 for all entries in t_bild
                 where vbeln = t_bild-vbelv and
                        bukrs in s_bukrs     and
                        fkart in s_blart     and
                        vkorg in s_vkorg     and             " MAHEEDHAR
                        land1 in s_verld.                    " MAHEEDHAR
      sort i_data3.
    *Get details from EIPO.
      select  vbrp~vbeln
              vbrp~posnr
              vbrp~matnr
              vbrp~fkimg
              vbrp~meins
              eipo~verld
              eipo~herkl
              eipo~grwrt
              eipo~stawn
              eikp~expvz
              from eikp
              inner join vbrp on vbrp~vbeln  = eikp~refnr
                    inner join eipo on eikp~exnum = eipo~exnum
                                   and eipo~expos = vbrp~posnr
                      into table i_data4 for all entries in i_data3
                    where vbrp~vbeln = i_data3-vbeln.
                         eipo~verld in s_verld.
      if sy-subrc ne 0.
        message e000 with text-201.
      endif.
      IF R_MSSNG NE 'X' or r_nmsng = 'X'.  " MAHEEDHAR
        perform get_price.
      ENDIF.  " MAHEEDHAR
    Get details from  T618T.
      select land1
             expvz
             bezei
             from  t618t
             into  table i_data5
             for all entries in i_data4
             where
             land1 = 'CA' and                 " Getting for Canada only
             expvz = i_data4-expvz and
             spras = sy-langu.
      select matnr from mara into table i_mara where matnr in s_matnr
                                                  and mtart in s_mtart.
    Get details from  T604T.
      select land1
             stawn
             text1
             from t604t
             into table i_data6
             for all entries in i_data4
             where
             land1 = i_data4-VERLD and
             stawn = i_data4-stawn and
             spras = sy-langu.
      select * from T005t into table t_T005t where spras = sy-langu.
      loop at i_data3.
        loop at i_data4 where vbeln eq i_data3-vbeln.
          clear : i_data1, i_data2.
          read table i_data2 with key vbelv = i_data4-vbeln
                                posnv = i_data4-posnr.
          read table i_data1 with key vbeln = i_data2-vbeln.
          if not s_i_kun[] is initial.
            check  ( ( i_data1-kunnr in s_i_kun ) or
                     ( i_data3-land1 in s_verld ) ).
          else.
            check i_data3-land1 in s_verld .
          endif.
          read table i_mara with key matnr = i_data4-matnr.
          if sy-subrc eq 0.
            read table i_data5 with key expvz = i_data4-expvz .
                                         land1 = i_data3-land1.
            read table i_data6 with key stawn = i_data4-stawn
                                        land1 = i_data4-VERLD.
            move i_data4-vbeln to i_output-belnr.
            move i_data4-posnr to i_output-posnr.
            move i_data5-bezei to i_output-bezei.
            move i_data6-text1 to i_output-text1.
           Begin of ED1K938380.
            l_strlen = strlen( i_data4-stawn ).
            if l_strlen < 8.
              move 'X' to i_output-strlen.
            endif.
           End of ED1K938380.
            move i_data4-stawn to i_output-stawn.
            move i_data4-meins to i_output-meins.
            read table t_T005t with key land1 = i_data3-land1.
            move t_t005t-landx to i_output-verld.
            if p_sum eq space.
              if i_data4-herkl ne 'CA'.
                i_output-herkl = c_for.
              else.
                read table t_T005t with key land1 = i_data4-herkl.
                move t_t005t-landx to i_output-herkl.
              endif.
            else.
              read table t_T005t with key land1 = i_data4-herkl.
              move t_t005t-landx to i_output-herkl.
            endif.
            move i_data4-fkimg to i_output-quantity.
            if i_data3-fkart eq c_rep.
              read table t_dord with key vbeln = i_data4-vbeln
                                         posnn = i_data4-posnr.
              if sy-subrc eq 0.
                read table t_sord with key vbeln = t_dord-vbelv
                                           posnn = t_dord-posnv.
                if sy-subrc eq 0.
                  read table t_hord with key vbeln = t_sord-vbelv
                                             posnr = t_sord-posnv.
                  if sy-subrc eq 0.
                    read table t_ford with key vbeln = t_hord-vbeln
                                               posnr = t_hord-uepos.
                    if sy-subrc eq 0.
                      read table i_price with key vbeln = t_ford-vbeln
                                                  posnr = t_ford-posnr.
                      if sy-subrc eq 0.
                        read table i_price1 with key knumv = i_price-knumv
                                                     kposn = t_ford-posnr.
                        if sy-subrc eq 0.
                          if i_price1-kpein ne 0.
                            i_output-value =
                            ( i_price1-kbetr / i_price1-kpein ) *
                                                      i_data4-fkimg.
                          endif.
                        endif.
                      endif.
                    endif.
                  endif.
                endif.
              endif.
            else.
              move i_data4-grwrt to i_output-value.
            endif.
            append i_output.
            clear  i_output.
            clear : i_data5, i_data6.
          endif.
        endloop.
      endloop.
      sort i_output by verld herkl bezei stawn.
    endform.
          FORM DISPLAY_OUTPUT                                           *
          This form is to create the ALV output
    form display_output.
      data: xevents     type slis_t_event,
                ls_event    type slis_alv_event,
               slis_ev_top_of_page type slis_formname value 'TOP_OF_PAGE',
               slis_ev_end_of_list type slis_formname value 'END_OF_LIST'.
    *Call  Function  'REUSE_ALV_EVENTS' for top of page
      call function 'REUSE_ALV_EVENTS_GET'
           EXPORTING
                i_list_type     = 0
           IMPORTING
                et_events       = xevents
           EXCEPTIONS
                list_type_wrong = 1
                others          = 2.
      if sy-subrc <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
      read table xevents with key name = slis_ev_top_of_page
                               into ls_event.
      if sy-subrc = 0.
        move slis_ev_top_of_page to ls_event-form.
        append ls_event to xevents.
      endif.
      read table xevents with key name = slis_ev_end_of_list
                                 into ls_event.
      if sy-subrc = 0.
        move slis_ev_end_of_list to ls_event-form.
        append ls_event to xevents.
      endif.
      if r_dets ne space.
    *Call Function 'REUSE_ALV_FIELD_CATALOG_MERGE' for position fixing in
    *the output.
        call function 'REUSE_ALV_FIELDCATALOG_MERGE'
             exporting
                  i_program_name         = 'ZVRA0001FTB13'
                  i_internal_tabname     = 'I_OUTPUT'
                  i_inclname             = 'ZVRA0001FTB13'
              I_STRUCTURE_NAME       =
              I_CLIENT_NEVER_DISPLAY = 'X'
              I_INCLNAME             =
                 i_bypassing_buffer     = 'X'
                 i_buffer_active        = ' '
             changing
                  ct_fieldcat            = i_fieldcat
             exceptions
                  inconsistent_interface = 1
                  program_error          = 2
                  others                 = 3.
        if sy-subrc <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
        loop at i_fieldcat into l_fieldcat.
          l_fieldcat-key = ' '.
          case l_fieldcat-fieldname.
            when 'BELNR'.
              l_fieldcat-seltext_m = text-912.
              l_fieldcat-seltext_l = text-912.
              l_fieldcat-reptext_ddic = text-912.
              l_fieldcat-col_pos   = '1'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-outputlen = '12'..
            when 'POSNR'.
              l_fieldcat-seltext_m = text-913.
              l_fieldcat-seltext_l = text-913.
              l_fieldcat-reptext_ddic = text-913.
              l_fieldcat-col_pos   = '2'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-outputlen = '6'.
            when 'BEZEI'.
              l_fieldcat-seltext_m = text-911.
              l_fieldcat-seltext_l = text-911.
              l_fieldcat-reptext_ddic = text-911.
              l_fieldcat-col_pos   = '3'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-outputlen = '15'..
            when 'STAWN'.
              l_fieldcat-seltext_m = text-111.
              l_fieldcat-seltext_l = text-111.
              l_fieldcat-reptext_ddic = text-111.
              l_fieldcat-col_pos   = '4'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-outputlen = '30'.
            when 'TEXT1'.
              l_fieldcat-seltext_m = text-112.
              l_fieldcat-seltext_l = text-112.
              l_fieldcat-outputlen = '40'.
              l_fieldcat-col_pos   = '5'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-reptext_ddic = text-112.
            when 'QUANTITY'.
              l_fieldcat-outputlen = '18'.
              l_fieldcat-reptext_ddic = text-113.
              l_fieldcat-seltext_m = text-113.
              l_fieldcat-col_pos   = '6'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-seltext_l = text-113.
            when 'MEINS'.
              l_fieldcat-outputlen = '8'.
              l_fieldcat-reptext_ddic = text-114.
              l_fieldcat-seltext_m = text-114.
              l_fieldcat-col_pos   = '7'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-seltext_l = text-114.
            when 'VALUE'.
              l_fieldcat-outputlen = '20'.
              l_fieldcat-seltext_m = text-115.
              l_fieldcat-seltext_l = text-115.
              l_fieldcat-just      = 'C'.
              l_fieldcat-reptext_ddic = text-115.
            when 'VERLD'.
              l_fieldcat-outputlen = '20'.
              l_fieldcat-seltext_m = text-116.
              l_fieldcat-seltext_l = text-116.
              l_fieldcat-just      = 'C'.
              l_fieldcat-reptext_ddic = text-116.
            when 'HERKL'.
              l_fieldcat-seltext_m = text-117.
              l_fieldcat-seltext_l = text-117.
              l_fieldcat-outputlen = '30'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-reptext_ddic = text-117.
            when others.
              l_fieldcat-no_out = 'X'.
          endcase.
          modify i_fieldcat from l_fieldcat.
        endloop.
    Call Function  'REUSE_ALV_LIST_DISPLAY'  for  dispaly  of data in ALV.
        call function 'REUSE_ALV_LIST_DISPLAY'
             EXPORTING
                  i_callback_program = 'ZVRA0001FTB13'
                  it_fieldcat        = i_fieldcat
                  it_events          = xevents
                  is_layout          = t_layout
                  i_save             = 'A'
                  i_bypassing_buffer = 'X'
                  i_buffer_active    = ' '
             TABLES
                  t_outtab           = i_output
             EXCEPTIONS
                  program_error      = 1
                  others             = 2.
        if sy-subrc <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
    else.  " MAHEEDHAR
      ELSEIF R_SUMM EQ 'X'.  " MAHEEDHAR
        sort i_output by verld herkl stawn bezei.
        loop at i_output.
          move-corresponding i_output to t_outsum.
          collect t_outsum.
        endloop.
    *Call Function 'REUSE_ALV_FIELD_CATALOG_MERGE' for position fixing in
    *the output.
        call function 'REUSE_ALV_FIELDCATALOG_MERGE'
             EXPORTING
                  i_program_name         = 'ZVRA0001FTB13'
                  i_internal_tabname     = 'T_OUTSUM'
                  i_inclname             = 'ZVRA0001FTB13'
                 i_bypassing_buffer     = 'X'
                 i_buffer_active        = ' '
             CHANGING
                  ct_fieldcat            = i_fieldcat
             EXCEPTIONS
                  inconsistent_interface = 1
                  program_error          = 2
                  others                 = 3.
        if sy-subrc <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
        loop at i_fieldcat into l_fieldcat.
          l_fieldcat-key = ' '.
          case l_fieldcat-fieldname.
            when 'BEZEI'.
              l_fieldcat-seltext_m = text-911.
              l_fieldcat-seltext_l = text-911.
              l_fieldcat-reptext_ddic = text-911.
              l_fieldcat-col_pos   = '1'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-outputlen = '15'..
            when 'STAWN'.
              l_fieldcat-seltext_m = text-111.
              l_fieldcat-seltext_l = text-111.
              l_fieldcat-reptext_ddic = text-111.
              l_fieldcat-col_pos   = '2'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-outputlen = '30'.
            when 'TEXT1'.
              l_fieldcat-seltext_m = text-112.
              l_fieldcat-seltext_l = text-112.
              l_fieldcat-outputlen = '40'.
              l_fieldcat-col_pos   = '3'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-reptext_ddic = text-112.
            when 'QUANTITY'.
              l_fieldcat-outputlen = '18'.
              l_fieldcat-reptext_ddic = text-113.
              l_fieldcat-seltext_m = text-113.
              l_fieldcat-col_pos   = '4'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-seltext_l = text-113.
            when 'MEINS'.
              l_fieldcat-outputlen = '8'.
              l_fieldcat-reptext_ddic = text-114.
              l_fieldcat-seltext_m = text-114.
              l_fieldcat-col_pos   = '5'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-seltext_l = text-114.
            when 'VALUE'.
              l_fieldcat-outputlen = '20'.
              l_fieldcat-seltext_m = text-115.
              l_fieldcat-seltext_l = text-115.
              l_fieldcat-col_pos   = '6'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-reptext_ddic = text-115.
            when 'VERLD'.
              l_fieldcat-outputlen = '20'.
              l_fieldcat-seltext_m = text-116.
              l_fieldcat-seltext_l = text-116.
              l_fieldcat-col_pos   = '7'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-reptext_ddic = text-116.
            when 'HERKL'.
              l_fieldcat-seltext_m = text-117.
              l_fieldcat-seltext_l = text-117.
              l_fieldcat-outputlen = '30'.
              l_fieldcat-col_pos   = '8'.
              l_fieldcat-just      = 'C'.
              l_fieldcat-reptext_ddic = text-117.
            when others.
              l_fieldcat-no_out = 'X'.
          endcase.
          modify i_fieldcat from l_fieldcat.
        endloop.
    Call Function  'REUSE_ALV_LIST_DISPLAY'  for  dispaly  of data in ALV.
        call function 'REUSE_ALV_LIST_DISPLAY'
             EXPORTING
                  i_callback_program = 'ZVRA0001FTB13'
                  it_fieldcat        = i_fieldcat
                  it_events          = xevents
                  i_save             = 'A'
                  is_layout          = t_layout
                  i_default          = 'X'
                  is_variant         = variante
                  i_bypassing_buffer = 'X'
                  i_buffer_active    = ' '
             TABLES
                  t_outtab           = t_outsum
             EXCEPTIONS
                  program_error      = 1
                  others             = 2.
        if sy-subrc <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
    MAHEEDHAR-START.
    *"-- if detail summary checkbox is selected
      elseIF R_MSSNG = 'X'.
       PERFORM PREPARE_HEADER.
        call function 'REUSE_ALV_FIELDCATALOG_MERGE'
            exporting
                 i_program_name         = 'ZVRA0001FTB13'
                 i_internal_tabname     = 'I_OUTPUT'
                 i_inclname             = 'ZVRA0001FTB13'
              I_STRUCTURE_NAME       =
              I_CLIENT_NEVER_DISPLAY = 'X'
              I_INCLNAME             =
                i_bypassing_buffer     = 'X'
                i_buffer_active        = ' '
            changing
                 ct_fieldcat            = i_fieldcat
            exceptions
                 inconsistent_interface = 1
                 program_error          = 2
       

    hi,
    *& Report  ZALV_FIELD_GRID1
    REPORT  ZALV_FIELD_GRID1
            NO STANDARD PAGE HEADING.
    TABLES MARA.
    type-pools :slis.
    TYPES : BEGIN OF TMARA ,
            MATNR LIKE MARA-MATNR,
            MEINS LIKE MARA-MEINS,
            ERSDA LIKE MARA-ERSDA,
            color(4) type c,
            SEL type c,
            LIGHT TYPE C,
            END OF TMARA.
    TYPES: BEGIN OF TMAKT,
           MATNR LIKE MAKT-MATNR,
           MAKTX LIKE MAKT-MAKTX,
           MAKTG LIKE MAKT-MAKTG,
           SEL TYPE C,
           COLOR(4),
           END OF TMAKT.
    DATA:  ITAB TYPE TMARA OCCURS 0 WITH HEADER LINE,
           ITAB1 TYPE TMAKT OCCURS 0 WITH HEADER LINE,
           wa_fieldcat type slis_fieldcat_alv,
           fieldcat type slis_fieldcat_alv occurs 0,
           i_layout type slis_layout_alv,
           WA_LISTHEADER TYPE SLIS_LISTHEADER ,
           i_LISTHEADER TYPE SLIS_LISTHEADER OCCURS 0,
           V_EVENTS TYPE SLIS_T_EVENT ,
           WA_EVENT TYPE SLIS_ALV_EVENT,
           I_TITLE_MARA TYPE LVC_TITLE VALUE 'FIRST LIST DISPLAYED',
           I_TITLE_MAKT TYPE LVC_TITLE VALUE 'SECONDRY LIST DISPLAYED',
           SORT TYPE slis_t_sortinfo_alv WITH HEADER LINE,
           PRINT_CONT type slis_print_alv.
    SELECTION SCREE
    selection-screen  begin of block screen1  with frame title TEXT-001.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN COMMENT /32(35) COMM1.
    SELECTION-SCREEN ULINE /27(35).
    SELECTION-SCREEN SKIP.
    SELECT-OPTIONS MATNR FOR MARA-MATNR.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN ULINE.
    SELECTION-SCREEN COMMENT /30(50) COMM2.
    SELECTION-SCREEN ULINE /27(40).
    SELECTION-SCREEN SKIP.
    SELECT-OPTIONS ERSDA FOR MARA-ERSDA.
    SELECTION-SCREEN SKIP.
    selection-screen  end of block screen1.
        INITIALIZATION
    INITIALIZATION.
      MATNR-low = '23'.
      MATNR-high = '1000'.
      MATNR-option = 'BT'.
      MATNR-sign = 'I'.
      APPEND MATNR.
      ERSDA-low = '20030124'.
      ERSDA-high = '20050302' .
      APPEND ERSDA.
      PERFORM FILLFIELD.
      PERFORM FILLLAYOUT.
      PERFORM build_print_params.
      PERFORM FILL_SORT.
      PERFORM EVENT_CALL.
      PERFORM POPULATE_EVENT.
            SELECTION-SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
      comm1 ='SELECT MATERIAL NUMBER  RANGE'.
      comm2 ='SELECT MATERIAL CREATION DATE'.
               START-OF-SELECTION
    START-OF-SELECTION.
      PERFORM READDATA.
      PERFORM POPDATA.
    *&      Form  READDATA
          text
    FORM READDATA .
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          INPUT  = MATNR-LOW
        IMPORTING
          OUTPUT = MATNR-LOW.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          INPUT  = MATNR-HIGH
        IMPORTING
          OUTPUT = MATNR-HIGH.
      SELECT MATNR
             ERSDA
             MEINS
             FROM MARA
             INTO CORRESPONDING FIELDS OF
            TABLE ITAB
            WHERE MATNR IN MATNR AND ERSDA IN ERSDA.
      LOOP AT ITAB.
        data id_color type i VALUE 1.
        data id_colors(2) type c.
        IF ITAB-MATNR < '000000000000000100'.
          ITAB-LIGHT = '1'.
        ELSEIF ITAB-MATNR < '000000000000000150' AND ITAB-MATNR >
       '000000000000000100' .
          ITAB-LIGHT = '2'.
        ELSE.
          ITAB-LIGHT = '3'.
        ENDIF.
        id_color = id_color + 1.
        if id_color > 7.
          id_color = 1.
        endif.
        id_colors = id_color.
        concatenate 'C' id_colors '10' into itab-color.
        modify itab.
        CLEAR ITAB.
      endloop.
    ENDFORM.                    " READDATA
         Form  FILLFIELD
    FORM FILLFIELD .
      WA_FIELDCAT-FIELDNAME = 'MATNR'.
      WA_FIELDCAT-KEY = 'X'.
      WA_FIELDCAT-COL_POS = '1'.
      WA_FIELDCAT-outputlen   = 20.
      WA_FIELDCAT-HOTSPOT = 'X'.
      wa_fieldcat-seltext_m = 'MATERIAL NUMBER'.
    *WA_FIELDCAT-EMPHASIZE = 'C210'.
      APPEND WA_FIELDCAT TO FIELDCAT.
      clear wa_fieldcat.
      WA_FIELDCAT-FIELDNAME = 'MEINS'.
      WA_FIELDCAT-COL_POS = '2'.
    *WA_FIELDCAT-EMPHASIZE = 'C510'.
      WA_FIELDCAT-outputlen   = 10.
      wa_fieldcat-seltext_m = 'UNIT'.
      APPEND WA_FIELDCAT TO FIELDCAT.
      clear wa_fieldcat.
      WA_FIELDCAT-FIELDNAME = 'ERSDA'.
      WA_FIELDCAT-COL_POS = '3'.
      WA_FIELDCAT-outputlen   = 15.
    *WA_FIELDCAT-EDIT_MASK  = 'DD.MM.YYYY'.
    *WA_FIELDCAT-EMPHASIZE = 'C710'.
      wa_fieldcat-seltext_m = 'CREAT DATE'.
      APPEND WA_FIELDCAT TO FIELDCAT.
      clear wa_fieldcat.
    ENDFORM.                    "FILLFIELD
          Setup print parameters
    form build_print_params.
      PRINT_CONT-reserve_lines = '3'.   "Lines reserved for footer
      PRINT_CONT-no_coverpage = 'X'.
    endform.                    " BUILD_PRINT_PARAMS
         Form  POPDATA
    FORM POPDATA .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
         I_CALLBACK_PROGRAM                 =  sy-repid
      I_CALLBACK_PF_STATUS_SET          = ' '
         I_CALLBACK_USER_COMMAND            = 'USER-COMMAND'
         I_CALLBACK_TOP_OF_PAGE             = 'TOPPAGE'
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
         I_GRID_TITLE                       = I_TITLE_MARA
      I_GRID_SETTINGS                   =
         IS_LAYOUT                          = I_LAYOUT
         IT_FIELDCAT                        = fieldcat
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
        IT_SORT                           =  SORT[]
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
         IT_EVENTS                          = V_EVENTS
      IT_EVENT_EXIT                     =
       IS_PRINT                          = PRINT_CONT
        TABLES
          T_OUTTAB                          = ITAB
    EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
    ENDFORM.                    " POPDATA
         Form  TOPPAGE
    FORM TOPPAGE.
      REFRESH I_LISTHEADER.
      DATA: ld_lines type i,
            ld_linesc(10) type c,
            I_DATE(10) TYPE C,
            I_INFO LIKE WA_LISTHEADER-INFO.
      WA_LISTHEADER-TYP = 'H'.
      WA_LISTHEADER-INFO = 'MATERIAL DETAIL'.
      APPEND WA_LISTHEADER TO I_LISTHEADER.
      CLEAR WA_LISTHEADER.
      WA_LISTHEADER-TYP = 'S'.
      WA_LISTHEADER-KEY = 'DATE :'.
      CONCATENATE SY-DATUM+6(2) '.'
                           SY-DATUM+4(2) '.'
                           SY-DATUM(4) INTO I_DATE.
      WA_LISTHEADER-INFO = I_datE.
      APPEND WA_LISTHEADER TO I_LISTHEADER.
      CLEAR WA_LISTHEADER.
      describe table ITAB lines ld_lines.
      ld_linesc = ld_lines.
      concatenate 'TOTAL NUMBER OF RECORD SELECTED: ' ld_linesc
                        into I_INFO separated by space.
      WA_LISTHEADER-TYP  = 'A'.
      WA_LISTHEADER-INFO = I_INFO.
      append WA_LISTHEADER to I_LISTHEADER.
      clear: WA_LISTHEADER , I_INFO.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY = I_LISTHEADER
          I_LOGO             = 'ENJOYSAP_LOGO'.
    ENDFORM.                    "TOPPAGE
         Form  FILLLAYOUT
    FORM FILLLAYOUT .
      i_layout-zebra = 'X'.
      i_layout-info_fieldname = 'COLOR'.
      i_layout-box_fieldname = 'SEL'.
      I_LAYOUT-lights_fieldname = 'LIGHT'.
      I_LAYOUT-EDIT ='X'.
      I_LAYOUT-colwidth_optimize = 'X'.
      I_LAYOUT-window_titlebar = 'EXAMPLE FOR ALV GRID'.
      I_LAYOUT-no_totalline = 'X'.
    ENDFORM.                    "FILLLAYOUT
        Form  FILL_SORT
    FORM FILL_SORT .
      SORT-DOWN = 'X'.
      SORT-SPOS = 1.
      SORT-FIELDNAME = 'MATNR'.
      SORT-tabname = 'MARA'.
      APPEND SORT.
    ENDFORM.                    " FILL_SORT
         Form  EVENT_CALL
    FORM EVENT_CALL .
      DATA: I_EVENT LIKE V_EVENTS.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          I_LIST_TYPE = 0
        IMPORTING
          ET_EVENTS   = V_EVENTS.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " EVENT_CALL
        Form  POPULATE_EVENT
    FORM POPULATE_EVENT .
      READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'USER_COMMAND'.
      IF SY-SUBRC EQ 0.
        WA_EVENT-FORM = 'USER_COMMAND'.
        MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
        WA_EVENT-NAME.
    READ TABLE V_EVENTS WITH KEY NAME = SLIS_EV_END_OF_PAGE
                                          INTO WA_EVENT.
    IF SY-SUBRC = 0.
       move 'END_OF_PAGE' to WA_EVENT-FORM.
       MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
       WA_EVENT-NAME.
      endif.
      ENDIF.
    ENDFORM.                    "POPULATE_EVENT
    FORM END_OF_PAGE.
      write: sy-uline(50).
      skip.
      write:/40 'Page:', sy-pagno .
    ENDFORM.
    *&      Form  USER_COMMAND
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
    RS_SELFIELD TYPE SLIS_SELFIELD.
      CASE R_UCOMM.
        WHEN '&IC1'.
          CASE RS_SELFIELD-FIELDNAME.
            when 'MATNR'.
              read table itab with key matnr = RS_SELFIELD-VALUE.
              if sy-subrc = 0.
                PERFORM DATA_RETRIEVAL_MAKT USING RS_SELFIELD-VALUE.
                PERFORM BUILD_FIELDCATLOG_MAKT.
                PERFORM FILLLAYOUT_MAKT.
                PERFORM DISPLAY_ALV_MAKT.
                CLEAR RS_SELFIELD.
              ENDIF.
          ENDCASE.
      ENDCASE.
    ENDFORM.                    "user_command
         Form  DATA_RETRIEVAL_MAKT
    FORM DATA_RETRIEVAL_MAKT USING TMATNR .
      SELECT MATNR
             MAKTX
             MAKTG
             UP TO 100 ROWS
             FROM MAKT
             INTO TABLE ITAB1
             WHERE SPRAS = 'EN' AND MATNR = TMATNR.
      LOOP AT ITAB1.
        data id_color type i VALUE 1.
        data id_colors(2) type c.
        id_color = id_color + 1.
        if id_color > 7.
          id_color = 1.
        endif.
        id_colors = id_color.
        concatenate 'C' id_colors '10' into itab1-color.
        modify itab1.
        CLEAR ITAB1.
      ENDLOOP.
    ENDFORM.                    "DATA_RETRIEVAL_MAKT
         Form  FILLLAYOUT_MAKT
    FORM FILLLAYOUT_MAKT .
      CLEAR I_LAYOUT.
      i_layout-zebra = 'X'.
      i_layout-info_fieldname = 'COLOR'.
      i_layout-box_fieldname = 'SEL'.
      I_LAYOUT-EDIT ='X'.
      I_LAYOUT-colwidth_optimize = 'X'.
      I_LAYOUT-window_titlebar = 'EXAMPLE FOR ALV GRID'.
    ENDFORM.                    " LAYOUT_MAKT
        Form  BUILD_FIELDCATLOG_MAKT
    FORM BUILD_FIELDCATLOG_MAKT .
      REFRESH FIELDCAT.
      WA_FIELDCAT-FIELDNAME = 'MATNR'.
      WA_FIELDCAT-KEY = 'X'.
      WA_FIELDCAT-COL_POS = '1'.
    *WA_FIELDCAT-EDIT_MASK  = 'DD.MM.YYYY'.
      WA_FIELDCAT-EMPHASIZE = 'C510'.
      wa_fieldcat-seltext_m = 'MATERIAL NUMBER'.
      APPEND WA_FIELDCAT TO FIELDCAT.
      clear wa_fieldcat.
      WA_FIELDCAT-FIELDNAME = 'MAKTX'.
      WA_FIELDCAT-COL_POS = '2'.
      WA_FIELDCAT-EMPHASIZE = 'C710'.
      wa_fieldcat-seltext_m = 'MATERIAL DESCRIPTION'.
      APPEND WA_FIELDCAT TO FIELDCAT.
      clear wa_fieldcat.
      WA_FIELDCAT-FIELDNAME = 'MAKTG'.
      WA_FIELDCAT-COL_POS = '3'.
      WA_FIELDCAT-EMPHASIZE = 'C210'.
      wa_fieldcat-seltext_m = 'MATERIAL DESCRIPTION'.
      APPEND WA_FIELDCAT TO FIELDCAT.
      clear wa_fieldcat.
    ENDFORM.                    " BUILD_FIELDCATLOG_MAKT
         Form  DISPLAY_ALV_MAKT
    FORM TOP-OF-PAGE.
      REFRESH I_LISTHEADER.
      DATA: ld_lines type i,
            ld_linesc(10) type c,
            I_DATE(10) TYPE C,
            I_INFO LIKE WA_LISTHEADER-INFO.
      WA_LISTHEADER-TYP = 'H'.
      WA_LISTHEADER-INFO = 'MATERIAL DESCRIPTION FOR SELECTED NUMBER'.
      APPEND WA_LISTHEADER TO I_LISTHEADER.
      CLEAR WA_LISTHEADER.
      WA_LISTHEADER-TYP = 'S'.
      WA_LISTHEADER-KEY = 'DATE :'.
      CONCATENATE SY-DATUM+6(2) '.'
                           SY-DATUM+4(2) '.'
                           SY-DATUM(4) INTO I_DATE.
      WA_LISTHEADER-INFO = I_datE.
      APPEND WA_LISTHEADER TO I_LISTHEADER.
      CLEAR WA_LISTHEADER.
      describe table ITAB1 lines ld_lines.
      ld_linesc = ld_lines.
      concatenate 'TOTAL NUMBER OF RECORD SELECTED: ' ld_linesc
                        into I_INFO separated by space.
      WA_LISTHEADER-TYP  = 'A'.
      WA_LISTHEADER-INFO = I_INFO.
      append WA_LISTHEADER to I_LISTHEADER.
      clear: WA_LISTHEADER , I_INFO.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY = I_LISTHEADER
          I_LOGO             = 'ENJOYSAP_LOGO'.
      I_END_OF_LIST_GRID       =
      I_ALV_FORM               =
    ENDFORM.                    "TOP-OF-PAGE
    *&      Form  DISPLAY_ALV_MAKT
          text
    FORM DISPLAY_ALV_MAKT .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM     = SY-REPID
          I_CALLBACK_TOP_OF_PAGE = 'TOP-OF-PAGE'
          I_GRID_TITLE           = I_TITLE_MAKT
          IS_LAYOUT              = I_LAYOUT
          IT_FIELDCAT                       = fieldcat
        TABLES
          T_OUTTAB               = ITAB1
        EXCEPTIONS
          PROGRAM_ERROR          = 1
          OTHERS                 = 2.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " DISPLAY_ALV_MAKT
    Regards
    Ashok kumar

  • LOGO IS NOT COMING IN SCRIPT IN PRODUCTION SERVER ONLY

    Dear all,
       i had  modify a std script for payment advice for FI module. my problem is that the company logo is not coming in form after execting it from tcode f-58 in production server only.
    i checked that graphics object in se78 in prod.sever , it is present there. the thing is that the logo is coming in the form when i executing it from development sever. can any body tell where is the problem.
    thanks
    Banaja

    Hi,
    May be you have changed the form in DEV and in PRD your print program is still calling the std form and not the new (z-form).
    Might be a good idea to check that in t-code NACE !
    Let us know if this solves your problem.
    Regards
    Hrishi

  • In transaction OBA7 the description is not coming in Spanish

    Hi Everybody,
    Spanish ( ES ) language imported in ECC 6  thru SMLT and activated the same thru report RSCPINST.
    After that login in Spanish is working fine.
    But problem is in transaction OBA7 the description is not coming in Spanish.
    Problem reported only for this tcode only , may be there are problem in other tcode also.
    Any idea !!
    Regards
    Santanu

    Hi,
    check in client 000, if you don't have spanisch there, then most probably its not translated (yet)
    you can transate yourself if needed...
    Rgds
    Nico

  • Web Analysis report is not coming with the border/logo/heading while print

    Hi All,
    I am using 9.3.1 version of hyperion planning were Web Analysis report is not coming with the border/logo/heading while printing with the option "print all object", Only the data grid is coming in the print. If I use "print screen" it is coming with border/logo/heading but it gives a screenshot of the report, that won't cater out need.
    So please suggest us with a resolution to have border, logo and heading, while using Print all object.
    Thanks with regards....
    Rao

    Hi Sagar,
    In scripts when you will see print preview the logo will be not shown up with clarity.Take the print out of the document and check whether logo is printing up with clarity.
    Thanks
    Phani

  • Delivery date is not coming properly in PO Printout

    Hi,
    I have a problem in PO Printout that Delivery date is not coming properlyu2026In my PO, there are 5 line items. 
    If the Delivery date of all line items are same like 01.04.2009, then Delivery date should be shown 01.04.2009 in PO printout.. IT IS COMING RIGHT.
    But if the Delivery Date of all line items are different like 01.04.2009, 02.04.2009, 03.04.2009, 04.04.2009 and 05.04.2009. Then Delivery Date should be shown with the each line items in PO print out. THIS IS NOT SHOWING IN MY PO PRINT OUT.
    Please tell me what is the problem. Why not coming Delivery date with each line items???
    Regardsu2026

    currently i dont have SAP installed with this system, so i just suggesting you some thing.
    goto tcode: nace.
    select your output type. check the processing routines. check the smartform and processing routines attached to it. and see how the field is getting populated and what fields are being passed there.

  • OC4J:home is not coming up after deployment of war file(i.e demantra war)

    Hi,
    The oc4j:home services is not coming up in OracleAS 10.1.3.2 Middle Tier after deplyment of war file(j2sdk 1.4.2_10)
    I tried so many times bouncing but oc4j:home is not coming up. Below is the status.
    Please guide me and help me.
    D:\product\10.1.3.2.0\OracleAS_10\opmn\bin>opmnctl startall
    opmnctl: starting opmn and all managed processes...
    ================================================================================
    opmn id=WG8LSW3J:6201
    2 of 3 processes started.
    ias-instance id=OracleAS.WG8LSW3J.ced.corp.cummins.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    default_group/home/default_group/
    Error
    --> Process (index=1,uid=687477649,pid=5304)
    time out while waiting for a managed process to start
    Log:
    D:\product\10.1.3.2.0\OracleAS_10\opmn\logs\\default_group~home~default_grou
    p~1.log
    The log file of default_group~home~default_group~1.log
    08/09/30 19:41:51 Start process
    WARNING: Code-source D:\product\10.1.3.2.0\OracleAS_10\j2ee\home\applications\demantra\demantra\WEB-INF\lib\activation.jar (from WEB-INF/lib/ directory in D:\product\10.1.3.2.0\OracleAS_10\j2ee\home\applications\demantra\demantra\WEB-INF\lib) has the same filename but is not identical to /D:/product/10.1.3.2.0/OracleAS_10/j2ee/home/lib/activation.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in D:\product\10.1.3.2.0\OracleAS_10\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader demantra.web.demantra:0.0.0.
    WARNING: Code-source D:\product\10.1.3.2.0\OracleAS_10\j2ee\home\applications\demantra\demantra\WEB-INF\lib\mail.jar (from WEB-INF/lib/ directory in D:\product\10.1.3.2.0\OracleAS_10\j2ee\home\applications\demantra\demantra\WEB-INF\lib) has the same filename but is not identical to /D:/product/10.1.3.2.0/OracleAS_10/j2ee/home/lib/mail.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in D:\product\10.1.3.2.0\OracleAS_10\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader demantra.web.demantra:0.0.0.
    2008-09-30 19:42:01,650 [OC4J Launcher] DEBUG appserver.system :: Configuration file loaded > D:\product\10.1.3.2.0\OracleAS_10\j2ee\home\applications\demantra\demantra\conf\logconf.lcf
    2008-09-30 19:42:01,650 [OC4J Launcher] DEBUG appserver.system :: Logs will be dumped to D:\product\10.1.3.2.0\OracleAS_10\j2ee\home\applications\demantra\demantra\conf\..\logs\collaborator.log
    2008-09-30 19:42:01,650 [OC4J Launcher] DEBUG appserver.system :: Logs will be dumped to D:\product\10.1.3.2.0\OracleAS_10\j2ee\home\applications\demantra\demantra\conf\..\logs\integration.log
    2008-09-30 19:42:01,665 [OC4J Launcher] DEBUG appserver.system :: Value for parameter client.javaPlugin.downloadUrl was not specified, using ../plugin/
    2008-09-30 19:42:01,681 [OC4J Launcher] DEBUG appserver.system :: Starting Service Demantra Application Server/7.1.1 (118)
    08/09/30 19:42:01 ................................2008-09-30 19:51:11,747 [OC4J Launcher] WARN appserver.system :: Object is not valid :
         Invalid EXTRA_FRON and EXTRA_WHERE expressions, missing expected join for EXTRA_FROM tables: BRANCH_DATA, therefore EXTRA_FROM and EXTRA_WHERE expressions will be ignored, Series: 'Event Sim'.
    2008-09-30 19:51:11,747 [OC4J Launcher] WARN appserver.system :: Object is not valid :
         Invalid EXTRA_FRON and EXTRA_WHERE expressions, missing expected join for EXTRA_FROM tables: BRANCH_DATA, therefore EXTRA_FROM and EXTRA_WHERE expressions will be ignored, Series: 'Evt Cost'.
    Please anybody help me .
    Thanks & Regards,
    Ravi Kumar

    You might want to check these logfiles:
    D:\product\10.1.3.2.0\OracleAS_10\j2ee\home\applications\demantra\demantra\logs\collaborator.log
    D:\product\10.1.3.2.0\OracleAS_10\j2ee\home\applications\demantra\demantra\logs\integration.log
    These logfiles should give you more clues. Seems it is missing some "objects", but what these objects are is rather undefined.

  • Java engine is not coming up

    Hi,
    My java engine is not coming up for some strange reason.  Here is a partial log of dev_server0:
    trc file: "/usr/sap/GSQ/DVEBMGS02/work/dev_server0", trc level: 1, release: "700"
    node name   : ID26770150
    pid         : 1314818
    system name : GSQ
    system nr.  : 02
    started at  : Sun Sep 13 05:02:27 2009
    arguments       :
           arg[00] : /usr/sap/GSQ/DVEBMGS02/exe/jlaunch
           arg[01] : pf=/usr/sap/GSQ/SYS/profile/GSQ_DVEBMGS02_GILSAPEQ
           arg[02] : -DSAPINFO=GSQ_02_server
           arg[03] : pf=/usr/sap/GSQ/SYS/profile/GSQ_DVEBMGS02_GILSAPEQ
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=64998
           arg[06] : -DSAPSYSTEM=02
           arg[07] : -DSAPSYSTEMNAME=GSQ
           arg[08] : -DSAPMYNAME=GILSAPEQ_GSQ_02
           arg[09] : -DSAPPROFILE=/usr/sap/GSQ/SYS/profile/GSQ_DVEBMGS02_GILSAPEQ
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr  1] Sun Sep 13 05:02:27 2009
    [Thr  1] *** WARNING => INFO: Unknown property [instance.box.number=GSQDVEBMGS02gilsapeq] [jstartxx_mt. 841]
    [Thr  1] *** WARNING => INFO: Unknown property [instance.en.host=GILSAPEQ] [jstartxx_mt. 841]
    [Thr  1] *** WARNING => INFO: Unknown property [instance.en.port=3203] [jstartxx_mt. 841]
    [Thr  1] *** WARNING => INFO: Unknown property [instance.system.id=2] [jstartxx_mt. 841]
    JStartupReadInstanceProperties: read instance properties [/usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties]
    -> ms host    : GILSAPEQ
    -> ms port    : 3903
    -> OS libs    : /usr/sap/GSQ/DVEBMGS02/j2ee/os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    Instance properties
    -> ms host    : GILSAPEQ
    -> ms port    : 3903
    -> os libs    : /usr/sap/GSQ/DVEBMGS02/j2ee/os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    -> [01] bootstrap_ID26770100 : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    -> [02] bootstrap_ID26770150 : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    Worker nodes
    -> [00] ID26770100           : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    -> [01] ID26770150           : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    [Thr  1] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr  1] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 258] JLaunchRequestFunc: Thread 258 started as listener thread for np messages.
    [Thr 515] WaitSyncSemThread: Thread 515 started as semaphore monitor thread.
    [Thr  1] SigISetDefaultAction : default handling for signal 20
    [Thr  1] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr  1] CPIC (version=700.2009.02.11)
    [Thr  1] [Node: server0] java home is set by profile parameter
         Java Home: /usr/java14_64
    [Thr  1] JStartupICheckFrameworkPackage: can't find framework package /usr/sap/GSQ/DVEBMGS02/exe/jvmx.jar
    JStartupIReadSection: read node properties [ID26770150]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : /usr/java14_64
    -> java parameters    : -Xj9 -Xmn400m -Xgcpolicy:gencon -verbose:gc -Djco.jarm=1 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : J2RE 1.4.2 IBM J9 2.3 AIX ppc64-64 j9ap64142-20080510 (JIT enabled)
    -> java vm vendor     : IBM J9 VM (IBM Corporation)
    -> java vm type       : server
    -> java vm cpu        : ppc64
    -> heap size          : 2048M
    -> init heap size     : 2048M
    -> root path          : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/server0
    -> class path         : ./bin/boot/boot.jar:./bin/boot/jaas.jar:./bin/system/bytecode.jar:.
    -> OS libs path       : /usr/sap/GSQ/DVEBMGS02/j2ee/os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : /usr/sap/GSQ/DVEBMGS02/exe/jstartup.jar:/usr/sap/GSQ/DVEBMGS02/exe/jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50221
    -> shutdown timeout   : 120000
    [Thr  1] JLaunchISetDebugMode: set debug mode [no]
    [Thr 772] JLaunchIStartFunc: Thread 772 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Xj9
    -> arg[  4]: -Xmn400m
    -> arg[  5]: -Xgcpolicy:gencon
    -> arg[  6]: -verbose:gc
    -> arg[  7]: -Djco.jarm=1
    -> arg[  8]: -Djava.security.policy=./java.policy
    -> arg[  9]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 10]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 11]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 12]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 13]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 14]: -Dsys.global.dir=/usr/sap/GSQ/SYS/global
    -> arg[ 15]: -Dapplication.home=/usr/sap/GSQ/DVEBMGS02/exe
    -> arg[ 16]: -Djava.class.path=/usr/sap/GSQ/DVEBMGS02/exe/jstartup.jar:/usr/sap/GSQ/DVEBMGS02/exe/jvmx.jar:./bin/boot/boot.jar:./bin/boot/jaas.jar:./bin/system/bytecode.jar:.
    -> arg[ 17]: -Djava.library.path=/usr/java14_64/jre/bin:/usr/java14_64/bin:/usr/java14_64/jre/bin/classic:/usr/java14_64/jre/bin:/usr/sap/GSQ/DVEBMGS02/exe:/usr/sap/GSQ/DVEBMGS02/exe:/usr/sap/GSQ/DVEBMGS02/exe:/tmp/sapinst_exe.856178.1252452114:/usr/sap/GSQ/SYS/exe/run:/oracle/client/10x_64/instantclient:/usr/java14_64/jre/bin/j9vm:/usr/sap/GSQ/DVEBMGS02/exe::/usr/lib:/usr/sap/GSQ/DVEBMGS02/j2ee/os_libs:/usr/sap/GSQ/DVEBMGS02/exe:/usr/sap/GSQ/DVEBMGS02/exe:/usr/sap/GSQ/DVEBMGS02/exe:/usr/java14_64/bin:/usr/java14_64/jre/bin/classic:/usr/java14_64/jre/bin:/usr/sap/GSQ/SYS/exe/run:/oracle/client/10x_64/instantclient:/usr/java14_64/jre/bin/j9vm
    -> arg[ 18]: -Dmemory.manager=2048M
    -> arg[ 19]: -Xmx2048M
    -> arg[ 20]: -Xms2048M
    -> arg[ 21]: -DLoadBalanceRestricted=no
    -> arg[ 22]: -Djstartup.mode=JCONTROL
    -> arg[ 23]: -Djstartup.ownProcessId=1314818
    -> arg[ 24]: -Djstartup.ownHardwareId=O0427428665
    -> arg[ 25]: -Djstartup.whoami=server
    -> arg[ 26]: -Djstartup.debuggable=no
    -> arg[ 27]: -DSAPINFO=GSQ_02_server
    -> arg[ 28]: -DSAPSTART=1
    -> arg[ 29]: -DCONNECT_PORT=64998
    -> arg[ 30]: -DSAPSYSTEM=02
    -> arg[ 31]: -DSAPSYSTEMNAME=GSQ
    -> arg[ 32]: -DSAPMYNAME=GILSAPEQ_GSQ_02
    -> arg[ 33]: -DSAPPROFILE=/usr/sap/GSQ/SYS/profile/GSQ_DVEBMGS02_GILSAPEQ
    -> arg[ 34]: -DFRFC_FALLBACK=ON
    -> arg[ 35]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 36]: -DSAPSTARTUP=1
    -> arg[ 37]: -DSAPSYSTEM=02
    -> arg[ 38]: -DSAPSYSTEMNAME=GSQ
    -> arg[ 39]: -DSAPMYNAME=GILSAPEQ_GSQ_02
    -> arg[ 40]: -DSAPDBHOST=GILSAPEQ
    -> arg[ 41]: -Dj2ee.dbhost=GILSAPEQ
    Pls advise.
    Thx.
    Abdul
    [Thr 772] Sun Sep 13 05:02:28 2009
    [Thr 772] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 3600] Sun Sep 13 05:02:36 2009
    [Thr 3600] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 3600] Sun Sep 13 05:02:37 2009
    [Thr 3600] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 3600] JLaunchISetClusterId: set cluster id 26770150
    [Thr 3600] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 3600] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 35212] Sun Sep 13 05:03:27 2009
    [Thr 35212] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 35212] Sun Sep 13 05:03:28 2009
    [Thr 35212] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 35212] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 35212] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 35212] SigISetIgnoreAction : SIG_IGN for signal 20
    [Thr 35212] JLaunchCloseProgram: good bye (exitcode = -11113)

    Hello,
    The error message:
    [Thr 35212] JLaunchIExitJava: exit hook is called (rc = -11113)
    Indicates that one of the core services did not start. The Service Managers controls the life cycle of all services. The services that provide core functionality must always be running. If one of the core services fails to start, the Service Manager exits with an exit code -11113.
    To find the name of the core service that failed to start please see the end of the std_server0.out file.
    Furthermore the reason why the service failed to start will be evident in the defaultTrace.X.trc file in the server0/log directory.
    Regards,
    Ventsi Tsachev
    Technology Development Support (J2EE Engine)
    SAP Labs, Palo Alto, Ca (USA)

  • SAP is not coming up after system refresh with Export/Import option

    Hi,
    I have exported Java 6.40 and finished the refresh successfully. And I imported the Java successfully. After importing Java, I restarted SAP but is not coming up. When I checked the dev_w0 trace file, I got the following information.
    trc file: "dev_w0", trc level: 1, release: "640"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Wed Aug 05 10:48:17 2009
    B  create_con (con_name=R/3)
    B  Loading DB library 'F:\usr\sap\IDS\SYS\exe\run\dboraslib.dll' ...
    B  Library 'F:\usr\sap\IDS\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'F:\usr\sap\IDS\SYS\exe\run\dboraslib.dll' is "640.00", patchlevel (0.220)
    B  New connection 0 created
    M sysno      00
    M sid        IDS
    M systemid   560 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    247
    M intno      20020600
    M make:      multithreaded, Unicode
    M pid        844
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 844) [dpxxdisp.c   1170]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpShMCreate: sizeof(wp_adm)          20328     (1452)
    M  DpShMCreate: sizeof(tm_adm)          2969176     (14772)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpShMCreate: sizeof(comm_adm)          290000     (580)
    M  DpShMCreate: sizeof(vmc_adm)          0     (424)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 05FE0040, size: 3391480)
    M  DpShMCreate: allocated sys_adm at 05FE0040
    M  DpShMCreate: allocated wp_adm at 05FE1B88
    M  DpShMCreate: allocated tm_adm_list at 05FE6AF0
    M  DpShMCreate: allocated tm_adm at 05FE6B18
    M  DpShMCreate: allocated wp_ca_adm at 062BB970
    M  DpShMCreate: allocated appc_ca_adm at 062C1730
    M  DpShMCreate: allocated comm_adm_list at 062C3670
    M  DpShMCreate: allocated comm_adm at 062C3688
    M  DpShMCreate: allocated vmc_adm_list at 0630A358
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 0630A380
    M  DpShMCreate: allocated wall_adm at 0630A388
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Wed Aug 05 10:48:18 2009
    M  calling db_connect ...
    C  Prepending e:\oracle\IDS to Path.
    C  got NLS_LANG='AMERICAN_AMERICA.UTF8' from environment
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPIDS's password
    C  Connecting as /@IDS on connection 0 (nls_hdl 0) ... (dbsl 640 070308)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05B17398   05B1C458   05B1BEC0
    C  Attaching to DB Server IDS (con_hdl=0,svchp=05B1BE14,srvhp=05B1CA84)
    C  Starting user session (con_hdl=0,svchp=05B1BE14,srvhp=05B1CA84,usrhp=05B256B8)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    [dboci.c      4508]
    C  *** ERROR => CONNECT failed with sql error '1017'
    [dbsloci.c    11395]
    C  Try to connect with default password
    C  Connecting as SAPIDS/<pwd>@IDS on connection 0 (nls_hdl 0) ... (dbsl 640 070308)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   05B17398   05B1C458   05B1BEC0
    C  Starting user session (con_hdl=0,svchp=05B1BE14,srvhp=05B1CA84,usrhp=05B256B8)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    [dboci.c      4508]
    C  *** ERROR => CONNECT failed with sql error '1017'
    [dbsloci.c    11395]
    B  ***LOG BY2=> sql error 1017   performing CON [dbsh#3 @ 1204] [dbsh    1204 ]
    B  ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dbsh#3 @ 1204] [dbsh    1204 ]
    B  ***LOG BY2=> sql error 1017   performing CON [dblink#3 @ 428] [dblink  0428 ]
    B  ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dblink#3 @ 428] [dblink  0428 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1283]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   9708]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server ord-sapproj_IDS_00 on host ord-sapproj (wp 0)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Wed Aug 05 10:48:18 2009
    M  *  RELEASE     640
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        9893
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   730]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  255]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 844) [dpnttool.c   357]
    I have checked database connectivity with the command 'r3trans -d', it got finished with the return code 0012 and the trace.log file  is showing the following information.
    =======================================
    4 ETW000 r3trans version 6.13 (release 640 - 17.07.08 - 08:11:00).
    4 ETW000 unicode enabled version
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 05.08.2009 - 10:52:31
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: r3trans -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [dev trc     ,00000]  Wed Aug 05 10:52:34 2009                                  0.000000
    4 ETW000  [dev trc     ,00000]  db_con_init called                                        0.000000
    4 ETW000  [dev trc     ,00000]  create_con (con_name=R/3)                                 0.000000
    4 ETW000  [dev trc     ,00000]  Loading DB library 'dboraslib.dll' ...                    0.000000
    4 ETW000  [dev trc     ,00000]  load shared library (dboraslib.dll), hdl 0          8449  0.008449
    4 ETW000  [dev trc     ,00000]      using "f:\usr\sap\IDS\SYS\exe\run\dboraslib.dll"
    4 ETW000                                                                              37  0.008486
    4 ETW000  [dev trc     ,00000]  Library 'dboraslib.dll' loaded                        18  0.008504
    4 ETW000  [dev trc     ,00000]  function DbSlExpFuns loaded from library dboraslib.dll
    4 ETW000                                                                              27  0.008531
    4 ETW000  [dev trc     ,00000]  Version of 'dboraslib.dll' is "640.00", patchlevel (0.220)
    4 ETW000                                                                             219  0.008750
    4 ETW000  [dev trc     ,00000]  function dsql_db_init loaded from library dboraslib.dll
    4 ETW000                                                                              27  0.008777
    4 ETW000  [dev trc     ,00000]  function dbdd_exp_funs loaded from library dboraslib.dll
    4 ETW000                                                                              36  0.008813
    4 ETW000  [dev trc     ,00000]  New connection 0 created                              26  0.008839
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = -000000001 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              34  0.008873
    4 ETW000  [dev trc     ,00000]  db_con_connect (con_name=R/3)                         22  0.008895
    4 ETW000  [dev trc     ,00000]  find_con_by_name found the following connection for reuse:
    4 ETW000                                                                              25  0.008920
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              32  0.008952
    4 ETW000  [dev trc     ,00000]  Setting DIR_CLIENT_ORAHOME is not set as environment variable,
    4 ETW000                        assuming using instant client with unspecified location.
    4 ETW000                                                                             227  0.009179
    4 ETW000  [dev trc     ,00000]  -->oci_initialize (con_hdl=0)                        130  0.009309
    4 ETW000  [dev trc     ,00000]  got NLS_LANG='AMERICAN_AMERICA.UTF8' from environment
    4 ETW000                                                                              32  0.009341
    4 ETW000  [dev trc     ,00000]  Client NLS settings: AMERICAN_AMERICA.UTF8         23827  0.033168
    4 ETW000  [dev trc     ,00000]  Logon as OPS$-user to get SAPIDS's password           34  0.033202
    4 ETW000  [dev trc     ,00000]  Connecting as /@IDS on connection 0 (nls_hdl 0) ... (dbsl 640 070308)
    4 ETW000                                                                              35  0.033237
    4 ETW000  [dev trc     ,00000]  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    4 ETW000                                                                              32  0.033269
    4 ETW000  [dev trc     ,00000]    0 UTF8                                                      1   0253CDB0   02541E18   02541880
    4 ETW000                                                                             112  0.033381
    4 ETW000  [dev trc     ,00000]  Allocating service context handle for con_hdl=0       29  0.033410
    4 ETW000  [dev trc     ,00000]  Allocating server context handle                      25  0.033435
    4 ETW000  [dev trc     ,00000]  Attaching to DB Server IDS (con_hdl=0,svchp=025417D4,srvhp=025423DC)
    4 ETW000                                                                              51  0.033486
    4 ETW000  [dev trc     ,00000]  Assigning server context 025423DC to service context 025417D4
    4 ETW000                                                                           41860  0.075346
    4 ETW000  [dev trc     ,00000]  Allocating user session handle                        47  0.075393
    4 ETW000  [dev trc     ,00000]  Starting user session (con_hdl=0,svchp=025417D4,srvhp=025423DC,usrhp=0254AFA8)
    4 ETW000                                                                              50  0.075443
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    4 ETW000                                                                            4381  0.079824
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '1017'
    4 ETW000                                                                              31  0.079855
    4 ETW000  [dev trc     ,00000]     set_ocica() -> OCI or SQL return code 1017         23  0.079878
    4 ETW000  [dev trc     ,00000]  Try to connect with default password                  80  0.079958
    4 ETW000  [dev trc     ,00000]  Connecting as SAPIDS/<pwd>@IDS on connection 0 (nls_hdl 0) ... (dbsl 640 070308)
    4 ETW000                                                                              28  0.079986
    4 ETW000  [dev trc     ,00000]  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    4 ETW000                                                                              31  0.080017
    4 ETW000  [dev trc     ,00000]    0 UTF8                                                      1   0253CDB0   02541E18   02541880
    4 ETW000                                                                              32  0.080049
    4 ETW000  [dev trc     ,00000]  Assigning username to user session 0254AFA8           19  0.080068
    4 ETW000  [dev trc     ,00000]  Assigning password to user session 0254AFA8           25  0.080093
    4 ETW000  [dev trc     ,00000]  Starting user session (con_hdl=0,svchp=025417D4,srvhp=025423DC,usrhp=0254AFA8)
    4 ETW000                                                                              32  0.080125
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    4 ETW000                                                                            1691  0.081816
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '1017'
    4 ETW000                                                                              28  0.081844
    4 ETW000  [dev trc     ,00000]     set_ocica() -> OCI or SQL return code 1017         18  0.081862
    4 ETW000  [dblink      ,00428]  ***LOG BY2=>sql error 1017   performing CON [dblink#3 @ 428]
    4 ETW000                                                                             119  0.081981
    4 ETW000  [dblink      ,00428]  ***LOG BY0=>ORA-01017: invalid username/password; logon denied [dblink#3 @ 428]
    4 ETW000                                                                              30  0.082011
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'IDS'"
    =================================================================================
    Kindly suggest me the solution to resolve the issue.
    Thanks & regards,
    Mogileeswar

    Please check the logs it is clrerly mentioned thet your sapsystem is not able to connect to database.
    ERROR => CONNECT failed with sql error '1017' [dbsloci.c 11395] B ***LOG BY2=> sql error 1017 performing CON [dbsh#3 @ 1204] [dbsh 1204 ] B ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dbsh#3 @ 1204] [dbsh 1204 ] B ***LOG BY2=> sql error 1017 performing CON [dblink#3 @ 428] [dblink 0428 ] B ***LOG BY0=> ORA-01017: invalid username/password
    Check the Note------Note 713685 - Hom./Het.System Copy SAP Web AS 6.40
    run these commands:
    brconnect -u / -c -l E -f chpass -o SAPSR3 -password whatever_you_want
    sqlplus /nolog @sapdba_role.sql SID NT
    Also check the parameter DBS_ORA_SCHEMA is set to SAPSR3.
    Also read note 400241.
    Thanks
    Rishi Abrol

  • Dispatcher is not coming up

    Hi all,
    One of the apps in the production system is not coming up after the windows patching,  there are 2 servers in the same box  the other one came up fine with no issues.
    Even the Work process  log is also not generated.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    trc file: "dev_disp", trc level: 1, release: "46D"
    Tue Jun 21 15:11:31 2011
    relno      4640
    patchlevel 0
    patchno    2513
    intno      0
    pid        13548
    ***LOG Q00=> DpSapEnvInit, DPStart (71 13548) [dpxxdisp.c   921]
    Tue Jun 21 15:11:35 2011
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust your DNS settings [dpxxtool2.c  3171]
    MtxInit: -2 0 0
    DpIPCInit: start server >xxxx_71     <
    ERROR => DpShMCreate: ShmCreate SHM_DP_ADM_KEY [dpxxtool2.c  1335]
    ERROR => DpIPCInit: DpShMCreate [dpxxtool2.c  409]
    DP_FATAL_ERROR => DpSapEnvInit: DpIPCInit
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    call semaphore clean-up function ...
    ***LOG Q0E=> DpSigGenHandler, Exception (c0000005) [dpnttool.c   390]
    C-STACK -
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Application exception occurred:
    Exception : c0000005 (Access Violation)
    App       : disp+work.exe (pid=13548)
    When      : 6/21/2011 15:11:35.782
    Threads   : 2
    Computer Name       xxxxxx
    User Name           : SAPServicexxx
    Number of Processors: 32
    Processor Type: EM64T Family 6 Model 46 Stepping 6
    Windows Version     : 5.2 Current Build: 3790
    Stack Dump for Thread Id 3ca8
    eax=00000000 ebx=00000003 ecx=016ea020 edx=0319f68c esi=00000000 edi=00000000
    eip=00427bcb esp=0319fdf8 ebp=00000000 iopl=0         nv up ei pl nz na po nc
    cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00010206
    function : <nosymbols>
            00427bb0 ff742404         push    dword ptr [esp+0x4]    ss:0633e6a3=????????
            00427bb4 ffd0             call    eax
            00427bb6 59               pop     ecx
            00427bb7 c3               ret
            00427bb8 a1bcf06c01       mov     eax,[016cf0bc]         ds:016cf0bc=00000000
            00427bbd 56               push    esi
            00427bbe 57               push    edi
            00427bbf 8b7c240c         mov     edi,[esp+0xc]          ss:0633e6a3=????????
            00427bc3 8bf7             mov     esi,edi
            00427bc5 69f698020000     imul    esi,esi,0x298
    FAULT-> 00427bcb 837c064800     cmp dword ptr [esieax0x48],0x0 ds:0319e8ab=467f0048
            00427bd0 7f46             jg      00427c18
            00427bd2 833db89f6e0101   cmp   dword ptr [016e9fb8],0x1 ds:016e9fb8=00000003
            00427bd9 0f8c45030000     jl      00427f24
            00427bdf e8ad910a00       call    004d0d91
            00427be4 68310a0000       push    0xa31
            00427be9 689060d400       push    0xd46090
            00427bee e8e6d0ffff       call    00424cd9
            00427bf3 59               pop     ecx
            00427bf4 50               push    eax
            00427bf5 689c60d400       push    0xd4609c
            00427bfa 68bc9f6e01       push    0x16e9fbc
    --> Stack Back Trace <--
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    00000000 00000000 00000000 00000000 00000000 00000000 disp+work!<nosymbols>
    Stack Dump for Thread Id 2f70
    eax=00000000 ebx=0036f190 ecx=00000000 edx=00000000 esi=77bd0888 edi=00000000
    eip=7d61cd3e esp=0769fc78 ebp=0769fcb8 iopl=0         nv up ei pl nz na pe nc
    cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00000202
    function : NtFsControlFile
            7d61cd29 b836000000       mov     eax,0x36
            7d61cd2e b91b000000       mov     ecx,0x1b
            7d61cd33 8d542404         lea     edx,[esp+0x4]          ss:0a83e523=????????
            7d61cd37 64ff15c0000000   call   dword ptr fs:[000000c0] fs:000000c0=????????
            7d61cd3e c22800           ret     0x28
    --> Stack Back Trace <--
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    0769fcb8 00c38ed8 000004f4 00000000 00000000 0036f0f8 ntdll!NtFsControlFile
    0769ff84 77bcb530 00000000 00000000 00000000 0036f190 disp+work!<nosymbols>
    0769ffb8 7d4dfe37 0036f190 00000000 00000000 0036f190 MSVCRT!endthreadex
    0769ffec 00000000 77bcb4bc 0036f190 00000000 00000000 kernel32!FlsSetValue
    call clean-up function ...
    SigICallExitRoutine: call exithandler (DpHalt)
    DpHalt: shutdown server >mudpap01_UDP_71     <
    Switch off Shared memory profiling
    not attached to the message server
    ***LOG Q05=> DpHalt, DPStop ( 13548) [dpxxdisp.c   7267]
    removing Event-Managment
    ERROR => EvtRmMgt: Evt Mgt Table not init'd [evtnt.c      360]
    (didn't work)
    ShmCleanup SHM_SYS_ADM_KEY
    ShmCleanup SHM_DP_ADM_KEY
    ERROR => ShmDelete: Inv. Key=2  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 2 [shmnt.c      747]
    ShmCleanup SHM_DP_CA_KEY
    ERROR => ShmDelete: Inv. Key=3  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 3 [shmnt.c      747]
    ShmCleanup SHM_PF_KEY
    ERROR => ShmDelete: Inv. Key=4  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 4 [shmnt.c      747]
    ShmCleanup SHM_PRES_BUF
    ERROR => ShmDelete: Inv. Key=14  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 14 [shmnt.c      747]
    ShmCleanup SHM_CALI_BUFFER
    ERROR => ShmDelete: Inv. Key=11  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 11 [shmnt.c      747]
    ShmCleanup SHM_DB_TBUFF
    ERROR => ShmDelete: Inv. Key=19  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 19 [shmnt.c      747]
    ShmCleanup SHM_DB_TBUFF_P
    ERROR => ShmDelete: Inv. Key=33  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 33 [shmnt.c      747]
    ShmCleanup SHM_DB_STBUFF
    ERROR => ShmDelete: Inv. Key=41  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 41 [shmnt.c      747]
    ShmCleanup SHM_DB_TTBUFF
    ERROR => ShmDelete: Inv. Key=42  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 42 [shmnt.c      747]
    ShmCleanup SHM_DB_FTBUFF
    ERROR => ShmDelete: Inv. Key=43  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 43 [shmnt.c      747]
    ShmCleanup SHM_DB_SNTBUFF
    ERROR => ShmDelete: Inv. Key=45  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 45 [shmnt.c      747]
    ShmCleanup SHM_DB_IRBUFF
    ERROR => ShmDelete: Inv. Key=44  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 44 [shmnt.c      747]
    ShmCleanup SHM_DB_OBJ_BUFFER
    ERROR => ShmDelete: Inv. Key=54  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 54 [shmnt.c      747]
    ShmCleanup SHM_ROLL_AREA_KEY
    ERROR => ShmDelete: Inv. Key=9  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 9 [shmnt.c      747]
    ShmCleanup SHM_PAGING_AREA_KEY
    ERROR => ShmDelete: Inv. Key=8  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 8 [shmnt.c      747]
    ShmCleanup SHM_ROLL_ADM_KEY
    ERROR => ShmDelete: Inv. Key=17  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 17 [shmnt.c      747]
    ShmCleanup SHM_PAGING_ADM_KEY
    ERROR => ShmDelete: Inv. Key=18  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 18 [shmnt.c      747]
    ShmCleanup SHM_PXA_KEY
    ERROR => ShmDelete: Inv. Key=6  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 6 [shmnt.c      747]
    ShmCleanup SHM_ENQ_TABLE_KEY
    ERROR => ShmDelete: Inv. Key=34  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 34 [shmnt.c      747]
    ShmCleanup SHM_ENQID_KEY
    ERROR => ShmDelete: Inv. Key=58  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 58 [shmnt.c      747]
    ShmCleanup SHM_VB_ADM_KEY
    ERROR => ShmDelete: Inv. Key=7  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 7 [shmnt.c      747]
    ShmCleanup SHM_DB_POOL
    ERROR => ShmDelete: Inv. Key=40  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 40 [shmnt.c      747]
    ShmCleanup SHM_EM_ADM
    ERROR => ShmDelete: Inv. Key=51  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 51 [shmnt.c      747]
    ShmCleanup SHM_MSBUF
    ERROR => ShmDelete: Inv. Key=52  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 52 [shmnt.c      747]
    ShmCleanup SHM_THRUN_ADM_KEY(th run adm)
    ERROR => ShmDelete: Inv. Key=30  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 30 [shmnt.c      747]
    ShmCleanup SHM_PF_AS_KEY(Appl.Statistics)
    ERROR => ShmDelete: Inv. Key=56  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 56 [shmnt.c      747]
    ShmCleanup SHM_POOL_0
    ERROR => ShmDelete: Inv. Key=10  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 10 [shmnt.c      747]
    ShmCleanup SHM_PROFILE
    removing Semaphore-Management
    removing Request Queue
    ERROR => ShmDelete: Inv. Key=31  [shmnt.c      676]
    ERROR => ShmCleanup: ShmDelete failed for Key: 31 [shmnt.c      747]
    ERROR => DpRqIQRemove: ShmDelete [dpxxqueu.c   558]
    closing connect handles (dgm + tcp)
    ***LOG Q05=> DpHalt, DPStop ( 13548) [dpxxdisp.c   7454]
    return from clean-up function ...
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Changed the extendend memory and other parameters  still not able to bring  it up...
    Please suggest...
    Thanks,
    Subhash.G

    Hi,
    sappfpar result , no errors and warnings reported.
    +++++++++++++++++++++++++++++++++++++++++++++++
    Shared memory disposition overview
    ================================================================
    Key:        1  Size:        2000 (   0.0 MB) System administration
    Key:        2  Size:    18828644 (  18.0 MB) Disp. administration tables
    Key:        3  Size:   178144000 ( 169.9 MB) Disp. communication areas
    Key:        4  Size:      541048 (   0.5 MB) statistic area
    Key:        5  Size:        4096 (   0.0 MB) SCSA area
    Key:        6  Size:   851968000 ( 812.5 MB) ABAP program buffer
    Key:        7  Size:       14838 (   0.0 MB) Update task administration
    Key:        8  Size:   134217828 ( 128.0 MB) Paging buffer
    Key:        9  Size:   134217828 ( 128.0 MB) Roll buffer
    Key:       11  Size:      500000 (   0.5 MB) Factory calender buffer
    Key:       12  Size:     3000000 (   2.9 MB) TemSe Char-Code convert Buf.
    Key:       13  Size:    10500000 (  10.0 MB) Alert Area
    Key:       14  Size:    58500096 (  55.8 MB) Presentation buffer
    Key:       16  Size:       22400 (   0.0 MB) Semaphore activity monitoring
    Key:       17  Size:      753764 (   0.7 MB) Roll administration
    Key:       18  Size:      458852 (   0.4 MB) Paging adminitration
    Key:       19  Size:   460000256 ( 438.7 MB) Table-buffer
    Key:       30  Size:       91500 (   0.1 MB) Taskhandler Runtime Admin
    Key:       31  Size:     4206000 (   4.0 MB) Dispatcher request queue
    Key:       33  Size:    61440000 (  58.6 MB) Table buffer, part.buffering
    Key:       41  Size:     9010000 (   8.6 MB) DB statistics buffer
    Key:       42  Size:    52900592 (  50.4 MB) DB TTAB buffer
    Key:       43  Size:    87894392 (  83.8 MB) DB FTAB buffer
    Key:       44  Size:    46934392 (  44.8 MB) DB IREC buffer
    Key:       45  Size:    29526392 (  28.2 MB) DB short nametab buffer
    Key:       46  Size:       20480 (   0.0 MB) DB sync table
    Key:       47  Size:    71681024 (  68.4 MB) DB CUA buffer
    Key:       48  Size:      300000 (   0.3 MB) Number range buffer
    Key:       49  Size:     2769392 (   2.6 MB) Spool admin (SpoolWP+DiaWP)
    Key:       51  Size:     3200000 (   3.1 MB) Extended memory admin.
    Key:       52  Size:       40000 (   0.0 MB) Message Server buffer
    Key:       54  Size:   262152192 ( 250.0 MB) Export/Import buffer
    Key:       55  Size:        8192 (   0.0 MB) Spool local printer+joblist
    Key:       57  Size:     1048576 (   1.0 MB) Profil in shared Memory
    Key:       58  Size:        4096 (   0.0 MB) EnqId
    Key:     1002  Size:      400000 (   0.4 MB) Performance monitoring V01.0
    Nr of operating system shared memory segments: 36
    Shared memory resource requirements estimated
    ================================================================
    Total Nr of shared segments required.....:         36
    Shared memory segment size required min..:  851968000 ( 812.5 MB)
    Swap space requirements estimated
    ================================================
    Shared memory....................: 2370.2 MB
    Processes........................:  468.3 MB
    Extended Memory .................: 10260.0 MB
    Total, minimum requirement.......: 13098.4 MB
    Process local heaps, worst case..: 1908.0 MB
    Total, worst case requirement....: 15006.4 MB
    Errors detected..................:    0
    Warnings detected................:    0
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    We are windows 2003 with sqlserver 2005, is there any  equal command as cleanipc in UNIX for windows to clean the share memory .
    Thanks,
    Subhash.G

  • System is not coming up in MSCS environment after offline backup from DB13

    Hi All,
    SAP system is not coming up after DB offline backup from DB13.
    Here are the details of system. SAP XI 3.0 SR1 NW04 running on Microsoft clustered environment windows 2003 and Oracle 9.2.0.6.
    My observations:-
    1. All the services of cluster admin was up except XE1.World when DB offline backup completed (executed through DB13).
    2. services.msc entry OracleXE1920TNSListener (automatic start) and OracleServiceXE1 (automatic start) was down.
    and sqlplus "/as sysdba" was failing with ORA-12560: TNS:protocol adapter error.
    Please note gw/netstat_once parameter is alredy there with value 0.
    Further I would like to add, when I started cluster admin service XE1.World by right click - bring online, services.msc entry OracleServiceXE1 came up, but OracleXE1920TNSListener was still down, then I started listener from cmd mode lsnrctl start.
    Kindly suggest.
    Thanks & Regards
    Praveen Verma
    Please find the trace (15) of Brbackup pasted below
    Detail log:                    bdvbgsin.aff
    BR0200I BR_TRACE: location BrEnvProcess-1, Environment of BRTOOLS:
    'BR_TRACE=15'
    'ClusterLog=C:\WINDOWS\Cluster\cluster.log'
    'ComSpec=C:\WINDOWS\system32\cmd.exe'
    'CPIC_MAX_CONV=20'
    'DBMS_TYPE=ORA'
    'DBS_ORA_SCHEMA=SAPXE1'
    'dbs_ora_tnsname=XE1'
    'DSMI_CONFIG=e:\oracle\xe1\920\database\dsm.opt'
    'DSMI_DIR=D:\Program Files\tivoli\tsm\api'
    'DSMI_LOG=C:\Temp\3'
    'FP_NO_HOST_CHECK=NO'
    'JAVA_HOME=D:\Program Files\Java'
    'NLS_LANG=AMERICAN_AMERICA.UTF8'
    'NODNSSAPTRANSHOST=1'
    'NUMBER_OF_PROCESSORS=4'
    'ORACLE_HOME=E:\oracle\XE1\920'
    'ORACLE_SID=XE1'
    'OS=Windows_NT'
    'Path=D:\Program Files\Java\bin;E:\oracle\XE1\920\jre\1.4.2\bin\client;E:\oracle\XE1\920\jre\1.4.2\bin;E:\oracle\XE1\920\bin;C:\
    'PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
    'PPID=5540'
    'PROCESSOR_ARCHITECTURE=x86'
    'PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 1, GenuineIntel'
    'PROCESSOR_LEVEL=15'
    'PROCESSOR_REVISION=0401'
    'SAPDATA_HOME=K:\oracle\XE1'
    'SAPEXE=C:\WINDOWS\SapCluster'
    'SAPLOCALHOST=dcbvsapxe1'
    'SIDE_INFO=E:\usr\sap/XE1/G20/data/sideinfo'
    'SystemDrive=C:'
    'SystemRoot=C:\WINDOWS'
    'TEMP=C:\WINDOWS\TEMP'
    'TMP=C:\WINDOWS\TEMP'
    'VMPATH=D:\Program Files\VERITAS\VERITAS Volume Manager 4.3\'
    'VRTSobdir="D:\Program Files\VERITAS\VERITAS Object Bus"'
    'windir=C:\WINDOWS'
    BR0248I BR_TRACE: level 3, function ora_base_get entry with 'XE1'
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME0 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME0 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with 'E:\oracle'
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_XE1101 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_XE1102 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home0 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home0 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME1 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME1 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home1 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home1 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME2 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME2 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home2 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home2 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME3 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME3 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home3 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home3 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME4 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME4 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home4 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home4 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME5 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME5 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home5 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home5 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME6 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME6 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home6 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home6 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME7 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME7 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home7 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home7 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME8 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME8 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home8 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home8 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME9 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME9 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home9 ORACLE_SID'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 4, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home9 ORACLE_BASE'
    BR0250I BR_TRACE: level 4, function reg_key_val_get exit with FFFFFFFF
    BR0250I BR_TRACE: level 3, function ora_base_get exit with 'E:\oracle'
    BR0249I BR_TRACE: level 2, function BrEnvProcess exit with 0
    BR0248I BR_TRACE: level 2, function BrNameSet entry with 'void'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'E:\oracle\XE1\920\database\spfileXE1.ora'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '3584 3584'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brarchive.exe'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '1470464 1470464'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brbackup.exe'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '1662976 1662976'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brconnect.exe'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '2232320 2232320'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brrecover.exe'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '1863680 1863680'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brrestore.exe'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '770048 770048'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brspace.exe'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '2396160 2396160'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brtools.exe'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '1179648 1179648'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\backint.exe'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '4042752 4042752'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\splitint.exe'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with 'FILE_NULL'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\splitint.bat'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with 'FILE_NULL'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\splitint.cmd'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with 'FILE_NULL'
    BR0248I BR_TRACE: level 3, function BrPidGet entry with 'void'
    BR0249I BR_TRACE: level 3, function BrPidGet exit with 1224
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'K:\oracle\XE1\saptrace\background\alert_XE1.log'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '4608258 4608258'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\sapftp.exe'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with 'FILE_NULL'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'E:\oracle\XE1\920\rdbms\admin\log'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with 'FILE_NULL'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'E:\oracle\XE1\920\nls'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with 'FILE_NULL'
    BR0249I BR_TRACE: level 2, function BrNameSet exit with 0
    BR0248I BR_TRACE: level 2, function file_printout entry with 'brb_log bdvbgsin.aff'
    BR0248I BR_TRACE: level 3, function BrNameBuild entry with '1 bdvbgsin.aff K:\oracle\XE1\sapbackup'
    BR0250I BR_TRACE: level 3, function BrNameBuild exit with 'K:\oracle\XE1\sapbackup\bdvbgsin.aff'
    BR0051I BRBACKUP 6.40 (40)
    BR0200I BR_TRACE: location BrEnvProcess-1, Environment of BRBACKUP:
    'BR_TRACE=15'
    'ClusterLog=C:\WINDOWS\Cluster\cluster.log'
    'ComSpec=C:\WINDOWS\system32\cmd.exe'
    'CPIC_MAX_CONV=20'
    'DBMS_TYPE=ORA'
    'DBS_ORA_SCHEMA=SAPXE1'
    'dbs_ora_tnsname=XE1'
    'DSMI_CONFIG=e:\oracle\xe1\920\database\dsm.opt'
    'DSMI_DIR=D:\Program Files\tivoli\tsm\api'
    'DSMI_LOG=C:\Temp\3'
    'FP_NO_HOST_CHECK=NO'
    'JAVA_HOME=D:\Program Files\Java'
    'NLS_LANG=AMERICAN_AMERICA.UTF8'
    'NODNSSAPTRANSHOST=1'
    'NUMBER_OF_PROCESSORS=4'
    'ORACLE_HOME=E:\oracle\XE1\920'
    'ORACLE_SID=XE1'
    'OS=Windows_NT'
    'Path=D:\Program Files\Java\bin;E:\oracle\XE1\920\jre\1.4.2\bin\client;E:\oracle\XE1\920\jre\1.4.2\bin;E:\oracle\XE1\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\Program Files\Windows Resource Kits\Tools\;C:\
    'PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
    'PPID=5540'
    'PROCESSOR_ARCHITECTURE=x86'
    'PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 1, GenuineIntel'
    'PROCESSOR_LEVEL=15'
    'PROCESSOR_REVISION=0401'
    'SAPDATA_HOME=K:\oracle\XE1'
    'SAPEXE=C:\WINDOWS\SapCluster'
    'SAPLOCALHOST=dcbvsapxe1'
    'SIDE_INFO=E:\usr\sap/XE1/G20/data/sideinfo'
    'SystemDrive=C:'
    'SystemRoot=C:\WINDOWS'
    'TEMP=C:\WINDOWS\TEMP'
    'TMP=C:\WINDOWS\TEMP'
    'VMPATH=D:\Program Files\VERITAS\VERITAS Volume Manager 4.3\'
    'VRTSobdir="D:\Program Files\VERITAS\VERITAS Object Bus"'
    'windir=C:\WINDOWS'
    BR0248I BR_TRACE: level 2, function ora_base_get entry with 'XE1'
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME0 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME0 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with 'E:\oracle'
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_XE1101 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_XE1102 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home0 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home0 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME1 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME1 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home1 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home1 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME2 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME2 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home2 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home2 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME3 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME3 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home3 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home3 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME4 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME4 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home4 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home4 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME5 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME5 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home5 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home5 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME6 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME6 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home6 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home6 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME7 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME7 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home7 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home7 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME8 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME8 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home8 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home8 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME9 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\HOME9 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home9 ORACLE_SID'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0248I BR_TRACE: level 3, function reg_key_val_get entry with 'SOFTWARE\ORACLE\KEY_OraDb10g_home9 ORACLE_BASE'
    BR0250I BR_TRACE: level 3, function reg_key_val_get exit with FFFFFFFF
    BR0250I BR_TRACE: level 2, function ora_base_get exit with 'E:\oracle'
    BR0248I BR_TRACE: level 2, function BrCopyBuild entry with '1 2 0 \nul \nul'
    BR0250I BR_TRACE: level 2, function BrCopyBuild exit with 'copy \nul \nul'
    BR0248I BR_TRACE: level 2, function BrPipeOpen entry with 'copy \nul \nul'
    BR0248I BR_TRACE: level 3, function BrOraPatch entry with 'TRUE'
    BR0249I BR_TRACE: level 3, function BrOraPatch exit with 0
    BR0200I BR_TRACE: location BrPipeOpen-3, command line:
    '( copy \nul \nul ) 2>&1'
    BR0250I BR_TRACE: level 2, function BrPipeOpen exit with 7C38B548
    BR0200I BR_TRACE: location BrEnvProcess-95, command output from pipe:
    '        1 file(s) copied.^'
    BR0248I BR_TRACE: level 2, function BrPipeClose entry with 'copy \nul \nul'
    BR0248I BR_TRACE: level 3, function BrOraPatch entry with 'FALSE'
    BR0249I BR_TRACE: level 3, function BrOraPatch exit with 0
    BR0249I BR_TRACE: level 2, function BrPipeClose exit with 0
    BR0249I BR_TRACE: level 1, function BrEnvProcess exit with 0
    BR0248I BR_TRACE: level 1, function BrNameSet entry with 'void'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'E:\oracle\XE1\920\bin\SQLPLUS.EXE'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '651264 651264'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'E:\oracle\XE1\920\bin\RMAN.EXE'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '925968 925968'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'E:\oracle\XE1\920\bin\SVRMGRL.EXE'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with 'FILE_NULL'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'E:\oracle\XE1\920\bin\SVRMGR30.EXE'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with 'FILE_NULL'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'E:\oracle\XE1\920\database\spfileXE1.ora'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '3584 3584'
    BR0248I BR_TRACE: level 2, function BrOraReplace entry with 'initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrOraReplace exit with 'void'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brarchive.exe'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '1470464 1470464'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brbackup.exe'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '1662976 1662976'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brconnect.exe'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '2232320 2232320'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brrecover.exe'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '1863680 1863680'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brrestore.exe'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '770048 770048'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brspace.exe'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '2396160 2396160'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\brtools.exe'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '1179648 1179648'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\backint.exe'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '4042752 4042752'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\splitint.exe'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with 'FILE_NULL'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\splitint.bat'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with 'FILE_NULL'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\splitint.cmd'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with 'FILE_NULL'
    BR0248I BR_TRACE: level 2, function BrPidGet entry with 'void'
    BR0249I BR_TRACE: level 2, function BrPidGet exit with 2276
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'K:\oracle\XE1\saptrace\background\alert_XE1.log'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '4603437 4603437'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'C:\WINDOWS\SapCluster\sapftp.exe'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with 'FILE_NULL'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'E:\oracle\XE1\920\rdbms\admin\log'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with 'FILE_NULL'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'E:\oracle\XE1\920\nls'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with 'FILE_NULL'
    BR0249I BR_TRACE: level 1, function BrNameSet exit with 0
    BR0248I BR_TRACE: level 1, function BrInitSapRead entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'backup_mode all'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'restore_mode all'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'backup_type online'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'backup_dev_type util_file'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'backup_root_dir K:\oracle\XE1\sapbackup'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'stage_root_dir K:\oracle\XE1\sapbackup'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'compress no'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'compress_cmd S:\usr\sap\XE1\SYS\exe\run\mkszip -c $ > $'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'uncompress_cmd S:\usr\sap\XE1\SYS\exe\run\uncompress -c $ > $'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'compress_dir K:\oracle\XE1\sapreorg'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'archive_function save'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'archive_copy_dir K:\oracle\XE1\sapbackup'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'archive_stage_dir K:\oracle\XE1\sapbackup'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'tape_copy_cmd cpio'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'disk_copy_cmd copy'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'stage_copy_cmd rcp'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'cpio_flags -ovB'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'cpio_in_flags -iuvB'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'cpio_disk_flags -pdcu'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'dd_flags bs=64k'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'dd_in_flags bs=64k'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'saveset_members 1'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'copy_out_cmd dd ibs=8k obs=64k of=$'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'copy_in_cmd dd ibs=64k obs=8k if=$'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'rewind mt -f $ rewind'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'rewind_offline mt -f $ offline'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'tape_pos_cmd mt -f $ fsf $'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'tape_size 1200M'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'exec_parallel 0'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'tape_address /dev/nmt0'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'tape_address_rew /dev/mt0'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'volume_archive XE1A01'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'volume_backup XE1B01'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'expir_period 30'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'tape_use_count 100'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'util_par_file initXE1.utl'
    BR0248I BR_TRACE: level 2, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.sap'
    BR0250I BR_TRACE: level 2, function BrParamGet exit with 'NULL'
    BR0249I BR_TRACE: level 1, function BrInitSapRead exit with 0
    BR0248I BR_TRACE: level 1, function global_set entry with 'dummy'
    BR0248I BR_TRACE: level 2, function BrbParCheck entry with 'dummy'
    BR0248I BR_TRACE: level 3, function BrOraReplace entry with 'K:\oracle\XE1\sapbackup'
    BR0250I BR_TRACE: level 3, function BrOraReplace exit with 'void'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'K:\oracle\XE1\sapbackup'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '9791985 0'
    BR0248I BR_TRACE: level 3, function BrOraReplace entry with 'K:\oracle\XE1\sapbackup'
    BR0250I BR_TRACE: level 3, function BrOraReplace exit with 'void'
    BR0248I BR_TRACE: level 3, function BrOraReplace entry with 'K:\oracle\XE1\sapreorg'
    BR0250I BR_TRACE: level 3, function BrOraReplace exit with 'void'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'K:\oracle\XE1\sapreorg'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '4301583 0'
    BR0248I BR_TRACE: level 3, function BrOraReplace entry with 'initXE1.utl'
    BR0250I BR_TRACE: level 3, function BrOraReplace exit with 'void'
    BR0249I BR_TRACE: level 2, function BrbParCheck exit with 0
    BR0249I BR_TRACE: level 1, function global_set exit with 0
    BR0248I BR_TRACE: level 1, function BrDiskStatGet entry with 'K:\oracle\XE1\sapbackup'
    BR0250I BR_TRACE: level 1, function BrDiskStatGet exit with '31996305408 31571140608 31571140608 31540309416'
    BR0248I BR_TRACE: level 1, function BrBackDirBuild entry with 'K:\oracle\XE1\sapbackup'
    BR0250I BR_TRACE: level 1, function BrBackDirBuild exit with 'K:\oracle\XE1\sapbackup\bdvbgsin'
    BR0248I BR_TRACE: level 1, function BrDiskStatGet entry with 'K:\oracle\XE1\sapreorg'
    BR0250I BR_TRACE: level 1, function BrDiskStatGet exit with '31996305408 31571140608 31571140608 31540309416'
    BR0248I BR_TRACE: level 1, function BrbNameSet entry with 'void'
    BR0250I BR_TRACE: level 1, function BrbNameSet exit with 'void'
    BR0055I Start of database backup: bdvbgsin.aff 2007-04-17 18.30.45
    BR0248I BR_TRACE: level 1, function brb_run_check entry with 'void'
    BR0248I BR_TRACE: level 2, function BrPidGet entry with 'void'
    BR0249I BR_TRACE: level 2, function BrPidGet exit with 2276
    BR0249I BR_TRACE: level 1, function brb_run_check exit with 0
    BR0248I BR_TRACE: level 1, function BrDbConnect entry with 'XE1'
    BR0248I BR_TRACE: level 2, function BrOraSrvControl entry with 'TRUE'
    BR0249I BR_TRACE: level 2, function BrOraSrvControl exit with -4
    BR0280I BRBACKUP time stamp: 2007-04-17 18.30.45
    BR0200I BR_TRACE: location BrDbConnect-2, SQL command:
    'CONNECT /;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 0
    BR0200I BR_TRACE: location BrDbConnect-3, SQL command:
    'ALTER SESSION SET SQL_TRACE = TRUE;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 0
    BR0200I BR_TRACE: location BrDbConnect-4, SQL command:
    'SELECT NAME, NVL(RESETLOGS_CHANGE#, 0), NVL(TO_NUMBER(TO_CHAR(RESETLOGS_TIME, 'YYYYMMDDHH24MISS')), 0), NVL(TO_NUMBER(TO_CHAR(CREATED, 'YYYYMMDDHH24MISS')), 0) FROM V$DATABASE WHERE ROWNUM = 1;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrDbConnect-5, SQL command output:
    'XE1', '1', '20060125000643', '20060125000643'
    BR0200I BR_TRACE: location BrDbConnect-8, SQL command:
    'SELECT TO_NUMBER(VALUE) FROM V$PARAMETER WHERE NAME = 'db_block_size';'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrDbConnect-9, SQL command output:
    '8192'
    BR0200I BR_TRACE: location BrDbConnect-10, SQL command:
    'SELECT BLOCK_SIZE FROM V$ARCHIVED_LOG WHERE ROWNUM = 1;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrDbConnect-11, SQL command output:
    '512'
    BR0249I BR_TRACE: level 1, function BrDbConnect exit with 0
    BR0248I BR_TRACE: level 1, function BrSqlInitiate entry with 'dummy'
    BR0248I BR_TRACE: level 2, function ora_vers_get entry with 'dummy'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'E:\oracle\XE1\920\database\spfileXE1.ora'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with '3584 3584'
    BR0200I BR_TRACE: location ora_vers_get-1, SQL command:
    'SELECT INSTANCE_NAME, INSTANCE_NUMBER, VERSION, HOST_NAME, ARCHIVER, NVL(PARALLEL, ' ') FROM V$INSTANCE WHERE ROWNUM = 1;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location ora_vers_get-2, SQL command output:
    'xe1', '1', '9.2.0.6.0', 'DCBSXIT001B', 'STARTED', 'NO'
    BR0248I BR_TRACE: level 3, function BrInitOraCreate entry with 'void'
    BR0280I BRBACKUP time stamp: 2007-04-17 18.30.45
    BR0200I BR_TRACE: location BrInitOraCreate-2, SQL command:
    'CONNECT / AT PROF_CONN IN SYSOPER MODE;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 0
    BR0200I BR_TRACE: location BrInitOraCreate-3, SQL command:
    'AT PROF_CONN /* BRBACKUP */ CREATE PFILE = 'E:\oracle\XE1\920\database\sap.ora' FROM SPFILE = 'E:\oracle\XE1\920\database\spfileXE1.ora';'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 0
    BR0248I BR_TRACE: level 4, function BrFileStatGet entry with 'E:\oracle\XE1\920\database\sap.ora'
    BR0250I BR_TRACE: level 4, function BrFileStatGet exit with '1300 1300'
    BR0248I BR_TRACE: level 4, function BrInitOraCopy entry with 'E:\oracle\XE1\920\database\sap.ora -> E:\oracle\XE1\920\database\initXE1.ora'
    BR0249I BR_TRACE: level 4, function BrInitOraCopy exit with 0
    BR0477I Oracle pfile E:\oracle\XE1\920\database\initXE1.ora created from spfile E:\oracle\XE1\920\database\spfileXE1.ora
    BR0280I BRBACKUP time stamp: 2007-04-17 18.30.45
    BR0200I BR_TRACE: location BrInitOraCreate-4, SQL command:
    'AT PROF_CONN COMMIT RELEASE;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 0
    BR0249I BR_TRACE: level 3, function BrInitOraCreate exit with 0
    BR0249I BR_TRACE: level 2, function ora_vers_get exit with 92
    BR0248I BR_TRACE: level 2, function BrDbaSynCheck entry with 'W'
    BR0200I BR_TRACE: location BrDbaSynCheck-1, SQL command:
    'SELECT COUNT(*) FROM SAP_SDBAH WHERE BEG = '00000000000000';'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrDbaSynCheck-2, SQL command output:
    '0'
    BR0249I BR_TRACE: level 2, function BrDbaSynCheck exit with 0
    BR0248I BR_TRACE: level 2, function BrCurrRedoGet entry with 'XE1'
    BR0200I BR_TRACE: location BrCurrRedoGet-3, SQL command:
    'SELECT NVL(MAX(SEQUENCE#), 0), NVL(MAX(FIRST_CHANGE#), 0), NVL(TO_NUMBER(TO_CHAR(MAX(FIRST_TIME), 'YYYYMMDDHH24MISS')), 0) FROM V$LOG WHERE THREAD# = 1;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrCurrRedoGet-4, SQL command output:
    '4091', '60791907', '20070417151653'
    BR0249I BR_TRACE: level 2, function BrCurrRedoGet exit with 0
    BR0249I BR_TRACE: level 1, function BrSqlInitiate exit with 0
    BR0248I BR_TRACE: level 1, function BrDbInstProcess entry with 'XE1'
    BR0248I BR_TRACE: level 2, function BrInitOraRead entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.background_dump_dest K:\oracle\XE1\saptrace\background'
    BR0248I BR_TRACE: level 3, function BrOraReplace entry with 'K:\oracle\XE1\saptrace\background'
    BR0250I BR_TRACE: level 3, function BrOraReplace exit with 'void'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.compatible 9.2.0'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.control_file_record_keep_time 30'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.control_files K:\oracle\XE1\origlogA\cntrl\cntrlXE1.dbf'
    BR0248I BR_TRACE: level 3, function BrOraReplace entry with 'K:\oracle\XE1\origlogA\cntrl\cntrlXE1.dbf'
    BR0250I BR_TRACE: level 3, function BrOraReplace exit with 'void'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.core_dump_dest K:\oracle\XE1\saptrace\background'
    BR0248I BR_TRACE: level 3, function BrOraReplace entry with 'K:\oracle\XE1\saptrace\background'
    BR0250I BR_TRACE: level 3, function BrOraReplace exit with 'void'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.db_block_size 8192'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.db_cache_size 257635123'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.db_file_multiblock_read_count 8'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.db_files 254'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.db_name XE1'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.dml_locks 4000'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.enqueue_resources 8000'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.fast_start_mttr_target 900'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.hash_join_enabled false'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.log_archive_dest O:\oracle\XE1\oraarch\XE1arch'
    BR0248I BR_TRACE: level 3, function BrOraReplace entry with 'O:\oracle\XE1\oraarch\XE1arch'
    BR0250I BR_TRACE: level 3, function BrOraReplace exit with 'void'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.log_archive_start true'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.log_buffer 1048576'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.log_checkpoint_interval 0'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.log_checkpoint_timeout 0'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.log_checkpoints_to_alert true'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.open_cursors 800'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.optimizer_features_enable 9.2.0'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.optimizer_index_cost_adj 10'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.optimizer_mode choose'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.pga_aggregate_target 343513497'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.processes 80'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.remote_os_authent true'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.sessions 96'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.sga_max_size 515270246'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.shared_pool_reserved_size 25763512'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.shared_pool_size 257635123'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.sort_area_retained_size 0'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.sort_area_size 2097152'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.statistics_level typical'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.timed_statistics true'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.transaction_auditing FALSE'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.undo_management AUTO'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.undo_retention 43200'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.undo_tablespace PSAPUNDO'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.user_dump_dest K:\oracle\XE1\saptrace\usertrace'
    BR0248I BR_TRACE: level 3, function BrOraReplace entry with 'K:\oracle\XE1\saptrace\usertrace'
    BR0250I BR_TRACE: level 3, function BrOraReplace exit with 'void'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with '*.workarea_size_policy AUTO'
    BR0248I BR_TRACE: level 3, function BrParamGet entry with 'E:\oracle\XE1\920\database\initXE1.ora'
    BR0250I BR_TRACE: level 3, function BrParamGet exit with 'NULL'
    BR0249I BR_TRACE: level 2, function BrInitOraRead exit with 0
    BR0249I BR_TRACE: level 1, function BrDbInstProcess exit with 0
    BR0248I BR_TRACE: level 1, function BrOraDeftGet entry with 'XE1'
    BR0248I BR_TRACE: level 2, function BrArchName entry with '1 XE1'
    BR0248I BR_TRACE: level 3, function BrFileStatGet entry with 'O:\oracle\XE1\oraarch\XE1arch'
    BR0250I BR_TRACE: level 3, function BrFileStatGet exit with 'FILE_NULL'
    BR0250I BR_TRACE: level 2, function BrArchName exit with 'O:\oracle\XE1\oraarch\XE1archARC00001.001'
    BR0248I BR_TRACE: level 2, function BrNameBuild entry with '43 O:\oracle\XE1\oraarch\XE1archARC00001.001 NULL'
    BR0250I BR_TRACE: level 2, function BrNameBuild exit with 'O:\oracle\XE1\oraarch'
    BR0250I BR_TRACE: level 1, function BrOraDeftGet exit with 'void'
    BR0248I BR_TRACE: level 1, function BrLicCheck entry with 'dummy'
    BR0200I BR_TRACE: location BrLicCheck-1, SQL command:
    'SELECT VERSION FROM SAP_SVERS WHERE ROWNUM = 1;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrLicCheck-2, SQL command output:
    '640'
    BR0200I BR_TRACE: location BrLicCheck-3, SQL command:
    'SELECT TABLE_OWNER FROM DBA_SYNONYMS WHERE OWNER = 'PUBLIC' AND SYNONYM_NAME = 'SAP_SDBAH';'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrLicCheck-4, SQL command output:
    'SAPXE1'
    BR0249I BR_TRACE: level 1, function BrLicCheck exit with 0
    BR0248I BR_TRACE: level 1, function BrbDbLogOpen entry with 'bdvbgsin aff 20070417183045'
    BR0200I BR_TRACE: location BrbDbLogOpen-1, SQL command:
    'SELECT TABLE_OWNER FROM DBA_SYNONYMS WHERE OWNER = 'PUBLIC' AND SYNONYM_NAME = 'SAP_SDBAH';'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrbDbLogOpen-2, SQL command output:
    'SAPXE1'
    BR0200I BR_TRACE: location BrbDbLogOpen-3, SQL command:
    'SELECT DATA_LENGTH FROM DBA_TAB_COLUMNS WHERE OWNER = 'SAPXE1' AND TABLE_NAME = 'DBABD' AND COLUMN_NAME = 'REDO_BEG';'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrbDbLogOpen-4, SQL command output:
    '18'
    BR0200I BR_TRACE: location BrbDbLogOpen-5, SQL command:
    'INSERT INTO SAP_SDBAH (BEG, FUNCT, SYSID, OBJ, RC, ENDE, ACTID, LINE) VALUES ('20070417183045', 'aff', 'XE1', ' ', '9999', ' ', 'bdvbgsin', ' ');'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0248I BR_TRACE: level 2, function BrBackIdBuild entry with 'bdvbgsin aff'
    BR0250I BR_TRACE: level 2, function BrBackIdBuild exit with 'bdvbgsin.aff'
    BR0248I BR_TRACE: level 2, function BrNameBuild entry with '1 bdvbgsin.aff K:\oracle\XE1\sapbackup'
    BR0250I BR_TRACE: level 2, function BrNameBuild exit with 'K:\oracle\XE1\sapbackup\bdvbgsin.aff'
    BR0200I BR_TRACE: location BrbDbLogOpen-13, SQL command:
    'INSERT INTO SAP_DBATL (SYS_ID, OPER_ID, TASKNAME, JOB_NR, UPD_OP, TLOGNAME, STATUS, BEGIN_OP, END_OP, RC, INTERNAL) VALUES ('XE1', '20070417183045', 'Database backup', '0000000000', '20070417183045', 'K:\oracle\XE1\sapbackup\bdvbgsin.aff', 'STARTED'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0248I BR_TRACE: level 2, function BrBackIdBuild entry with 'bdvbgsin aff'
    BR0250I BR_TRACE: level 2, function BrBackIdBuild exit with 'bdvbgsin.aff'
    BR0248I BR_TRACE: level 2, function BrNameBuild entry with '1 bdvbgsin.aff K:\oracle\XE1\sapbackup'
    BR0250I BR_TRACE: level 2, function BrNameBuild exit with 'K:\oracle\XE1\sapbackup\bdvbgsin.aff'
    BR0200I BR_TRACE: location BrbDbLogOpen-14, SQL command:
    'INSERT INTO SAP_DBAML (SYS_ID, OPER_ID, TASKNAME, JOB_NR, TRIAL, UTIL_NR, FUNC_ID, UPD_OP, TOOLSET, PROGNAME, LOG_NAME, STATUS, BEGIN_OP, END_OP, RC, INTERNAL) VALUES ('XE1', '20070417183045', 'Database backup', '0000000000', '1', '0000000000', 'aff
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrbDbLogOpen-17, SQL command:
    'INSERT INTO SAP_DBABARL (SYS_ID, OPER_ID, TASKNAME, JOB_NR, TRIAL, UTIL_NR, FUNC_ID, UPD_OP, OBJ_TYPE, BU_TYPE, BU_METHOD) VALUES ('XE1', '20070417183045', 'Database backup', '0000000000', '1', '0000000000', 'aff', '20070417183045', 'DATABASE', 'OFF
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0249I BR_TRACE: level 1, function BrbDbLogOpen exit with 0
    BR0248I BR_TRACE: level 1, function BrLogList entry with 'XE1'
    BR0200I BR_TRACE: location BrLogList-3, SQL command:
    'SELECT LOG_MODE FROM V$DATABASE WHERE ROWNUM = 1;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrLogList-4, SQL command output:
    'ARCHIVELOG'
    BR0200I BR_TRACE: location BrLogList-5, SQL command:
    'SELECT NVL(VALUE, 'NULL') FROM V$PARAMETER WHERE NAME = 'log_archive_dest_1';'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrLogList-6, SQL command output:
    'NULL'
    BR0200I BR_TRACE: location BrLogList-7, SQL command:
    'SELECT NVL(VALUE, 'NULL') FROM V$PARAMETER WHERE NAME = 'log_archive_dest';'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrLogList-8, SQL command output:
    'O:\oracle\XE1\oraarch\XE1arch'
    BR0200I BR_TRACE: location BrLogList-9, SQL command:
    'SELECT NVL(VALUE, 'NULL') FROM V$PARAMETER WHERE NAME = 'log_archive_format';'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrLogList-10, SQL command output:
    'ARC%S.%T'
    BR0200I BR_TRACE: location BrLogList-11, SQL command:
    'SELECT NVL(MAX(SEQUENCE#), 0), NVL(MAX(FIRST_CHANGE#), 0) FROM V$LOG WHERE THREAD# = 1;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrLogList-12, SQL command output:
    '4091', '60791907'
    BR0200I BR_TRACE: location BrLogList-13, SQL command:
    'SELECT NVL(MAX(SEQUENCE#), 0) FROM V$LOG WHERE THREAD# = 1 AND ARCHIVED = 'NO';'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrLogList-14, SQL command output:
    '4091'
    BR0200I BR_TRACE: location BrLogList-15, SQL command:
    'SELECT NVL(MIN(SEQUENCE#), 0) FROM V$LOG WHERE THREAD# = 1;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrLogList-16, SQL command output:
    '4088'
    BR0249I BR_TRACE: level 1, function BrLogList exit with 4091
    BR0248I BR_TRACE: level 1, function BrDbfInfoGet entry with 'dummy'
    BR0200I BR_TRACE: location BrDbfInfoGet-1, SQL command:
    'OPEN CURSOR curs_2 FOR
    SELECT TS.TABLESPACE_NAME, TS.STATUS, TS.CONTENTS, TS.EXTENT_MANAGEMENT, DF.FILE_NAME, DF.FILE_ID, NVL(DF.STATUS, ' '), NVL(DF.BYTES, 0), NVL(DF.AUTOEXTENSIBLE, 'NO'), NVL(DF.MAXBYTES, 0), NVL(DF.INCREMENT_BY, 0) FROM DBA_TABLESPACES TS, DBA_DATA_FIL
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 0
    BR0200I BR_TRACE: location BrDbfInfoGet-2, SQL command:
    'FETCH curs_2;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 1
    BR0200I BR_TRACE: location BrDbfInfoGet-3, SQL command output:
    'PSAPTEMP', 'ONLINE', 'TEMPORARY', 'LOCAL', 'N:\ORACLE\XE1\SAPDATA3\TEMP_1\TEMP.DATA1', '-1', 'AVAILABLE', '629145600', 'YES', '4194304000', '2560'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'N:\ORACLE\XE1\SAPDATA3\TEMP_1\TEMP.DATA1'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '629153792 629153792'
    BR0248I BR_TRACE: level 2, function BrDiskInsert entry with 'N:\ORACLE\XE1\SAPDATA3\TEMP_1\TEMP.DATA1'
    BR0248I BR_TRACE: level 3, function BrDiskStatGet entry with 'N:\ORACLE\XE1\SAPDATA3\TEMP_1\TEMP.DATA1'
    BR0250I BR_TRACE: level 3, function BrDiskStatGet exit with '63992492032 8746655744 8746655744 8738114088'
    BR0248I BR_TRACE: level 3, function BrNameBuild entry with '46 N:\ORACLE\XE1\SAPDATA3\TEMP_1 NULL'
    BR0250I BR_TRACE: level 3, function BrNameBuild exit with 'N:\ORACLE\XE1\SAPDATA3'
    BR0250I BR_TRACE: level 2, function BrDiskInsert exit with 00217958
    BR0248I BR_TRACE: level 2, function BrNameBuild entry with '43 N:\ORACLE\XE1\SAPDATA3\TEMP_1\TEMP.DATA1 NULL'
    BR0250I BR_TRACE: level 2, function BrNameBuild exit with 'N:\ORACLE\XE1\SAPDATA3\TEMP_1'
    BR0248I BR_TRACE: level 2, function BrLinkGet entry with 'N:\ORACLE\XE1\SAPDATA3\TEMP_1'
    BR0250I BR_TRACE: level 2, function BrLinkGet exit with FFFFFFFF
    BR0248I BR_TRACE: level 2, function BrNameBuild entry with '43 N:\ORACLE\XE1\SAPDATA3\TEMP_1\TEMP.DATA1 NULL'
    BR0250I BR_TRACE: level 2, function BrNameBuild exit with 'N:\ORACLE\XE1\SAPDATA3\TEMP_1'
    BR0248I BR_TRACE: level 2, function BrLinkGet entry with 'N:\ORACLE\XE1\SAPDATA3\TEMP_1'
    BR0250I BR_TRACE: level 2, function BrLinkGet exit with FFFFFFFF
    BR0200I BR_TRACE: location BrDbfInfoGet-9, SQL command:
    'FETCH curs_2;'
    BR0300I BR_TRACE: SQL code: 0, number of processed rows: 2
    BR0200I BR_TRACE: location BrDbfInfoGet-3, SQL command output:
    'PSAPUNDO', 'ONLINE', 'UNDO', 'LOCAL', 'M:\ORACLE\XE1\SAPDATA2\UNDO_1\UNDO.DATA1', '2', 'AVAILABLE', '2852126720', 'YES', '10485760000', '2560'
    BR0248I BR_TRACE: level 2, function BrFileStatGet entry with 'M:\ORACLE\XE1\SAPDATA2\UNDO_1\UNDO.DATA1'
    BR0250I BR_TRACE: level 2, function BrFileStatGet exit with '2852134912 2852134912'
    BR0248I BR_TRACE: level 2, function BrDiskInsert entry with 'M:\ORACLE\XE1\SAPDATA2\UNDO_1\UNDO.DATA1'
    BR0248I BR_TRACE: level 3, function BrDiskStatGet entry with 'M:\ORACLE\XE1\SAPDATA2\UNDO_1\UNDO.DATA1'
    BR0250I BR_TRACE: level 3, function BrDiskStatGet exit with '63992492032 48279314432 48279314432 48232166664'
    BR0248I BR_TRACE: level 3, function BrNameBuild entry with '46 M:\ORACLE\XE1\SAPDATA2\UNDO_1 NULL'
    BR0250I BR_TRACE: level 3, function BrNameBuild exit with 'M:\ORACLE\XE1\SAPDATA2'
    BR0250I BR_TRACE: level 2, function BrDiskInsert exit with 0021A168
    BR0248I BR_TRACE: level 2, function BrNameBuild entry with '43 M:\ORACLE\XE1\SAPDATA2\UNDO_1\UNDO.DATA1 NULL'
    BR0250I BR_TRACE: level 2, function BrNameBuild exit with 'M:\ORACLE\XE1\SAPDATA2\UNDO_1'
    BR0248I BR_TRACE

    Hi Peter,
    Thanks for the valuable input.
    We have already implemented note 378648 i.e these all parameters are already there under sidadm user in DB node.
    BR_OFS=1
    BR_OFS_RESOURCE=< database_resource_name>
    BR_OFS_CLUSTER=< cluster_name>
    BR_OFS_USER=<user_name>
    BR_OFS_DOMAIN=<domain>
    BR_OFS_PWD=<password>
    registry HKEY_LOCAL_MACHINE/Software/Oracle/HomeX ORA_<SID>_AUTOSTART is having value false.
    Please guide what could be the other possible reason?
    Regards
    Praveen

Maybe you are looking for