RETURNCODE fail in samrtfroms.

Hi All ,
i have developed a custom smartform and a custom Pritprogram . while executing form the transaction it is showing the form but in the OUTPUT type it is showing redbutton . in the processinglog it is giving message "Processing routine ENTRY in program ZZ_SDSH_PALLET_MANIFEST does not exist "
But in my print program i have a routine ENTRY .
while debugging i found that after exeqution of FORM sy-subrc = 0 and after that in Function module PROGRAMM_AUFRUFEN , i am getting the RETURNCODE = 999 .
If i give the return code = 0 . then Output type is displaying in green button .
sample code of Print program :
FORM ENTRY USING RETURN_CODE TYPE I SCREEN_OUTPUT TYPE C.
   doing some code and calling Form function module.
ENDFORM. 
FORM PROTOCOL_UPDATE USING SCREEN_OUTPUT.
  CHECK SCREEN_OUTPUT EQ SPACE.
  CALL FUNCTION 'NAST_PROTOCOL_UPDATE'
    EXPORTING
      MSG_ARBGB = SYST-MSGID
      MSG_NR    = SYST-MSGNO
      MSG_TY    = SYST-MSGTY
      MSG_V1    = SYST-MSGV1
      MSG_V2    = SYST-MSGV2
      MSG_V3    = SYST-MSGV3
      MSG_V4    = SYST-MSGV4
    EXCEPTIONS
      OTHERS    = 1.
  IF SY-SUBRC <> 0. ENDIF.
ENDFORM.            
Thanks

Check this code out..
REPORT  ZSD_PACKING_LIST_EN                        .
*   Program    : ZSD_PACKING_LIST.                                  *
*   Author     : Suresh Kashimalla                                  *
*   Date       : 11/29/2004                                         *
*   Description: Driver Program for Packing List(SD)                *
*                    Modification Log                               *
* Author                :                                           *
* Date of change        :                                           *
* Functional Spec #     :                                           *
* Correction Request #  :                                           *
* Description of Change :                                           *
Tables: nast,                          "Messages
        *nast,                         "Messages
        tnapr,                         "Programs & Forms
        itcpo,                         "Communicationarea for Spool
        arc_params,                    "Archive parameters
        toa_dara,                      "Archive parameters
        addr_key,                      "Adressnumber for ADDRESS
        MARM,
        vepo.
type-pools szadr.
DATA price_print_mode(1) TYPE c.       "Print-mode
DATA: retcode   LIKE sy-subrc.         "Returncode
DATA: repeat(1) TYPE c.
DATA: xscreen(1) TYPE c.               "Output on printer or screen
Data: GS_Vbeln like LIKP-VBELN.
DATA : V_SIGNI like VTTK-signi,
       V_TPBEZ like VTTK-TPBEZ,
       v_vltdr like vttk-TDLNR,
       v_name1 TYPE name1,
       v_lfipl like lips-lfimg,
       v_lfipl1 like lips-lfimg.
DATA : V_CONLB TYPE F VALUE '2.20458553791887'.
*Intenal Tables Declarations
*Internal tabel Details fro SD Document: Delivery Header Data
DATA : BEGIN OF IT_LIKP OCCURS 0.
        INCLUDE STRUCTURE LIKP.
DATA : END OF IT_LIKP.
DATA : BEGIN OF IT_ZLIKP OCCURS 0,
         VBELN LIKE LIKP-VBELN,        " Delivery
         LFDAT LIKE LIKP-LFDAT,        " Delivery Date
         KUNNR LIKE LIKP-KUNNR,         " Ship-To Party
         BTGEW LIKE LIKP-BTGEW,        " Total Weight
         GEWEI LIKE LIKP-GEWEI,        " Weight Unit
         NTGEW LIKE LIKP-NTGEW,        " Net weight
         VOLUM LIKE LIKP-VOLUM,        " Volume
         VOLEH LIKE LIKP-VOLEH,        " Volume unit
         TRAID LIKE LIKP-TRAID,        "Means of Transport ID
         BTGEWLB LIKE LIKP-BTGEW,        " Total Weight
         GEWEILB LIKE LIKP-GEWEI,        " Weight Unit
         NTGEWLB LIKE LIKP-NTGEW,        " Net weight
         INCO1 LIKE LIKP-INCO1,        " Terms of deleviry
         INCO2 LIKE LIKP-INCO2,        " Terms of deleviry
END OF IT_ZLIKP.
*DATA : BEGIN OF IT_VTTK OCCURS 0,
*         TKNUM LIKE VTTK-TKNUM,       " Shipment Number
*         EDOCK  LIKE VTTK-SIGNI,      " Container ID
*         ADOCK  LIKE VTTK-TPBEZ,      " Description of Shipment
*         END OF IT_VTTK.
*Intenal table for Item Details from lips
DATA : BEGIN OF IT_LIPS OCCURS 0,
         vgpos like lips-vgpos,       " Refrence Doc Line item
         VBELN LIKE LIPS-VBELN,       " Delivery
         POSNR LIKE LIPS-POSNR,       " Delivery item
         lfimg like lips-lfimg,       " Actual quantity delivered
         meins like lips-meins,       " Delivered Quantity UOM
         MATNR LIKE LIPS-MATNR,       " Material Number
         vgbel like lips-matnr,       " Refrence Doc.
         KWMENG LIKE VBAP-KWMENG,     " Order quantity
         VRKME  LIKE VBAP-VRKME,      " Unit
         ARKTX LIKE LIPS-ARKTX,       " Short Text for Sales Order Item
         kcmeng like lips-kcmeng,     " Cumml. Delivery Quantity
         BSTNK LIKE VBAK-BSTNK,       " Cust.SKU
         lfipl like lips-lfimg,       " Actual quantity delivered
         lfior like lips-lfimg,       " Actual quantity delivered
         meinso like lips-meins,      " Delivered Quantity UOM
       END OF IT_LIPS.
*Internal table for Material Data.
DATA : BEGIN OF IT_MAT OCCURS 0,
         MATNR LIKE MARA-MATNR,
         BISMT LIKE MARA-BISMT,
       END OF IT_MAT.
*Internal table declaration for Special Note.
Data : Begin of it_STXH occurs 0,
         TDOBJECT like STXH-TDOBJECT,
         TDNAME like STXH-TDNAME,
         TDID  like STXH-TDID,
         TDSPRAS like STXH-TDSPRAS,
       End of it_STXH.
*Internal table for Item
Data : Begin of It_vbap occurs 0,
         vbeln like vbap-vbeln,
         posnr like vbap-posnr,
       End of it_vbap.
Data : It_IStxh like It_stxh occurs 0 with header line.
Data : V_posnr type char16.
Data : Begin of it_posnr occurs 0,
         item like stxh-tdname,
       End of it_posnr.
*pallet
DATA: IT_LTAP LIKE ZLTAP OCCURS 0 WITH HEADER LINE.
DATA: IT_ITEM LIKE ZLIPS_PACK OCCURS 0 WITH HEADER LINE.
*--Start of change by rashmi 30th Aug 05
data: v_vbelnl(70) type c,
      it_line like tline occurs 0,
      it_cert_line like tline occurs 0,
      it_cust_line like tline occurs 0.
*--End of change by rashmi 30th Aug 05
*      Parameters Declaration                                          *
*PARAMETER : P_VBELN TYPE LIKP-VBELN.
*      Data Declaration                                                *
DATA : V_TKNUM LIKE VTTP-TKNUM.
DATA : V_BSTNK LIKE VBAK-BSTNK.
DATA : V_VBELV LIKE VBFA-VBELV.
DATA : V_VBELN LIKE VBAK-VBELN.
DATA : V_KWMENG LIKE VBAP-KWMENG.
DATA : V_WERKS LIKE LIPS-WERKS.
DATA : V_KUNNR LIKE KNA1-KUNNR.
DATA : V_TELF1 LIKE KNA1-TELF1.
DATA : V_TELFX LIKE KNA1-TELFX.
DATA : V_EBELN LIKE EKPO-EBELN,
           V_BRGEW LIKE VEKP-BRGEW,
          V_BTGEW LIKE LIKP-BTGEW.
CONSTANTS : C_J TYPE C VALUE 'J'.
DATA: LF_FM_NAME            TYPE RS38L_FNAM.
DATA:  V_LBBIL_INVOICE TYPE LBBIL_INVOICE,    " Invoice
        V_NAST TYPE  NAST.    " Nast
*data : it_likp like table of zlikp  with header line.
**      Start of Selection
*Form Processing
FORM entry USING return_code us_screen.
  CLEAR retcode.
  xscreen = us_screen.
  PERFORM processing.
  IF retcode NE 0.
    return_code = 1.
  ELSE.
    return_code = 0.
  ENDIF.
