Error i am not able to recognise

hi frnds, this is the pgm which i have written.but it is eating my brain when i am running.it is giving me runtime error.can anybody pls help me
*& Report  ZCASE9_ORDERSLISTREPORT
REPORT  ZCASE9_ORDERSLISTREPORT.
TYPE-POOLS: VRM,SLIS.
TABLES:VBAK,
       VBAP,
       VBKD,
       VBEP,
       KNA1,
       VBPA,
       MAKT,
       VBUP,
       TVBST.
TYPES:BEGIN OF ST_VBAK,
        VBELN TYPE VBAK-VBELN,
        ERDAT TYPE VBAK-ERDAT,
        ERZET TYPE VBAK-ERZET,
        ERNAM TYPE VBAK-ERNAM,
        AUDAT TYPE VBAK-AUDAT,
        LIFSK TYPE VBAK-LIFSK,
        VDATU TYPE VBAK-VDATU,
        VSBED TYPE VBAK-VSBED,
        BSTNK TYPE VBAK-BSTNK,
        BNAME TYPE VBAK-BNAME,
        AEDAT TYPE VBAK-AEDAT,
      END OF ST_VBAK,
      BEGIN OF ST_VBAP,
        VBELN1 TYPE VBAP-VBELN,
        MATNR TYPE VBAP-MATNR,
        CHARG TYPE VBAP-CHARG,
        PSTYV TYPE VBAP-PSTYV,
        ABGRU TYPE VBAP-ABGRU,
        MEINS TYPE VBAP-MEINS,
        VKAUS TYPE VBAP-VKAUS,
        KWMENG TYPE VBAP-KWMENG,
        LPRIO TYPE VBAP-LPRIO,
        WERKS TYPE VBAP-WERKS,
        LGORT TYPE VBAP-LGORT,
        VSTEL TYPE VBAP-VSTEL,
        ROUTE TYPE VBAP-ROUTE,
        MVGR5 TYPE VBAP-MVGR5,
      END OF ST_VBAP,
      BEGIN OF ST_VBPA,
        VBELN TYPE VBPA-VBELN,
        KUNNR TYPE VBPA-KUNNR,
      END OF ST_VBPA,
      BEGIN OF ST_KNA1,
        KUNNR TYPE KNA1-KUNNR,
        NAME1 TYPE KNA1-NAME1,
        TELF1 TYPE KNA1-TELF1,
      END OF ST_KNA1,
      BEGIN OF ST_MAKT,
        MATNR TYPE MAKT-MATNR,
        MAKTX TYPE MAKT-MAKTX,
      END OF ST_MAKT,
      BEGIN OF ST_VBEP,
        VBELN TYPE VBEP-VBELN,
        ETENR TYPE VBEP-ETENR,
        WADAT TYPE VBEP-WADAT,
      END OF ST_VBEP,
      BEGIN OF ST_VBUP,
        VBELN TYPE VBUP-VBELN,
        LFSTA TYPE VBUP-LFSTA,
        GBSTA TYPE VBUP-GBSTA,
      END OF ST_VBUP,
      begin of st_finalHDR,
        VBELN TYPE VBAK-VBELN,
        ERDAT TYPE VBAK-ERDAT,
        ERZET TYPE VBAK-ERZET,
        ERNAM TYPE VBAK-ERNAM,
        AUDAT TYPE VBAK-AUDAT,
        LIFSK TYPE VBAK-LIFSK,
        VDATU TYPE VBAK-VDATU,
        VSBED TYPE VBAK-VSBED,
        BSTNK TYPE VBAK-BSTNK,
        BNAME TYPE VBAK-BNAME,
        AEDAT TYPE VBAK-AEDAT,
        KUNNR TYPE VBPA-KUNNR,
        NAME1 TYPE KNA1-NAME1,
        TELF1 TYPE KNA1-TELF1,
      end of st_finalHDR,
      BEGIN OF ST_FINALTEM,
        VBELN1 TYPE VBAP-VBELN,
        LPRIO TYPE VBAP-LPRIO,
        WERKS TYPE VBAP-WERKS,
        LGORT TYPE VBAP-LGORT,
        VSTEL TYPE VBAP-VSTEL,
        ROUTE TYPE VBAP-ROUTE,
        MVGR5 TYPE VBAP-MVGR5,
        MATNR TYPE VBAP-MATNR,
        CHARG TYPE VBAP-CHARG,
        PSTYV TYPE VBAP-PSTYV,
        ABGRU TYPE VBAP-ABGRU,
        MEINS TYPE VBAP-MEINS,
        VKAUS TYPE VBAP-VKAUS,
        KWMENG TYPE VBAP-KWMENG,
        MAKTX TYPE MAKT-MAKTX,
        ETENR TYPE VBEP-ETENR,
        WADAT TYPE VBEP-WADAT,
        LFSTA TYPE VBUP-LFSTA,
        GBSTA TYPE VBUP-GBSTA,
      END OF ST_FINALTEM.
DATA:IT_VBAK TYPE STANDARD TABLE OF ST_VBAK,
     IT_VBAP TYPE STANDARD TABLE OF ST_VBAP,
     IT_VBPA TYPE STANDARD TABLE OF ST_VBPA,
     IT_KNA1 TYPE STANDARD TABLE OF ST_KNA1,
     IT_MAKT TYPE STANDARD TABLE OF ST_MAKT,
     IT_VBEP TYPE STANDARD TABLE OF ST_VBEP,
     IT_VBUP TYPE STANDARD TABLE OF ST_VBUP,
     IT_FINALHDR TYPE STANDARD TABLE OF ST_FINALHDR,
     IT_FINALTEM TYPE STANDARD TABLE OF ST_FINALTEM,
     WA_VBAK TYPE ST_VBAK,
     WA_VBAP TYPE ST_VBAP,
     WA_VBPA TYPE ST_VBPA,
     WA_KNA1 TYPE ST_KNA1,
     WA_MAKT TYPE ST_MAKT,
     WA_VBEP TYPE ST_VBEP,
     WA_VBUP TYPE ST_VBUP,
     WA_FINALHDR TYPE ST_FINALHDR,
     WA_FINALTEM TYPE ST_FINALTEM.
DATA: NAME TYPE VRM_ID,
      LIST TYPE VRM_VALUES,
      VALUE LIKE LINE OF LIST,
      REPID TYPE SY-REPID,
     TY_KEYINFO TYPE SLIS_KEYINFO_ALV, " key information type.
     IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
     WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV," field catalog type
     IT_HEADER TYPE SLIS_TABNAME,    " table to store header data
     IT_ITEM TYPE SLIS_TABNAME. " table to store item data
SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
PARAMETERS:OPEN_ORD RADIOBUTTON GROUP g1 DEFAULT 'X',                  " DOWNLOAD TO APPLICATION SERVER
           ALL_ORD RADIOBUTTON GROUP g1,
           MY_ORD AS CHECKBOX.
SELECTION-SCREEN END OF BLOCK B1.
SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
PARAMETERS:PF(25) AS LISTBOX VISIBLE LENGTH 20,  P_KUNNR TYPE VBAK-KUNNR,
           P_MATNR TYPE VBAP-MATNR,
           P_BSTNK TYPE VBAK-BSTNK.
SELECTION-SCREEN END OF BLOCK B2.
SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-003.
SELECT-OPTIONS:S_AUDAT FOR VBAK-AUDAT,
               S_VBELN FOR VBAK-VBELN,
               S_AUART FOR VBAK-AUART,
               S_LPRIO FOR VBAP-LPRIO,
               S_PRSDT FOR VBKD-PRSDT,
               S_WADAT FOR VBEP-WADAT,
               S_VSBED FOR VBAK-VSBED,
               S_EDATU FOR VBEP-EDATU,
               S_LIFSK FOR VBAK-LIFSK,
               S_ERNAM FOR VBAK-ERNAM.
SELECTION-SCREEN END OF BLOCK B3.
SELECTION-SCREEN BEGIN OF BLOCK B4 WITH FRAME TITLE TEXT-004.
SELECT-OPTIONS:S_VKORG FOR VBAK-VKORG,
               S_VTWEG FOR VBAK-VTWEG,
               S_SPART FOR VBAP-SPART,
               S_VKGRP FOR VBAK-VKGRP,
               S_VKBUR FOR VBAK-VKBUR,
               S_WAERK FOR VBAK-WAERK.
