Domain creation : UI mode is not coming up.

"Unable to instantiate GUI, defaulting to console mode"
i am using ubantu 13, while running the config.shI am getting this erro and  UI is not coming up. creating a domain using the command line is a painful exercise.
i have checked some of the posts but no help.
Thanks
Vipin

Hi,You can use xwindow, exceed or such kind of programmes for it. Before executing config.sh, open xwindow or exceed programme, run this command (export DISPLAY=your_laptop_or_dekstop_ip:0.0) for example: export DISPLAY=10.16.35.29:0.0 (10.16.35.29 is your pc ip, not your server ip)
Then execute config.sh.

Similar Messages

  • IPhone is not coming up after 4.0.2

    After upgrading to 4.0.2. my iPhone is not coming up. It is showing icon to connect to iTunes. I connected with iTunes and click on restore. Now iPhone is recovery mode but not coming up.
    After disconnect and reconnect with iTunes, Now iTunes is not reconizing iPhone 3GS. I tried iTouch with same USB port, iTouch is working fine but iPhone is not being reconized.
    Suggest how to restore iPhone ????

    This happened to mine after going to 4.0.1. I was able to restore it to factory on another PC and then go back to my original PC and restore from a back up and get it back up and running.

  • Creation of Weblogic Domain in console mode not working

    Hi All,
    I've installed the Middleware home with ADF Runtime installer (Installer was 12.1.2.0.0). Now, I'm trying to create and configure a domain based on the JRF Template.  I'm executing the following command from Putty
    Step1. Navigate to MW_HOME/wlserver/common/bin
    Step2. execute "./config.sh -mode=console"
    Its throwing the following error :
    2014-07-21 17:03:41,643 WARNING [WizardController] com.oracle.cie.wizard.internal.engine.WizardControllerEngine - Duplicate action cause encountered: java.awt.HeadlessException:
    No X11 DISPLAY variable was set, but this program performed an operation which requires it.
    2014-07-21 17:03:41,643 SEVERE [WizardController] com.oracle.cie.wizard.internal.engine.WizardControllerEngine - Wizard error cause
    java.awt.HeadlessException:
    No X11 DISPLAY variable was set, but this program performed an operation which requires it.
      at java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:207)
    at java.awt.Frame.<init>(Frame.java:420)
      at java.awt.Frame.<init>(Frame.java:385)
      at javax.swing.SwingUtilities$SharedOwnerFrame.<init>(SwingUtilities.java:1757)
      at javax.swing.SwingUtilities.getSharedOwnerFrame(SwingUtilities.java:1832)
      at javax.swing.JOptionPane.getRootFrame(JOptionPane.java:1697)
      at javax.swing.JOptionPane.showOptionDialog(JOptionPane.java:863)
      at javax.swing.JOptionPane.showConfirmDialog(JOptionPane.java:796)
      at javax.swing.JOptionPane.showConfirmDialog(JOptionPane.java:758)
      at com.oracle.cie.wizard.internal.cont.GUIContext.handleFatalErrorMessage(GUIContext.java:1141)
      at com.oracle.cie.wizard.internal.cont.GUITaskContainer$MethodRunner.run(GUITaskContainer.java:188)
      at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:302)
      at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:733)
      at java.awt.EventQueue.access$200(EventQueue.java:103)
      at java.awt.EventQueue$3.run(EventQueue.java:694)
      at java.awt.EventQueue$3.run(EventQueue.java:692)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
      at java.awt.EventQueue.dispatchEvent(EventQueue.java:703)
      at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
      at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
      at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
      at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)
    2014-07-21 17:03:41,643 WARNING [WizardController] com.oracle.cie.wizard.internal.engine.WizardControllerEngine - Given state 'ERROR' does not follow current 'ERROR'
    This vaguely means that its trying to open a GUI wizard, which is not what I intended to do. The argument -mode=console should run the installer in console mode, but its trying to launch it in GUI mode.
    I searched online, but I have not found anything useful on this issue yet.
    Am I missing something?  Has anyone faced this problem before.
    Any thoughts on this would be helpful  !!
    Thanks,
    Shiva Shankar B N

    Weblogic 12C (12.1.2 to be precise), currently does not support console mode Domain creation. It supports only GUI mode and Silent mode.
    Possible solution to create a 12.1.2  Weblogic domain fully qualified enough to deploy ADF Applications :
    1. Install Xming, and enable X11 forwarding on Putty
    2. Silent Mode installation: The Configuration wizard. ./config.sh -mode=silent  -silent_script=xyz . Yes, it needs a silent script, not silent.xml. I did not try this way and instead resorted to WLST.  Still there are not enough blogs that clearly tell you how to install domain based on JRF template. I stumbled upon a similar OTN forum post.
    Here is the bunch of WLST commands if anyone is interested
    #======================================================================================= 
    # Open a domain template. 
    #======================================================================================= 
    readTemplate("/u01/app/mw/Oracle_Home/wlserver/common/templates/wls/wls.jar") 
    #======================================================================================= 
    # Update the domain to enable the WebLogic Server domain with JRF and EM. 
    #======================================================================================= 
    addTemplate('/u01/app/mw/Oracle_Home/oracle_common/common/templates/wls/oracle.jrf_template_12.1.2.jar') 
    addTemplate('/u01/app/mw/Oracle_Home/em/common/templates/wls/oracle.em_wls_template_12.1.2.jar') 
    #======================================================================================= 
    # Configure the Administration Server and SSL port. 
    # To enable access by both local and remote processes, you should not set the 
    # listen address for the server instance (that is, it should be left blank or not set). 
    # In this case, the server instance will determine the address of the machine and 
    # listen on it. 
    #======================================================================================= 
    cd('Servers/AdminServer') 
    set('ListenAddress','') 
    set('ListenPort', 7001) 
    create('AdminServer','SSL') 
    cd('SSL/AdminServer') 
    set('Enabled', 'True') 
    set('ListenPort', 7002) 
    #======================================================================================= 
    # Define the user password for weblogic. 
    #======================================================================================= 
    cd('/') 
    cd('Security/base_domain/User/weblogic') 
    # Please set password here before using this script, e.g. cmo.setPassword('value') 
    cmo.setPassword('password') 
    # Create and configure a JDBC Data Source, and sets the JDBC user.   Provide the Schema Credentials of the Service table
    # Get RCU Configuration using RCU service table (STB) schema credentials 
    cd('/') 
    cd('JDBCSystemResource/LocalSvcTblDataSource/JdbcResource/LocalSvcTblDataSource') 
    cd('JDBCDriverParams/NO_NAME_0') 
    set('DriverName','oracle.jdbc.OracleDriver') 
    set('URL','jdbc:oracle:thin:@XX.XX.XX.XX:1521/xe.yourdomain.com') 
    set('PasswordEncrypted', 'schemaPassword') 
    set('UseXADataSourceInterface', 'false') 
    cd('Properties/NO_NAME_0') 
    cd('Property/user') 
    cmo.setValue('DEV_STB') 
    getDatabaseDefaults() 
    #======================================================================================= 
    # Write the domain and close the domain template. 
    #======================================================================================= 
    setOption('OverwriteDomain', 'true') 
    writeDomain('/u01/data/user_projects/domains/your_domain') 
    closeTemplate() 
    #======================================================================================= 
    # Exit WLST. 
    #======================================================================================= 
    exit() 
    Hoping to write a blog post soon..
    Thanks,
    Shiva Shankar B N

  • IO assigned with Asset,but not coming at the time of PO creation

    Hello
    IO assigned with Asset,but not coming at the time of PO creation.
    I have made following settings:
    1     Depreciation - IFRS (INR)              1     0L
    15     Income Tax Act                             0
    20     Depreciation - Indian GAAP (INR)     3     1L
    30     Depreciation - IFRS (USD)              0
    31     Depreciation - Indian GAAP (USD)       0
    In ACSET-Account assignment:
    for dep area-20
    CAUFN     Internal Order     *     Generic Trans. Type     02 Depreciation Run
    KOSTL     Cost Center     *     Generic Trans. Type     02 Depreciation Run
    so currently i am using only dep area-20 only(Indian GAAP)
    CAPEX budgeting is through IO. AUC is not doing through IO,its directly from AIAB/AIBU
    AS01
    KO01
    AS02
    KO22
    KO30
    so what is the problem,why i am not getting IO (which is in display mode in PO) when assigned the Asset with category of "A" (asset) in PO.......when i assigned Asset- the GL account come automatically but IO didn't come.
    kind regards

    Hey Ajay
    thanks for your reply.....
    now i'm getting new error:
    Parallel depreciation area 31 is not posted
         Message no. AA565
    Diagnosis
         The asset to be posted does not manage parallel depreciation area 31, or
         transaction type  that you are using is limited to certain depreciation
         areas, and does not contain depreciation area 31. This is incorrect.
    System Response
         Posting is rejected.
    Procedure
         Check the asset and the transaction type.
    I have checked some configuration but not able to debug it.
    regards

  • Few line items are not coming at the time of creation of delivery

    Dear Experts,
    When the user creating the delivery few line items are not picking in the delivery document
    the following checks i verified,
    Stock is available
    shpping condition is differ from sold to party and sales document
    Plants are same for all the line items
    why the few line items are not coming in the delivery document creation,
    please help me to sort out this issue
    Thanks and Best Regards,
    Muralidharan S

    Hi,
    Check below points.
    Point 1:
    When you create a delivery document, you create it for a Shipping Point.
    So whatever the line that came in to one delivery has determined same shipping point that you entered in VL01N screen.
    Others got a different shipping point and that's why it didn't come to the same delivery document.
    Shipping point determined based on below criteria
    - Shipping Condition - From customer master
    - Loading Group - Material
    - Plant  - Delivery Plant of the sales order line item
    You assign a proffered shipping point for above combination in configuration.
    If that combination is not find, those line items are not going in to the delivery.
    You can check the log of the delivery document for more information as well.
    Point 2:
    Check the line item Requested delivery date and the "Selection Date" you entered in the VL01N screen.
    Al  Requested delivery dates has to be on or before the  "Selection Date" you entered in the VL01N screen.
    Those line items which has a date more than that will dropped in the delivery.
    Best regards,
    Anupa

  • I have tried to update IOS 5.1 in my Iphone 4 and unfortunately I got an error message and phone is stucked at restore point. It is not coming back to normal mode and is not able to detect my phone in iTunes. Please help me how to recover my Iphone IOS

    I have tried to update IOS 5.1 in my Iphone 4 and unfortunately I got an error message and phone is stucked at restore point. It is not coming back to normal mode and is not able to detect my phone in iTunes. Please help me how to recover my Iphone IOS, unfortunately I don't have my iphone backup too.

    we have a same problem

  • IMessages not coming to iPhone while in airplane mode

    iMessages not coming to iPhone while in airplane mode, but arrive well on iMac !
    Is there something I can do ?

    Yes, I know that, but when receiving a SMS, even if the iPhone is turned off or in airplane mode, the message is not completely lost, it will arrive as soon as the iPhone is turned back on ...

  • Not coming to change mode

    hi all,
          in that IDOC extension program(customer) user exit for extension it is not coming to change mode in my IDES version.It shows the warning message 'This include program is for user_exit only'.
    Rgs,
    Venkat.

    Once after you get the warning message then click on ENTER key and proceed to create that include and write your logic.
    It will accept.
    Thanks,
    Srinivas

  • 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

  • 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

  • Excise not coming in Display J1IIN

    D Friends,
    The issue is as follows:
    Plant A to Plant B (Same Co. Code). It is a Deemed Export scenario. In SD pricing proced the Excise cond type (JEXP) is maintained as Statistical.
    While creating Excise Invoice w.r.t. Commercial Invoice Excise duty comes in BED field. In Export Invoice type I'm selecting Deemed option.
    But when I display the Excise Invoice the Excise duty does not come. It is Zero, as shown in the screen shot. In this case pric procd is ZIT02.
    However if the scenario is Deemed Export from Plant A to Plant C (different Co. code) Excise invoice is coming in Display mode and therefore it is coming in ARE 3 also. In this case pricing proced is ZIT01, but Excise Cond type is same.
    Both the pricing procd are maintained in IMG--> CIN--> Classify Condition type.
    I've searched the forum, but could not find solution. Hence pl let me know what I'm missing. I've configured a new scenario from Plant A to Plant B. TAXINN is used here. Plant A to Plant C was already running successfully. Pl help.
    Thank you very much folks.

    Lakshmi,
    From next time I will post CIN issues in Internationalization and Unicode.
    Now coming to the issue. I've already mentioned in the last line that TAXINN is configured. I've mentioned two scenarions:
    1. From Plant A to Plant B and
    2. From Plant A to Plant C.
    Excise Cond type is same in both the scenarios which is JEXP.
    Pri Procedures are different.
    In scenario 2 Excise condition is perfectly coming in J1IIN but in Scenario 2 Excise condition comes during creation but vanishes in Display mode of J1IIN. So if it is coming in Scenario 1, then I think it ensures that its FV11 must have been maintained. I can not see due to missing authorization. Pl suggest why Excise condition is not coming in J1IIN in scenario 2.
    Thank you.

  • OEM not coming to browser

    oracle : 10.2.0.4
    OS: x86_64 x86_64 x86_64 GNU/Linux
    Problem : OEM not coming to browser
    Products on the db
    SQL> select COMP_ID, version from dba_registry;
    COMP_ID VERSION
    EM 10.2.0.4.0
    SDO 10.2.0.4.0
    ORDIM 10.2.0.4.0
    AMD 10.2.0.4.0
    XDB 10.2.0.4.0
    CONTEXT 10.2.0.4.0
    EXF 10.2.0.4.0
    RUL 10.2.0.4.0
    OWM 10.2.0.4.3
    ODM 10.2.0.4.0
    CATALOG 10.2.0.4.0
    COMP_ID VERSION
    CATPROC 10.2.0.4.0
    JAVAVM 10.2.0.4.0
    XML 10.2.0.4.0
    CATJAVA 10.2.0.4.0
    APS 10.2.0.4.0
    XOQ 10.2.0.4.0
    17 rows selected.
    OEM created Manually :
    -bash-3.00$ emca -config dbcontrol db -repos create
    STARTED EMCA at Feb 25, 2009 8:21:05 PM
    EM Configuration Assistant, Version 10.2.0.1.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: JABILDEV
    Listener port number: 1523
    Password for SYS user:
    Password for DBSNMP user: BSNMP
    Password for SYSMAN user:
    Email address for notifications (optional): [email protected]
    Outgoing Mail (SMTP) server for notifications (optional):
    You have specified the following settings
    Database ORACLE_HOME ................ /u01/app/oracle/oracle/product/10.2.0/db_1
    Database hostname ................ sns-dev-oracle.corp.clickcommerce.com
    Listener port number ................ 1523
    Database SID ................ JABILDEV
    Email address for notifications ............... [email protected]
    Outgoing Mail (SMTP) server for notifications ...............
    Do you wish to continue? [yes(Y)/no(N)]: Y
    Feb 25, 2009 8:21:51 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /u01/app/oracle/oracle/product/10.2.0/db_1/cfgtoollogs/emca/JABILDEV/emca_2009-02-25_08-21-05-PM.log.
    Feb 25, 2009 8:21:52 PM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Feb 25, 2009 8:24:03 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    Feb 25, 2009 8:24:06 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
    INFO: Securing Database Control (this may take a while) ...
    Feb 25, 2009 8:24:10 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl config emkey -repos
    Feb 25, 2009 8:24:10 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
    WARNING: Configuring EM-Key failed.
    Feb 25, 2009 8:24:10 PM oracle.sysman.emcp.EMDBPostConfig performConfiguration
    WARNING: Error securing Database control.
    Feb 25, 2009 8:24:10 PM oracle.sysman.emcp.EMDBPostConfig setWarnMsg
    INFO: Error securing Database Control, Database Control has been brought up in non-secure mode. To secure the Database Control execute the following command(s):
    1) Set the environment variable ORACLE_SID to JABILDEV
    2) /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl stop dbconsole
    3) /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl config emkey -repos -sysman_pwd < Password for SYSMAN user >
    4) /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl secure dbconsole -sysman_pwd < Password for SYSMAN user >
    5) /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl start dbconsole
    To secure Em Key, run /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl config emkey -remove_from_repos -sysman_pwd < Password for SYSMAN user >
    Feb 25, 2009 8:24:10 PM oracle.sysman.emcp.util.DBControlUtil startOMS
    INFO: Starting Database Control (this may take a while) ...
    To secure Em Key, run /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl config emkey -remove_from_repos -sysman_pwd < Password for SYSMAN user >
    Feb 25, 2009 8:24:10 PM oracle.sysman.emcp.util.DBControlUtil startOMS
    INFO: Starting Database Control (this may take a while) ...
    Feb 25, 2009 8:25:48 PM oracle.sysman.emcp.EMDBPostConfig performConfiguration
    INFO: Database Control started successfully
    Feb 25, 2009 8:25:48 PM oracle.sysman.emcp.EMDBPostConfig performConfiguration
    INFO: >>>>>>>>>>> The Database Control URL is http://sns-dev-oracle.corp.clickcommerce.com:1158/em <<<<<<<<<<<
    Error securing Database Control, Database Control has been brought up in non-secure mode. To secure the Database Control execute the following command(s):
    1) Set the environment variable ORACLE_SID to JABILDEV
    2) /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl stop dbconsole
    3) /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl config emkey -repos -sysman_pwd < Password for SYSMAN user >
    4) /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl secure dbconsole -sysman_pwd < Password for SYSMAN user >
    5) /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl start dbconsole
    To secure Em Key, run /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl config emkey -remove_from_repos -sysman_pwd < Password for SYSMAN user >
    -bash-3.00$ /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl stop dbconsole
    TZ set to US/Central
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    http://sns-dev-oracle.corp.clickcommerce.com:1158/em/console/aboutApplication
    Stopping Oracle Enterprise Manager 10g Database Control ...
    ... Stopped.
    -bash-3.00$ /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl config emkey -repos -sysman_pwd orasys08
    TZ set to US/Central
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Invalid Password
    caught Exception java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    -bash-3.00$ /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl secure dbconsole -sysman_pwd orasys08
    TZ set to US/Central
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    http://sns-dev-oracle.corp.clickcommerce.com:1158/em/console/aboutApplication
    DBCONSOLE already stopped... Done.
    Agent is already stopped... Done.
    Securing dbconsole... Started.
    Checking Repository...ERROR. Unable to contact the OMS Repository.
    -bash-3.00$ /u01/app/oracle/oracle/product/10.2.0/db_1/bin/emctl start dbconsole
    TZ set to US/Central
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    http://sns-dev-oracle.corp.clickcommerce.com:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 10g Database Control ........................... started.
    Logs are generated in directory /u01/app/oracle/oracle/product/10.2.0/db_1/sns-dev-oracle.corp.clickcommerce.com_JABILDEV/sysman/log
    Why the OEM not coming to browser ?
    What are the checks to be done ? and what are the logs to check ?

    Thanks for reply
    http://sns-dev-oracle.corp.clickcommerce.com:1158/em
    still I am not able to access the lick from the browser
    I did drop and create repos succesfully again
    -bash-3.00$ emca -config dbcontrol db -repos create
    STARTED EMCA at Feb 26, 2009 7:24:25 PM
    EM Configuration Assistant, Version 10.2.0.1.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: JABILDEV
    Listener port number: 1523
    Password for SYS user:
    Password for DBSNMP user: BSNMP
    Password for SYSMAN user:
    Email address for notifications (optional):
    Outgoing Mail (SMTP) server for notifications (optional):
    You have specified the following settings
    Database ORACLE_HOME ................ /u01/app/oracle/oracle/product/10.2.0/db_1
    Database hostname ................ sns-dev-oracle.corp.clickcommerce.com
    Listener port number ................ 1523
    Database SID ................ JABILDEV
    Email address for notifications ...............
    Outgoing Mail (SMTP) server for notifications ...............
    Do you wish to continue? [yes(Y)/no(N)]: Y
    Feb 26, 2009 7:25:15 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /u01/app/oracle/oracle/product/10.2.0/db_1/cfgtoollogs/emca/JABILDEV/emca_2009-02-26_07-24-25-PM.log.
    Feb 26, 2009 7:25:16 PM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Feb 26, 2009 7:27:24 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    Feb 26, 2009 7:27:27 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
    INFO: Securing Database Control (this may take a while) ...
    Feb 26, 2009 7:27:49 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
    INFO: Database Control secured successfully.
    Feb 26, 2009 7:27:49 PM oracle.sysman.emcp.util.DBControlUtil startOMS
    INFO: Starting Database Control (this may take a while) ...
    Feb 26, 2009 7:29:27 PM oracle.sysman.emcp.EMDBPostConfig performConfiguration
    INFO: Database Control started successfully
    Feb 26, 2009 7:29:27 PM oracle.sysman.emcp.EMDBPostConfig performConfiguration
    INFO: >>>>>>>>>>> The Database Control URL is https://sns-dev-oracle.corp.clickcommerce.com:1158/em <<<<<<<<<<<
    Enterprise Manager configuration completed successfully
    FINISHED EMCA at Feb 26, 2009 7:29:27 PM
    Still I am not able to access the control from teh browser
    I checked the log
    -bash-3.00$ cat emoms.log
    2009-02-26 19:28:00,493 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ias.ias.IASIntegration
    2009-02-26 19:28:00,800 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.eml.target.slb.common.SLBIntegration
    2009-02-26 19:28:00,901 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.eml.ssl.intg.SSLIntegration
    2009-02-26 19:28:01,019 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.tip.oem.central.domain.ProcessConnectDomainIntg
    2009-02-26 19:28:01,021 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.tip.oem.central.instance.ProcessConnectInstanceIntg
    2009-02-26 19:28:01,023 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.webdb.admin.em.PortalIntegration
    2009-02-26 19:28:01,025 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.webdb.admin.em.SSOIntegration
    2009-02-26 19:28:01,027 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.reports.em.RepIntg
    2009-02-26 19:28:01,029 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsEmailIntegration
    2009-02-26 19:28:01,032 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsOidIntegration
    2009-02-26 19:28:01,034 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsOvfIntegration
    2009-02-26 19:28:01,036 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsWebconfIntegration
    2009-02-26 19:28:01,038 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsWirelessIntg
    2009-02-26 19:28:01,040 [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sysman.ocs.mntr.target.OcsCalGrpIntegration
    2009-02-26 19:29:31,840 [OmsServiceDriver thread] ERROR emdrep.pingHBRecorder updateEMDListHeartBeat.506 - Number of HB error responses received = 1
    2009-02-26 19:29:31,885 [OmsServiceDriver thread] ERROR emdrep.pingHBRecorder updateEMDListHeartBeat.515 - ERROR 0 EMD_URL = https://sns-dev-oracle.corp.clickcommerce.com:3938/emd/main CODE = 0 MSG = ORA-01403: no data found
    Any clue how to resolve this ?
    Thanks

  • Schedule lines are not coming for HALB after MRP run

    Dear All,
    I am not getting schedule line after mrp run, inspite of all required setting only purchase requisitions are coming.
    Material type is HALB and involve a subcontracting process (30). For raw material I am getting the schedule line but in the case of HALB, it is not coming.
    Pls let me know if I am missing something and guide me further on this.
    Thanks & Regards
    Kundan Kumar

    Hi,
    In transaction OMDT you have to enable the indicator create schedule lines
    In MD02 MRP control Prameter here select the Delivery schedules -3- Schedule line. Processing Key as NETCH and Planning Mode - 3 delted and recreated.
    Maintain source list ME01, in that put MRP indicator as '2' i.e. schedule lines via MRP.Put your agreement no in that.
    If u run MRP properly u will get schedule lines automatically in ME38.
    Make the schedule agreement, make it source relevent in the source list make is FIX and MRP indicator as 3.

  • 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

Maybe you are looking for

  • Some pages are very very slow opening or won't open in Safari 4.04

    I have browsed thru the other posts and would try the DNS trick mentioned but there is no advanced tab when I open the System Network Preferences - I use Airport - or I'm not clear how to reset those numbers. My cache is cleaned out, I have reset Saf

  • Item does not display in correct position with TileLayout

    Please take a look at below coding. If I choose Frank and click button “age<5", the damn Frank stays still rather than the first column. What else should I do after refreshing the data list? Best Regards, <?xml version="1.0" encoding="utf-8"?> <s:Vie

  • My phone will not turn on. Why is it doing this?

    Why isn't my phone working?

  • PC will not automatically repair itself

    When I turn on my PC, it goes to a screen that says it cannot repair itself. I am no longer under warranty and the person I talked to said I needed to ask for troubleshooting help.

  • Netsh cmd not working

    Hello, Am running a Netsh cmd on windows server 2008 r2 64 i use the elevated cmd prompt and power shell as well. C:\Windows>netsh trace start scenario=netconnection capture=yes maxsize=512mb tracefile=c:\ping.etl but error : The following command wa