ENDFORM.                    "entry
*       FORM PROCESSING                                               *
FORM processing.
  Data : Is_Sender type adrnr.
  DATA: lf_fm_name            TYPE rs38l_fnam.
  DATA: ls_control_param      TYPE ssfctrlop.
  DATA: ls_composer_param     TYPE ssfcompop.
  DATA: ls_recipient          TYPE swotobjid.
  DATA: ls_sender             TYPE swotobjid.
  DATA: lf_formname           TYPE tdsfname.
  DATA: ls_addr_key           LIKE addr_key.
  Data: ls_APPL_OBJ           type SWOTOBJID.
  Data: LS_TSFDARA            type TSFDARA.
  DATA: document_output_info TYPE  ssfcrespd,
      job_output_info TYPE ssfcrescl,
      job_output_options TYPE ssfcresop.
  PERFORM get_data.
  CHECK retcode = 0.
*Get the Smart Form name.
  IF NOT tnapr-sform IS INITIAL.
    lf_formname = tnapr-sform.
  ELSE.
    lf_formname = tnapr-fonam.
  ENDIF.
*Get the Header text
*  To get Special Notes.
  Select TDOBJECT
         TDNAME
         TDID
         TDSPRAS
         into table it_STXH
         from STXH
         where TDNAME = Gs_vbeln.
* To get the ITem Details
  Select VBELN
         POSNR
         into table it_vbap
         from vbap
         Where VBELN = GS_vbeln.
  if not it_lips[] is initial.
    loop at it_lips.
      concatenate it_lips-vbeln it_lips-posnr into v_posnr.
      it_posnr-item = v_posnr.
      append it_posnr.
    endloop.
  endif.
*To Get the Item Text.
  Select TDOBJECT
         TDNAME
         TDID
         TDSPRAS
         into table it_ISTXH
         from STXH for all entries in it_posnr
         where TDNAME = it_posnr-item.
  select single werks
           into v_werks
           from lips
          where vbeln = GS_VBELN.
  concatenate '00' v_werks '0001' into v_kunnr.
  select single telf1 telfx
           into (v_telf1, v_telfx)
           from kna1
          where kunnr eq v_kunnr.
* CONVERTING GROSS AND NET WEIGHT INTO LBs
  IT_ZLIKP-BTGEWLB = IT_ZLIKP-BTGEW * V_CONLB.
  IT_ZLIKP-GEWEILB = 'LB'.
  IT_ZLIKP-NTGEWLB = IT_ZLIKP-NTGEW * V_CONLB.
  loop at it_ltap.
* it_ltap-brgewlb = it_ltap-brgew *  V_CONLB.
    it_ltap-geweilb = 'LB'.
    it_ltap-vistmlb = it_ltap-vistm *  V_CONLB.
    modify it_ltap index sy-tabix.
  endloop.
* determine smartform function module for invoice
  CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
      FORMNAME           = 'ZSD_PACKING_LIST_EN'
    IMPORTING
      FM_NAME            = LF_FM_NAME
    EXCEPTIONS
      NO_FORM            = 1
      NO_FUNCTION_MODULE = 2
      OTHERS             = 3.
  IF SY-SUBRC <> 0.
*   error handling
    RETCODE = SY-SUBRC.
*    PERFORM protocol_update.
  ENDIF.
*--Start of change by rashmi on 30th Aug 2005.
*  CALL FUNCTION lf_fm_name
*    EXPORTING
*      ARCHIVE_INDEX        = TOA_DARA
*      ARCHIVE_INDEX_TAB    = LS_TSFDARA
*      ARCHIVE_PARAMETERS   = ARC_PARAMS
*      CONTROL_PARAMETERS   = ls_control_param
*      MAIL_APPL_OBJ        = ls_APPL_OBJ
*      MAIL_RECIPIENT       = ls_recipient
*      MAIL_SENDER          = ls_sender
*      OUTPUT_OPTIONS       = ls_composer_param
*      USER_SETTINGS        = ' '
*      znast                = nast
*      IT_LIKP              = IT_ZLIKP
*      V_TKNUM              = V_TKNUM
*      V_tpbez              = V_tpbez
*      V_Signi              = V_signi
*      V_NAME1              = V_NAME1
*      V_BSTNK              = V_BSTNK
*      V_VBELN              = V_VBELN
*      v_telf1              = v_telf1
*      v_telfx              = v_telfx
*      V_EBELN              = V_EBELN
*      V_CONLB              = V_CONLB
*      V_BTGEW              = V_BTGEW
*   IMPORTING
*      DOCUMENT_OUTPUT_INFO = document_output_info
*      JOB_OUTPUT_INFO      = job_output_info
*      JOB_OUTPUT_OPTIONS   = job_output_options
*    TABLES
*       IT_LIPS             = IT_ITEM
*      IT_LTAP              = IT_LTAP
*      it_STXH              = it_STXH
**      it_ISTXH              = it_ISTXH
*    EXCEPTIONS
*      FORMATTING_ERROR     = 1
*      INTERNAL_ERROR       = 2
*      SEND_ERROR           = 3
*      USER_CANCELED        = 4
*      OTHERS               = 5.
call function LF_FM_NAME                             "/1BCDWB/SF00000105
  exporting
   ARCHIVE_INDEX              = TOA_DARA
   ARCHIVE_INDEX_TAB          = LS_TSFDARA
   ARCHIVE_PARAMETERS         = ARC_PARAMS
   CONTROL_PARAMETERS         = ls_control_param
   MAIL_APPL_OBJ              = ls_APPL_OBJ
   MAIL_RECIPIENT             = ls_recipient
   MAIL_SENDER                = ls_sender
   OUTPUT_OPTIONS             = ls_composer_param
   USER_SETTINGS              = ' '
    znast                      = nast
    it_likp                    = IT_ZLIKP
    v_tknum                    = V_TKNUM
    v_tpbez                    = V_tpbez
    v_name1                    = V_NAME1
    v_signi                    = V_SIGNI
    v_bstnk                    = V_BSTNK
    v_vbeln                    = V_VBELN
    v_telf1                    = v_telf1
    v_telfx                    = v_telfx
    v_ebeln                    = V_EBELN
    v_conlb                    = V_CONLB
    v_btgew                    = V_BTGEW
IMPORTING
   DOCUMENT_OUTPUT_INFO       = document_output_info
   JOB_OUTPUT_INFO            = job_output_info
   JOB_OUTPUT_OPTIONS         = job_output_options
  tables
    it_lips                    = IT_ITEM
    it_ltap                    = IT_LTAP
    it_stxh                    = it_STXH
    it_line                    = it_line
*--Start of changes by Rashmi on 30th Aug 05    .
    it_cert_line               = it_cert_line
    it_cust_line               = it_cust_line
*--End of changes by Rashmi on 30th Aug 05.
EXCEPTIONS
   FORMATTING_ERROR           = 1
   INTERNAL_ERROR             = 2
   SEND_ERROR                 = 3
   USER_CANCELED              = 4
   OTHERS                     = 5
*if sy-subrc <> 0.
** MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
**         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
*endif.
*--End of change by rashmi on 30th Aug 2005.
  IF sy-subrc <> 0.
    retcode = sy-subrc.
    PERFORM protocol_update.
* get SmartForm protocoll and store it in the NAST protocoll
*    PERFORM add_smfrm_prot.
  ENDIF.
ENDFORM.                    "processing
*&      Form  get_data
*       text
FORM GET_DATA .
  IF NAST-OBJKY+10 NE SPACE.
    NAST-OBJKY = NAST-OBJKY+16(10).
  ELSE.
    NAST-OBJKY = NAST-OBJKY.
  ENDIF.
*Select Nast Entries
  GS_VBELN = NAST-OBJKY.
*To Get the Header Details
  SELECT VBELN
         LFDAT
         KUNNR
         BTGEW
         GEWEI
         NTGEW
         VOLUM
         VOLEH
         TRAID
         INCO1
         INCO2
    INTO CORRESPONDING FIELDS OF TABLE IT_LIKP
    FROM LIKP
    WHERE VBELN = GS_VBELN.
  select single btgew from likp into v_btgew where vbeln = gs_vbeln.
  IF SY-SUBRC = 0.
    LOOP AT IT_LIKP.
      MOVE-CORRESPONDING IT_LIKP TO IT_ZLIKP.
*--Start of Changes by Rashmi 30th aug 2005.
      v_vbelnl = it_likp-vbeln.
      condense v_vbeln.
      call function 'READ_TEXT'
        exporting
*         CLIENT                        = SY-MANDT
          id                            = 'Z002'
          language                      = 'E'
          name                          = v_vbelnl
          object                        = 'VBBK'
*         ARCHIVE_HANDLE                = 0
*         LOCAL_CAT                     = ' '
*       IMPORTING
*         HEADER                        =
        tables
          lines                         = IT_LINE[]
       EXCEPTIONS
         ID                            = 1
         LANGUAGE                      = 2
         NAME                          = 3
         NOT_FOUND                     = 4
         OBJECT                        = 5
         REFERENCE_CHECK               = 6
         WRONG_ACCESS_TO_ARCHIVE       = 7
         OTHERS                        = 8
      call function 'READ_TEXT'
        exporting