SELECTION-SCREEN END OF BLOCK B4.
INITIALIZATION.
NAME = 'PF'.
VALUE-KEY = '1'.
VALUE-TEXT = 'SHIP TO'.
APPEND VALUE TO LIST.
NAME = 'PF'.
VALUE-KEY = '2'.
VALUE-TEXT = 'SOLD TO'.
APPEND VALUE TO LIST.
NAME = 'PF'.
VALUE-KEY = '3'.
VALUE-TEXT = 'BILL TO'.
APPEND VALUE TO LIST.
CALL FUNCTION 'VRM_SET_VALUES'
EXPORTING
ID = NAME
VALUES = LIST.
REPID = SY-REPID.            " variable having the program name
IT_HEADER = 'IT_FINALHDR'.
IT_ITEM = 'IT_FINALTEM'.
CLEAR TY_KEYINFO.
TY_KEYINFO-HEADER01 = 'VBELN'." comparing the keys and relating the header and item internal tables
TY_KEYINFO-ITEM01 = 'VBELN'.
START-OF-SELECTION.
SELECT VBELN
       ERDAT
       ERZET
       ERNAM
       AUDAT
       LIFSK
       VDATU
       VSBED
       BSTNK
       BNAME
       AEDAT INTO TABLE IT_VBAK FROM VBAK WHERE VKORG IN S_VKORG.
IF SY-SUBRC NE 0.
   MESSAGE E099(ZMMCASE) WITH 'NO VBAK HDR DATA FOUND'.
ENDIF.
SELECT VBELN
       MATNR
       CHARG
       PSTYV
       ABGRU
       MEINS
       VKAUS
       KWMENG
       LPRIO
       WERKS
       LGORT
       VSTEL
       ROUTE
       MVGR5 INTO TABLE IT_VBAP FROM VBAP
                  FOR ALL ENTRIES IN IT_VBAK
                  WHERE VBELN = IT_VBAK-VBELN.
IF SY-SUBRC NE 0.
   MESSAGE E098(ZMMCASE) WITH 'NO DATA FOUND IN TABLE VBAP'.
ENDIF.
SELECT VBELN
       KUNNR INTO TABLE IT_VBPA FROM VBPA
                  FOR ALL ENTRIES IN IT_VBAP
                  WHERE VBELN = IT_VBAP-VBELN1.
IF SY-SUBRC NE 0.
   MESSAGE E097(ZMMCASE) WITH 'NO DATA FOUND IN TABLE VBPA'.
ENDIF.
SELECT KUNNR
       NAME1
       TELF1 INTO TABLE IT_KNA1 FROM KNA1
                  FOR ALL ENTRIES IN IT_VBPA
                  WHERE KUNNR = IT_VBPA-KUNNR.
IF SY-SUBRC NE 0.
   MESSAGE E096(ZMMCASE) WITH 'NO DATA FOUND IN TABLE KNA1'.
ENDIF.
SELECT MATNR
       MAKTX INTO TABLE IT_MAKT FROM MAKT
                  FOR ALL ENTRIES IN IT_VBAP
                  WHERE MATNR = IT_VBAP-MATNR.
IF SY-SUBRC NE 0.
   MESSAGE E095(ZMMCASE) WITH 'NO DATA FOUND IN TABLE MAKT'.
ENDIF.
SELECT VBELN
       ETENR
       WADAT INTO TABLE IT_VBEP FROM VBEP
             FOR ALL ENTRIES IN IT_VBAP
             WHERE VBELN = IT_VBAP-VBELN1.
IF SY-SUBRC NE 0.
   MESSAGE E094(ZMMCASE) WITH 'NO DATA FOUND IN TABLE VBEP'.
ENDIF.
SELECT VBELN
       LFSTA
       GBSTA INTO TABLE IT_VBUP FROM VBUP
             FOR ALL ENTRIES IN IT_VBAP
             WHERE VBELN = IT_VBAP-VBELN1.
IF SY-SUBRC NE 0.
   MESSAGE E093(ZMMCASE) WITH 'NO DATA FOUND IN TABLE VBUP'.
ENDIF.
IF IT_VBAK IS NOT INITIAL.
   LOOP AT IT_VBAK INTO WA_VBAK.
        READ TABLE IT_VBAP INTO WA_VBAP WITH KEY VBELN1 = WA_VBAK-VBELN.
             CHECK SY-SUBRC EQ 0.
        READ TABLE IT_VBPA INTO WA_VBPA WITH KEY VBELN = WA_VBAP-VBELN1.
             CHECK SY-SUBRC EQ 0.
        READ TABLE IT_KNA1 INTO WA_KNA1 WITH KEY KUNNR = WA_VBPA-KUNNR.
             CHECK SY-SUBRC EQ 0.
        READ TABLE IT_MAKT INTO WA_MAKT WITH KEY MATNR = WA_VBAP-MATNR.
             CHECK SY-SUBRC EQ 0.
        READ TABLE IT_VBEP INTO WA_VBEP WITH KEY VBELN = WA_VBAP-VBELN1.
             CHECK SY-SUBRC EQ 0.
        READ TABLE IT_VBUP INTO WA_VBUP WITH KEY VBELN = WA_VBAP-VBELN1.
             CHECK SY-SUBRC EQ 0.
             WA_FINALHDR-VBELN = WA_VBAK-VBELN.
             WA_FINALHDR-ERNAM = WA_VBAK-ERNAM.
             WA_FINALHDR-ERDAT = WA_VBAK-ERDAT.
             WA_FINALHDR-ERZET = WA_VBAK-ERZET.
             WA_FINALHDR-AEDAT = WA_VBAK-AEDAT.
             WA_FINALHDR-AUDAT = WA_VBAK-AUDAT.
             WA_FINALHDR-LIFSK = WA_VBAK-LIFSK.
             WA_FINALHDR-VDATU = WA_VBAK-VDATU.
             WA_FINALHDR-VSBED = WA_VBAK-VSBED.
             WA_FINALHDR-BNAME = WA_VBAK-BNAME.
             WA_FINALHDR-BSTNK = WA_VBAK-BSTNK.
             WA_FINALHDR-TELF1 = WA_KNA1-TELF1.
             WA_FINALHDR-NAME1 = WA_KNA1-NAME1.
             WA_FINALHDR-KUNNR = WA_VBPA-KUNNR.
             WA_FINALTEM-VBELN1 = WA_VBAP-VBELN1.
             WA_FINALTEM-LPRIO = WA_VBAP-LPRIO.
             WA_FINALTEM-MATNR = WA_VBAP-MATNR.
             WA_FINALTEM-CHARG = WA_VBAP-CHARG.
             WA_FINALTEM-MAKTX = WA_MAKT-MAKTX.
             WA_FINALTEM-LGORT = WA_VBAP-LGORT.
             WA_FINALTEM-MVGR5 = WA_VBAP-MVGR5.
             WA_FINALTEM-ETENR = WA_VBEP-ETENR.
             WA_FINALTEM-KWMENG = WA_VBAP-KWMENG.
             WA_FINALTEM-GBSTA = WA_VBUP-GBSTA.
             WA_FINALTEM-LFSTA = WA_VBUP-LFSTA.
             WA_FINALTEM-VSTEL = WA_VBAP-VSTEL.
             WA_FINALTEM-PSTYV = WA_VBAP-PSTYV.
             WA_FINALTEM-ABGRU = WA_VBAP-ABGRU.
             WA_FINALTEM-MEINS = WA_VBAP-MEINS.
             WA_FINALTEM-VKAUS = WA_VBAP-VKAUS.
             WA_FINALTEM-WERKS = WA_VBAP-WERKS.
             WA_FINALTEM-ROUTE = WA_VBAP-ROUTE.
             WA_FINALTEM-WADAT = WA_VBEP-WADAT.
             APPEND WA_FINALHDR TO IT_FINALHDR.
             APPEND WA_FINALTEM TO IT_FINALTEM.
   ENDLOOP.
