System Name is not coming

Hi,
I have created a new technical system in SLD. Now while I am creating a JCO connection for Metadata System Name is not coming.
Message Server   : New technical System name is coming here
System Name      : Its coming blank(It should have SID value)
Logon Group      : Blank
Regards,
Prakash Jha

Hi,
  please Configure the SLD Data Supplier in Visual Administrator.
Refer http://help.sap.com/saphelp_nw04/helpdata/en/ea/cd2e807e0e45bf9da67354f452fc05/content.htm
Hope that helps.
Regards,
S.Divakar

Similar Messages

  • In excel sheet tab name is not coming-urgent

    hi all,
    one small rewquirement. if u run this test program it opens a excel sheet which contains signle tab. here tab name is not coming. i dont no hot to display tabname here.anybody can  make the changes and send me the code.
    i am sending my code below.
    thanks,
    maheedhar.t
    REPORT  ytestvij MESSAGE-ID zv.
    TABLES sscrfields.
    TYPE-POOLS: icon.
    TYPES : BEGIN OF zfnames_ds,
            reptext TYPE reptext,
            END OF zfnames_ds.
    TYPE-POOLS ole2 .
    DATA: wa_fntxt TYPE smp_dyntxt.
    DATA : wa_t75_booking TYPE zvt75_booking_h,
            t_t75_booking TYPE STANDARD TABLE OF zvt75_booking_h.
    DATA : wa_fields TYPE dfies,
            t_fields TYPE STANDARD TABLE OF dfies.
    DATA : wa_fnames TYPE zfnames_ds,
            t_fnames TYPE STANDARD TABLE OF zfnames_ds.
    handles for OLE objects
    DATA: h_excel TYPE ole2_object,        " Excel object
          h_mapl TYPE ole2_object,         " list of workbooks
          h_map TYPE ole2_object,          " workbook
          h_zl TYPE ole2_object,           " cell
          h_f TYPE ole2_object.            " font
    DATA  h TYPE i.
    DATA : lin TYPE i.
    data: excel       type ole2_object,
          application type ole2_object,
          books       type ole2_object,
          book        type ole2_object,
          sheet       type ole2_object,
          cell        type ole2_object,
          column      type ole2_object.
    PARAMETERS : p_input TYPE localfile.
    Add button to application toolbar
    SELECTION-SCREEN FUNCTION KEY 1.  "Will have a function code of 'FC01'
    INITIALIZATION.
    Add displayed text string to buttons
      wa_fntxt-icon_id = icon_xls.
      wa_fntxt-icon_text = 'Input File template'.
      wa_fntxt-quickinfo = 'T75 Header Data'.
      sscrfields-functxt_01 = wa_fntxt.
    AT SELECTION-SCREEN.
      IF sscrfields-ucomm = 'FC01'.
    do nothing
        PERFORM open_excel.
      ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_input.
      PERFORM get_filename USING p_input.
    START-OF-SELECTION.
    *set pf-status 'ONE'.
    END-OF-SELECTION.
      WRITE : lin.
    *&      Form  GET_FILENAME
          text
    -->  p1        text
    <--  p2        text
    FORM get_filename USING p_file TYPE rlgrap-filename . "localfile.
      DATA : w_rc TYPE i.
      DATA : wa_file_table TYPE file_table ,
              t_file_table TYPE STANDARD TABLE OF file_table.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
       EXPORTING
         WINDOW_TITLE            =
         DEFAULT_EXTENSION       =
         DEFAULT_FILENAME        =
         FILE_FILTER             =
         INITIAL_DIRECTORY       =
         MULTISELECTION          =
        CHANGING
          file_table              = t_file_table[]
          rc                      = w_rc
         USER_ACTION             =
        EXCEPTIONS
          file_open_dialog_failed = 1
          cntl_error              = 2
          error_no_gui            = 3
          OTHERS                  = 4
      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 t_file_table INTO wa_file_table.
        p_file = wa_file_table-filename.
      ENDLOOP.
    ENDFORM.                    " GET_FILENAME
    *&      Form  open_excel
          text
    -->  p1        text
    <--  p2        text
    FORM open_excel.
    SELECT * FROM ZVT75_BOOKING_H
              INTO TABLE t_t75_booking
              UP TO 10 ROWS.
    start Excel
      CREATE OBJECT h_excel 'EXCEL.APPLICATION'.
      PERFORM err_hdl.
      SET PROPERTY OF h_excel  'Visible' = 1.
      PERFORM err_hdl.
    get list of workbooks, initially empty
      CALL METHOD OF h_excel 'Workbooks' = h_mapl.
      PERFORM err_hdl.
    add a new workbook
      CALL METHOD OF h_mapl 'Add' = h_map.
      PERFORM err_hdl.
    output column headings to active Excel sheet
      PERFORM fill_cell USING 1 1 1 'Financial year'.
      PERFORM fill_cell USING 1 2 1 'Financial quarter'.
      PERFORM fill_cell USING 1 3 1 'Customer number'.
      PERFORM fill_cell USING 1 4 1 'Booking Year'.
      PERFORM fill_cell USING 1 5 1 'Financial quarter'.
      PERFORM fill_cell USING 1 6 1 'Contract type'.
      PERFORM fill_cell USING 1 7 1 'Sub Contract type'.
      PERFORM fill_cell USING 1 8 1 'Customer purchase order number'.
      PERFORM fill_cell USING 1 9 1 'Booking Amount'.
      PERFORM fill_cell USING 1 10 1 'Currency Key'.
    LOOP AT t_t75_booking into wa_t75_booking.
    copy items to active EXCEL sheet
       H = SY-TABIX + 1.
       PERFORM FILL_CELL USING H 1 0 wa_t75_booking-BOOKYEAR.
       PERFORM FILL_CELL USING H 2 0 wa_t75_booking-BOOKQTR.
       PERFORM FILL_CELL USING H 3 0 wa_t75_booking-.
       PERFORM FILL_CELL USING H 4 0 wa_t75_booking-BOOKYEAR.
       PERFORM FILL_CELL USING H 5 0 wa_t75_booking-BOOKQTR.
    ENDLOOP.
    disconnect from Excel
      FREE OBJECT h_excel.
      PERFORM err_hdl.
    ENDFORM.                    " open_excel
    *&      Form  ERR_HDL
          outputs OLE error if any                                       *
    -->  p1        text
    <--  p2        text
    FORM err_hdl.
    data test type sy-subrc.
    test = sy-subrc.
      IF test <> 0.
         Message e000(ZV) with 'Error in OLE-Automation:'.
        STOP.
      ENDIF.
    ENDFORM.                    " ERR_HDL
          FORM FILL_CELL                                                *
          sets cell at coordinates i,j to value val boldtype bold       *
    FORM fill_cell USING i j bold val.
      CALL METHOD OF h_excel 'Cells' = h_zl EXPORTING #1 = i #2 = j.
      set property of sheet 'Name'  = 'T75'.
      PERFORM err_hdl.
      SET PROPERTY OF h_zl 'Value' = val .
      PERFORM err_hdl.
      GET PROPERTY OF h_zl 'Font' = h_f.
      PERFORM err_hdl.
      SET PROPERTY OF h_f 'Bold' = bold .
      PERFORM err_hdl.
    ENDFORM.

    Hi,
    Look at the below thread, i posted complete code in this one, just copy that Program and past in your SAP and run the Program, it will create 3 sheets with the names also, then look at the Sheet name in the code, you will understand where to add the code
    Re: format an excel
    Regards
    Sudheer

  • Logical system name has not been assigned to

    Hi, Expert
    I m trying to transferr DATA from ECC to APO . when I configured my ECC and APO systems according the SCM 210, but I still meet the error like this
    logical system name has not been assigned to
    syste: user:
    Function/Q/SAPAPO/CIF_PRODUCT_INBOUND
    text: logical system name has not been assigned to
    my ECC is ECC6.0,and APO 7.0
    Can u help me,Thank u. I m waiting the solution on desk
    Rockey
    Edited by: Xinyou Dong on Jun 2, 2011 9:11 AM

    Hi,
    I think you dont have partner profile created.
    Try to create one with the RFC which is connecting ECC and APO.
    Thanks,
    Deepthi

  • Vendor Name is not coming in Studio

    Hi,
      Vendor name as well as the name is not coming in the development studio. Rather it takes directly the sap.com as vendor name.
      I have created product, software components(with necessary dependencies). but still i am not getting it right.
      Can some one help me.
    Thanks in advance,
    Kumar

    Hi Kumar,
    1) Check if the Nameserver(SLD) is running as stated above,
    2) Have you defined the "Namespace Prefix"
    3) after doing all steps try after restarting the J2EE Engine.
    also check your steps with the guide <b>"How to Get Started with the SAP NetWeaver Development Infrastructure"</b>, given at the following link,
    Web Application Server How-to Guides for SAP NetWeaver 2004 [original link is broken] [original link is broken]
    Hope above will help you,
    Regards
    Deepak

  • Queries inactive in Production Technical name is not coming After Transport

    Hi Folks,
    i transported queries with role into production .
    There queries are coming without their technical name means b'coze its related data-target was not active but now its active even then queries are not coming with their technical name.
    So can we do any manual activation in production or should i go for re-import the same req again into production.
    Plz Suggest me

    Hi Rajan,
    You can do manual activation in production and you can change the technical names of your queries in production.
    Thanks and Kind Regards,
    Lakshman Kumar Ghattamaneni

  • SLD Logical System Name Changes not taking effect in IDOC

    All -
    I've had to change a logical system name in the SLD, everything appears to be okay but new Idocs are still posting with the old LS name - any suggestions as to where to look for the old name would be most appreciated.
    Thanks!

    Hi Dennis,
    After changing the logical system name in SLD have you done "Compare with  SLD" from Service --> "Adapter-Specific Identifiers" for Business system in Integration Directory?
    - Pinkle

  • Category names are not coming in Gantt chart

    Hi all
    I have a Gantt chart where I am displaying customer name in category axis. But instead of coming those names I am getting category1,category2.. in category axis.Please help.
    Regards
    Sunit

    Hi,
        I think for 4.6 C <fn> must be declared as an internal table and the field names should be given as records and not as one single record.
       the fieldnames internal table should contain records as :
       Field1
       Field2 ....  and not as Field1 Field2 ....
    Regards,
    Srini.

  • Field names are not coming in file when dloaded frm apserv to prserv

    Here i'm dloading data to Appserver..frm there data is dloading to pre server..but fieldnames are downloading...i am working in 4.6c version.same code is working in ECC version...Plzz give me a suggestion...
    FORM dload_file_from_server  USING     p_srfname            "#EC *
                                           p_fname              "#EC *
                                           p_psfile             "#EC *
                                           p_flag.
      DATA: lv_fname TYPE string.
      CASE p_flag.
        WHEN 'MSEG'.
          ASSIGN it_fn TO <fn>.
          ASSIGN wa_fn TO <fn_wa>.
          ASSIGN it1_mseg TO <fs>.
          ASSIGN wa1_mseg TO <fs_wa>.
          ASSIGN p_srfname TO <fs_fname>.
          CONCATENATE p_psfile p_fname INTO lv_fname SEPARATED BY '\'.
        WHEN 'MKPF'.
          ASSIGN it_fn TO <fn>.
          ASSIGN wa_fn TO <fn_wa>.
          ASSIGN it1_mkpf TO <fs>.
          ASSIGN wa1_mkpf TO <fs_wa>.
          ASSIGN p_srfname TO <fs_fname>.
          CONCATENATE p_psfile p_fname INTO lv_fname SEPARATED BY '\'.
         WHEN OTHERS.
      ENDCASE.
      OPEN DATASET <fs_fname> FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      READ DATASET  <fs_fname> INTO <fn_wa>.
      APPEND <fn_wa> TO <fn>.
      DO.
        IF sy-tabix GE 1.
          READ DATASET <fs_fname> INTO <fs_wa>.
          IF sy-subrc = 0.
            APPEND <fs_wa> TO <fs>.
          ELSE.
            EXIT.
          ENDIF.
        ENDIF.
      ENDDO.
      CLOSE DATASET <fs_fname>.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                  = lv_fname
          filetype                  = 'ASC'
          trunc_trailing_blanks     = 'X'
          trunc_trailing_blanks_eol = 'X'
        TABLES
          data_tab                  = <fs>
          fieldnames                = <fn>.
      IF sy-subrc <> 0.                                         "#EC
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CLEAR: <fn>, <fn_wa>.
    ENDFORM.                    " dload_file_from_server
    Please use code tags - it makes your code easier to read
    Edited by: Rob Burbank on Dec 6, 2010 4:00 PM

    Hi,
        I think for 4.6 C <fn> must be declared as an internal table and the field names should be given as records and not as one single record.
       the fieldnames internal table should contain records as :
       Field1
       Field2 ....  and not as Field1 Field2 ....
    Regards,
    Srini.

  • Skill Group Name is not coming on Cisco CTI Tool Kit real time status

    Hi,
    I have UCCE 9.0.3 in my environment but when supervisor is monitoring agent state on CTI Toolkit Team Real Time Status we are not able to see Skill Group name.
    For your reference I have enclosed screen shot of that.

    Hi,
    first, read this document: Recommended Tracing Levels for Troubleshooting IPCC Issues. Apply the recommended trace levels to the following services:
    CTI OS Server
    CTI Server
    But first take note of the original values (so you can switch back to normal tracing).
    Dump the logs for both the above services: How to Use the Dumplog Utility.
    For instance: dumplog ctisvr /hr 1 /of c:\temp\ctisvr.log
    Post the logs to here.
    G.

  • System Alias is not coming in dropdown of System under Find Data Services

    I am having role in VC.
    In Visual Composer studio. I Clicked on Find Data option at right pane of the window to get
    Find Data Services window.
    In this window, I am not able to see the system alias from the dropdown list of the System field.
    Appreciate your help.

    Hi
    Inside Visual Composer , Goto Tools >Options> Compiler .
    Remove the Checkbox for Mask Unsupported Features.
    Click Ok.
    Now try the Find Data
    It worked for me.
    Regards
    Rajendra

  • Offset account name not coming in G/L printout

    Hi,
    We have SBO 2005B PL25
    in the G/L printout the offset acount code is coming through systm variable 74 but the acount name is not coming even after using system variable 415 please help with a workaround as we urgntly need the printed cash books
    regards
    Edited by: Philip Eller on Jul 7, 2008 9:25 AM

    Pradipta Dasgupta,
    You can print offset account name using
    system variable no.415 using subsidary account option and
    then select template
    'General Ledger by posting date(system)'.
    I checked it offset account name appears in print preview.
    Jeyakanthan

  • Partner role- Goods supplier name not coming in MIGO

    Hi,
    While configuring partner roles i did all settings ...in PO i am giving my goods supplier name in partner tab ...now when i am doing MIGO that supplier name is not coming in the screen..
    What can be the reason?
    Utsav

    Hi,
    Re:
    What else to check? Are you using partner role GS for your goods supplier? Has the GS vendor master the name of the goods supplier in Name 1 field?
    Yes i am using partner role in goods suppler....
    Yes  the GS vendor master the name of the goods supplier in Name 1 field..
    I created 1 venodr  Main Vendor V1 through XK01..
    I created another vendor as Goods Supplier V2 through XK01..
    Now i went in XK02, in Vendor V1 under partner roles, i mentioned Goods Supplier as V2...
    Now i am creating PO against main  Vendor  V1...Under partner tab Goods supplier V2 is coming from Vendor master..That is correct...
    Now when i am doing GRN for above PO, there i am not getting my Goods supplier name...
    Utsav

  • Java is not coming up after deploying Cryptographic toolkit 1.4

    Hi,
    when i open the keystore service in visualadministrator, i got following issue.
    Java.lang.NoClassDefFoundError.iaik/security/provider/IAIK
    IAIK security library not found
    after searching in SDN i got the following link :
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/cb71b8046e6e469bf3dd283104e65b/frameset.htm
    After deploying  Cryptographic toolkit 1.4 through SDM, i have restarted the system. java is not coming up. the system is ABAP+JAVA system.
    Could you please tell how to undeploy the tc_sec_java_crypto_signed_fs_lib.sda component. i have tried  through standalone mode also but i could not find that component. i could not able to login to the visual admin, configtool.
    Regards,
    Jagadish

    I have pasted both server0 log and default trace.
    please find the log which is pasted.
    SERVER0 LOG
    [Thr 6276] *************** SAP_STINIT3 ***************
    [Thr 6276] SAP_STINIT3: my TP_name: >jlaunch<
    [Thr 6276] SAP_STINIT3: new buffer state = BUFFER_EMPTY
    [Thr 6276] SAP_STINIT3: GWHOST=localhost
    [Thr 6276] SAP_STINIT3: GWSERV=sapgw22
    [Thr 6276] SAP_STINIT3: PROTOCOL=I
    [Thr 6276] GwIConnect: connect to gateway localhost / sapgw22 (timeout=60000)
    [Thr 6276] NiHsLGetNodeAddr: found hostname 'localhost' in cache
    [Thr 6276] NiIGetNodeAddr: hostname 'localhost' = addr
    [Thr 6276] NiHsLGetServNo: found service name 'sapgw22' in cache
    [Thr 6276] NiIGetServNo: servicename 'sapgw22' = port 0C.FA/3322
    [Thr 6276] NiICreateHandle: hdl 11 state NI_INITIAL
    [Thr 6276] NiIInitSocket: set default settings for new hdl 11 / sock 4656 (I4; ST)
    [Thr 6276] NiIBlockMode: set blockmode for hdl 11 FALSE
    [Thr 6272] *************** SAP_STINIT3 ***************
    [Thr 6272] SAP_STINIT3: my TP_name: >jlaunch<
    [Thr 6272] SAP_STINIT3: new buffer state = BUFFER_EMPTY
    [Thr 6272] SAP_STINIT3: GWHOST=localhost
    [Thr 6272] SAP_STINIT3: GWSERV=sapgw22
    [Thr 6272] SAP_STINIT3: PROTOCOL=I
    [Thr 6272] GwIConnect: connect to gateway localhost / sapgw22 (timeout=60000)
    [Thr 6272] NiHsLGetNodeAddr: found hostname 'localhost' in cache
    [Thr 6272] NiIGetNodeAddr: hostname 'localhost' = addr
    [Thr 6272] NiHsLGetServNo: found service name 'sapgw22' in cache
    [Thr 6272] NiIGetServNo: servicename 'sapgw22' = port 0C.FA/3322
    [Thr 6272] NiICreateHandle: hdl 13 state NI_INITIAL
    [Thr 6272] NiIInitSocket: set default settings for new hdl 13 / sock 4516 (I4; ST)
    [Thr 6272] NiIBlockMode: set blockmode for hdl 13 FALSE
    [Thr 2836] NiSelISelectInt: 0 handles selected (0 buffered)
    [Thr 2836] SAP_CMLISTEN: timeout after 2000 msecs
    [Thr 2836] *************** SAP_CMLISTEN ***************
    [Thr 2836] SAP_CMLISTEN: timeout = 2000
    [Thr 5584] Fri Feb 27 19:45:38 2009
    [Thr 5584] JLaunchIShutdownCheck: check shutdown, 16 sec left to shutdown
    [Thr 6276] NiHsLGetServName: found port number 0C.FA/3322 in cache
    [Thr 6276] NiIGetServName: port 0C.FA/3322 = servicename 'sapgw22'
    [Thr 6276] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2764]
    [Thr 6276] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 11 / sock 4656
         (SI_ECONN_REFUSE; I4; ST; 127.0.0.1:3322) [nixxi.cpp    2764]
    [Thr 6276] NiICloseHandle: closing initial hdl 11
    [Thr 6276] *** ERROR => GwIConnect: GwConnect to localhost / sapgw22 failed (rc=NIECONN_REFUSED) [gwxx.c       294]
    [Thr 6276] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       295]
    [Thr 6276] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       297]
    [Thr 6276] ***LOG S0S=> GwIConnect, GwConnect (sapgw22) [gwxx.c       299]
    [Thr 6276] ***LOG S90=> SAP_STINIT3, GwIConnect ( 236) [r3cpic.c     2006]
    [Thr 6276]
    [Thr 6276] *  LOCATION    CPIC (TCP/IP) on local host with Unicode
    [Thr 6276] *  ERROR       partner '127.0.0.1:sapgw22' not reached
    [Thr 6276] *
    TIME        Fri Feb 27 19:45:38 2009
    [Thr 6276] *  RELEASE     700
    [Thr 6276] *  COMPONENT   NI (network interface)
    [Thr 6276] *  VERSION     38
    [Thr 6276] *  RC          -10
    [Thr 6276] *  MODULE      nixxi.cpp
    [Thr 6276] *  LINE        2764
    [Thr 6276] *  DETAIL      NiPConnect2
    [Thr 6276] *  SYSTEM CALL connect
    [Thr 6276] *  ERRNO       10061
    [Thr 6276] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6276] *  COUNTER     3
    [Thr 6276] *
    [Thr 6276] *****************************************************************************
    [Thr 6272] NiHsLGetServName: found port number 0C.FA/3322 in cache
    [Thr 6272] NiIGetServName: port 0C.FA/3322 = servicename 'sapgw22'
    [Thr 6272] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2764]
    [Thr 6272] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 13 / sock 4516
         (SI_ECONN_REFUSE; I4; ST; 127.0.0.1:3322) [nixxi.cpp    2764]
    [Thr 6272] NiICloseHandle: closing initial hdl 13
    [Thr 6272] *** ERROR => GwIConnect: GwConnect to localhost / sapgw22 failed (rc=NIECONN_REFUSED) [gwxx.c       294]
    [Thr 6272] ***LOG S0T=> GwIConnect, GwConnect (-0010) [gwxx.c       295]
    [Thr 6272] ***LOG S0R=> GwIConnect, GwConnect () [gwxx.c       297]
    [Thr 6272] ***LOG S0S=> GwIConnect, GwConnect (sapgw22) [gwxx.c       299]
    [Thr 6272] ***LOG S90=> SAP_STINIT3, GwIConnect ( 236) [r3cpic.c     2006]
    [Thr 6272]
    [Thr 6272] *  LOCATION    CPIC (TCP/IP) on local host with Unicode
    [Thr 6272] *  ERROR       partner '127.0.0.1:sapgw22' not reached
    [Thr 6272] *
    TIME        Fri Feb 27 19:45:38 2009
    [Thr 6272] *  RELEASE     700
    [Thr 6272] *  COMPONENT   NI (network interface)
    [Thr 6272] *  VERSION     38
    [Thr 6272] *  RC          -10
    [Thr 6272] *  MODULE      nixxi.cpp
    [Thr 6272] *  LINE        2764
    [Thr 6272] *  DETAIL      NiPConnect2
    [Thr 6272] *  SYSTEM CALL connect
    [Thr 6272] *  ERRNO       10061
    [Thr 6272] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 6272] *  COUNTER     2
    [Thr 6272] *
    [Thr 6272] *****************************************************************************
    [Thr 2836] Fri Feb 27 19:45:39 2009
    [Thr 2836] NiSelISelectInt: 0 handles selected (0 buffered)
    [Thr 2836] SAP_CMLISTEN: timeout after 2000 msecs
    [Thr 2836] *************** SAP_CMLISTEN ***************
    [Thr 2836] SAP_CMLISTEN: timeout = 2000
    [Thr 3508] ShmCache_nativeDelete (3)
    [Thr 3508] ShmCache_nativeDelete (2)
    [Thr 3508] ShmCache_nativeDelete (0)
    [Thr 3508] ShmCache_nativeDelete (1)
    [Thr 3508] Fri Feb 27 19:45:40 2009
    [Thr 3508] JHVM_NativeSetState: set process state to 6
    [Thr 3508] JLaunchISetState: change state from [Stopping (5)] to [Stopped (6)]
    [Thr 5584] JLaunchIShutdownCheck: check shutdown, 14 sec left to shutdown
    [Thr 2836] Fri Feb 27 19:45:41 2009
    [Thr 2836] NiSelISelectInt: 0 handles selected (0 buffered)
    [Thr 2836] SAP_CMLISTEN: timeout after 2000 msecs
    [Thr 2836] *************** SAP_CMLISTEN ***************
    [Thr 2836] SAP_CMLISTEN: timeout = 2000
    [Thr 5584] Fri Feb 27 19:45:42 2009
    [Thr 5584] JLaunchIShutdownCheck: check shutdown, 12 sec left to shutdown
    [Thr 2836] Fri Feb 27 19:45:43 2009
    [Thr 2836] NiSelISelectInt: 0 handles selected (0 buffered)
    [Thr 2836] SAP_CMLISTEN: timeout after 2000 msecs
    [Thr 2836] *************** SAP_CMLISTEN ***************
    [Thr 2836] SAP_CMLISTEN: timeout = 2000
    [Thr 5584] Fri Feb 27 19:45:44 2009
    [Thr 5584] JLaunchIShutdownCheck: check shutdown, 10 sec left to shutdown
    [Thr 5840] Fri Feb 27 19:45:45 2009
    [Thr 5840] JLaunchIExitJava: exit hook is called (rc = 0)
    [Thr 5840] JsfCloseShm: JsfCloseShm() -> 0
    [Thr 5840] JLaunchCloseProgram: good bye (exitcode = 0)
    DEFAULT TRACE
    #1.5#001143318A03002C00000186000015CC000463E71A6EB1E0#1235744138921#com.sap.engine.services.connector##com.sap.engine.services.connector#######SAPEngine_System_Thread[impl:5]_18##0#0#Error#1#/System/Server#Java#connector_0500##"ResourceObjectFactory" is closed. Possible reasons: the Connector Service is stopped or not started.#1#ResourceObjectFactory#
    #1.5#001143318A03002C00000187000015CC000463E71A6EB538#1235744138921#com.sap.engine.services.connector##com.sap.engine.services.connector#######SAPEngine_System_Thread[impl:5]_18##0#0#Error#1#/System/Audit#Java###Exception #1#com.sap.engine.services.connector.exceptions.BaseResourceException: "ResourceObjectFactory" is closed. Possible reasons: the Connector Service is stopped or not started.
         at com.sap.engine.services.connector.ResourceObjectFactory.removeConnectionFactory(ResourceObjectFactory.java:401)
         at com.sap.engine.services.jmsconnector.deploy.ContainerImpl.clearAllResources(ContainerImpl.java:1677)
         at com.sap.engine.services.jmsconnector.deploy.ContainerImpl.commitStop(ContainerImpl.java:768)
         at com.sap.engine.services.deploy.server.application.StopTransaction.commonCommitFinished(StopTransaction.java:244)
         at com.sap.engine.services.deploy.server.application.StopTransaction.commitCommon(StopTransaction.java:290)
         at com.sap.engine.services.deploy.server.application.StopTransaction.commitLocal(StopTransaction.java:278)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesLocal(ApplicationTransaction.java:374)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:132)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesLocalAndWait(ParallelAdapter.java:250)
         at com.sap.engine.services.deploy.server.FinishListener.run(FinishListener.java:77)
         at com.sap.engine.services.deploy.server.FinishListener.makeOperation(FinishListener.java:57)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startTransactionsLocal(DeployServiceImpl.java:4244)
         at com.sap.engine.services.deploy.server.DeployCommunicatorImpl.stopMyApplications(DeployCommunicatorImpl.java:214)
         at com.sap.engine.services.servlets_jsp.server.ServletsAndJspServerFrame.stop(ServletsAndJspServerFrame.java:243)
         at com.sap.engine.core.service630.container.ServiceStopper.run(ServiceStopper.java:31)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5#001143318A03003E0000000D000015CC000463E71A7BC7F1#1235744139781#com.sap.engine.services.deploy##com.sap.engine.services.deploy#######SAPEngine_System_Thread[impl:5]_73##0#0#Error##Plain###CACHE MAY BE NOT CLEARED, while stopping sap.com/crmmigrxcm application.#
    #1.5#001143318A0300740000004B000015CC000463E71A8A8DA4#1235744140750#com.sap.engine.core.thread.impl5.ThreadManagerImpl##com.sap.engine.core.thread.impl5.ThreadManagerImpl#J2EE_GUEST#0#####Thread[Thread-715,5,main]##0#0#Error##Plain###Unexpected thread activity after interrupt() is executed in shutdown of SAPEngine_System_Thread[impl:5]_ThreadManager:
    Thread[SAPEngine_System_Thread[impl:5]_50]
    Task: com.sap.engine.core.thread.impl5.ActionObject - Processing Task [classname: com.sap.engine.services.log_configurator.archive.ArchivingThread | toString: [email protected]106a69b] with classloader [[email protected]be66@service:log_configurator]#
    #1.5#001143318A0300740000004C000015CC000463E71A8B2DF0#1235744140781#com.sap.engine.core.thread.impl5.ThreadManagerImpl##com.sap.engine.core.thread.impl5.ThreadManagerImpl#J2EE_GUEST#0#####Thread[Thread-715,5,main]##0#0#Error##Plain###Unexpected thread activity after interrupt() is executed in shutdown of SAPEngine_System_Thread[impl:5]_ThreadManager:
    Thread[SAPEngine_System_Thread[impl:5]_69]
    Task: com.sap.engine.core.thread.impl5.ActionObject - Processing Task [classname: com.sap.jms.client.connection.AsyncCloser | toString: com.sap.jms.client.connection.AsyncCloser@1a41c14] with classloader [[email protected]f854@common:library:com.sap.security.api.sda;library:com.sap.security.core.sda;library:security.class;library:webservices_lib;service:adminadapter;service:basicadmin;service:com.sap.security.core.ume.service;service:configuration;service:connector;service:dbpool;service:deploy;service:jmx;service:jmx_notification;service:keystore;service:security;service:userstore]

  • System tablespace space not regained when objects are dropped

    Mine is a Oracle 10g 10.2 on windows.
    I am importing a export file into a user ,It takes some amount of space in SYSTEM and another tablespace .When I drop the user space in system tablespace is not coming back. ANY IDEA WHY
    BEFORE IMPORT
    SQL> select sum(bytes)/1024/1024 from dba_segments where owner='SYSTEM';
    SUM(BYTES)/1024/1024
    22.1875
    SQL> select sum(bytes)/1024/1024 from dba_segments where owner='SYS';
    SUM(BYTES)/1024/1024
    544.1875
    SQL> select sum(bytes)/1024/1024 from dba_segments where segment_name='SOURCE$';
    SUM(BYTES)/1024/1024
    41
    I use the following commands to import
    SQL>create user <username> identified by <password> default tablespace <tsname> quota unlimited on <tsname>;
    SQL>grant create session,imp_full_database to <username>;
    imp system file=filename.dmp log=logname.log fromuser=<username> touser=<username> statistics=none
    AFTER IMPORT
    SQL> select sum(bytes)/1024/1024 from dba_segments where segment_name='SOURCE$';
    SUM(BYTES)/1024/1024
    53
    SQL> select sum(bytes)/1024/1024 from dba_segments where owner='SYSTEM';
    SUM(BYTES)/1024/1024
    22.1875
    SQL> select sum(bytes)/1024/1024 from dba_segments where owner='SYS';
    SUM(BYTES)/1024/1024
    728.375
    AFTER DROPPING THE USER/SCHEMA
    SQL> select sum(bytes)/1024/1024 from dba_segments where owner='SYS';
    SUM(BYTES)/1024/1024
    728.375
    SQL> select sum(bytes)/1024/1024 from dba_segments where owner='SYSTEM';
    SUM(BYTES)/1024/1024
    22.1875
    SQL> select sum(bytes)/1024/1024 from dba_segments where segment_name='SOURCE$';
    SUM(BYTES)/1024/1024
    53
    I even tried deleting the objects first and then dropping the user
    SQL> delete from source$ where obj# in(select object_id from dba_objects where owner='USERNAME');
    211252 rows deleted.
    SQL> commit;
    Commit complete.
    SQL> drop user USERNAME cascade;
    User dropped.
    The space used by the schema on system tablespace is not coming back.

    Hi user509593!
    Adding objects to a tablespace requires space in that tablespace. This space is managed in segments and extents. If an extent is fully used (that means 100 % usage) a new extent will be added to a segment. Oracle uses a mechanism called "High Water Mark" to mark the last used extent.
    Your problem is that oracle don't set this High Water Mark back if you are dropping objects from a tablespace. Once an extent is marked as it it retains marked as used.
    Before Adding Objects:
    u = used Extent
    x = free Extent
    | = High Water Mark
    uuuuuuxxxxx
    ...........|
    After Adding Objects:
    uuuuuuuxxxx
    ............|
    After dropping objects:
    uuuuuuuxxxx
    ............|
    The only chance to get your "unused" space back is to reorganized your tablespace. But before you reorganize something please read the documentation to know all about the costs and traps that comes with reorganization.
    Hope this help!
    null

  • Logical System name in Entitlement Systems

    Hi,
    In Authentication > SAP, I have given System and client names, but logical system name is not generated.
    Please let me know how to resolve this.
    Thanks in advance,
    Priya

    Hi John,
    Thanks for your response.
    FQDN and IP address are added in the host file.
    But still the logical system name is not displaying.
    Without logical system name, other details are filled for Application Host Logon as
    Application server name - Host name
    All the details are filled except the selection of logical system name.
    Then it is displaying the error - "Please specify complete credentials for either load balancing or direct application host logon"
    Please let me know how to resolve this.
    Thanks,
    Priya.

Maybe you are looking for