*         CLIENT                        = SY-MANDT
          id                            = 'Z007'
          language                      = 'E'
          name                          = V_VBELNL
          object                        = 'VBBK'
*         ARCHIVE_HANDLE                = 0
*         LOCAL_CAT                     = ' '
*       IMPORTING
*         HEADER                        =
        tables
          lines                         = IT_CERT_LINE[]
       EXCEPTIONS
         ID                            = 1
         LANGUAGE                      = 2
         NAME                          = 3
         NOT_FOUND                     = 4
         OBJECT                        = 5
         REFERENCE_CHECK               = 6
         WRONG_ACCESS_TO_ARCHIVE       = 7
         OTHERS                        = 8
      call function 'READ_TEXT'
        exporting
*         CLIENT                        = SY-MANDT
          id                            = 'Z014'
          language                      = 'E'
          name                          = V_VBELNL
          object                        = 'VBBK'
*         ARCHIVE_HANDLE                = 0
*         LOCAL_CAT                     = ' '
*       IMPORTING
*         HEADER                        =
        tables
          lines                         = IT_CUST_LINE[]
       EXCEPTIONS
         ID                            = 1
         LANGUAGE                      = 2
         NAME                          = 3
         NOT_FOUND                     = 4
         OBJECT                        = 5
         REFERENCE_CHECK               = 6
         WRONG_ACCESS_TO_ARCHIVE       = 7
         OTHERS                        = 8
*--End of changes by Rashmi 30th Aug 2005.
    ENDLOOP.
  ENDIF.
*Customer PO no
  SELECT VBELV
         FROM VBFA
         INTO V_VBELV UP TO 1 ROWS
         WHERE VBELN = GS_VBELN
         AND   VBTYP_N = C_J.
  ENDSELECT.
  IF SY-SUBRC = 0.
    SELECT VBELN
           BSTNK
           INTO (V_VBELN, V_BSTNK ) UP TO 1 ROWS
           FROM VBAK
           WHERE VBELN = V_VBELV.
    ENDSELECT.
  ENDIF.
*To Get item Details
  SELECT  vgpos
          VBELN
          POSNR
          LFIMG
          meins
          MATNR
          vgbel
          vgpos
          ARKTX
          KCMENG
          VRKME
    INTO CORRESPONDING FIELDS OF TABLE IT_LIPS
    FROM LIPS
    WHERE VBELN = GS_VBELN.
  sort it_lips by vgpos ascending posnr descending.
  IF NOT IT_LIPS[] IS INITIAL.
*Start of changes by Rashmi on 22nd Feb 06.
*Pallet
*    SELECT NLENR
*           BRGEW
*           GEWEI
*           VISTM
*           MATNR
*           POSNR
*           CHARG
*           VLENR
*       FROM LTAP
*       INTO CORRESPONDING FIELDS OF TABLE IT_LTAP
*        FOR ALL ENTRIES IN IT_LIPS
*       WHERE VBELN = GS_VBELN
*              AND MATNR = IT_LIPS-MATNR
*              AND POSNR = IT_LIPS-POSNR
*              and vorga = 'LF'.
*  ENDIF.
* Get the pallets from LTAP.
    SELECT NLENR
           BRGEW
           GEWEI
           VISTM
           MATNR
           POSNR
           CHARG
           VLENR
       FROM LTAP
       INTO CORRESPONDING FIELDS OF TABLE IT_LTAP
        FOR ALL ENTRIES IN IT_LIPS
       WHERE VBELN = GS_VBELN
              AND MATNR = IT_LIPS-MATNR
              AND POSNR = IT_LIPS-POSNR
              and vorga = 'LF'.
*Check from vepo and vekp tables if pallets not forund in LTAP.
    if it_ltap[] is initial.
*End of changes by Rashmi on 22nd Feb 06.
      select vekp~exidv
             vekp~brgew
             vekp~gewei
             vekp~ntgew
             vepo~matnr
             vepo~posnr
             vepo~charg
           into table it_ltap
           from vepo inner join vekp on vekp~venum = vepo~venum
           for all entries in it_lips
                   where vbeln = gs_vbeln
                   and matnr = it_lips-matnr
                  and posnr = it_lips-posnr.
    endif.
  endif.
  loop at it_lips.
*Start of comment by Rashmi on 22nd Feb 06.
*    select count(*)
*           into v_lfipl
*           from ltap
*          WHERE VBELN = GS_VBELN
*                  AND MATNR = IT_LIPS-MATNR
*                  AND POSNR = IT_LIPS-POSNR
*                  and vorga = 'LF'.
*Start of changes by Rashmi on 30th Jan 06.
    select count(*)
           into v_lfipl
           from VEPO
           WHERE VBELN = GS_VBELN
                    AND MATNR = IT_LIPS-MATNR
                    AND POSNR = IT_LIPS-POSNR.
*                    and vorga = 'LF'.
    if v_lfipl is initial and v_lfipl1 is initial. "Change on 22nd Feb
      select count(*)
             into v_lfipl
             from ltap
            WHERE VBELN = GS_VBELN
                  AND MATNR = IT_LIPS-MATNR
                  AND POSNR = IT_LIPS-POSNR
                  and vorga = 'LF'.
    endif.
*End of changes by Rashmi on 30th Jan 06.
    v_lfipl1 = v_lfipl1 + v_lfipl.
    clear v_lfipl.
    at end of vgpos.
      read table it_lips index sy-tabix.
      move it_lips-vrkme to it_lips-meinso.
      clear it_lips-vrkme.
      if it_lips-lfimg is initial.
        move it_lips-kcmeng to it_lips-lfimg.
      endif.
      if not v_lfipl1 is initial.
        it_lips-meins = 'PL'.
      endif.
      move v_lfipl1 to it_lips-lfipl.
      modify it_lips.
      clear it_lips.
      clear v_lfipl1.
    endat.
  endloop.
  sort it_lips by vgpos posnr.
  sort it_ltap by matnr posnr.
*Shipment no
  SELECT TKNUM FROM VTTP
          INTO V_TKNUM UP TO 1 ROWS
          WHERE VBELN = GS_VBELN.
  ENDSELECT.
  if sy-subrc = 0.
    Select single tdlnr Signi tpbez
          into (v_vltdr, v_Signi, v_tpbez)
          from vttk
          where tknum = v_tknum.
    if not v_vltdr is initial.
      select single name1 into v_name1
        from lfa1
       where lifnr eq v_vltdr.
      clear v_vltdr.
    endif.
  endif.
  SELECT MATNR BISMT
    INTO TABLE IT_MAT
    FROM MARA FOR ALL ENTRIES IN IT_LIPS
       WHERE MATNR = IT_LIPS-MATNR.
  LOOP AT IT_LIPS.
*Order quantity
    SELECT KWMENG
           vrkme
           INTO (IT_LIPS-KWMENG, it_lips-vrkme) UP TO 1 ROWS
           FROM VBAP
           WHERE VBELN = V_VBELV
           AND POSNR = IT_LIPS-POSNR.
    ENDSELECT.
    if sy-subrc <> 0.
      SELECT EBELN
             MENGE
             MEINS
           INTO (V_EBELN, IT_LIPS-KWMENG, it_lips-vrkme) UP TO 1 ROWS
             FROM EKPO
             WHERE EBELN = IT_LIPS-VGBEL
             AND EBELP = IT_LIPS-VGPOS+1(5).
      ENDSELECT.
    endif.
*   move-corresponding it_likp to it_item.
    READ TABLE IT_MAT WITH KEY MATNR = IT_LIPS-MATNR.
    MOVE IT_MAT-BISMT TO IT_ITEM-BISMT.
    MOVE : IT_LIPS-VBELN TO IT_ITEM-VBELN,
           IT_LIPS-POSNR TO IT_ITEM-POSNR,
           IT_LIPS-LFIMG TO IT_ITEM-LFIMG,
           IT_LIPS-LFIPL TO IT_ITEM-LFIPL,
           IT_LIPS-MEINS TO IT_ITEM-MEINS,
           IT_LIPS-MATNR TO IT_ITEM-MATNR,
           IT_LIPS-KWMENG TO IT_ITEM-KWMENG,
           IT_LIPS-VRKME TO IT_ITEM-VRKME,
           V_BSTNK TO IT_ITEM-BSTNK,
           IT_LIPS-ARKTX TO IT_ITEM-ARKTX  .
    if it_lips-meinso <> it_lips-vrkme.
      SELECT SINGLE *
          FROM MARM
         WHERE MATNR = IT_LIPS-MATNR
           AND MEINH = IT_LIPS-VRKME.
      IF SY-SUBRC EQ 0.
        IT_ITEM-LFIOR = ( IT_ITEM-LFIMG * ( MARM-UMREN / MARM-UMREZ ) ).
      ENDIF.
    else.
      move it_item-lfimg to it_item-lfior.
    endif.
    CLEAR MARM.
    IF IT_ITEM-LFIPL IS INITIAL.
      MOVE IT_ITEM-LFIMG TO IT_ITEM-LFIPL.
    ENDIF.
    APPEND IT_ITEM.
    CLEAR IT_ITEM.
  ENDLOOP.