ENDIF.
SORT iT_FINALHDR.
DELETE ADJACENT DUPLICATES FROM iT_FINALHDR COMPARING ALL FIELDS.
SORT iT_FINALTEM.
DELETE ADJACENT DUPLICATES FROM iT_FINALTEM COMPARING ALL FIELDS.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'VBELN'.
WA_FIELDCAT-SELTEXT_L = 'SALES DOC NO'.
WA_FIELDCAT-COL_POS = 1.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'ERNAM'.
WA_FIELDCAT-SELTEXT_L = 'CREATED BY'.
WA_FIELDCAT-COL_POS = 2.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'ERDAT'.
WA_FIELDCAT-SELTEXT_L = 'CREATED ON'.
WA_FIELDCAT-COL_POS = 3.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'ERZET'.
WA_FIELDCAT-SELTEXT_L = 'CREATED TIME'.
WA_FIELDCAT-COL_POS = 4.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'AEDAT'.
WA_FIELDCAT-SELTEXT_L = 'CHANGED ON'.
WA_FIELDCAT-COL_POS = 5.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'AUDAT'.
WA_FIELDCAT-SELTEXT_L = 'DOCUMENT DATE'.
WA_FIELDCAT-COL_POS = 6.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'LIFSK'.
WA_FIELDCAT-SELTEXT_L = 'DELIVERY BLOCK'.
WA_FIELDCAT-COL_POS = 7.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'VDATU'.
WA_FIELDCAT-SELTEXT_L = 'REQ DEL. DATE'.
WA_FIELDCAT-COL_POS = 8.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'VSBED'.
WA_FIELDCAT-SELTEXT_L = 'SHIPPING CONDITION'.
WA_FIELDCAT-COL_POS = 9.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'BNAME'.
WA_FIELDCAT-SELTEXT_L = 'NAME OF THE ORDERER'.
WA_FIELDCAT-COL_POS = 10.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'TELF1'.
WA_FIELDCAT-SELTEXT_L = 'SHIP 2 PARTY TELEPHONE'.
WA_FIELDCAT-COL_POS = 11.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'BSTNK'.
WA_FIELDCAT-SELTEXT_L = 'PURCHASE ORDER NO'.
WA_FIELDCAT-COL_POS = 12.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'KUNNR'.
WA_FIELDCAT-SELTEXT_L = 'SHIP 2 PARTY'.
WA_FIELDCAT-COL_POS = 13.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALHDR'.
WA_FIELDCAT-FIELDNAME = 'NAME1'.
WA_FIELDCAT-SELTEXT_L = 'SHIP 2 PARTY NAME'.
WA_FIELDCAT-COL_POS = 14.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'VBELN1'.
WA_FIELDCAT-SELTEXT_L = 'SALES DOC'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'LPRIO'.
WA_FIELDCAT-SELTEXT_L = 'DEL. PRIORITY'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'MATNR'.
WA_FIELDCAT-SELTEXT_L = 'MATERIAL'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'CHARG'.
WA_FIELDCAT-SELTEXT_L = 'BATCH'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'MAKTX'.
WA_FIELDCAT-SELTEXT_L = 'MAT DESC'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'LGORT'.
WA_FIELDCAT-SELTEXT_L = 'STORAGE LOC'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'MVGR5'.
WA_FIELDCAT-SELTEXT_L = 'MAT GROUP'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'ETENR'.
WA_FIELDCAT-SELTEXT_L = 'SCHED LINE NO'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'KWMENG'.
WA_FIELDCAT-SELTEXT_L = 'ORD QUANTITY'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'GBSTA'.
WA_FIELDCAT-SELTEXT_L = 'OVERALL STATUS'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'LFSTA'.
WA_FIELDCAT-SELTEXT_L = 'DEL. STATUS'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'VSTEL'.
WA_FIELDCAT-SELTEXT_L = 'SHIPPING POINT'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'PSTYV'.
WA_FIELDCAT-SELTEXT_L = 'ITEM CATEGORY'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'ABGRU'.
WA_FIELDCAT-SELTEXT_L = 'REASON 4 REJECTION'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'MEINS'.
WA_FIELDCAT-SELTEXT_L = 'BASE UOM'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'VKAUS'.
WA_FIELDCAT-SELTEXT_L = 'USAGE'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'WERKS'.
WA_FIELDCAT-SELTEXT_L = 'PLANT'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'ROUTE'.
WA_FIELDCAT-SELTEXT_L = 'ROUTE'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
WA_FIELDCAT-TABNAME = 'IT_FINALTEM'.
WA_FIELDCAT-FIELDNAME = 'WADAT'.
WA_FIELDCAT-SELTEXT_L = 'GOODS ISSUE DATE'.
APPEND WA_FIELDCAT TO IT_FIELDCAT.
CLEAR WA_FIELDCAT.
CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
  EXPORTING
  I_INTERFACE_CHECK              = ' '
   I_CALLBACK_PROGRAM             = REPID
  I_CALLBACK_PF_STATUS_SET       = ' '
  I_CALLBACK_USER_COMMAND        = ' '
  IS_LAYOUT                      =
   IT_FIELDCAT                    = IT_FIELDCAT
  IT_EXCLUDING                   =
  IT_SPECIAL_GROUPS              =
  IT_SORT                        =
  IT_FILTER                      =
  IS_SEL_HIDE                    =
  I_SCREEN_START_COLUMN          = 0
  I_SCREEN_START_LINE            = 0
  I_SCREEN_END_COLUMN            = 0
  I_SCREEN_END_LINE              = 0
  I_DEFAULT                      = 'X'
  I_SAVE                         = ' '
  IS_VARIANT                     =
  IT_EVENTS                      =
  IT_EVENT_EXIT                  =
    i_tabname_header               = IT_HEADER
    i_tabname_item                 = IT_ITEM
  I_STRUCTURE_NAME_HEADER        =
  I_STRUCTURE_NAME_ITEM          =
    is_keyinfo                     = TY_KEYINFO
  IS_PRINT                       =
  IS_REPREP_ID                   =
  I_BYPASSING_BUFFER             =
  I_BUFFER_ACTIVE                =
  IR_SALV_HIERSEQ_ADAPTER        =
  IT_EXCEPT_QINFO                =
  I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
IMPORTING
  E_EXIT_CAUSED_BY_CALLER        =
  ES_EXIT_CAUSED_BY_USER         =
  tables
    t_outtab_header                = IT_FINALHDR
    t_outtab_item                  = IT_FINALTEM
EXCEPTIONS
  PROGRAM_ERROR                  = 1
  OTHERS                         = 2
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

hi madan
i saw ur prog.
i replace vbeln1 into vbeln.
it s working with dump
but output is not displayed only displayed lines.
so pls see this code useful its and its very simple
*& Report  ZSAMP_HIERARCHY                                             *
REPORT  zsamp_hierarchy  NO STANDARD PAGE HEADING    "Suppress Standard
                         LINE-SIZE  220      "No. of characters per line
                         LINE-COUNT 65.      "No. of lines per page.
                 tables
TABLES : ekko,ekpo.
TYPE-POOLS : slis.
                         GLOBAL-STRUCTURES
TYPES : BEGIN OF x_ekko,
         ebeln TYPE ekko-ebeln,   " PO
         bukrs TYPE ekko-bukrs,   "Comp code
         aedat TYPE ekko-aedat,
        END OF x_ekko.
TYPES:  BEGIN OF x_ekpo,
         ebeln TYPE ekpo-ebeln,   " Sales Document
         ebelp TYPE ekpo-ebelp,   " Item number
         matnr TYPE ekpo-matnr,   " Material number
         txz01 TYPE ekpo-txz01,   " short text
         menge TYPE ekpo-menge,   " Purchase order quantity
         meins TYPE ekpo-meins,   " Order unit
      END OF x_ekpo.
    Print structure for ALV
DATA: x_print TYPE slis_print_alv.
*Global Internal table for ALV
DATA: t_keyinfo  TYPE slis_keyinfo_alv,
      t_fieldcat TYPE STANDARD TABLE OF slis_fieldcat_alv.
     t_layout   TYPE slis_layout_alv,
     t_alv_sort TYPE slis_t_sortinfo_alv,
     t_events   TYPE STANDARD TABLE OF slis_alv_event.
                    INTERNAL TABLES
TYPES : tt_ekko TYPE STANDARD TABLE OF x_ekko,
        tt_ekpo TYPE STANDARD TABLE OF x_ekpo.
DATA:   t_ekpo TYPE tt_ekpo,
        t_ekko TYPE tt_ekko.
                    WORK AREAS
*Work areas for ALV
DATA:
      wa_events    TYPE slis_alv_event,
      wa_fieldcat  TYPE slis_fieldcat_alv,
      wa_alv_sort TYPE slis_sortinfo_alv.
                       CONSTANT DECLARATIONS
CONSTANTS:
          c_set(1)       TYPE c VALUE 'X',
          c_header       TYPE slis_tabname VALUE 'T_EKKO',
          c_item         TYPE slis_tabname VALUE 'T_EKPO',
          c_top(11)      TYPE c VALUE 'TOP_OF_LIST',
          c_ftop(13)     TYPE c VALUE 'F_TOP_OF_LIST',
          c_end(11)      TYPE c VALUE 'END_OF_LIST',
          c_fend(13)     TYPE c VALUE 'F_END_OF_LIST',
          c_user_command TYPE slis_formname VALUE 'USER_COMMAND',
          c_ic1(4)       TYPE c VALUE '&IC1',
          c_bes(3)       TYPE c VALUE 'BES',
          c_me23(4)      TYPE c VALUE 'ME23',
          c_ebelp(5)     TYPE c VALUE 'EBELP',
          c_1            LIKE alvdynp-sortpos VALUE '1'.    "#EC *
                         SELECTION-SCREEN
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
SELECT-OPTIONS : s_ebeln FOR ekko-ebeln.
SELECTION-SCREEN END OF BLOCK b1. "End of Selection Screen
                        START-OF-SELECTION
START-OF-SELECTION.
*GET THE DATA
  PERFORM get_data TABLES t_ekko t_ekpo.
  IF t_ekpo[] IS NOT INITIAL.
perform field catlog.
    PERFORM fill_catlog.
  ENDIF.
End-of-selection                                                     *
END-OF-SELECTION.
Subroutine for Report display
  PERFORM f_report_display  TABLES t_ekko
                                   t_ekpo
                                   t_fieldcat
                                 t_events
                                 t_alv_sort
                            USING  x_print.
*&      Form  get_data
      text
-->  p1        text
<--  p2        text
FORM get_data TABLES   p_t_ekko LIKE  t_ekko
                       p_t_ekpo LIKE  t_ekpo.
  SELECT ebeln bukrs aedat FROM ekko INTO TABLE p_t_ekko WHERE ebeln IN s_ebeln.
  IF sy-subrc  = 0.
    SORT t_ekko BY ebeln .
  ENDIF.
  IF NOT p_t_ekko[] IS INITIAL.
    SELECT   ebeln
             ebelp
             matnr
             txz01
             menge
             meins FROM ekpo INTO TABLE p_t_ekpo
             FOR ALL ENTRIES IN p_t_ekko
             WHERE ebeln = p_t_ekko-ebeln.
    IF sy-subrc = 0.
      SORT p_t_ekpo BY ebeln ebelp.
    ENDIF.
  ENDIF.
ENDFORM.                    " get_data
*&      Form  fill_catlog
      text
-->  p1        text
<--  p2        text
FORM fill_catlog .
LOCAL CONSTANTS
  CONSTANTS:
           Field lengts.
             lc_3(1)       TYPE c VALUE '3',  "MEINS
             lc_6(1)       TYPE c VALUE '6',  "EBELP
             lc_8(1)       TYPE c VALUE '8',  "ERDAT
             lc_10(2)      TYPE c VALUE '10', "EBELN
             lc_12(2)      TYPE c VALUE '12', "ERNAM
             lc_18(2)      TYPE c VALUE '18', "MATNR, MENGE
             lc_40(2)      TYPE c VALUE '40',               "TXZ01
           Field names.
             lc_ebeln   TYPE slis_fieldname VALUE 'EBELN',
             lc_ebelp   TYPE slis_fieldname VALUE 'EBELP',
             lc_ernam   TYPE slis_fieldname VALUE 'BUKRS',
             lc_erdat   TYPE slis_fieldname VALUE 'ERDAT',
             lc_matnr   TYPE slis_fieldname VALUE 'MATNR',
             lc_txz01   TYPE slis_fieldname VALUE 'TXZ01',
             lc_menge   TYPE slis_fieldname VALUE 'MENGE',
             lc_meins   TYPE slis_fieldname VALUE 'MEINS'.
PO Document
  PERFORM f_fill_fields TABLES t_fieldcat
       USING c_header lc_ebeln text-h01 lc_10 space space.
  PERFORM f_fill_fields TABLES t_fieldcat
     USING c_header lc_erdat text-h02 lc_8 space space.
  PERFORM f_fill_fields TABLES t_fieldcat
     USING c_header lc_ernam text-h03 lc_12 space space.
PO Document Item
  PERFORM f_fill_fields TABLES t_fieldcat
     USING c_item lc_ebelp text-h04 lc_6 space space.
Material Number
  PERFORM f_fill_fields TABLES t_fieldcat
     USING c_item lc_matnr text-h05 lc_18 space space.
Short Text for PO Item
  PERFORM f_fill_fields TABLES t_fieldcat
     USING c_item lc_txz01 text-h06 lc_40 space space.
Order quantity
  PERFORM f_fill_fields TABLES t_fieldcat
     USING c_item lc_menge text-h07 lc_18 space space.
UOM
  PERFORM f_fill_fields TABLES t_fieldcat
     USING c_item lc_meins text-h08 lc_3 space space.
ENDFORM.                    " fill_catlog
*&      Form  f_fill_fields
      text
     -->P_T_FIELDCAT  text
     -->P_C_HEADER  text
     -->P_LC_EBELN  text
     -->P_TEXT_H01  text
     -->P_LC_10  text
     -->P_C_SET  text
     -->P_SPACE  text
FORM f_fill_fields  TABLES   p_t_fieldcat LIKE  t_fieldcat
                   USING     p_tabname     TYPE any
                             p_fieldname   TYPE any
                             p_seltext_l   TYPE any
                             p_length      TYPE any
                             p_hot         TYPE any
                             p_zero        TYPE any.
  wa_fieldcat-tabname   = p_tabname.
  wa_fieldcat-fieldname = p_fieldname.
  wa_fieldcat-seltext_l = p_seltext_l.
  wa_fieldcat-edit      = 'x'.
  wa_fieldcat-outputlen = p_length.
  wa_fieldcat-hotspot   = p_hot.
  wa_fieldcat-no_zero   = p_zero.
Do sum for quantity
  IF wa_fieldcat-fieldname = 'MENGE'.
    wa_fieldcat-do_sum    = c_set.
  ENDIF.
  APPEND wa_fieldcat TO p_t_fieldcat.
  CLEAR wa_fieldcat.
ENDFORM.                    " f_fill_fields
*&        Form  f_report_display
        text
       -->P_I_EKKO  text
       -->P_I_EKPO  text
       -->P_T_FIELDCAT  text
       -->P_X_PRINT  text