ENDFORM.                    " get_data
*       FORM PROTOCOL_UPDATE                                          *
*       The messages are collected for the processing protocol.       *
FORM protocol_update.
  CHECK xscreen = space.
  CALL FUNCTION 'NAST_PROTOCOL_UPDATE'
    EXPORTING
      msg_arbgb = syst-msgid
      msg_nr    = syst-msgno
      msg_ty    = syst-msgty
      msg_v1    = syst-msgv1
      msg_v2    = syst-msgv2
      msg_v3    = syst-msgv3
      msg_v4    = syst-msgv4
    EXCEPTIONS
      OTHERS    = 1.
ENDFORM.                    "protocol_update

Similar Messages

  • TREX preprocessor/filter errors

    hello,
    after trex installation on linux and running the runInstallationTest.py the script finishes with the following console output:
    <snipped>
    [16384, 5.498] TREX_QDOC_STATE_PREPROCESS         :0
    [16384, 5.498] TREX_QDOC_STATE_PREPROCESS_FAILED  :4
    [16384, 5.498] detected Documentsd in PREPROCESS_FAILED -> Test Broken
    [16384, 5.499] << ending waitQSqueriedState, rc = 3 (RC_SUBTEST_FAILED) (2 of 2 subtests passed), after 4.003 secs
    [16384, 5.499] << ending runInstallationTest, rc = 3 (RC_SUBTEST_FAILED) (7 of 8 subtests passed), after 5.498 secs
    The TREXPreprocessor-Trace contains the following error messages:
    <snipped>
    [32771] 2005-09-29 11:48:12.211 e TrexFilterCl TrexFilterCl.cpp(00335) : ERROR: read returncode failed
    [32771] 2005-09-29 11:48:12.213 e TrexFilterCl TrexFilterCl.cpp(00312) : ERROR: write document failed
    [32771] 2005-09-29 11:48:12.224 e TrexFilterCl TrexFilterCl.cpp(00335) : ERROR: read returncode failed
    [32771] 2005-09-29 11:48:12.224 e TrexFilterCl TrexFilterCl.cpp(00382) : still failed request after maxtries
    [32771] 2005-09-29 11:48:12.226 e TrexFilterCl TrexFilterCl.cpp(00312) : ERROR: write document failed
    [32771] 2005-09-29 11:48:12.227 e TrexFilterCl TrexFilterCl.cpp(00382) : still failed request after maxtries
    [32771] 2005-09-29 11:48:12.236 e TrexFilterCl TrexFilterCl.cpp(00430) : ERROR: write request type failed
    [32771] 2005-09-29 11:48:12.239 e TrexFilterCl TrexFilterCl.cpp(00444) : ERROR: read returncode failed
    [32771] 2005-09-29 11:48:12.249 e TrexFilterCl TrexFilterCl.cpp(00444) : ERROR: read returncode failed
    [32771] 2005-09-29 11:48:12.250 e TrexFilterCl TrexFilterCl.cpp(00482) : still failed request after maxtries
    [32771] 2005-09-29 11:48:12.250 e preprocessor Preprocessor.cpp(01458) : FILTER: TrexFilter 'internet/www.pythonware.com'
    completed with errors: As filterRc is 128 content is cleared, HARD ERROR.
    [32771] 2005-09-29 11:48:12.251 e preprocessor Preprocessor.cpp(03393) : HANDLE: DISPATCH - Processing Document with key '
    internet/www.pythonware.com' failed, returning PREPROCESSOR_ACTIVITY_ERROR (Code 14128)
    [32771] 2005-09-29 11:48:12.252 e TrexFilterCl TrexFilterCl.cpp(00444) : ERROR: read returncode failed
    [32771] 2005-09-29 11:48:12.252 e TrexFilterCl TrexFilterCl.cpp(00482) : still failed request after maxtries
    [32771] 2005-09-29 11:48:12.253 e preprocessor Preprocessor.cpp(01458) : FILTER: TrexFilter 'internet/www.python.org' comp
    leted with errors: As filterRc is 128 content is cleared, HARD ERROR.
    [32771] 2005-09-29 11:48:12.253 e preprocessor Preprocessor.cpp(03393) : HANDLE: DISPATCH - Processing Document with key '
    internet/www.python.org' failed, returning PREPROCESSOR_ACTIVITY_ERROR (Code 14128)
    <snipped>
    The trace continues with a lot of similar error messages.
    All efforts to index a repository in the enterprise portal have failed due to similar errors (the TREXPreprocessor-Trace file shows similar error messages and the same error code 14128).
    Does anybody know what might be the problem here?
    Kind regards,
    Christof.

    Hi Christof,
    14128 = Operating system generated error
    And in that case there are only two comments I can make:
    1) Have you gone through the documented post installation tasks?
    2) If 1=true, then log a support message to SAP, please.
    Regards,
    Karsten

  • Import CTS+ transport into Portal failed with Returncode:'12'

    Hi, Gurus!
    I have encountered the problem while deploying CTS+ transport to the Portal (system XO3): Returncode:'12' class java.io.IOException:
    The file (
    \solman.mycompany.com\sapmnt\trans\data\BIGK900007\ctsplus.par) does not exist on the filesystem.
    Full log text:
    | ######################################
    | Deployment
    | Transport request : BIGK900007
    | System : XO3
    | tp path : tp | Version and release: 372.04.71 700 
    | Deploy Service called with following parameters:
    | CommunicationData-Type:0
    | CommunicationData-Address:http://portalXO3.mycompany.com:50218
    | CommunicationData-Host:portalXO3.mycompany.com
    | CommunicationData-Port:50218
    | CommunicationData-User:'filled'
    | CommunicationData-Password:'filled'
    | Deployable(0) | Deployable-Type:0
    | Deployable-Id:
    solman.mycompany.com\sapmnt\trans\data/BIGK900007/ctsplus.par
    | Returncode:'12' | class java.io.IOException:The file (
    \solman.mycompany.com\sapmnt\trans\data\BIGK900007\ctsplus.p
    | >>>ar) does not exist on the filesystem.
    | Deployment
    | End date and time : 20100106154329
    | Ended with return code: ===> 12 <===
    | ######################################
    The file ctsplus.par does exists at the right place and available from the Portal machine.
    Especially strange looks the Deployable-Id: *
    solman.mycompany.com\sapmnt\trans\data/BIGK900007/ctsplus.par*
    Maybe the different slashes "\" and "/" are the cause of the porblem? Both systems (Portal and Solution manager) run on Windows 2003 Servers.
    I have checked the "Note 1232674 - class java.io.IO exception during import" and set up the full control permissions to access "\sapmnt\" for the local (solman) user SAPServiceXO3 but it does not help.
    I've created a local "SAPServiceXO3" user in the server of Solman and have given to it highest permissions to the file share.  Has anybody any idea how to resolve the problem?
    Thanks in advance.
    Edited by: Mikhail Palstsianau on Jan 28, 2010 8:47 AM

    Hi,
    Due you have common trans directory for all the system ???
    Thanks
    Anil

  • Importing the TR related to process chain in SCQ it fails with returncode 8

    Hi I am getting following errors while transporting from development to quality server.
       Start of the after-import method RS_RSPC_AFTER_IMPORT for object type(s) RSPC (Activation Mode)
       Version 'M' of chain Z_AP_BNL_SCEN_2_3 was saved without checking
       Results of check for process     in chain  :
       0 Chains Were Selected
       Version 'M' of chain Z_AP_CZ_SCEN_2_3 was saved without checking
       Results of check for process     in chain  :
       0 Chains Were Selected
       Version 'M' of chain Z_AP_PT_SCEN_2_3 was saved without checking
       Results of check for process     in chain  :
       0 Chains Were Selected
       Version 'M' of chain Z_AP_SK_SCEN_2_3 was saved without checking
       Results of check for process     in chain  :
       0 Chains Were Selected
       Start of the after-import method RS_RSPC_AFTER_IMPORT for object type(s) RSPC (Delete Mode)
       Start of the after-import method RS_RSPV_AFTER_IMPORT for object type(s) RSPV (Delete Mode)
       Start of the after-import method RS_RSPT_AFTER_IMPORT for object type(s) RSPT (Delete Mode)
       Errors occurred during post-handling RS_AFTER_IMPORT for RSPC L
       RS_AFTER_IMPORT belongs to package RS
       The errors affect the following components:
          BW-WHM (Warehouse Management)
       Post-import method RS_AFTER_IMPORT completed for RSPC L, date and time: 20100521120136
       Post-import methods of change/transport request SCDK904729 completed
            Start of subsequent processing ... 20100521120135
            End of subsequent processing... 20100521120136
       Execute reports for change/transport request: SCDK904729
       Reports for change/transport request SCDK904729 have been executed
            Start of................ 20100521120136
            End of.................. 20100521120136
       Execution of programs after import (XPRA)
       End date and time : 20100521120136
    Please suggest me the solution.

    Hello,
    The problem might be due to missing or incorrect customizing settings in
    Tcode RSTPRFC.                                                                               
    Please review the SAP note 659160                                                                               
    659160 - "Error during remote call of destination ' ... ' -RSPC051"                                                                               
    Please ensure the user and password are maintained in the transaction SM59 for the     
    myself rfc connection. Also for the transaction RSTPRFC.                                                                               
    There are objects that require client-specific processing as part of   
    import postprocessing. However, transports are usually performed in    
    client 000. This processing is enabled by an RFC logon with a user     
    change of client 000 to the productive client in BW.                                                                               
    Therefore please maintain these two places (sm59 and rstprfc) according to note  
    659160 - "Error during remote call of destination ' ... ' -RSPC051".   
    if those things are maintained this error shouldn't occur anymore
    /br

  • Installation of the Proof of Purchase from the ACPI table failed. Error code:0xC004F059

    I just updated Window 8.0 to 8.1 for the second time as the first Time there was an UEFI issue...  the 8.1 installs and update seemed smooth... I shut down, and I leave for work. I come home fire up my PC it seems slow!! it boots...
    I notice some live tiles are active I prefer mine off so I  shut off a couple Live tiles. so then I decide to open the Mail tile and it locks up... and then one of my browsers freezes up!!! I could not open task manager at all to end the
    proses, so I decided to restart and then an app was not allowing windows to restart!!! so windows ended the task on its own could not make out what program or app it was!!! and the machine booted up slower again. I went into the event viewer
    and what do I find in there is this stuff and now looking at it this all started after the windows 8.1 update... I get it we all want the latest and greatest OS but as my mom said good things come to those whom wait don't rush into anything!!!
    and I think Microsoft you are rushing to push stuff out onto the Market... so now I have to sit here and wonder why my PC now takes 2 + minutes to load!!! (BS) and on win 8.0 it took 60 seconds... fix this please I will watch and see if
    this happens again if it keeps up I will have to once again revert back to 8.0 and at that point I will want some $$$ compensation for my loss... why should I have to go through hoops for something with the word Mircrosoft attached to it...
    I wonder how many others have had this same issue and don't even know its happening....
    1.
    Installation of the Proof of Purchase from the ACPI table failed. Error code:0xC004F059
    2.
    taskhostex (2888) WebCacheLocal: The shadow header page of file C:\Users\Dale\AppData\Local\Microsoft\Windows\WebCache\V01.chk was damaged.The primary header page (4096 bytes) was used instead.
    3.
    The driver \Driver\WudfRd failed to load for the device SWD\WPDBUSENUM\{362b48de-4382-11e3-be6e-3085a9a945d8}#0000000000007E00.
    4.
    Driver detected an internal error in its data structures for
    5.
    The program wwahost.exe version 6.3.9600.16431 stopped interacting with Windows and was closed. To see if more information about the problem is available, check the problem history in the Action Center control panel.
    Process ID: e14
    Start Time: 01cf3eb70280ca6e
    Termination Time: 4294967295
    Application Path: C:\WINDOWS\syswow64\wwahost.exe
    Report Id: f7b4be2f-aaaa-11e3-8250-3085a9a945d8
    Faulting package full name: Microsoft.SkypeApp_2.0.0.5011_x86__kzf8qxf38zg5c
    Faulting package-relative application ID: App
    6.
    The program wwahost.exe version 6.3.9600.16431 stopped interacting with Windows and was closed. To see if more information about the problem is available, check the problem history in the Action Center control panel.
    Process ID: 15bc
    Start Time: 01cf3eb66f89a193
    Termination Time: 15
    Application Path: C:\WINDOWS\system32\wwahost.exe
    Report Id: 0fd54265-aaaa-11e3-8250-3085a9a945d8
    Faulting package full name: microsoft.windowscommunicationsapps_17.4.9600.16384_x64__8wekyb3d8bbwe
    Faulting package-relative application ID: Microsoft.WindowsLive.Mail

    I have the something similar happening as reported in  event viewer in the warning section:
     System
      - Provider
       [ Name]  Microsoft-Windows-Security-SPP
       [ Guid]  {E23B33B0-C8C9-472C-A5F9-F2BDFEA0F156}
       [ EventSourceName]  Software Protection Platform Service
      - EventID 1058
       [ Qualifiers]  32768
       Version 0
       Level 3
       Task 0
       Opcode 0
       Keywords 0x80000000000000
      - TimeCreated
       [ SystemTime]  2014-08-13T04:35:49.000000000Z
       EventRecordID 80761
       Correlation
      - Execution
       [ ProcessID]  0
       [ ThreadID]  0
       Channel Application
       Computer Monzworks
       Security
    - EventData
       0xC004F059
    installation of the proof of purchase from the acpi table failed 0xc004f059
    My System Properties page says "Windows is activated"  and a product Id is displayed. I am on a window 8.1 core OS after applying the update successfulling from Window 8. My computer is an AsusTek Computer Inc. ,
    Asus Desktop PC CM1745 Series - 64-bit Operating System x64-based processor.
    I had trouble with AODDriver4.2.0 causing errors because the system could not find the path, It turned out to be uncleared program remnants in the registry were looking for an old version of the driver, in the wrong place , instead of the current one.  
    Oh, and I tried sfc/scannow and DISM /Online /Cleanup-Image /RestoreHealth from elevated cmd prompt and elevated powershell ise everthing was reported with no errors and with powershell, the report said windows store corruption was repaired.
    Before this I had used apps.diagcab and it said my IE 11's  temporary internet files folder was in the wrong place that it was going to put it back. Well, it messed up my IE 11 so the folder location was in the same place but it was not listed in the
    location:                 . <----- Just like this. Plus the amount of disk space available was 8mb-which messed up any sort of operations for example putting in a new search
    engine could not be completed.  I had to use a system restore.   I currently have no errors showing up but warnings yes. thankfully most are minor.This is the other event viewer report which could be related:
    - System
      - Provider
       [ Name]  Microsoft-Windows-Security-Auditing
       [ Guid]  {54849625-5478-4994-A5BA-3E3B0328C30D}
       EventID 5061
       Version 0
       Level 0
       Task 12290
       Opcode 0
       Keywords 0x8010000000000000
      - TimeCreated
       [ SystemTime]  2014-08-13T03:48:26.671362500Z
       EventRecordID 290021
       Correlation
      - Execution
       [ ProcessID]  676
       [ ThreadID]  728
       Channel Security
       Computer Monzworks
       Security
    - EventData
      SubjectUserSid S-1-5-21-4255092528-2166032690-2543152005-1002
      SubjectUserName Monz Prez
      SubjectDomainName MONZWORKS
      SubjectLogonId 0x239d9
      ProviderName Microsoft Software Key Storage Provider
      AlgorithmName UNKNOWN
      KeyName CD1CC265-0DA0-4230-8419-CB6F808FE688
      KeyType %%2500
      Operation %%2480
      ReturnCode 0x80090016
    I am tired so talk among yourselves.
    Sincerely Tired

  • Error :he creation of the default xuser entry aborts with returncode 2.

    Hi,
    We are installing the SAP NW 2004 (ABAP +Java ) on AIX box with MAXBD 7.5.
    During the aBAP installing:
    a)We could sucessfully install the Central instance
    b)While installing the database instance we get the follow error:
    RR 11517  XUSER    Could not open USER file, Permission denied
    WARNING    2007-07-05 14:14:14
               CJSlibModule::writeWarning_impl()
    Execution of the command "/data1/sapdb/programs/bin/xuser -d CTS -n ctsaix05 -u XXXXXX -U DEFAULT -S SAPR3 -t 0 -I 0 set" finished with return code 2. Output:
    FATAL: Close xuser entry failed:
    ERROR      2007-07-05 14:14:14 [iaxxinscbk.cpp:289]
               abortInstallation
    CJS-00030  Assertion failed: in
    function create_xuser_default(db_name, db_host, defUser, defPasswd, dbVer) {
        var def_s = defUser + "," + defPasswd;
        var xuser_pr = new ProcessMgt();
        var xuser_app = xuser_pr.createChildApplication();
        var xuser = (new FileMgt()).convertToOSPath(sapdb_xuser_fl());
        xuser_app.setExecutable(xuser);
        var def_args = ["-d", db_name, "-n", db_host, "-u", def_s, "-U", "DEFAULT", "-S", "SAPR3", "-t", "0", "-I", "0", "set"];
        xuser_app.setArguments(def_args);
        xuser_app.setHiddenArguments({5:true});
        xuser_app.setLogname("xuser_default.log");
        var ret = xuser_app.run();
        ASSERT(arguments.callee, ret == 0, "The creation of the default xuser entry aborts with returncode " + ret + ". Check the logfile xuser_default.log for more information.");
    The creation of the default xuser entry aborts with returncode 2. Check the logfile xuser_default.log for more information.
    I  checked the file xuser_default.log .I has the following
    FATAL: Close xuser entry failed:
    Best Regards
    Manoj

    Hello Manoj
    Does the user calling finally the xuser-command have write permission to the corresponing location in the file system?
    Since you are probably a SAP customer compare with note 39439.
    Regards Thomas

  • Error SAPNW2004sJava -CJS-00030 MUT-03025 FCO-00011 xuser entry file failed

    WHAT"S WRONG WITH THIS PICTURE? please this is from step 17 of 32
    WARNING 2007-09-02 15:39:40
    Execution of the command "C:\sapdb\programs\bin\xuser.exe -c dbhost\user -U DEFAULT -u XXXXXX -d SID -n dbhost -S SAPR3 -t 0 -I 0 set" finished with return code 2. Output: FATAL: Open xuser entry file failed: could not get logon USER name [1332]
    ERROR 2007-09-02 15:39:40
    CJS-00030  Assertion failed: The creation of the xuser entry via 'C:\sapdb\programs\bin\xuser.exe -c dbhost\user -U DEFAULT -u XXXXXX -d SID -n dbhost -S SAPR3 -t 0 -I 0 set' aborts with returncode 2. Check the logfile xuser_DEFAULT.log for more information.
    ERROR 2007-09-02 15:39:40
    MUT-03025  Caught ESAPinstException in Modulecall: ESAPinstException: error text undefined.
    ERROR 2007-09-02 15:39:40
    FCO-00011  The step SdbCreateXuser with step key |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|9|0|NW_CreateDB|ind|ind|ind|ind|0|0|NW_ADA_DB|ind|ind|ind|ind|6|0|Sdb_Xuser|ind|ind|ind|ind|6|0|SdbCreateXuser was executed with status ERROR .
    I have already install ABAP TRIAL 2004s first with Java sdk 1.4.2.08 and tehn proceeded with java 04s trial.
    I got the variable set
    I got saploc set
    i got the the right java sdk 1.4.2_09

    Hi,
    what does the log files say?? (xuser_DEFAULT.log)
    Be sure that your other system is stopped (also the db an the xserver is down). Then the installaition should work.
    Regards,
    Daniel

  • Releasing of many activities at once from NWDS failed

    Hi
    I have created several actvities in my NWDS and checked in and actvated them.
    I have created a track connection from this track to the other in CMS.
    Now i tried to release all my actvities and my colleagues activities too at once. It give a big name comma seperated for each of the actvities.
    I am getting an error as below with the activities moved in to the node Failed.
    Internal error: com.sap.cms.util.CMSUnexpectedException
    The export of SC_CR sap.com/Comp#TRACK1_D.13 failed, tcs returncode was 12
    Please let me know anybody got this kind of error. and solution for this.
    or atleast let me know how to revert back from failed node to Default node,
    Additinal info :
    I have list of names seoperated by coma(,) in the failed node in the transport view,  Atleast anybody can tell me how to rename the list of names to simple one
    Thanks in advance
    Regards,
    Pavan

    Make sure there's sufficient diskspace available in the CMS archives folder of the NWDI server.

  • STMS Import queue Fails - FTP_FAILED

    Hi All
    Stms import queue fails with the following error message
    System   BWP              Command  TMS_MGR_TRANSMIT_TR_QUEUE
    Client   001                   Service  Transport Service
    User     SAPBASIS        Start    Online
    Date     14.05.2009        Function TMS_TP_ADD2BUFFER
    Time     11:48:34           Message  FTP_FAILED
    Source file could not be opened
    long text
    ========
    An error occurred when opening the source file for reading.
      File name: R901010.BWE
      Directory: $TR_DATA
      Error code: 16
    Definition of the error codes:
    03   RFC system failure
    04   RFC communication failure
    11   invalid EPS subdirectory
    12   sapgparam failed
    13   build directory failed
    14   no authorization
    15   build path failed
    16   open failed
    17   read directory failed
    18   read attributes failed
    System Response
    Transmission was terminated.
    Procedure
    Eliminate the cause of the error and restart the transmission
    ==========
    suggesstions please
    Edited by: Harendranath Medarametla on May 14, 2009 11:59 AM

    Hi Saurabh,
    I am able to FTP files manually between servers.
    START TRANSMIT BUFFER ENTR BWP g      20090511092623              TMSADM       smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090511092638              TMSADM       smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090512152143              MEDARAMETLAH smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090512152159              MEDARAMETLAH smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090512152251              TMSADM       smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090512152307              TMSADM       smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090512152321              MEDARAMETLAH smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090512152338              MEDARAMETLAH smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090512171040              TMSADM       smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090512171056              TMSADM       smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090512171405              TMSADM       smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090512171421              TMSADM       smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090512171429              MEDARAMETLAH smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090512171446              MEDARAMETLAH smuc021                    
    START CMDIMPORT            BWP L      20090512172121              MEDARAMETLAH smuc021 20090512172120681  
    STOP  CMDIMPORT            BWP L      20090512172123              MEDARAMETLAH smuc021 20090512172120681  
    START MAIN IMPORT          BWP I      20090512172124              MEDARAMETLAH smuc021 20090512172123291  
    STOP  MAIN IMPORT          BWP I      20090512172139              MEDARAMETLAH smuc021 20090512172123291  
    START CMDIMPORT            BWP L      20090512172139              MEDARAMETLAH smuc021 20090512172139056  
    STOP  CMDIMPORT            BWP L      20090512172343              MEDARAMETLAH smuc021 20090512172139056  
    START CREATE VERSIONS BEFO BWP w      20090512173112              MEDARAMETLAH smuc021                    
    START tp_getprots          BWP W      20090512173112              MEDARAMETLAH smuc021                    
    STOP  tp_getprots          BWP W      20090512173322              MEDARAMETLAH smuc021                    
    STOP  CREATE VERSIONS BEFO BWP w      20090512173322              MEDARAMETLAH smuc021                    
    START DD IMPORT            BWP H      20090512173623              MEDARAMETLAH smuc021 20090512173622926  
    STOP  DD IMPORT            BWP H      20090512173855              MEDARAMETLAH smuc021 20090512173622926  
    START DD ACTIVATION        BWP A      20090512173905              MEDARAMETLAH smuc021                    
    START tp_getprots          BWP J      20090512173905              MEDARAMETLAH smuc021                    
    STOP  tp_getprots          BWP J      20090512174100              MEDARAMETLAH smuc021                    
    STOP  DD ACTIVATION        BWP A      20090512174100              MEDARAMETLAH smuc021                    
    START imp all              BWP        20090512174101              MEDARAMETLAH smuc021 20090512174100971  
    INFO: event SAP_IMPORT_START triggered successfully
    START CMDIMPORT            BWP L      20090512174102              MEDARAMETLAH smuc021 20090512174100971  
    STOP  CMDIMPORT            BWP L      20090512174102              MEDARAMETLAH smuc021 20090512174100971  
    START DD IMPORT            BWP H      20090512174103              MEDARAMETLAH smuc021 20090512174100971  
    STOP  DD IMPORT            BWP H      20090512174103              MEDARAMETLAH smuc021 20090512174100971  
    START DISTRIBUTION OF DD-O BWP S      20090512174103              MEDARAMETLAH smuc021 20090512174100971  
    START tp_getprots          BWP S      20090512174103              MEDARAMETLAH smuc021 20090512174100971  
    STOP  tp_getprots          BWP S      20090512174118              MEDARAMETLAH smuc021 20090512174100971  
    STOP  DISTRIBUTION OF DD-O BWP S      20090512174118              MEDARAMETLAH smuc021 20090512174100971  
    INFO  TBATG CONVERSION OF  BWP N      not needed                  MEDARAMETLAH smuc021 20090512174100971  
    START MOVE NAMETABS        BWP 6      20090512174118              MEDARAMETLAH smuc021 20090512174100971  
    START tp_getprots          BWP P      20090512174118              MEDARAMETLAH smuc021 20090512174100971  
    STOP  tp_getprots          BWP P      20090512174223              MEDARAMETLAH smuc021 20090512174100971  
    STOP  MOVE NAMETABS        BWP 6      20090512174223              MEDARAMETLAH smuc021 20090512174100971  
    START MAIN IMPORT          BWP I      20090512174224              MEDARAMETLAH smuc021 20090512174100971  
    STOP  MAIN IMPORT          BWP I      20090512204043              MEDARAMETLAH smuc021 20090512174100971  
    START TBATG CREATION OF EN BWP n      20090512204043              MEDARAMETLAH smuc021 20090512174100971  
    START tp_getprots          BWP Y      20090512204043              MEDARAMETLAH smuc021 20090512174100971  
    STOP  tp_getprots          BWP Y      20090512204053              MEDARAMETLAH smuc021 20090512174100971  
    STOP  TBATG CREATION OF EN BWP n      20090512204053              MEDARAMETLAH smuc021 20090512174100971  
    INFO: event SAP_IMPORT_STOP triggered successfully
    STOP  imp all              BWP   0004 20090512204055              MEDARAMETLAH smuc021 20090512174100971  
    START EXECUTION OF REPORTS BWP R      20090512204200              MEDARAMETLAH smuc021                    
    START tp_getprots          BWP R      20090512204200              MEDARAMETLAH smuc021                    
    STOP  tp_getprots          BWP R      20090512205837              MEDARAMETLAH smuc021                    
    STOP  EXECUTION OF REPORTS BWP R      20090512205837              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205840              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205840              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205840              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205840              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205840              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205841              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205841              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205841              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205841              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205842              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205842              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205842              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205842              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205842              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205843              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205843              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205843              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205843              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205844              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205844              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205844              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205844              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205844              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205845              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205845              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205845              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205845              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205846              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205846              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205846              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205846              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205846              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205847              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205847              MEDARAMETLAH smuc021                    
    START tp_rm_cntl_mark      BWP        20090512205847              MEDARAMETLAH smuc021                    
    STOP  tp_rm_cntl_mark      BWP        20090512205847              MEDARAMETLAH smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090513095342              MEDARAMETLAH smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090513095359              MEDARAMETLAH smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090513095701              TMSADM       smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090513095718              TMSADM       smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090513095723              MEDARAMETLAH smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090513095740              MEDARAMETLAH smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090513100151              TMSADM       smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090513100208              TMSADM       smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090513100213              MEDARAMETLAH smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090513100231              MEDARAMETLAH smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090513100238              TMSADM       STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090513103804              TMSADM       smuc021                    
    START TRANSMIT BUFFER ENTR BWP g      20090513103833              MEDARAMETLAH START TRANSMIT BUFFER ENTR BWP g      20090513115655              MEYERA       smuc021                    
    STOP  TRANSMIT BUFFER ENTR BWP g 0000 20090513115713              MEYERA       smuc021                    
    INFO: Buffer saved as
    smuc021\sapmnt\trans\buffer\BWPSAV.
    ======================
    also please see the error when i try to connect using TP command in os
    This is tp version 372.04.40 (release 700, unicode enabled)
    Connection to Database of BWP was successful.
    This is R3trans.exe version 6.14 (release 700 - 16.10.08 - 16:26:00).
    unicode enabled version
    2EETW152 Cannot open file "
    SMUC013\sapmnt\trans\tmp\C090514.BWP".
    R3trans.exe finished (0012).
    SMUC013\sapmnt\trans\log\C090514.BWP for transport: ALL: Permission denied
    Access denied on
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC (1)
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC is already in use (1), I'm waiting 1
    sec (20090514174859). My name: pid 4340 on smuc021 (bwpadm)
    Access denied on
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC (2)
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC is already in use (2), I'm waiting 3
    sec (20090514174900). My name: pid 4340 on smuc021 (bwpadm)
    Access denied on
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC (3)
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC is already in use (3), I'm waiting 1
    sec (20090514174903). My name: pid 4340 on smuc021 (bwpadm)
    Access denied on
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC (4)
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC is already in use (4), I'm waiting 5
    sec (20090514174904). My name: pid 4340 on smuc021 (bwpadm)
    Access denied on
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC (5)
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC is already in use (5), I'm waiting 3
    sec (20090514174909). My name: pid 4340 on smuc021 (bwpadm)
    Access denied on
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC (6)
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC is already in use (6), I'm waiting 3
    sec (20090514174912). My name: pid 4340 on smuc021 (bwpadm)
    Access denied on
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC (7)
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC is already in use (7), I'm waiting 2
    sec (20090514174915). My name: pid 4340 on smuc021 (bwpadm)
    Access denied on
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC (8)
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC is already in use (8), I'm waiting 5
    sec (20090514174917). My name: pid 4340 on smuc021 (bwpadm)
    Access denied on
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC (9)
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC is already in use (9), I'm waiting 5
    sec (20090514174922). My name: pid 4340 on smuc021 (bwpadm)
    Access denied on
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC (10)
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC is already in use (10), I'm waiting
    4 sec (20090514174927). My name: pid 4340 on smuc021 (bwpadm)
    SMUC013\sapmnt\trans\tmp\SLOG0920.BWP.LOC: Permission denied
    PANIC --> exiting
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0212
    tp finished with return code: 212
    meaning:
      could not access file as supposed (see dev_tp or SLOG0920.BWP for more details
    I have 4 system lanscape but other systems dont have this problem, even i have not maintained any permissions.
    regards
    hari

  • Returncode of weblogic.Admin Utility

    i try to check my WLS server with the following command:
    "java -cp $CLASSPATH weblogic.Admin t3://myserver:7001 PING 3 100 system
    weblogic"
    i doesn't matter if the command fails or was successfull i allways get
    returncode 0 when typing "echo $?" as the screenshot shows:
    # java -cp $CLASSPATH weblogic.Admin t3://myserver:7895 PING 3 100 system
    weblogic
    Failed to connect to t3://myserver:7895 due to: [java.net.ConnectException:
    No server found at T3://myserver:7895]
    # echo $?
    0
    Anybody any idea how to manage this?
    alexander

    Alexander,
    Currently, there is not a plan in place to backport the requested
    functionallity to WLS 5.1.
    Thanks,
    Simon Nunn
    Developer Relations Engineer
    BEA Technical Support
    Alexander von Alkier wrote:
    "Glenn Dougherty" <[email protected]> schrieb im Newsbeitrag
    news:[email protected]..
    Alexander,
    This is a known issue with the weblogic.Admin utility. BEA is planning tofix
    this and provide proper return codes in the next major release (probablywithin
    6 months).
    Regards,
    Glenn Dougherty
    Developer Relations Engineer
    BEA Technical Support
    Alexander von Alkier wrote:
    i try to check my WLS server with the following command:
    "java -cp $CLASSPATH weblogic.Admin t3://myserver:7001 PING 3 100 system
    weblogic"
    i doesn't matter if the command fails or was successfull i allways get
    returncode 0 when typing "echo $?" as the screenshot shows:
    # java -cp $CLASSPATH weblogic.Admin t3://myserver:7895 PING 3 100
    system
    weblogic
    Failed to connect to t3://myserver:7895 due to:[java.net.ConnectException:
    No server found at T3://myserver:7895]
    # echo $?
    0
    Anybody any idea how to manage this?
    alexanderso i have no chance to do this with WLS 5.1?
    alexander

  • Import of a request failing : ERROR: connect failed due to DbSL load lib fa

    Hi,
    I am using ecc6, on hp-unix and oracle as database.
    When i try to import a request from stms, i get this error.
    DURING IMPORT ERROR:
        Transport control program tp ended with error code 0249
        Errors: connect failed due to DbSL load lib failure
    TP ERROR:
    Transport control program tp ended with error code 0249
        Message no. XT200
    Diagnosis
        An error occurred when executing a tp command.
          Command:        IMPORT E07K901512 DEV client100 U01 pf=/usr/sap/tr
          Return code:    0249
          Error text:     connect failed due to DbSL load lib failure
          Request:        E08K901525
    System Response
        The function terminates.
    Procedure
        Correct the error and execute the command again if necessary.
    THEN I TRIED TO IMPORT USING TP COMMAND:
    WITH OUT DIR_LIBRARY
    % ./tp connect DEV
    This is ./tp version 370.00.09 (release 700, unicode enabled)
    E-TPSETTINGS could not be opened.
    EXIT
    ERROR: System : Parameter SAPEVTPATH not set. Batch jobs cannot be started.
    Error in TPSETTINGS: transdir not set.
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0208
    tp finished with return code: 208
    meaning:
      error in transportprofil (param missing, unknown,...)
    % ./R3trans -d
    This is ./R3trans version 6.14 (release 700 - 18.09.06 - 09:35:00).
    unicode enabled version
    2EETW169 no connect possible: "environment variable DIR_LIBRARY is not set."
    ./R3trans finished (0012).
    % # export DIR_LIBRARY=/usr/sap/DEV/SYS/exe/run
    % ./R3trans -d
    This is ./R3trans version 6.14 (release 700 - 18.09.06 - 09:35:00).
    unicode enabled version
    2EETW169 no connect possible: "DBMS = ORACLE                           --- ORACLE_SID =
    'DEV'"
    ./R3trans finished (0012).
    % ./tp connect DEV
    This is ./tp version 370.00.09 (release 700, unicode enabled)
    E-TPSETTINGS could not be opened.
    EXIT
    ERROR: System : Parameter SAPEVTPATH not set. Batch jobs cannot be started.
    Error in TPSETTINGS: transdir not set.
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0208
    tp finished with return code: 208
    meaning:
      error in transportprofil (param missing, unknown,...)
    COULD SOMEONE GIVE ME A SOLUTION TO OVERCOME THIS.
    YOUR SOLUTION AND GREATELY APPRITIATED.
    REGARDS,
    DHANANJAY

    Hi Dhanajay,
    Firstly check if R3trans -d is working fine.
    If so, please chek if the following parameters are set properly.
    DIR_LIBRARY=/usr/sap/<SID>/SYS/exe/run
    TRANSDIR = ....\trans
    <SID>/DBHOST = <HOSTNAME>
    <SID>/DBNAME = <SID>
    <SID>/DBTYPE = ora
    Execute the below command and check the transport profile:
    tp check all pf=/usr/sap/trans/bin/TP_DOMAIN_<SID>.PFL
    Please confirm the permission of the /oracle/ directory
    The permission of the /oracle should be 755.
    Also check if the import queue is not locked.
    Also please ensure the Kernel is of latest version, if not, please update the DBSL shared library.Please look at the note 19466.
    Finally you can try once distributing and activating the transport routes once.
    When you executed command R3trans -d logfile trans.log will be created.
    Please check this file for exact error information.
    Paste the log file here.
    Let us know the outcome.
    Regards,
    Sujit.

  • T410 battery firmware update fails

    Hello,
    Yesterday my ThinkVantage Toolbox offered me to update my battery firmware because of some critical issue. When I pressed on "Update now" it directed me to here. I downloaded a file for my T410 (type: 2537-22G) however, when I try to install it, it fails with a message "The tool was unable to update the battery firmware due to an internal error". It does not work even when computer is restarted and the updater loaded right after the login. I tried reruning the application a lot of times, but nothing helped.
    Additional information:
    HKEY_LOCAL_MACHINE\SOFTWARE\Lenovo\BFU\DependencyW​rapper\ReturnCode = fffffffb (So I pressume, that it is not able to get a current BIOS version, however the value of BIOS_Version in the same key is 1.28.)
    My boot loader is Gnome 1.98
    I use Windows 7 and among other programs there is Skype (4.2.0.169), Comodo Firewall (4.1.150439.920) and avast! Free antivirus (5.0.594, virus definition 100817-1), however I tried turning those programs of and disabling antivirus, but it did not help.
    Two screenshots:
    Before installing the update.
    Failed instalation of the update.
    Can anybody please help me?

    Has anyone sorted this out? I'm having the same problem with my T410.

  • Transport Fail -com.sap.aii.utilxi.misc.api.ResourceException:Import

    Hi Experts,
    My Transports through Solution Manager is failing in Production PI. Transports are imported, deployed successfully in Test and Regression environments and working fine. Transport requests are of type Workbench and we are attaching '.tpz' files as Non abap objects. All contain ESR objects, no ID components. Import and Check version steps are good but failing at Deployment step in Production PI.
    Please find the log which I can see in SE10. All the transports failed with the same below error description.
    CTS Import Service - Version 0.94 04.04.2008
    ==============================================================
    Deploy Web service destination = CTSDEPLOY
    Directory = /usr/sap/trans/data
    SDM Deploy URL =
    SLD Deploy URL =
    XI Deploy URL = http://ABC2159161:50000
    Start import with id:4E8B872CA9F100F2E10080000A32109F
    DeployProxy (patch level:0) called with followingparameters:
    Deployable(0)
    Deployable-Type:1
    Deployable-Id:4E6E38F506B601AAE10080000A321063
    Deployable-TransportContainerId:DI1K900677
    Deployable-ContentLocator:/usr/sap/trans/data/DI1K900677/XI7_1
    >>>63.tpz
    Property(0)
    Property-key:TARGETSYSTEMID Property-value:PI1
    Begin CommunicationData-Type[0]:1
    CommunicationData-Address:http://ABC2159161:50000/rep
    CommunicationData-Host:ABC2159161
    CommunicationData-Port:50000
    CommunicationData-User:'filled'
    CommunicationData-Password:'filled'
    Importing archive:XI7_1_A_SAPPI_CM_1.0_of_ABC.com-objs_6
    com.sap.aii.ibtransportclient.XiTransportException: caused by:
    >>>rt failed: Internal error when importing object [Lcom.sap.a
    >>>aused by: com.sap.aii.utilxi.misc.api.ResourceException: Im
    >>>g object [Lcom.sap.aii.ib.bom.workspace.IWorkspace;@7ffc92d
    >>>ethodFault: caused by: ClientServerException exception:Impo
    >>>object [Lcom.sap.aii.ib.bom.workspace.IWorkspace;@7ffc92d c
    >>>sourceException: Import failed: Internal error when importi
    >>>IWorkspace;@7ffc92d
    End CommunicationData-Type[0]:1
    End import with returncode:'8'
    Deployment
    End date and time : 20111009003401
    Ended with return code:  ===> 8 <===
    Thanks,
    Nabendu.

    Hi,
    I have already informed Basis about these. But do we have any way to check the exact reason for this failure?
    All the above points can ensure the successful transport to Production or not, I am not sure.
    Thanks,
    Nabendu.

  • How to get number of failed log atempt for one user ( schema )

    Hi All,
    If one use try to connecte with wrrong password he will get this message ORA-1017. and the nombre of failed log atemp will increase.
    Then who can i check this number for one user in my date base ?
    Cheers
    Fayçal.

    Enable the audit by setting
    alter system set audit_trail=true scope=spfile;.
    Setting this parameter bounce of database
    Enable the following audit option
    SQL>AUDIT ALL BY ACCESS WHENEVER NOT SUCCESSFUL
    Then query AUD$ as the following example
    SQL> select returncode, action#, userid, userhost, terminal from aud$
    Regards,
    Anand

  • STMS -- TRANSPORT TOOL ERROR DB CONNECT : LINK TO BD FAILED ? HELP

    HAI,
         i have installed a new sandbox with SAP 4.7c x200 , on windows 2003 and 64 bit kernel.
    I have to apply support packages to it .
    After fresh installation , i configured TMS and now when i check the tp  as
    STMS>OVERVIEW>SYSTEMS>SAP SYSTEM>CHECK-->TRANSPORT TOOLS , there a tree structure opens  and everything is fine except the tree part tp call  having DB CONNECT : LINNK TO DATABASE FAILED  AND
    offline call having  CONNECT  FAILED  DUOE TO DBSL LOAD FAIL
    these two comes in yellow and when i follow the detail it gives a pop up message
    as below:
          This is tp version 340.16.24 (release 640)         
    Warning: Parameter DBHOST is no longer used.       
    Warning: Parameter DBNAME is no longer used.       
    ERROR: No connect due to DbSl Load Lib Failure     
    ERROR: environment variable dbms_type is not set.  
    ERROR: Connect to UPG failed (20071102130751).     
    INFO: no trace information stored                  
    tp returncode summary:                             
    TOOLS: Highest return code of single steps was: 0  
    ERRORS: Highest tp internal error was: 0249        
    standard output from tp and from tools called by tp:
    So when i apply package it stops in CHECK_REQUIREMENT PHASE indicating that connection with db failed, also whe i reun to connect it is giving everything fine
    help me out
    regards
    manu

    Hi,
    please try to set the env variable 'dbms_type=mss' globally - just to make sure that we don't get confused here by specific users. I think tp should run under the account SAPService<SID>. Lets see what happens then...
    Regards,
    Sven

Maybe you are looking for

  • How to create a button like the one pictured here

    How would I create a button like the print button below? I was thinking actually make it two separate buttons placed next to each other. The print button obviously would just be a modified boolean, that's easy. But the drop down is a bit harder. I fi

  • Printing from a Galaxy S5 To a non wireless network printer

    I have a Galaxy S5 smart phone... I would like to be able to print to my home network printer... I havea HP officejet Pro 8000 printer, non wireless, it is USB cabled to my PC runing Windows Home Pro.... I have a home network set up with a laptop tha

  • How do you send images to MSWord

    I'm trying to figure out how to insert a graph or chart image into a MSWORD document using ActiveX. Can anyboby provide some pointers? Does anybody have an example? P.S. I.m still stuck using LV6.0.2

  • I am trying to install adobe flash player

    I am trying to install adobe flash player and I keep getting this error when it tries to retrieve the download       Line: 1, Char: 12671, Error: object expected, Code: 0, URL:  http://127.0.0.1:1616/app/_js/adobe.js.  Any suggestions?

  • Program for background jobs...

    Hi I know that when i create any info structure; a program is also created in background viz used while creating background jobs...<b>but i dont know where can i view them</b>? This program is used while creating a background jobs in SM36.......Pleas