FORM f_report_display  TABLES   p_t_header   LIKE  t_ekko
                                p_t_item     LIKE  t_ekpo
                                p_t_fieldcat LIKE  t_fieldcat
                       USING    p_x_print    TYPE  slis_print_alv.
  DATA: l_repid TYPE sy-repid.
  l_repid = sy-repid.
  t_keyinfo-header01 = 'EBELN'.
  t_keyinfo-item01   = 'EBELN'.
  CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
    EXPORTING
      i_callback_program      = l_repid
      i_callback_user_command = c_user_command`
      it_fieldcat             = p_t_fieldcat[]
      i_default               = 'X'
      i_tabname_header        = 'T_EKKO'
      i_tabname_item          = 'T_EKPO'
      is_keyinfo              = t_keyinfo
      is_print                = p_x_print
    TABLES
      t_outtab_header         = p_t_header[]
      t_outtab_item           = p_t_item[].
  IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
ENDFORM.                    " f_report_display
*&      Form  f_top_list
      text
-->  p1        text
<--  p2        text
FORM f_top_list .
  FORMAT COLOR COL_HEADING ON.
  WRITE: /10 text-h10,  text-h09.
  FORMAT COLOR OFF.
  WRITE: /10 text-h11, sy-datum.
  WRITE: /10 text-h12,  sy-pagno.
ENDFORM.                    " f_top_list
*&      Form  f_user_command
      text
-->  p1        text
<--  p2        text
FORM f_user_command USING     r_ucomm     LIKE sy-ucomm     "#EC *
                             rs_selfield TYPE slis_selfield."#EC *
  DATA : l_ebeln LIKE ekko-ebeln.
  DATA: wa_ekko TYPE x_ekko.
  IF r_ucomm = c_ic1.
    CLEAR wa_ekko.
    IF rs_selfield-fieldname cs c_ebelp.
      READ TABLE t_ekko INTO wa_ekko INDEX rs_selfield-tabindex.
      IF NOT wa_ekko-ebeln IS INITIAL.
        SET PARAMETER ID c_bes FIELD wa_ekko-ebeln.  "L_EBELN.
        CALL TRANSACTION c_me23 AND SKIP FIRST SCREEN.
        CLEAR wa_ekko-ebeln.
      ENDIF.
    ENDIF.
  ENDIF.
ENDFORM.                    " f_user_command
*&      Form  f_end_list
      text
-->  p1        text
<--  p2        text
FORM f_end_list .
  WRITE: sy-uline.
  WRITE: /10 text-h13.
ENDFORM.                    " f_end_list

Similar Messages

  • Getting an error prompt "the facebook server has returned an unknown error and is not able to fulfill your request. (2001)"

    Hi. I need help regarding facebook for blackberry. I cannot post any status update, i keep on receiving an error prompt "the facebook server has returned an unknown error and is not able to fulfill your request. (2001)".  it has been like this for the past 3 days. I already did the hard reboot many times, re-send service book though i do'nt think it's needed, and tried uninstalling and reinstalling the facebook application too but still getting the same error everytime i try to post a status update. I can comment to messages on my wall and other profiles, the news feed is updating in time too, i can also log-in and out to facebook with no problem, as well as other applications on my phone like foursquare, BBm, ubersocial, BB protect, BB app world, etc, are all working perfectly fine. And now I don't know what seems to be the problem.
    I've already contacted my network provider and told me that the error i'm getting is beyond their scope.
    Is anybody having the same problem as mine? 
    Can someone in BB support team help me regarding this issue and tell me what should I do?
    Thank you in advance. 

    I got the same issue !! Since I've updated my Facebook app 2 or 3 week ago !
    I can not  update my status and check-in ! It gives me "the facebook server has returned an unknown error and is not able to fulfill your request. (2001) "
    I can upload photo, put comment on people, like people status/picture. The news feed update perfectly !
    I also  tryied to uninstall reinstall the app, reboot etc etc ! I still can't update my status !!!! I've installed 3.0.0.17 this morning and the issue is still there...
    I've remarked one thing... On my facebook under "privacy setting/the Apps, Games and Websites" I used to have a "blackberry app" installed. It's not there anymore and I didn't remove it.
    I don't know how to reinstall it...

  • After upgrading my iphone firmware i'm unable to activate via wifi and is not able to recognise my sim card

    after upgrading my iphone firmware i'm unable to activate via wifi and is not able to recognise my sim card

    Try a reset: hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • EBS password - 500 Internal Server Error - FNDCPASS was not able to decrypt

    Hello Guys,
    I am running ebs 12.1.3 on OEL6. We have been testing for about three months and sudenly there was a prompt at login to chage the sysadmin's password. After that change our system fell apart. We get "500 Internal Server Error" at any attempt to login with URL.
    I proceeded to attemtp changing the passwords following MOS doc - "Removing Credentials from a HDADMINd EBS Production Database [ID 419475.1]" but ended up with
    "FNDCPASS was not able to decrypt password for user 'APPS' during applsys password change.
    FNDCPASS was not able to decrypt password for user 'APPLSYS' during applsys password change"
    when I executed
    FNDCPASS apps/xxxxxxxxx 0 Y system/xxxxxxxxx ALLORACLE xxxxxxxxx .
    I have been reading forums for three days without a possible solution. Has anyone resolved this issue?
    Thanks
    Mathias

    Hello Hussein,
    I am still having "500 Internal Server Error" after following all the Notes you mentioned:
    1) Removing Credentials from a Cloned EBS Production Database [ID 419475.1] - I followed this without errors
    2) FNDCPASS Troubleshooting Guide For Login and Changing Applications Passwords [ID 1306938.1] - helped to accurately change the password of SYSADMIN.
    As per note 419475.1, I executed autocfg.sh without errors on the apps and db tiers successfully:
    $ADMIN_SCRIPTS_HOME/adautocfg.sh
    AutoConfig completed successfully.
    $ADPERLPRG $AD_TOP/bin/admkappsutil.pl
    $ORACLE_HOME/appsutil/scripts/OFD1_ofindev03/adautocfg.sh
    I started the apps and later confirmed and apache was running :
    $ADMIN_SCRIPTS_HOME/adstrtal.sh apps/clone
    $ADMIN_SCRIPTS_HOME/adapcctl.sh status:
    Processes in Instance: OFD1_ofindev03.ofindev03.corp.phillips.com
    --------------------------------------------------------------+---------
    ias-component | process-type | pid | status
    --------------------------------------------------------------+---------
    OC4JGroup:default_group | OC4J:oafm | 16670 | Alive
    OC4JGroup:default_group | OC4J:forms | 16598 | Alive
    OC4JGroup:default_group | OC4J:oacore | 16451 | Alive
    HTTP_Server | HTTP_Server | 16395 | Alive
    adapcctl.sh: exiting with status 0
    Attempted a login and got "500 Internal Server Error"
    Checked the apache logs:
    cd $LOG_HOME/ora/10.1.3/Apache
    The error log contains:
    [Thu Apr 25 09:56:58 2013] [error] [client 172.17.3.150] [ecid: 1366898218:10.2.1.162:28237:0:3891,0] File does not exist: /u02/applfind/inst/apps/OFD1_ofindev03/portal/favicon.ico
    [Thu Apr 25 09:56:59 2013] [error] [client 172.17.3.150] [ecid: 1366898219:10.2.1.162:30076:0:314,0] File does not exist: /u02/applfind/inst/apps/OFD1_ofindev03/portal/favicon.ico
    [Thu Apr 25 09:57:36 2013] [error] [client 172.17.3.150] [ecid: 1366898256:10.2.1.162:30121:0:329,0] File does not exist: /u02/applfind/inst/apps/OFD1_ofindev03/portal/favicon.ico
    You may see the full apache logs at : https://www.dropbox.com/sh/x0e1tpjl9fgtgee/Mq5lM0ohAb
    Thanks for your time in advance
    Mathias

  • Error 1311 pc not able to print from internet

    I continue to get errors such as
    adobe reader installation error
    error 1311  source not found   verify that the file exists and that you can access it
    there is a problem with adobe acrobat/reader.
    also not able to print

    uninstall adobe reader and clean (if windows), Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs

  • Error :VTK-1000  - Not able to login to OMS

    I had configured Oracle Management Server and I was able to login, but suddenly out of the blue I am not able to login anymore, and I am getting this error
    VTK-1000 : Unable to connect to Management server XXXX. Please verify that you have entered the correct name and status of the OMS.....
    Any inputs?
    Thanks
    Radhika

    Hi.
    If you have access to MetaLink, check out this note :
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=114682.1
    rgds
    Kjell Ove

  • I am using firefox and I also have had my computer reimaged, I am getting an error message and not able to redownload my lightroom and photoshop

    I just had my computer reimaged and firefox is the internet proxy setting, I am not able to re-download lightroom and photoshop for my subscription

    Nobody can know. You have not provided any exact system info or other useful details.
    Mylenium

  • Update error on KB2884256 not able to delete

    I have a windows server 2008 R2 did an update on 11-26-14 installed KB2884256 update it has cause my server not to be able to receive updates after that point. Tried to uninstall update not able to. I am not able to update anything at this point. need
    so help.

    Hiya,
    you sure that is the correct KB? There is currently a bug with a different KB, which has exactly that symptoms.
    https://support.microsoft.com/kb/3024777
    If it indeed is an issue with that specific KB, you should report it.
    The referenced update,2884256, cannot be uninstalled as per bulletin:
    https://technet.microsoft.com/library/security/ms13-081
    "Note  Update 2884256 cannot be uninstalled."

  • ERROR # 1439. Not able to update USB drivers

    OK So I got the error message 1439. Went to Apple Support here first.
    http://support.apple.com/kb/TS1372
    This in turn told me to go here:
    http://support.apple.com/kb/TS1538
    to update my USB drivers.
    So I am going through the steps and I come to "The Hardware Update Wizard", on my computer. Well my "The Hardware Update Wizard" is not the same as the one in the steps. I am supposed to let Windows search the internet for the correct drivers and they will be automatically installed. But my "Hardware Wizard" only allows me to search my computer or put in an Installation CD to update drivers. It does not allow me to connect to Windows Update to find the updated drivers. What the heck is going on?
    My system is
    Dell Dememsion XPS
    Windows XPS
    Home Edition Version 2002 SP3

    Have you tried to connect your ipod directly with your computer i.e. without USB hub ?

  • Ical error, as well not able to invite people to ical events

    Hi everybody I have been having issues with my Ical and I don't really know what to do anymore. I have tried the Genius, I have tried the apple care, and seems that no one can help me with this problem. I'm using Mountain Lion, and the latest updates on my computer as well my IOS devices.
    Anytime I try to add an event on my ICal and add invitees, I get this.
    After about 5 min later, I get an error message. I have looked everywhere for the error message and I found someone that had the same problem, and no one ever replied to her post. So I was wondering if anybody knows how to fix this issue. It would be very much appreciated.
    Thanks in advance.
    Andre

    Andre,
    Can you send yourself an invitation?
    Check settings for Calendar>Preferences...>Advanced>"Automatically retrieve CalDAV invitations from Mail."
    Check settings for iCloud.com>Calendar Web App>Preferences...>Advanced>Invitations & Updates.

  • When i try to download ebooks to my nook it will not let me and comes up with thw error code CE_COPY_NOT_Allowed- not able to copy this book. Please help.

    Has anyone experienced this problem and have come to a solution this never happened on my old computer?

    It sounds as though your PC is infected with fake antivirus software. The detailed cleanup instructions vary depending on which fake AV you have. However, as a first step, try this:
    Download the following on a different PC, copy them to a USB flash drive or CD, and then run them on the infected PC:
    Malwarebytes Anti-malware : http://www.malwarebytes.org/mbam.php
    SUPERAntiSpyware : http://www.superantispyware.com/
    Hopefully these will get you back online safely. If not, search for clean-up instructions for the specific malware.

  • Error: -3150 - Currently not able to download an App

    My Network is fine - Access to any website works fine.

    Is the time and date correct on the iPod? Check time zone too.
    If yu have iOS 5, go to Settings>General>Time&Date and set it to Automatic.

  • ERROR -2095 AND NOT ABLE TO OPEN REGEDIT!

    I've tried many times to open "regedit", all to no avail. I have an administrator's accout. Whenever I try to install iTunes, it won't let me because it says "Please make sure Quicktime is properly installed on your computer". Now, I can't even reinstall and older version of either application. Someone please help me!

    ... i really don't like that. there is malware out there that does disable utilities like that, and malware infections can cause serious grief with itunes or QT installs.
    so let's try doublechecking the malware situation. download fresh definitions and run vigorous virus and spyware scans. if your security software providers offer them, try running an online scan too. (they can sometimes pick up on infections when the security software on the PC has been compromised.)
    if your security software providers don't offer online scans, try running the Symantec one. (apologies in advance, the Symantec virus scan takes an eternity to complete.) here's a link through:
    Symantec Security Check

  • Not able to display flat file's error line in output

    The below Source Code is BDC for XD01 (update Customer Master Record) in CALL TRANSACTION method. This program is written in call transaction method cause as per user’s requirement, user wants error log to be printed as soon as the BDC process finished in the background mode.
    When you execute this below program it will show a selection screen from where you can select your flat file from system.
    After executing this code show output like below as soon as it finished processing the FLAT file.
    1. Customer Update Summary
    2. Successful record with customer number and name.
    3. Error Records with 'record number' and 'reason for error'
    (For testing you just have to copy-paste-save-active  the source code)
    And I have encountered an issue over here in 3rd section-“Record Number” of “Error Records”.
    The “Record Number” is for display the line number of that flat file line which in which error has occurred.
    The “Record Number”  Entries showing only ‘0’ instead of showing line number of error entry .
    I have used Function Module FORMAT_MESSAGE to capture the errors. But not able to display line number of that flat file which is containing error.
    So please suggest me what changes I should make in below source code to get proper output.
    Flat file for your R&D
    1000     1000     10     10     0001     Company     Chobey & Group1N     Choubey     Amit Choubey     New Alipore Road     Habijabi Apartment     Rastar Dhra      777777     kolkata     777777     kolikata     howrah     777777     IN     WB     1111111111     2222222222     3333333333     4444444444     5555555555     6666666666     0700     EAST     02     01     1060003     A1     Z1     ZZ13     CALS     1     A     10     1
    1000     1000     10     10     0001     Company     Chobey & Group2N     Choubey     Amit Choubey     New Alipore Road     Habijabi Apartment     Rastar Dhra      777777     kolkata     777777     kolikata     howrah     777777     IN     WB     1111111111     2222222222     3333333333     4444444444     5555555555     6666666666     0700     EAST     02     01     1060003     A1     Z1     ZZ13     CALS     1     A     10     1
    1000     1000     10     10     0001     Company     Chobey & Group3N     Choubey     Amit Choubey     New Alipore Road     Habijabi Apartment     Rastar Dhra      777777     kolkata     777777     kolikata     howrah     777777     IN     WB     1111111111     2222222222     3333333333     4444444444     5555555555     6666666666     0700     EAST     02     01     1060003     A1     Z1     ZZ13     CALS     .     A     10     1
    1000     1000     10     10     0001     Company     Chobey & Group4N     Choubey     Amit Choubey     New Alipore Road     Habijabi Apartment     Rastar Dhra      777777     kolkata     777777     kolikata     howrah     777777     IN     WB     1111111111     2222222222     3333333333     4444444444     5555555555     6666666666     0700     EAST     02     01     1060003     A1     Z1     ZZ13     CALS     1     A     ..     1
    1000     1000     10     10     0001     Company     Chobey & Group5N     Choubey     Amit Choubey     New Alipore Road     Habijabi Apartment     Rastar Dhra      777777     kolkata     777777     kolikata     howrah     777777     IN     WB     1111111111     2222222222     3333333333     4444444444     5555555555     6666666666     0700     EAST     02     01     1060003     A1     Z1     ZZ13     CALS     1     A     10     1
    And Source Code
    *& Report  Z_TEST_SAI                                                  *
    REPORT  Z_TEST_SAI no standard page heading line-size 255.
    TYPES: BEGIN OF t_cust,
            bukrs like rf02d-bukrs,
            vkorg like rf02d-vkorg,
            vtweg like rf02d-vtweg,
            spart like rf02d-spart,
            ktokd like rf02d-ktokd,
            anred like kna1-anred,
            name1 like kna1-name1,
            sortl like kna1-sortl,
            name2 like kna1-name2,
            name3 like kna1-name3,
            name4 like kna1-name4,
            stras like kna1-stras,
            pfach like kna1-pfach,
            ort01 like kna1-ort01,
            pstlz like kna1-pstlz,
            ort02 like kna1-ort02,
            pfort like kna1-pfort,
            pstl2 like kna1-pstl2,
            land1 like kna1-land1,
            regio like kna1-regio,
            telx1 like kna1-telx1,
            telf1 like kna1-telf1,
            telfx like kna1-telfx,
            telf2 like kna1-telf2,
            teltx like kna1-teltx,
            stceg like kna1-stceg,
            cityc like kna1-cityc,
            lzone like kna1-lzone,
            niels like kna1-niels,
            kukla like kna1-kukla,
            akont like knb1-akont,
            fdgrv like knb1-fdgrv,
            vzskz like knb1-vzskz,
            zterm like knb1-zterm,
            vkbur like knvv-vkbur,
            versg like knvv-versg,
            vsbed like knvv-vsbed,
            ktgrd like knvv-ktgrd,
            taxkd like knvi-taxkd,
    END OF t_cust.
    TYPES: BEGIN OF t_sucrec,
              cnum TYPE kna1-kunnr,                          "Customer Number
              cnam TYPE kna1-name1,                          "Customer Name
    END OF t_sucrec.
    TYPES: BEGIN OF t_errrec,
    *        lineno TYPE i,                                  "Line Number
             lineno TYPE string,
           message TYPE string,                              "Error Message
    END OF t_errrec.
    DATA: v_file TYPE string,                                "Variable for storing flat file
    it_cust TYPE STANDARD TABLE OF t_cust,                   "Internal table of Customer
    wa_cust LIKE LINE OF it_cust,                            "Workarea of Internal table it_cust
    it_sucrec TYPE STANDARD TABLE OF t_sucrec,               "Internal table of Success records
    wa_sucrec LIKE LINE OF it_sucrec,                        "Workarea of Internal table it_sucrec
    it_errrec TYPE STANDARD TABLE OF t_errrec,
    wa_errrec LIKE LINE OF it_errrec,
    it_bdctab LIKE bdcdata OCCURS 0 WITH HEADER LINE,        "Internal table structure of BDCDATA
    it_messagetab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE, "Tracing Error Messages
    v_date LIKE sy-datum,                                    "Controlling of session date
    v_index LIKE sy-index,                                   "Index Number
    v_totrec TYPE i,                                         "Total Records
    v_errrec TYPE i,                                         "Error Records
    v_sucrec TYPE i,                                         "Success Records
    v_sesschk TYPE c.                                        "Session maintenance
    *& SELECTION-SCREEN
    SELECTION-SCREEN: BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001 NO INTERVALS.
    PARAMETERS: p_file    TYPE rlgrap-filename.              "rlgrap-filename is a predefined structure
    SELECTION-SCREEN: END OF BLOCK blk1.
    SELECTION-SCREEN: BEGIN OF BLOCK blk2 WITH FRAME TITLE text-002 NO INTERVALS.
    PARAMETERS: p_mode    LIKE ctu_params-dismode DEFAULT 'N',
                p_update  LIKE ctu_params-updmode DEFAULT 'A'.
    SELECTION-SCREEN END OF BLOCK blk2.
    *& INITIALIZATION
    INITIALIZATION.
    v_date = sy-datum - 1.
    *& AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    program_name = syst-cprog
    dynpro_number = syst-dynnr
    FIELD_NAME = ' '
    IMPORTING
    file_name = p_file.
    *& START-OF-SELECTION
    START-OF-SELECTION.
    v_file = p_file.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = v_file
    filetype = 'ASC'
    has_field_separator = 'X'
    TABLES
    data_tab = it_cust
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17.
    IF sy-subrc = 0.
    *MESSAGE ID sy-msgid
    *TYPE sy-msgty
    *NUMBER sy-msgno
    *WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *& END-OF-SELECTION
    END-OF-SELECTION.
    v_index = sy-index.
    LOOP AT it_cust INTO wa_cust.
      perform bdc_dynpro      using 'SAPMF02D' '0100'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'RF02D-KTOKD'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '/00'.
        perform bdc_field       using 'RF02D-BUKRS'
                                      wa_cust-bukrs.
        perform bdc_field       using 'RF02D-VKORG'
                                      wa_cust-vkorg.
        perform bdc_field       using 'RF02D-VTWEG'
                                      wa_cust-vtweg.
        perform bdc_field       using 'RF02D-SPART'
                                      wa_cust-spart.
        perform bdc_field       using 'RF02D-KTOKD'
                                      wa_cust-ktokd.
        perform bdc_dynpro      using 'SAPMF02D' '0110'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNA1-TELTX'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNA1-ANRED'
                                      wa_cust-anred.
        perform bdc_field       using 'KNA1-NAME1'
                                      wa_cust-name1.
        perform bdc_field       using 'KNA1-SORTL'
                                      wa_cust-sortl.
        perform bdc_field       using 'KNA1-NAME2'
                                      wa_cust-name2.
        perform bdc_field       using 'KNA1-NAME3'
                                      wa_cust-name3.
        perform bdc_field       using 'KNA1-NAME4'
                                      wa_cust-name4.
        perform bdc_field       using 'KNA1-STRAS'
                                      wa_cust-stras.
        perform bdc_field       using 'KNA1-PFACH'
                                      wa_cust-pfach.
        perform bdc_field       using 'KNA1-ORT01'
                                      wa_cust-ort01.
        perform bdc_field       using 'KNA1-PSTLZ'
                                      wa_cust-pstlz.
        perform bdc_field       using 'KNA1-ORT02'
                                      wa_cust-ort02.
        perform bdc_field       using 'KNA1-PFORT'
                                      wa_cust-pfort.
        perform bdc_field       using 'KNA1-PSTL2'
                                      wa_cust-pstl2.
        perform bdc_field       using 'KNA1-LAND1'
                                      wa_cust-land1.
        perform bdc_field       using 'KNA1-REGIO'
                                      wa_cust-regio.
        perform bdc_field       using 'KNA1-SPRAS'
                                      'EN'.
        perform bdc_field       using 'KNA1-TELX1'
                                      wa_cust-telx1.
        perform bdc_field       using 'KNA1-TELF1'
                                      wa_cust-telf1.
        perform bdc_field       using 'KNA1-TELFX'
                                      wa_cust-telfx.
        perform bdc_field       using 'KNA1-TELF2'
                                      wa_cust-telf2.
        perform bdc_field       using 'KNA1-TELTX'
                                      wa_cust-teltx.
        perform bdc_dynpro      using 'SAPMF02D' '0120'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNA1-CITYC'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNA1-STCEG'
                                      wa_cust-stceg.
        perform bdc_field       using 'KNA1-CITYC'
                                      wa_cust-cityc.
        perform bdc_field       using 'KNA1-LZONE'
                                      wa_cust-lzone.
        perform bdc_dynpro      using 'SAPMF02D' '0125'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNA1-KUKLA'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNA1-NIELS'
                                      wa_cust-niels.
        perform bdc_field       using 'KNA1-KUKLA'
                                      wa_cust-kukla.
        perform bdc_dynpro      using 'SAPMF02D' '0130'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNBK-BANKS(01)'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_dynpro      using 'SAPMF02D' '0340'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'RF02D-KUNNR'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_dynpro      using 'SAPMF02D' '0360'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNVK-NAMEV(01)'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_dynpro      using 'SAPMF02D' '0210'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNB1-VZSKZ'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNB1-AKONT'
                                      wa_cust-akont.
        perform bdc_field       using 'KNB1-FDGRV'
                                      wa_cust-fdgrv.
        perform bdc_field       using 'KNB1-VZSKZ'
                                      wa_cust-vzskz.
        perform bdc_dynpro      using 'SAPMF02D' '0215'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNB1-ZTERM'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNB1-ZTERM'
                                      wa_cust-zterm.
        perform bdc_dynpro      using 'SAPMF02D' '0220'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNB5-MAHNA'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_dynpro      using 'SAPMF02D' '0230'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNB1-VRSNR'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_dynpro      using 'SAPMF02D' '0610'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'RF02D-KUNNR'.
        perform bdc_dynpro      using 'SAPMF02D' '0310'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNVV-VERSG'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNVV-AWAHR'
                                      '100'.
        perform bdc_field       using 'KNVV-VKBUR'
                                      wa_cust-vkbur.
        perform bdc_field       using 'KNVV-WAERS'
                                      'INR'.
        perform bdc_field       using 'KNVV-KALKS'
                                      '1'.
        perform bdc_field       using 'KNVV-VERSG'
                                      wa_cust-versg.
        perform bdc_dynpro      using 'SAPMF02D' '0315'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNVV-VSBED'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNVV-LPRIO'
        perform bdc_field       using 'KNVV-KZAZU'
                                      'X'.
        perform bdc_field       using 'KNVV-VSBED'
                                      wa_cust-vsbed.
        perform bdc_field       using 'KNVV-ANTLF'
                                      '9'.
        perform bdc_dynpro      using 'SAPMF02D' '0320'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNVV-KTGRD'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNVV-BOKRE'
                                      'X'.
        perform bdc_field       using 'KNVV-KTGRD'
                                      wa_cust-ktgrd.
        perform bdc_dynpro      using 'SAPMF02D' '1350'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNVI-TAXKD(01)'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=VW'.
        perform bdc_field       using 'KNVI-TAXKD(01)'
                                      wa_cust-taxkd.
        perform bdc_dynpro      using 'SAPMF02D' '0324'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'KNVP-PARVW(01)'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=UPDA'.
    CALL TRANSACTION 'XD01' USING it_bdctab
    MODE p_mode
    UPDATE p_update
    MESSAGES INTO it_messagetab.
    IF sy-subrc = 0.
    *& reading success records to corresponding internal table
    READ TABLE it_messagetab WITH KEY msgtyp = 'S'.
    IF sy-subrc = 0.
    wa_sucrec-cnum = it_messagetab-msgv1.
    wa_sucrec-cnam = wa_cust-name1.
    APPEND wa_sucrec TO it_sucrec.
    CLEAR wa_sucrec.
    ENDIF.
    ELSE.
    *& reading error records to corresponding internal table
    READ TABLE it_messagetab WITH KEY msgtyp = 'E'.
    IF sy-subrc = 0.
    CALL FUNCTION 'FORMAT_MESSAGE'
    EXPORTING
    id = sy-msgid
    no = it_messagetab-msgnr
    v1 = it_messagetab-msgv1
    v2 = it_messagetab-msgv2
    v3 = it_messagetab-msgv3
    v4 = it_messagetab-msgv4
    IMPORTING
    msg = wa_errrec-message.
    wa_errrec-lineno = v_index.
    *******wa_errrec-lineno  = v_index.
    *******wa_errrec-message = it_messagetab-msgv1.
    APPEND wa_errrec TO it_errrec.
    CLEAR wa_errrec.
    ENDIF.
    ENDIF.
    CLEAR : it_bdctab, it_messagetab.
    REFRESH: it_bdctab, it_messagetab.
    ENDLOOP.
    DESCRIBE TABLE it_cust LINES v_totrec.
    DESCRIBE TABLE it_errrec LINES v_errrec.
    DESCRIBE TABLE it_sucrec LINES v_sucrec.
    PERFORM disp_data.
    SKIP 2.
    IF v_sucrec > 0.
    PERFORM disp_success_data.
    ENDIF.
    SKIP 2.
    IF v_errrec > 0.
    PERFORM disp_error_data.
    ENDIF.
    *& Form bdc_dynpro
    *#  text
    *#  -->P_0104 text
    *#  -->P_0105 text
    FORM bdc_dynpro USING program
    dynpro.
    CLEAR it_bdctab.
    it_bdctab-program = program.
    it_bdctab-dynpro = dynpro.
    it_bdctab-dynbegin = 'X'.
    APPEND it_bdctab.
    ENDFORM. " bdc_dynpro
    *& Form bdc_field
    *#  text
    *#  -->P_0109 text
    *#  -->P_IT_cust_LIFNR text
    FORM bdc_field USING fnam
    fval.
    CLEAR it_bdctab.
    it_bdctab-fnam = fnam.
    it_bdctab-fval = fval.
    APPEND it_bdctab.
    ENDFORM. " bdc_field
    *& Form disp_data
    *#  text
    *#  --> p1 text
    *#  <-- p2 text
    FORM disp_data .
    ULINE (45).
    WRITE : / sy-vline,
    12 'FAMD CUSTOMER UPDATE SUMMARY'(004) COLOR 1,
    45 sy-vline.
    ULINE /(45).
    WRITE : / sy-vline,
    'Total Records Processed'(007),
    28 '=',
    30 v_totrec,
    45 sy-vline,
    / sy-vline,
    'Error Records'(005),
    28 '=',
    30 v_errrec,
    45 sy-vline,
    / sy-vline,
    'Successful Records'(006),
    28 '=',
    30 v_sucrec,
    45 sy-vline.
    ULINE /(45).
    ENDFORM. " disp_data
    *& Form disp_success_data
    *#  text
    *#  --> p1 text
    *#  <-- p2 text
    FORM disp_success_data .
    ULINE (45).
    WRITE : / sy-vline,
    14 'Successful Records'(012) COLOR 1,
    45 sy-vline.
    ULINE /(45).
    WRITE : / sy-vline ,
    'Customer Number'(010) COLOR 2,
    17 sy-vline,
    25 'Customer Name'(011) COLOR 2,
    45 sy-vline.
    ULINE /(45).
    LOOP AT it_sucrec INTO wa_sucrec.
    WRITE: / sy-vline ,
    wa_sucrec-cnum,
    17 sy-vline,
    19 wa_sucrec-cnam,
    45 sy-vline.
    ENDLOOP.
    ULINE /(45).
    ENDFORM. " disp_success_data
    *& Form disp_error_data
    *#  text
    *#  --> p1 text
    *#  <-- p2 text
    FORM disp_error_data .
    ULINE (85).
    WRITE : / sy-vline,
    35 'Error Records'(013) COLOR 1,
    85 sy-vline.
    ULINE /(85).
    WRITE : / sy-vline,
    'Record Number'(008) COLOR 2,
    sy-vline,
    37 'Reason for error'(009) COLOR 2,
    85 sy-vline.
    ULINE /(85).
    LOOP AT it_errrec INTO wa_errrec.
    WRITE : / sy-vline,
    wa_errrec-lineno,
    17 sy-vline,
    wa_errrec-message,
    85 sy-vline.
    ENDLOOP.
    ULINE /(85).
    ENDFORM. " disp_error_data

    Worked out n found the solution

  • Network connection error, not able to download from App Store. But am able to download other stuffs with my browser !?

    Am getting a Network Connection error and am not able to download apps from the App store. But to check my network connection, when I download stuffs using my Browser, it downloads as usual ! So what is the problem & its solution? please reply.. Thank you.

    Select  ▹ System Preferences ▹ Network ▹ Advanced ▹ Proxies. If any proxies are selected, deselect them, apply your changes, and try again. You must apply the changes before they take effect. You don’t need to change the other settings.

Maybe you are looking for

  • Problem install ovi store and ovi maps?

    my phone nokia C7 can not turn on, then I use a three finger salute to hard reset, and my phone can turn on again, but social networking application, ovi store and ovi maps are lost, I tried installing again, but always "unable to install", while app

  • MacBook Pro 13" (2011 late). second display problem after update

    Updated to mountain lion this second and there is no signal out (thunderbolt to displayport cable) since ive upgraded. in lion there are no problems.  does your external display work after upgrade to mountain lion? (monitor HP ZR24w)

  • Is it possible to store a back up on external HD by transfering files using Target Disk Mode?

    Dear Apple community, There's absolutely no way that I'm going to be able to fix my MBP without a clean install. I simply cannot log in and get to my desktop screen after upgrading to Mavericks. So I will have to erase everything and perform a clean

  • I cannot use Online Search in my Power Query

    When I'm using the power query, the "search online" is disable. Do you know how to active this function? Thanks!

  • Using rowid in ref cursor

    Hi, I want to use rowid for updating the rows in the ref cursor. My code looks like below: DECLARE emp_refcursor SYS_REFCURSOR; emp_rec employee%ROWTYPE; l_run_id NUMBER; lv_sql_stmt VARCHAR2(4000) := 'SELECT a.* FROM employee a where a.run_id = :l_r