Short dump while export grid alv with subtotals.

hello,
its strange and i face first time that my grid alv report goin to short dump while i done subtotals and send it to local file thru export.
if am not doing subtotals then export it to local file it goin fine.
whats it has problem plz give ur helping hends.
here i copied a dump msg also.
Short text
    Error at assignment: Overwritten protected field.
What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLKKBL" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
Error analysis
    A new value is to be assigned to the field "<L_UNIT>", although this field is
    entirely or partly protected against changes.
    The following are protected against changes:
    - Character literals or numeric literals
    - Constants (CONSTANTS)
    - Parameters of the category IMPORTING REFERENCE for functions and
    methods
    - Untyped field symbols not yet assigned a field using ASSIGN
    - TABLES parameters if the actual parameter is protected against changes
    - USING reference parameters and CHANGING parameters for FORMs, if the
    actual parameter is protected against changes and
    - Accesses using field symbols if the field assigned using ASSIGN is
    protected (or partially protected, e.g. key components of an internal
    table with the type SORTED or HASHED TABLE) against changes
    - Accesses using references, if the field bound to the reference is
    protected (or partially protected) against changes
    - External write accesses to READ-ONLY attributes,
    - Content of a shared object area instance accessed using a shared lock
    (ATTACH_FOR_READ).
regards amit.

& Object Id               :                                                  &
& Object Name             :                                                  &
& Function Module Name    : Sales Register                                   &
& Transaction Code        :                                                  &
& Author                  : Amit gujargoud                                      &
& Module Name             : SD                                               &
& Sub-Module              :                                                  &
& Program Type            : Dialog            Create Date     : 02/02/2007   &
& SAP Release             : ECC 6.0                                          &
& Description             : Sales Register - Detail                           &
*& Report  ZSALESREGISTER
REPORT  zsd_salesregister.
*&       TYPE-POOLS
TYPE-POOLS : slis.
*&       TABLES
TABLES: vbrp,  "Billing Document: Item Data
        vbrk,  "Billing Document: Header Data
        lips,  "SD document: Delivery: Item data
        lfa1,  "Vendor Master (General Section)
        kna1,  "General Data in Customer Master
        vbak,  "Sales Document: Header Data
        vbpa,  "Sales Document: Partner (Gopal)
        likp,  "SD Document: Delivery Header Data
        vbap,  "Sales Document: Item Data
        vbkd,  "Sales Document: Business Data
        mara.  "General Material Data
*&       DATA DECLARATION
DATA: BEGIN OF i_report OCCURS 100,
        vbeln LIKE vbrp-vbeln,        "Billing Document
  posnr LIKE vbrp-posnr,
  matnr  LIKE mara-matnr ,
  aubel LIKE vbrp-aubel,        "Sales Document
   fkimg LIKE vbrp-fkimg,        "Actual billed quantity
   vrkme LIKE vbrp-vrkme,        "Sales unit
   arktx LIKE vbrp-arktx,        "Short text for sales order item
   vgbel LIKE vbrp-vgbel,        "Doc number of the reference document
   werks  LIKE vbap-werks,
  vkgrp  LIKE vbrp-vkgrp,
  fklmg LIKE vbrp-fklmg,
  volum LIKE vbrp-volum,
   vkbur  LIKE vbrp-vkbur,
  vtweg_auft LIKE vbrp-vtweg_auft,
        auart  LIKE vbak-auart,
        tabix LIKE sy-tabix,          "Internal Table, Current Row Index
        name1 LIKE kna1-name1,                              "Name1
        exnum LIKE j_1iexchdr-exnum,  "Official Excise Document Number
        orqty TYPE p DECIMALS 0,
        penqty TYPE p DECIMALS 0,     "Cumulative order qty in sls units
        openqty TYPE p DECIMALS 0,    "Cumulative order qty in sls units
        ean11 LIKE lips-ean11,        "International Article No(EAN/UPC)
       volum LIKE lips-volum,
        lgmng LIKE lips-lgmng,
        traid LIKE likp-traid,
        ort01 LIKE lfa1-ort01,        "City
        lifnr LIKE lfa1-lifnr,        "A/c Number of Vendor or Creditor
        netwr LIKE vbrp-netwr,        "Net val of bill item in doc currency
        kunnr LIKE vbak-kunnr,        "Sold-to party
        adrnr LIKE vbpa-adrnr,        "Address
        city1 LIKE adrc-city1,        "City
        tprtr LIKE lfa1-name1,                              "Name 1
        knumv LIKE konv-knumv,        "Number of the document condition
        kposn LIKE konv-kposn,
        rate  LIKE konv-kbetr,        "Rate (cond amount or percentage)
        bas_val LIKE konv-kwert,      "Rate (cond amount or percentage)
        exc_duty LIKE konv-kwert,     "Rate (cond amount or percentage)
        ed_cess LIKE konv-kwert,      "Rate (cond amount or percentage)
        freight LIKE konv-kwert,      "Rate (cond amount or percentage)
        pack    LIKE konv-kwert,      "Rate (cond amount or percentage)
        cst LIKE konv-kwert,          "Rate (cond amount or percentage)
        vat LIKE konv-kwert,          "Rate (cond amount or percentage)
        ent_tax LIKE konv-kwert,      "Rate (cond amount or percentage)
        tot_inv LIKE konv-kwert,       "Rate (cond amount or percentage)
        tot_inv_round LIKE konv-kwert,   "Rate (cond amount or percentage)
        disc_tot  LIKE konv-kwert,       "Discount total - Z001 to Z020
        vat_rate LIKE konv-kbetr,
        cst_rate LIKE konv-kbetr,
        lst_rate LIKE konv-kbetr,
        mwsbk LIKE vbrk-mwsbk,
        bas_tax LIKE konv-kwert,
        dev_tax LIKE konv-kwert,
        tcs_tax LIKE konv-kwert,
        bas_tot LIKE konv-kwert,
        lst     LIKE konv-kwert,
        vkorg   LIKE vbak-vkorg,
        mvgr1   LIKE mvke-mvgr1,
        mvgr2   LIKE mvke-mvgr2,
        mvgr3   LIKE mvke-mvgr3,
        mvgr4   LIKE mvke-mvgr4,
        mvgr5   LIKE mvke-mvgr5,
        text1   LIKE tvm1t-bezei,
        text2   LIKE tvm1t-bezei,
        text3   LIKE tvm1t-bezei,
        text4   LIKE tvm1t-bezei,
        text5   LIKE tvm1t-bezei,
        bismit_area TYPE p DECIMALS 4,   " Size (L*B) in mm
        face_area  TYPE p DECIMALS 2,   " Face Area Declaration
        notional_area TYPE p DECIMALS 2,
        stock_pcs TYPE p ,               " decimals 3 Pcs of Stock
        labst  LIKE mard-labst,           " Valuated Unrestricted-Use Stock
        bismt  LIKE mara-bismt,           " Size (L*B) in mm
        normt  LIKE mara-normt,           " Industry Standard Description
        temp   TYPE p DECIMALS 2,
        temp1  TYPE p DECIMALS 2,
        temp2  TYPE p DECIMALS 2,
        temp3  TYPE p DECIMALS 2,
        temp4  TYPE p DECIMALS 2,
        temp5  TYPE p DECIMALS 2,
        temp6  TYPE p DECIMALS 2,
        temp7  TYPE p DECIMALS 2,
        temp8  TYPE p DECIMALS 2,
        temp9  TYPE p DECIMALS 2,
        temp10 TYPE p DECIMALS 2,
        temp11 TYPE p DECIMALS 2,
        temp12 TYPE p DECIMALS 2,
        temp13 TYPE p DECIMALS 0,
        temp14 TYPE p DECIMALS 0,
        temp15 TYPE p DECIMALS 0,
        temp16 TYPE p DECIMALS 2,
        temp17 TYPE p DECIMALS 2,
        temp18 TYPE p DECIMALS 2,
        temp19 TYPE p DECIMALS 2,
        temp20 TYPE p DECIMALS 2,
        temp21 TYPE p DECIMALS 2,
        waybill(20) TYPE c,
        audat  LIKE vbak-audat,     "Document Date (Date Received/Sent)
        lgort  LIKE vbap-lgort,     "Storage location
        lgobe  LIKE t001l-lgobe,    "Description of storage location
        erdat  LIKE vbrk-erdat,     "Date on which the record was created
        exdat  LIKE j_1iexchdr-exdat,  "Excise Document Date
        vbtyp  LIKE vbak-vbtyp,        "SD document category
        acdt   LIKE likp-wadat_ist,    "Actual goods movement date
        fkdat  LIKE vbrk-fkdat,
        ship   LIKE kna1-name1,      "Name1 (Ship-to party)
        fksto  LIKE vbrk-fksto,
        fkart  LIKE vbrk-fkart,
        bezei  LIKE t005u-bezei,
        vtweg  LIKE vbak-vtweg,
        spart  LIKE vbak-spart,
        matkl  LIKE mara-matkl,
        wgbez  LIKE t023t-wgbez,
        mtart  LIKE mara-mtart,
        labor  LIKE mara-labor,
        ferth  LIKE mara-ferth,
        lbtxt  LIKE t024x-lbtxt,
        niels  LIKE kna1-niels,
        kukla  LIKE kna1-kukla,
        desc   LIKE tvkbt-bezei,
        brsch  LIKE kna1-brsch,
        zeinr  LIKE mara-zeinr,
        bzirk  LIKE vbrk-bzirk,
        area_desc   LIKE tnlst-bezei,
        dist_desc   TYPE tkukt-vtext,
        taluka_desc TYPE t016t-brtxt,
        sales_desc  TYPE tvgrt-bezei,
        kmein       LIKE konv-kmein,    "Sales Unit
        challan     LIKE likp-vbeln,
        END OF i_report.
data for MVKE
DATA: BEGIN OF i_report_mvke OCCURS 0,
        vbeln   LIKE vbrp-vbeln,        "Billing Document
        aubel   LIKE vbrp-aubel,        "Sales Document
        vkorg   LIKE vbak-vkorg,
        matnr   LIKE mara-matnr ,
        vtweg   LIKE vbak-vtweg,
        END OF i_report_mvke.
***********************TEMP COPY
DATA: BEGIN OF i_report_temp OCCURS 0,
       vbeln LIKE vbrp-vbeln,        "Billing Document
  posnr LIKE vbrp-posnr,
  matnr  LIKE mara-matnr ,
  aubel LIKE vbrp-aubel,        "Sales Document
   fkimg LIKE vbrp-fkimg,        "Actual billed quantity
   vrkme LIKE vbrp-vrkme,        "Sales unit
   arktx LIKE vbrp-arktx,        "Short text for sales order item
   vgbel LIKE vbrp-vgbel,        "Doc number of the reference document
   werks  LIKE vbap-werks,
  vkgrp  LIKE vbrp-vkgrp,
  fklmg LIKE vbrp-fklmg,
  volum LIKE vbrp-volum,
   vkbur  LIKE vbrp-vkbur,
  vtweg_auft LIKE vbrp-vtweg_auft,
        auart  LIKE vbak-auart,
        tabix LIKE sy-tabix,          "Internal Table, Current Row Index
        name1 LIKE kna1-name1,                              "Name1
        exnum LIKE j_1iexchdr-exnum,  "Official Excise Document Number
        orqty TYPE p DECIMALS 0,
        penqty TYPE p DECIMALS 0,     "Cumulative order qty in sls units
        openqty TYPE p DECIMALS 0,    "Cumulative order qty in sls units
        ean11 LIKE lips-ean11,        "International Article No(EAN/UPC)
       volum LIKE lips-volum,
        lgmng LIKE lips-lgmng,
        traid LIKE likp-traid,
        ort01 LIKE lfa1-ort01,        "City
        lifnr LIKE lfa1-lifnr,        "A/c Number of Vendor or Creditor
        netwr LIKE vbrp-netwr,        "Net val of bill item in doc currency
        kunnr LIKE vbak-kunnr,        "Sold-to party
        adrnr LIKE vbpa-adrnr,        "Address
        city1 LIKE adrc-city1,        "City
        tprtr LIKE lfa1-name1,                              "Name 1
        knumv LIKE konv-knumv,        "Number of the document condition
        kposn LIKE konv-kposn,
        rate  LIKE konv-kbetr,        "Rate (cond amount or percentage)
        bas_val LIKE konv-kwert,      "Rate (cond amount or percentage)
        exc_duty LIKE konv-kwert,     "Rate (cond amount or percentage)
        ed_cess LIKE konv-kwert,      "Rate (cond amount or percentage)
        freight LIKE konv-kwert,      "Rate (cond amount or percentage)
        pack    LIKE konv-kwert,      "Rate (cond amount or percentage)
        cst LIKE konv-kwert,          "Rate (cond amount or percentage)
        vat LIKE konv-kwert,          "Rate (cond amount or percentage)
        ent_tax LIKE konv-kwert,      "Rate (cond amount or percentage)
        tot_inv LIKE konv-kwert,       "Rate (cond amount or percentage)
        tot_inv_round LIKE konv-kwert,   "Rate (cond amount or percentage)
        disc_tot  LIKE konv-kwert,       "Discount total - Z001 to Z020
        vat_rate LIKE konv-kbetr,
        cst_rate LIKE konv-kbetr,
        lst_rate LIKE konv-kbetr,
        mwsbk LIKE vbrk-mwsbk,
        bas_tax LIKE konv-kwert,
        dev_tax LIKE konv-kwert,
        tcs_tax LIKE konv-kwert,
        bas_tot LIKE konv-kwert,
        lst     LIKE konv-kwert,
        vkorg   LIKE vbak-vkorg,
        mvgr1   LIKE mvke-mvgr1,
        mvgr2   LIKE mvke-mvgr2,
        mvgr3   LIKE mvke-mvgr3,
        mvgr4   LIKE mvke-mvgr4,
        mvgr5   LIKE mvke-mvgr5,
        text1   LIKE tvm1t-bezei,
        text2   LIKE tvm1t-bezei,
        text3   LIKE tvm1t-bezei,
        text4   LIKE tvm1t-bezei,
        text5   LIKE tvm1t-bezei,
        bismit_area TYPE p DECIMALS 4,   " Size (L*B) in mm
        face_area  TYPE p DECIMALS 2,   " Face Area Declaration
        notional_area TYPE p DECIMALS 2,
        stock_pcs TYPE p ,               " decimals 3 Pcs of Stock
        labst  LIKE mard-labst,           " Valuated Unrestricted-Use Stock
        bismt  LIKE mara-bismt,           " Size (L*B) in mm
        normt  LIKE mara-normt,           " Industry Standard Description
        temp   TYPE p DECIMALS 2,
        temp1  TYPE p DECIMALS 2,
        temp2  TYPE p DECIMALS 2,
        temp3  TYPE p DECIMALS 2,
        temp4  TYPE p DECIMALS 2,
        temp5  TYPE p DECIMALS 2,
        temp6  TYPE p DECIMALS 2,
        temp7  TYPE p DECIMALS 2,
        temp8  TYPE p DECIMALS 2,
        temp9  TYPE p DECIMALS 2,
        temp10 TYPE p DECIMALS 2,
        temp11 TYPE p DECIMALS 2,
        temp12 TYPE p DECIMALS 2,
        temp13 TYPE p DECIMALS 0,
        temp14 TYPE p DECIMALS 0,
        temp15 TYPE p DECIMALS 0,
        temp16 TYPE p DECIMALS 2,
        temp17 TYPE p DECIMALS 2,
        temp18 TYPE p DECIMALS 2,
        temp19 TYPE p DECIMALS 2,
        temp20 TYPE p DECIMALS 2,
        temp21 TYPE p DECIMALS 2,
        waybill(20) TYPE c,
        audat  LIKE vbak-audat,     "Document Date (Date Received/Sent)
        lgort  LIKE vbap-lgort,     "Storage location
        lgobe  LIKE t001l-lgobe,    "Description of storage location
        erdat  LIKE vbrk-erdat,     "Date on which the record was created
        exdat  LIKE j_1iexchdr-exdat,  "Excise Document Date
        vbtyp  LIKE vbak-vbtyp,        "SD document category
        acdt   LIKE likp-wadat_ist,    "Actual goods movement date
        fkdat  LIKE vbrk-fkdat,
        ship   LIKE kna1-name1,      "Name1 (Ship-to party)
        fksto  LIKE vbrk-fksto,
        fkart  LIKE vbrk-fkart,
        bezei  LIKE t005u-bezei,
        vtweg  LIKE vbak-vtweg,
        spart  LIKE vbak-spart,
        matkl  LIKE mara-matkl,
        wgbez  LIKE t023t-wgbez,
        mtart  LIKE mara-mtart,
        labor  LIKE mara-labor,
        ferth  LIKE mara-ferth,
        lbtxt  LIKE t024x-lbtxt,
        niels  LIKE kna1-niels,
        kukla  LIKE kna1-kukla,
        desc   LIKE tvkbt-bezei,
        brsch  LIKE kna1-brsch,
        zeinr  LIKE mara-zeinr,
        bzirk  LIKE vbrk-bzirk,
        area_desc   LIKE tnlst-bezei,
        dist_desc   TYPE tkukt-vtext,
        taluka_desc TYPE t016t-brtxt,
        sales_desc  TYPE tvgrt-bezei,
        kmein       LIKE konv-kmein,    "Sales Unit
        challan     LIKE likp-vbeln,
        END OF i_report_temp.
DATA: BEGIN OF i_vbap OCCURS 0 ,
        posnr LIKE vbap-posnr,
        vbeln LIKE vbap-vbeln ,
        matnr LIKE vbap-matnr ,
        werks LIKE vbap-werks,
   kwmeng LIKE vbap-kwmeng,
  lgort LIKE vbap-lgort,
        matkl LIKE mara-matkl,
        wgbez LIKE t023t-wgbez,
        mtart LIKE mara-mtart,
      END OF i_vbap .
DATA : w_temp_cal(20) TYPE c.
DATA : w_face_area TYPE p DECIMALS 4,
       w_notinal_area TYPE p DECIMALS 4.
**MVKE
DATA: BEGIN OF itab_mvke OCCURS 0,
      matnr   LIKE mvke-matnr,
      vkorg   LIKE vbak-vkorg,
      vtweg   LIKE mvke-vtweg,
      mvgr1   LIKE mvke-mvgr1,
      mvgr2   LIKE mvke-mvgr2,
      mvgr3   LIKE mvke-mvgr3,
      mvgr4   LIKE mvke-mvgr4,
      mvgr5   LIKE mvke-mvgr5,
      END OF itab_mvke.
**TVM1T
DATA : BEGIN OF itab_tvm1t OCCURS 0,
        spras LIKE tvm1t-spras,
      mvgr1 LIKE tvm1t-mvgr1,
      bezei LIKE tvm1t-bezei,
  END OF itab_tvm1t.
DATA : BEGIN OF itab_tvm2t OCCURS 0,
      spras LIKE tvm2t-spras,
    mvgr2 LIKE tvm2t-mvgr2,
    bezei LIKE tvm2t-bezei,
END OF itab_tvm2t.
DATA : BEGIN OF itab_tvm3t OCCURS 0,
      spras LIKE tvm3t-spras,
    mvgr3 LIKE tvm3t-mvgr3,
    bezei LIKE tvm3t-bezei,
END OF itab_tvm3t.
DATA : BEGIN OF itab_tvm4t OCCURS 0,
      spras LIKE tvm4t-spras,
    mvgr4 LIKE tvm4t-mvgr4,
    bezei LIKE tvm4t-bezei,
END OF itab_tvm4t.
DATA : BEGIN OF itab_tvm5t OCCURS 0,
      spras LIKE tvm5t-spras,
    mvgr5 LIKE tvm5t-mvgr5,
    bezei LIKE tvm5t-bezei,
END OF itab_tvm5t.
DATA:      itab_t024x TYPE STANDARD TABLE OF t024x WITH HEADER LINE,
      it_report LIKE LINE OF i_report OCCURS 0,
      i_mvke LIKE LINE OF itab_mvke OCCURS 0.
**VBKD
DATA: BEGIN OF i_vbkd OCCURS 0 ,
        vbeln LIKE vbkd-vbeln ,
        posnr LIKE vbkd-posnr ,
       bzirk LIKE vbkd-bzirk ,
      END OF i_vbkd .
DATA: BEGIN OF i_lips OCCURS 0,
   vbeln LIKE lips-vbeln,
        ean11 LIKE lips-ean11,
         volum LIKE lips-volum,
         lgmng LIKE lips-lgmng,
        waybill(20) TYPE c,
      END OF i_lips.
DATA: BEGIN OF i_vbrk OCCURS 0,
        vbeln LIKE vbrk-vbeln,
        rfbsk LIKE vbrk-rfbsk,      "Status for transfer to accounting
        erdat LIKE vbrk-erdat,      "Dt on which the record was created
        fkdat LIKE vbrk-fkdat,      "CHANGE MADE BY PARTHA RAHAMAN
        fksto LIKE vbrk-fksto,      "GOPAL:: CANCELLED DOC. DO NOT PRNT.
        netwr LIKE vbrk-netwr,
        fkart LIKE vbrk-fkart, "Gopal:when billng typ=s1 do not pnt 1jul
        knumv LIKE vbrk-knumv,
        mwsbk LIKE vbrk-mwsbk,
        bzirk LIKE vbrk-bzirk,
        vtweg LIKE vbrk-vtweg,
        spart LIKE vbrk-spart,
       END OF i_vbrk.
      *structure for MARD Table by kalika
DATA : BEGIN OF itab_mard OCCURS 0,
       matnr LIKE mard-matnr,
      werks LIKE mard-werks,
       labst LIKE mard-labst,          " Valuated Unrestricted-Use Stock
      lgort LIKE mard-lgort,          " Storage Location
       END OF itab_mard.
      *structure for MARD Table by kalika
DATA:BEGIN OF i_kna1 OCCURS 0,
      vbeln LIKE vbak-vbeln,
      name1 LIKE kna1-name1,
      kunnr LIKE kna1-kunnr,
      regio LIKE kna1-regio,
     bezei LIKE t005u-bezei,
      land1 LIKE kna1-land1,
      vkgrp LIKE vbak-vkgrp,
      niels LIKE kna1-niels,
      kukla LIKE kna1-kukla,
      brsch LIKE kna1-brsch,
      vkbur LIKE vbak-vkbur,
     END OF i_kna1.
DATA:BEGIN OF i_t005u OCCURS 0,
     spras LIKE t005u-spras,
    land1 LIKE t005u-land1,
   bland LIKE t005u-bland,
     bezei LIKE t005u-bezei,
     END OF i_t005u.
DATA:BEGIN OF i_tnlst OCCURS 0,
   spras LIKE t005u-spras,
niels LIKE tnlst-niels,
   bezei LIKE t005u-bezei,
   END OF i_tnlst.
DATA:BEGIN OF itab_tkukt OCCURS 0,
spras LIKE tkukt-spras,
kukla LIKE tkukt-kukla,
vtext LIKE tkukt-vtext,
END OF itab_tkukt.
DATA : BEGIN OF itab_t016t OCCURS 0,
      spras LIKE t016t-spras,
       brsch LIKE t016t-brsch,
       brtxt LIKE t016t-brtxt,
  END OF itab_t016t.
DATA : BEGIN OF itab_tvgrt OCCURS 0,
      spras LIKE tvgrt-spras,
      vkgrp LIKE tvgrt-vkgrp,
      bezei LIKE tvgrt-bezei,
  END OF itab_tvgrt.
*DATA: i_t005u  TYPE STANDARD TABLE OF t005u WITH HEADER LINE.
DATA:BEGIN OF i_kna2 OCCURS 0,
     kunnr LIKE kna1-kunnr,
     name1 LIKE kna1-name1,   " For Ship-to-Party
      END OF i_kna2.
DATA:BEGIN OF i_vbak OCCURS 0,
     vbeln LIKE vbak-vbeln,
     vbtyp LIKE vbak-vbtyp,
     audat LIKE vbak-audat,
     auart LIKE vbak-auart,
     vtweg LIKE vbak-vtweg,
     spart LIKE vbak-spart,
     vkbur LIKE vbak-vkbur,
     vkorg LIKE vbak-vkorg,
     END OF i_vbak.
DATA:BEGIN OF i_adrc OCCURS 0,
      vbeln LIKE vbpa-vbeln,
      kunnr LIKE kna1-kunnr,
      city1 LIKE adrc-city1,
     name1 LIKE kna1-name1,      "Name1 (Ship-to party)
     END OF i_adrc.
DATA:BEGIN OF i_lfa1 OCCURS 0,
      lifnr LIKE vbpa-lifnr,
      vbeln LIKE vbpa-vbeln,
      name1 LIKE lfa1-name1,
     END OF i_lfa1.
DATA : BEGIN OF it_knumv OCCURS 0,
        vbeln LIKE vbrk-vbeln,
        knumv LIKE vbrk-knumv,
      END OF it_knumv.
DATA : BEGIN OF it_rate OCCURS 0,
        ksteu LIKE konv-ksteu,    "Condition control
        knumv LIKE konv-knumv,    "Number of the document condition
        kschl LIKE konv-kschl,    "Condition type
        kbetr LIKE konv-kbetr,    "Rate (condition amount or percentage)
        kwert LIKE konv-kwert,    "Condition value
        kposn LIKE konv-kposn,
        kmein LIKE konv-kmein,    "Sales Unit
       END OF it_rate.
DATA: BEGIN OF itab_exnum OCCURS 0,
       exnum LIKE j_1iexchdr-exnum,  "Official Excise Document Number
       exdat LIKE j_1iexchdr-exdat,  "Excise Document Date
       rdoc LIKE j_1iexchdr-rdoc,    "Reference Document 1
        status LIKE j_1iexchdr-status,
       END OF itab_exnum.
DATA: BEGIN OF itab_qty OCCURS 0,
      kwmeng LIKE vbap-kwmeng,
      vbeln LIKE vbap-vbeln,
      lgort LIKE vbap-lgort,
      END OF itab_qty.
*DATA: BEGIN OF i_stloc OCCURS 0,
     lgort LIKE t001l-lgort,
     lgobe LIKE t001l-lgobe,
     END OF i_stloc.
DATA:t_line LIKE STANDARD TABLE OF tline INITIAL SIZE 0
     WITH HEADER LINE,
"     itab_tvkbt LIKE STANDARD TABLE OF tvkbt WITH HEADER LINE,
     w_tdname LIKE thead-tdname.
DATA : BEGIN OF itab_tvkbt OCCURS 0,
  spras LIKE tvkbt-spras,
  vkbur LIKE tvkbt-vkbur,
  bezei LIKE tvkbt-bezei,
  END OF itab_tvkbt.
DATA: BEGIN OF i_exchdr OCCURS 0,
      exnum LIKE j_1iexchdr-exnum,
      exdat LIKE j_1iexchdr-exdat,
      rdoc  LIKE j_1iexchdr-rdoc,
      END OF i_exchdr.
DATA: BEGIN OF i_likp OCCURS 0,
      vbeln LIKE likp-vbeln,
      wadat_ist LIKE likp-wadat_ist,
      traid LIKE likp-traid,
      bolnr LIKE likp-bolnr,
      END OF i_likp.
DATA: BEGIN OF i_mara OCCURS 0,
      matnr LIKE mara-matnr,
      matkl LIKE mara-matkl,
      mtart LIKE mara-mtart,
      labor LIKE mara-labor,
     wgbez LIKE t023t-wgbez,
      bismt LIKE mara-bismt,
      normt LIKE mara-normt,
      ferth LIKE mara-ferth,
      zeinr LIKE mara-zeinr,
      extwg LIKE mara-extwg,
      spart LIKE mara-spart,
      END OF i_mara.
DATA: BEGIN OF i_t023t OCCURS 0,
      matkl LIKE t023t-matkl,
      wgbez LIKE t023t-wgbez,
      END OF i_t023t.
DATA : var_length(20)  TYPE c,
       var_breadth(20)  TYPE c.
DATA: p_w_value LIKE konv-kwert.
DATA : it_fieldcat    TYPE  slis_t_fieldcat_alv,      " Event for Table to creater fieldcatalog
       wa_fieldcat     LIKE LINE OF it_fieldcat,      " Work Area for table field catalog
       lt_top_of_page   TYPE  slis_t_listheader,      " Header table for top of page
        i_layout        TYPE  slis_layout_alv .      " It will fill the layout
       gt_event   TYPE  slis_t_event.                 " Table Event
*DATA :
     "itab_tnlst TYPE STANDARD TABLE OF tnlst WITH HEADER LINE,
     "      itab_tkukt TYPE STANDARD TABLE OF tkukt WITH HEADER LINE,
*"      itab_t016t TYPE STANDARD TABLE OF t016t WITH HEADER LINE,
     itab_tvgrt TYPE STANDARD TABLE OF tvgrt WITH HEADER LINE.
*&       SELECTION-SCREEN
SELECTION-SCREEN BEGIN OF BLOCK block
                                  WITH FRAME TITLE text-100.
SELECT-OPTIONS: s_date FOR vbrk-fkdat OBLIGATORY,
                s_vkbur FOR vbak-vkbur OBLIGATORY,
                s_vtweg FOR vbrk-vtweg OBLIGATORY,
                s_werks FOR vbap-werks,
                s_spart FOR vbrk-spart OBLIGATORY,
                s_matkl FOR mara-matkl.
PARAMETERS:
            r_opt3  RADIOBUTTON GROUP grp1,
            r_opt2  RADIOBUTTON GROUP grp1.
           r_opt4  RADIOBUTTON GROUP grp1,
           r_opt5  RADIOBUTTON GROUP grp1,
           r_opt1  RADIOBUTTON GROUP grp1.
SELECTION-SCREEN END OF BLOCK block.
*&       INITIALIZATION
INITIALIZATION.
  r_opt2 = 'X'.
*&     START-OF-SELECTION.
START-OF-SELECTION.
*select data from VBRP
SELECT vbeln
        posnr
        matnr
        aubel
        fkimg
        vrkme
        arktx
        vgbel
        werks
        vkgrp
         fklmg
         volum
         vkbur
         vtweg_auft
        FROM vbrp
        INTO  TABLE i_report
        WHERE "erdat IN s_date
        AND   spart IN s_spart
           vkbur IN s_vkbur
        AND   vtweg_auft IN s_vtweg.
**logic for Pending, Summary & Detail Report
  IF
     r_opt1 EQ 'X' OR
    r_opt2 EQ 'X'  OR
           r_opt3 EQ 'X'.
    SELECT vbeln
              rfbsk
              erdat
              fkdat
              fksto
              netwr
              fkart
              knumv
              mwsbk
              bzirk
              vtweg
              spart
              FROM vbrk INTO TABLE i_vbrk
             FOR ALL ENTRIES IN i_report
              WHERE "vbeln = i_report-vbeln
             " and
              fkdat IN s_date
              AND   fkart IN ('ZBHR', 'ZTZT', 'ZKRP', 'ZRUD', 'ZBSR',
                            'ZGHT', 'ZKOL', 'ZPTN', 'ZRNC', 'ZCND',
                            'ZDLH', 'ZGZB', 'ZGUR', 'ZHSR', 'ZJPR',
                            'ZLKW', 'ZBLR', 'ZCHN', 'ZCBM', 'ZHUB',
                            'ZHYD', 'ZKOC', 'ZAHD', 'ZIND', 'ZMUM',
*********************MODIFICATION BY CHAKRAPANI  (ADDITION OF ZVIJ AND ZHWH ) 18.05.2007
                            'ZNGP', 'ZPNE', 'ZRPR' , 'ZEXP', 'ZDEM','ZVIJ', 'ZHWH','JEX' )
*********************MODIFICATION BY CHAKRAPANI  (ADDITION OF ZVIJ AND ZHWH ) 18.05.2007
              AND   vtweg IN s_vtweg
             AND   spart IN s_spart
              AND   fksto NE 'X'.
    IF i_vbrk[] IS NOT INITIAL.
      SELECT   vbeln
               posnr
               matnr
               aubel
               fkimg
               vrkme
               arktx
               vgbel
               werks
               vkgrp
                fklmg
                volum
                vkbur
                vtweg_auft
               FROM vbrp
               INTO  TABLE i_report
        FOR ALL ENTRIES IN i_vbrk
               WHERE vbeln = i_vbrk-vbeln "erdat IN s_date
        AND   spart IN s_spart
               AND  vkbur IN s_vkbur
               AND   vtweg_auft IN s_vtweg.
    ENDIF.
   ELSEIF r_opt4 EQ 'X' OR
          r_opt5 EQ 'X'.
     SELECT   vbeln
              rfbsk
              erdat
              fkdat
              fksto
              netwr
              fkart
              knumv
              mwsbk
              bzirk
              vtweg
              spart
              FROM vbrk INTO CORRESPONDING FIELDS OF TABLE i_vbrk
              FROM vbrk INTO TABLE i_vbrk
              FOR ALL ENTRIES IN i_report
              WHERE vbeln = i_report-vbeln
              AND   fkart EQ 'ZEXP'
              AND   vtweg IN s_vtweg
              AND   spart IN s_spart
              AND   fksto NE 'X'.
   ENDIF.
    SORT i_vbrk BY vbeln ASCENDING.
  ENDIF.
change amit by my self may be removed
  IF i_report[] IS NOT INITIAL.
    REFRESH it_report.
    it_report[] = i_report[].
    DELETE ADJACENT DUPLICATES FROM it_report COMPARING aubel.
    SORT it_report BY aubel.
*select VBAP data
    SELECT posnr vbeln matnr werks
    kwmeng lgort
    FROM vbap
    INTO  TABLE i_vbap
    FOR ALL ENTRIES IN it_report
    WHERE vbeln = it_report-aubel.
  ENDIF.
change amit by my self may be removed
*select data from VBKD
IF NOT i_vbap[] IS INITIAL.
   SELECT vbeln posnr
     FROM vbkd
     INTO TABLE i_vbkd
     FOR ALL ENTRIES IN i_vbap
     WHERE vbeln = i_vbap-vbeln.
ENDIF.
  SORT i_vbap BY vbeln ASCENDING.
  IF i_report[] IS NOT INITIAL.
    REFRESH it_report.
    it_report[] = i_report[].
    DELETE ADJACENT DUPLICATES FROM it_report COMPARING matnr.
    SORT it_report BY matnr.
    SELECT
    matnr
    matkl
    mtart
    labor
    bismt
    normt
    ferth
    zeinr
    extwg
    spart
    FROM mara
    INTO TABLE i_mara
    FOR ALL ENTRIES IN i_report
    WHERE matnr = i_report-matnr
      AND   spart IN s_spart.
  ENDIF.
   IF NOT i_mara[] IS INITIAL.
     SORT i_mara BY matnr.
     SELECT matnr
            labst
            FROM mard
            INTO TABLE itab_mard
            FOR ALL ENTRIES IN i_mara
            WHERE matnr = i_mara-matnr.
   ENDIF.
ENDIF.
  DATA : it_mara LIKE LINE OF i_mara OCCURS 0.
  IF NOT i_mara[] IS INITIAL.
    REFRESH it_mara.
    it_mara[] = i_mara[].
    DELETE ADJACENT DUPLICATES FROM it_mara COMPARING matkl.
    SORT it_mara BY matkl.
    SELECT matkl wgbez
      FROM t023t
      INTO  TABLE i_t023t
      FOR ALL ENTRIES IN it_mara
      WHERE matkl = it_mara-matkl.
*T024X
    REFRESH it_mara.
    it_mara[] = i_mara[].
    DELETE ADJACENT DUPLICATES FROM it_mara COMPARING labor.
    SORT it_mara BY labor.
    SELECT * FROM t024x
    INTO TABLE itab_t024x
    FOR ALL ENTRIES IN it_mara
    WHERE labor = it_mara-labor
    AND spras = sy-langu.
  ENDIF.
*begin of change amit
  LOOP AT i_vbap.
    READ TABLE i_mara WITH KEY matnr = i_vbap-matnr.
    IF sy-subrc = 0.
*material type & material group
      i_vbap-mtart = i_mara-mtart.
      i_vbap-matkl = i_mara-matkl.
    ENDIF.
    MODIFY i_vbap.
  ENDLOOP.
*Material Group Description
*end of change amit
IF i_report[] IS NOT INITIAL.
   REFRESH it_report.
   it_report[] = i_report[].
   DELETE ADJACENT DUPLICATES FROM it_report COMPARING vgbel.
   SORT it_report BY vgbel.
   SELECT vbeln
          ean11
          volum
          lgmng
          FROM lips
          INTO  TABLE i_lips
          FOR ALL ENTRIES IN it_report
          WHERE vbeln = it_report-vgbel.
ENDIF.
  IF i_report[] IS NOT INITIAL.
    REFRESH it_report.
    it_report[] = i_report[].
    SORT it_report BY vgbel.
    DELETE ADJACENT DUPLICATES FROM it_report COMPARING vgbel.
      IF i_lips[] IS NOT INITIAL.
    SELECT vbeln
           wadat_ist
           traid
           bolnr
           FROM likp
           INTO TABLE i_likp
           FOR ALL ENTRIES IN it_report
           WHERE vbeln = it_report-vgbel.
  ENDIF.
   SORT i_lips BY vbeln ASCENDING.
   LOOP AT i_lips.
     REFRESH t_line.
     CLEAR   w_tdname.
     w_tdname = i_lips-vbeln.
     CALL FUNCTION 'READ_TEXT'
       EXPORTING
         client                  = sy-mandt
         id                      = 'ZVOW'
         language                = sy-langu
         name                    = w_tdname
         object                  = 'VBBK'
       TABLES
         lines                   = t_line
       EXCEPTIONS
         id                      = 1
         language                = 2
         name                    = 3
         not_found               = 4
         object                  = 5
         reference_check         = 6
         wrong_access_to_archive = 7
         OTHERS                  = 8.
     IF sy-subrc <> 0.
     MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
             WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
     ENDIF.
     LOOP AT t_line.
       CONCATENATE i_lips-waybill t_line-tdline INTO i_lips-waybill.
     ENDLOOP.
     IF sy-subrc EQ 0.
       MODIFY i_lips.
     ENDIF.
   ENDLOOP.
*IF i_report[] IS NOT INITIAL.
   REFRESH it_report.
   it_report[] = i_report[].
   SORT it_report BY aubel.
   DELETE ADJACENT DUPLICATES FROM it_report COMPARING aubel.
  SELECT a~vbeln
         b~name1
         b~kunnr
         b~regio
         b~land1
         a~vkgrp
         b~niels
         b~kukla
         b~brsch
         a~vkbur
         FROM vbak AS a
         INNER JOIN kna1 AS b
         ON akunnr = bkunnr
         INTO TABLE i_kna1
         FOR ALL ENTRIES IN i_report
         WHERE vbeln = i_report-aubel.
        AND land1 = 'IN'.
*endif.
  DATA : it_kna1 LIKE LINE OF i_kna1 OCCURS 0.
  IF NOT i_kna1[] IS INITIAL.
    REFRESH it_kna1.
    it_kna1[] = i_kna1[].
    SORT it_kna1 BY regio.
    DELETE ADJACENT DUPLICATES FROM it_kna1 COMPARING regio.
    SELECT spras
      land1
      bland
      bezei FROM t005u
             INTO TABLE i_t005u
             FOR ALL ENTRIES IN it_kna1
             WHERE bland = it_kna1-regio
             AND spras = 'EN' AND land1 = 'IN'.
    REFRESH it_kna1.
    it_kna1[] = i_kna1[].
    SORT it_kna1 BY niels.
    DELETE ADJACENT DUPLICATES FROM it_kna1 COMPARING niels.
    SELECT spras niels bezei FROM tnlst
           INTO TABLE i_tnlst
           FOR ALL ENTRIES IN it_kna1
           WHERE niels = it_kna1-niels
           AND spras = sy-langu.
    REFRESH it_kna1.
    it_kna1[] = i_kna1[].
    SORT it_kna1 BY kukla.
    DELETE ADJACENT DUPLICATES FROM it_kna1 COMPARING kukla.
    SELECT spras kukla vtext FROM  tkukt
          INTO TABLE itab_tkukt
          FOR ALL ENTRIES IN it_kna1
          WHERE kukla = it_kna1-kukla
          AND spras = sy-langu.
    REFRESH it_kna1.
    it_kna1[] = i_kna1[].
    SORT it_kna1 BY brsch.
    DELETE ADJACENT DUPLICATES FROM it_kna1 COMPARING brsch.
    SELECT spras brsch brtxt FROM t016t
       INTO TABLE itab_t016t
         FOR ALL ENTRIES IN it_kna1
         WHERE brsch = it_kna1-brsch
         AND spras = sy-langu.
    REFRESH it_kna1.
    it_kna1[] = i_kna1[].
    SORT it_kna1 BY vkgrp.
    DELETE ADJACENT DUPLICATES FROM it_kna1 COMPARING vkgrp.
    SELECT spras vkgrp bezei FROM tvgrt
        INTO TABLE itab_tvgrt
        FOR ALL ENTRIES IN it_kna1
        WHERE vkgrp = it_kna1-vkgrp
        AND spras = sy-langu.
  ENDIF.
  SORT i_kna1 BY vbeln ASCENDING.
  IF i_report[] IS NOT INITIAL.
    REFRESH it_report.
    it_report[] = i_report[].
    SORT it_report BY aubel.
    DELETE ADJACENT DUPLICATES FROM it_report COMPARING aubel.
    SELECT a~vbeln
           a~kunnr
           b~city1
           FROM vbpa AS a
           INNER JOIN adrc AS b
           ON aadrnr = baddrnumber
           INTO TABLE i_adrc
           FOR ALL ENTRIES IN it_report
           WHERE vbeln = it_report-aubel
           AND parvw = 'WE'.
    SORT i_adrc BY vbeln ASCENDING.
  ENDIF.
  DATA : it_adrc LIKE LINE OF i_adrc OCCURS 0.
  IF i_adrc[] IS NOT INITIAL.
    REFRESH it_adrc.
    it_adrc[] = i_adrc[].
    SORT it_adrc BY kunnr.
    DELETE ADJACENT DUPLICATES FROM it_adrc COMPARING kunnr.
    SELECT kunnr name1
           FROM kna1
           INTO TABLE i_kna2
           FOR ALL ENTRIES IN it_adrc
          WHERE kunnr = it_adrc-kunnr.
  ENDIF.
SELECT a~lifnr
        a~vbeln
        b~name1
       FROM vbpa AS a
        INNER JOIN lfa1 AS b
        ON alifnr = blifnr
        INTO TABLE i_lfa1
        FOR ALL ENTRIES IN i_report
        WHERE vbeln = i_report-vgbel
        AND parvw = 'SP'.
  SORT i_lfa1 BY vbeln ASCENDING.
change amit by my self may be removed
  IF i_report[] IS NOT INITIAL.
    REFRESH it_report.
    it_report[] = i_report[].
    SORT it_report BY vbeln.
    DELETE ADJACENT DUPLICATES FROM it_report COMPARING vbeln.
    SELECT exnum
           exdat
           rdoc
          status
           FROM j_1iexchdr
           INTO TABLE itab_exnum
           FOR ALL ENTRIES IN it_report
           WHERE rdoc = it_report-vbeln AND status =  'P' OR status = 'C' .
  ENDIF.
change amit by my self may be removed
change amit by my self may be removed
  IF i_report[] IS NOT INITIAL.
    REFRESH it_report.
    it_report[] = i_report[].
    SORT it_report BY aubel.
    DELETE ADJACENT DUPLICATES FROM it_report COMPARING aubel.
    SELECT kwmeng
           vbeln
           lgort
           FROM vbap
           INTO TABLE itab_qty
           FOR ALL ENTRIES IN it_report
           WHERE vbeln = it_report-aubel.
  ENDIF.
change amit by my self may be removed
  SORT itab_qty BY vbeln.
  CHECK NOT i_vbrk[] IS INITIAL.
  SORT i_report BY vbeln.
  DATA : t_vbrk LIKE LINE OF i_vbrk OCCURS 0.
  REFRESH t_vbrk.
  t_vbrk[] = i_vbrk[].
  SORT t_vbrk BY knumv.
  DELETE ADJACENT DUPLICATES FROM t_vbrk COMPARING knumv.
  SELECT ksteu
         knumv
         kschl
         kbetr
         kwert
         kposn
         kmein
         FROM konv
         INTO  TABLE it_rate
         FOR ALL ENTRIES IN t_vbrk
         WHERE knumv = t_vbrk-knumv
         AND kschl IN ('ZR00',          "Basic Price
                       'ZR01',          "Basic Price
                       'ZR02',          "Basic Price
                       'ZR03',          "Basic Price
                       'ZR04',          "Basic Price
                       'ZR05',          "Basic Price
                       'JEXP',          "Excise
                       'JECS',          "ED
                       'ZG03',          "Freight
                       'ZG04',          "Freight
                       'JCST',          "CST
                       'JLST',          "LST
                       'ZDEV',         "Dev Tax
                       'Z001',         "Discount
                       'Z002',         "Discount
                       'Z003',         "Discount
                       'Z004',         "Discount
                       'Z005',         "Discount
                       'Z006',         "Discount
                       'Z007',         "Discount

Similar Messages

  • Short dump while filtering an ALV report

    Hi ,
    I have an ALV report which gives me short dump when I filter any of the 'P' type field. I tried to implement sap note 839839 in debug mode but in vain. Should I implement this note first and then check the chnage?
    the short dump error "..........
    Error in ASSIGN: Memory protection error.                                                                               
    The current program "SAPLSSEL " uses the ASSIGN statement.              
    However, the offset of the segment (20208) plus the length (69)         
    is greater than the length of the segment (20264).                      
    This is not allowed.                                                                               
    If the error is in one of your own ABAP programs or an SAP program that          
    you have modified, try to correct it.                                            
    Reduce the offset and/or length that you are using.                                                                               
    If the error occurred in a non-modified SAP program, you may be                  
    able to find a solution in the SAP note system.                                  
    If you have access to the note system yourself, use the following                
    search criteria:                                                                               
    "ASSIGN_OFFSET+LENGTH_TOOLARGE"                                   
    "SAPLSSEL " or "LSSELFDI "                                        
    "FILL_DYN_FROM_FIELD_SEL"               ........."
    I appreciate ur inputs.
    thanks in advance,
    regards,
    shan

    Hi Guys,
    I found the answer. I had to define all P type fields with eaxact length of 16 . Its working fine.
    thanks for all your help.
    regards,
    shan

  • Short dump when exporting the ALV grid report in to spread sheet

    HI,
    I am facing a problem when downloading ALV grid report in to spread sheet LIST>EXPORT>LOCAL FILE -->SPREADSHEET.
    in shotdump the cursor shows : "assign cline+cbegin(clength) to <field_cont>."
    In SAP internal table LIST,in the first record the value of the filed LENG is 0. when i have changed this value ex:10 etc it is coming properly.
    Kindly help me
    Nagendra

    Is this a standard SAP report, or your own? Can you tell what your report does, if it is a custom ALV report?

  • Short Dump while executing ALV Grid.

    Hi All,
    I m getting a short dump while trying to execute an ALV.
    The dump exception is of type
    CX_SY_DYN_CALL_ILLEGAL_TYPE class.
    The message displayed is :  " Call to form 'GI_FIELDCAT' is incorrect .The actual parameter in PERFORM is different data type than requested for form GI_FIELDCAT "  .
    The part of programe included is as follows:
      FORM build_fieldcat .
        PERFORM gi_fieldcat USING 'MBLNR' text-014 '1' '20'.
        PERFORM gi_fieldcat USING 'ZEILE' text-005 '2' '4'.
        PERFORM gi_fieldcat USING 'MATNR' text-006 '3' '18'.
        PERFORM gi_fieldcat USING 'MAKTX' text-028 '4' '40'.
        PERFORM gi_fieldcat USING 'MATKL' text-029 '5' '40'.
        PERFORM gi_fieldcat USING 'BUDAT' text-027 '6' '10'.
        PERFORM gi_fieldcat USING 'MENGE' text-026 '7' '9'.
        PERFORM gi_fieldcat USING 'DMBTR' text-025 '8' '13'.
        PERFORM gi_fieldcat USING 'WAERS' text-011 '9' '5'.
        PERFORM gi_fieldcat USING 'RSNUM' text-012 '10' '10'.
        PERFORM gi_fieldcat USING 'PSPHI' text-013 '11' '10'.
    ENDFORM.                    " build_fieldcat
    FORM gi_fieldcat  USING    fieldname TYPE slis_fieldcat_alv-fieldname
                               colmname  TYPE slis_fieldcat_alv-seltext_m
                               colmpos   TYPE slis_fieldcat_alv-col_pos
                               outputlen TYPE slis_fieldcat_alv-outputlen.
      wa_fieldcat-fieldname   = fieldname.
      wa_fieldcat-seltext_m   = colmname.
      wa_fieldcat-col_pos     = colmpos.
      wa_fieldcat-outputlen   = outputlen.
    wa_fieldcat-
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
    ENDFORM.                    " gi_fieldcat
    Can ayone gimmi a solution for the same.

    Hi,
    Try to change ur code like the below.
    Attached: sample code
    Building field catalog
      PERFORM modify_catlog USING:
      'GT_OUTPUT' 'AUART'  text-t02  '1',
      'GT_OUTPUT' 'KUNNR'  text-t03  '2',
      'GT_OUTPUT' 'NAME'   text-t04  '3',
      'GT_OUTPUT' 'KWMENG' text-t05  '4',
      'GT_OUTPUT' 'VRKME'  text-t06  '5',
      'GT_OUTPUT' 'LFIMG'  text-t07  '6',
      'GT_OUTPUT' 'GEWEI'  text-t08  '7',
      'GT_OUTPUT' 'VOLUM'  text-t09  '8',
      'GT_OUTPUT' 'VOLEH'  text-t10  '9',
      'GT_OUTPUT' 'BRGEW'  text-t11 '10',
      'GT_OUTPUT' 'UOMGW'  text-t12 '11',
      'GT_OUTPUT' 'VARCE'  text-t13 '12',
      'GT_OUTPUT' 'UOMVR'  text-t14 '13'.
    FORM modify_catlog USING    pa_tabname TYPE string
                                pa_field   TYPE string
                                pa_text    TYPE string
                                pa_pos     TYPE string.
      CLEAR gs_fieldcatalog.
    *Modifying field catalog
      gs_fieldcatalog-col_pos = pa_pos.
      gs_fieldcatalog-fieldname = pa_field.
      gs_fieldcatalog-tabname = pa_tabname.
      gs_fieldcatalog-seltext_m = pa_text.
      APPEND gs_fieldcatalog TO gt_fieldcatalog.
      CLEAR gs_fieldcatalog.
    l_repid = sy-repid.
    To call function to display ALV output
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                i_callback_program = l_repid
                it_fieldcat        = gt_fieldcatalog
                     TABLES
                t_outtab           = gt_output
           EXCEPTIONS
                program_error      = 1
                OTHERS             = 2.
      IF sy-subrc <> 0.
        MESSAGE e000 WITH text-t16.
      ENDIF.
    Reward if helpful.
    Regards,
    Ramya

  • Short Dump while creating Configuration (Application or Component)

    Hi All,
    I m facing a short dump, while creating a Component or Applcation Configuration
    in the standard FPM_GAF_COMPONENT.
    Short dump states the Runtine error as MESSAGE_TYPE_UNKNOWN
    Short text
        Message type " " is unknown.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_WDR_MESSAGE_MANAGER========CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    Information on where terminated
        Termination occurred in the ABAP program "CL_WDR_MESSAGE_MANAGER========CP" -
         in "IF_WD_MESSAGE_MANAGER~REPORT_T100_MESSAGE".
        The main program was "SAPMHTTP ".
        In the source code you have the termination point in line 16
        of the (Include) program "CL_WDR_MESSAGE_MANAGER========CM00R".
      12        exporting
      13           textid = cx_wdr_rt_exception=>invalid_
      14   endif.
      15
    >>>>   message id msgid type msgty number msgno
      17           with p1 p2 p3 p4
      18           into msg.
      19
      20   if p1 is not initial.

    Hello Srikanth,
    I have no issues in trying to help someone as polite as you! It is very nice to have questions answered in an intelligible manner - not unfortunately always the case.
    Without being able to debug on your system it is quite difficult to say what might be causing this error - especially as you say this was working in a different system.
    I'm sure you've already tried eliminating differences in your authorisations between the two systems? Are you registered as a developer in the new system?
    Sorry I'm now just guessing as I've not come across the error myself - hopefully now that we have clearly documented the issue, someone else might be able to shed some light on what might cause it!
    Chris

  • System Throws short dump while executing data source 2LIS_11_VASCL in RSA3.

    Hello Experts,
    I got short dump while executing data source 2LIS_11_VASCL in RSA3.
    The details are as follow.
    When importing object "MC11VA0SCL_TAB", the structure did not match the
    structure of the target object. The error occurred in component
    no. 567.
    This may be due to one of the following reasons:
    - the structure is actually different (the next field has, for
      example, a different data type) or
    - the same sequence of components were exported and imported,
      but the fields were from other include units.
    I have checked source and target fields and those are of same length and data type.
    Could you please give some points why this short dump occurs.
    Thanks
    Konda Reddy

    Hi,
    This error is not between BI and R/3.  It is within R/3.  You may have setup data and then modified the datasource.
    Delete setup data, generate your datasource again.  Setup data and try again.
    If you are on a live system with data setup after a downtime and you do not want to delete it, then bring your datasource to the original state when you setup data and pull data.
    Cheers....

  • SHORT DUMP WHILE EXECUTING DTP.

    Hi Gurus,
    I have got a short dump while executing DTP the Error is as Follows.
    Runtime Error: MESSAGE_TYPE_X.
    Reasons for Error: 1.The installation of the SAP GUI on the present server is faulty or obselete
    2.There is a error in the application program
    And i have sent the sreen shot of the Short Dump to BASIS TEAM and they have replied me that they have to install some patches and it will take some time.
    But i have no much time and i have to someway or the other execute the DTP and load the data.
    Is there any shortcuts for this i mean to say without the involvement of Basis team that i can do in th BI System
    Regards
    Amar.

    Hi Amar,
    If the problem is with with System itself, how can we all have a short cut in that case. You may give it another trial, but you have to wait for the patches to be applied. Ask your basis team to get it done ASAP.
    Thanks..
    Shambhu

  • Short dump while using BAPI_PO_CREATE1

    Hi all,
    I am facing this short dump while executing my program that uses BAPI_PO_CREATE1.
    The error is 'Exception condition "failure" raised'.
    The trigger location of runtime error is
    Program : CL_HANDLE_MANAGER_MM====================CP
    Include:   CL_HANDLE_MANAGER_MM=====================CM005
    Module name:   GET
    Source code:
    Method GET.
    If my_manager is initial.
        Call method get_manager.
    endif.
    call method my_manager-> search EXporting im_id  = im_id
                                                            Importing ex_handle = ex_handle
                                                            Exceptions failure = 01.
    If sy-subrc <>0.
      raise failure.
    endif.
    I am a beginner in ABAP. Plz help.

    Hi ,
    I faced the similar situation once , in my case when i passed the Delivery indicator value in the Item Table as well as Itemx Table , i was facing this error .
    what  i suggest you is to pass it at the Item table only , not at the itemx Table.
    it worked  for me .
    try this and reply for the same.

  • Short Dump while execuition of DTP.

    Hi,
    I got short dump while  execuiting the DTP.
    Error messages shows as below:
    1.The database returned a value containing an error
    2.An exception with the type CX_SY_OPEN_SQL_DB occurred, but was neither handled locally, nor declared in a RAISING clause
    3.Exception CX_SY_NO_HANDLER logged
    Could you please help us in solving this issue.
    Regards,
    Suman.

    hi,
    an error like this comes usually in 2 cases
    1) not enough resources are available to carry out loads.in this case increase no of parallel processes to 2-3 in dtp setting,check the option get delta request by request(if its a delta load) and decrease packet size to 10000(from default 50000)
    2)fileld to field assignment is not proper:
    u need to check if there is any source field with lenth lets say 5 ans is getting assisgned to a target field length lets say 4.in this case dumps will come
    please check the error message in st22 and here you can also check the termination point.please check in option Chosen variables /contents of system fileds where you can get temp values at point of termination.here you can pinpoint values at which prog is throwing dumps.

  • Short Dump while executing New Hire (action type) in PA40

    Hi All,
    i am getting short dump while executing PA40 for new hire action type can anyone look into this and guide as i am new to HCM.
    Category               ABAP Programming Error                                                      
    Runtime Errors         SYNTAX_ERROR                                                                
    ABAP Program           /1PAPAXX/HDR_21000A                                                         
    Application Component  Not Assigned                                                                
    Date and Time          21.08.2014 14:07:03                                                         
    Short text                                                                                       
        Syntax error in program "/1PAPAXX/HDR_21000A ".                                              
    What happened?                                                                                   
        Error in the ABAP Application Program                                                        
        The current ABAP program "SAPFP50M" had to be terminated because it has                      
        come across a statement that unfortunately cannot be executed.                               
        The following syntax error occurred in program "/1PAPAXX/HDR_21000A " in                     
        include "/1PAPAXX/HDR_21000AO01 " in                                                        
        line 52:                                                                                     
        ""LV_LENGTH" has already been declared"                                                      
        The include has been created and last changed by:                                            
        Created by: "HCM04 "                                                                         
        Last changed by: "HCM03 "                                                                    
        Error in the ABAP Application Program                                                        
        The current ABAP program "SAPFP50M" had to be terminated because it has                      
        come across a statement that unfortunately cannot be executed.                               
    What can you do?                                                                                 
        Please eliminate the error by performing a syntax check                                      
        (or an extended program check) on the program "/1PAPAXX/HDR_21000A ".                        
        You can also perform the syntax check from the ABAP Editor.                                  
        If the problem persists, proceed as follows:                                                 
        Note down which actions and inputs caused the error.                                         
        To process the problem further, contact you SAP system                                       
        administrator.                                                                               
        Using Transaction ST22 for ABAP Dump Analysis, you can look                                  
        at and manage termination messages, and you can also                                         
        keep them for a long time.                                                                   
    Error analysis                                                                                   
        The following syntax error was found in the program /1PAPAXX/HDR_21000A :                    
        ""LV_LENGTH" has already been declared"                                                      
    How to correct the error                                                                         
        Probably the only way to eliminate the error is to correct the program.                      
        If you cannot solve the problem yourself and want to send an error                           
        notification to SAP, include the following information:                                      
        1. The description of the current problem (short dump)                                       
           To save the description, choose "System->List->Save->Local File                           
        (Unconverted)".                                                                              
        2. Corresponding system log                                                                  
           Display the system log by calling transaction SM21.                                       
           Restrict the time interval to 10 minutes before and five minutes                          
        after the short dump. Then choose "System->List->Save->Local File                            
        (Unconverted)".                                                                              
        3. If the problem occurs in a problem of your own or a modified SAP                          
        program: The source code of the program                                                      
           In the editor, choose "Utilities->More                                                    
        Utilities->Upload/Download->Download".                                                       
        4. Details about the conditions under which the error occurred or which                      
        actions and input led to the error.                                                          
    System environment                                                                               
        SAP Release..... 731                                                                         
        SAP Basis Level. 0007                                                                        
        Application server... "dc-ds-erp"                                                            
        Network address...... "172.16.23.111"                                                        
        Operating system..... "Linux"                                                                
        Release.............. "3.0.13-0.27-default"                                                  
        Hardware type........ "x86_64"                                                               
        Character length.... 16 Bits                                                                 
        Pointer length....... 64 Bits                                                                
        Work process number.. 1                                                                      
        Shortdump setting.... "full"                                                                 
        Database server... "dc-ds-erp"                                                               
        Database type..... "ORACLE"                                                                  
        Database name..... "ECD"                                                                     
        Database user ID.. "SAPSR3"                                                                  
        Terminal.......... "NLC-HP"                                                                  
        Char.set.... "C"                                                                             
        SAP kernel....... 720                                                                        
        created (date)... "Sep 14 2013 06:16:24"                                                     
        create on........ "Linux GNU SLES-11 x86_64 cc4.3.4 use-pr130820"                            
        Database version. "OCI_112, 11.2.0.3.0, V1, default"                                         
        Patch level. 500                                                                             
        Patch text.. " "                                                                             
        Database............. "ORACLE 10.1.0.*.*, ORACLE 10.2.0.*.*, ORACLE 11.2.*.*.*"              
        SAP database version. 720                                                                    
        Operating system..... "Linux 2.6, Linux 3"                                                   
        Memory consumption                                                                           
        Roll.... 0                                                                                   
        EM...... 37708200                                                                            
        Heap.... 0                                                                                   
        Page.... 106496                                                                              
        MM Used. 4666776                                                                             
        MM Free. 3709976                                                                             
    User and Transaction                                                                             
        Client.............. 210                                                                     
        User................ "HCM03"                                                                 
        Language key........ "E"                                                                     
        Transaction......... "PA40 "                                                                 
        Transaction ID...... "53EF470299AB5D67E1000000AC10176F"                                      
        EPP Whole Context ID.... "005056A301D11EE48A9D08B337F884E3"                                  
        EPP Connection ID....... 00000000000000000000000000000000                                    
        EPP Caller Counter...... 0                                                                   
        Program............. "SAPFP50M"                                                              
        Screen.............. "MP000000 1000"                                                         
        Screen Line......... 3                                                                       
        Debugger Active..... "none"                                                                  
    Information on where terminated                                                                  
        Termination occurred in the ABAP program "SAPFP50M" - in                                     
        "GET_HEADER_WITH_TCLAS".                                                                    
        The main program was "MP000000 ".                                                            
        In the source code you have the termination point in line 146                                
        of the (Include) program "FP50MDHD".                                                         
    Source Code Extract                                                                              
    Line
    SourceCde                                                                                  
      116
      CALL FUNCTION 'HR_HEADER_GET'                                                            
      117
          EXPORTING                                                                            
      118
               DHDID                    = FHD_HID                                              
      119
               BEGDA                    = BEGDA                                                
      120
               TCLAS                    = TCLAS                                                
      121
    * Es wird nur einer der folgenden 3 Parameter benutzt.                                     
      122
    * Ausgewertet wird zunaechst MOLGA, dann P0001 dann PERNR.                                 
      123
    * Der erste der nicht initial ist wird ausgewertet.                                        
      124
    *           MOLGA                   =                                                      
      125
               P0001                    = P0001                                                
      126
               PERNR                    = PSPAR-PERNR                                          
      127
          IMPORTING                                                                            
      128
               PROG                     = HEADER_PROG                                          
      129
               DNUM                     = HEADER_DYNNR                                         
      130
           EXCEPTIONS                                                                          
      131
                HEADER_DEACTIVATED          = 1                                                
      132
                HEADER_UNKNOWN              = 2                                                
      133
                HEADER_GENERATE_DEACTIVATED = 3                                                
      134
                HEADER_GENERATE_FAILED      = 4                                                
      135
                INTERNAL_ERROR              = 5                                                
      136
                OTHERS                      = 6.                                               
      137
      138
      IF NOT SY-SUBRC IS INITIAL.                                                              
      139
    * Bei Problemen gibt's eben ein leeres Dynpro.                                             
      140
        HEADER_PROG = 'SAPMP50A'.                                                              
      141
        HEADER_DYNNR = '0090'.                                                                 
      142
      ELSE.  " NOT sy-subrc IS INITIAL.                                   "                    
      143
    * Dann setzen wir jetzt auch noch das Datum fest.                                          
      144
        PERFORM HEADER_BEGDA_SET IN PROGRAM (HEADER_PROG) USING BEGDA.                         
      145
    * Und schalten auf Uebergabe der PERNR mit globalen Variablen.                             
    >>>>>
        PERFORM HEADER_LAZY_ON IN PROGRAM (HEADER_PROG).                                       
      147
      ENDIF.  " (ELSE) NOT sy-subrc IS INITIAL.                           "                    
      148
    * Merken wie der Header heisst. Damit MPPERS00 sich erinnern kann.                         

    Hi,
    Error Log: Syntax error
    ""LV_LENGTH" has already been declared"
    please check LV_LENGTH variable declaration.
    It may be declared more once!

  • Short dump while executing info package in 3.5 data flow?

    Hi,
    i am getting short dump while executing info package while executing info package. it was working perfectly 2 days back suddenly it is giving this problem. it is a full load for info object text data and i have only 600 records. when i tried with " only info package" it is working perfectly n bringing the data into PSA. But when i use "PSA and the into data target" it is giving short dump.
    i replicated Data source and also i activated transfer rules, update rules still it is not working. When i check with another info objects it is working perfectly fine. i dont know what is wrong with only particular info object.
    Please find attached short dump.
    Thanks

    Hi,
    When you load transaction data I think there is a deadlock.
    Check in the process overview (transaction SM50) the waiting processes are in program SAPLSENA .
    The program SAPLSENA is the lock handler tool.
    Also check if  ACR is running on this target while your load is happening.
    Check in SM12 if there are any lock entries for the Infoobject to which you are loading data and on RSICCONT table .
    Try reloading after deleting the locks manually.
    Regards.

  • Short dump while navigate to second view :: "OBJECTS_OBJREF_NOT_ASSIGNED_NO

    Hi,
    Can anybody help me out as I am getting a short dump while navigating to particular screen.
    The error was triggered when i was binding an internal table to node in my second view.
    The short dump shows as below.
    ■The following error text was processed in the system EID : Zugriff über 'NULL' Objektreferenz nicht möglich.
    ■The error occurred on the application server ECCIDES_EID_00 and in the work process 1 .
    ■The termination type was: RABAX_STATE
    ■The ABAP call stack was:
    Method: HANDLEFROM_EXPORTS_INIT of program /1BCWDY/4QJM86ZSS4V4M81W8MTQ==CP
    Method: HANDLEFROM_EXPORTS_INIT of program /1BCWDY/4QJM86ZSS4V4M81W8MTQ==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/4QJM86ZSS4V4M81W8MTQ==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_VIEW========CP
    Method: NAVIGATE of program CL_WDR_CLIENT_APPLICATION=====CP
    Method: DO_NAVIGATION of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: PROCESS_REQUEST of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: PROCESS_REQUEST of program CL_WDR_WINDOW=================CP
    Method: EXECUTE of program CL_WDR_MAIN_TASK==============CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    What can I do?
    ■If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system EID in transaction ST22.
    ■If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server ECCIDES_EID_00 in transaction SM21.
    ■If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 1 in transaction ST11 on the application server ECCIDES_EID_00 . In some situations, you may also need to analyze the trace files of other work processes.
    ■If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 700 -u: OBIZDEV -l: E -s: EID -i: ECCIDES_EID_00 -w: 1 -d: 20110723 -t: 161516 -v: RABAX_STATE -e: OBJECTS_OBJREF_NOT_ASSIGNED_NO
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    Please help.

    Hu Saravanan,
    Please find my code below in HANDLEFROM_EXPORTS_INIT and
    method HANDLEFROM_EXPORTS_INIT .
    data : WRK_DOC_CLAS type /OBIZ/ZXP_DOCCLS-DOC_CLAS.
    data : it_doc type TABLE OF /OBIZ/ZXP_SHPHD.
    DATA : doc_node type REF TO if_wd_context_node.
    BREAK-POINT.
    if doc_desc = 'Quotation'.
    WRK_DOC_CLAS = '0001'.
    elseif doc_desc = 'Sales Order'.
    WRK_DOC_CLAS = '0002'.
    elseif doc_desc = 'Delivery'.
    WRK_DOC_CLAS = '0003'.
    elseif doc_desc = 'Proforma Invoice'.
    WRK_DOC_CLAS = '0004'.
    elseif doc_desc = 'Billing'.
    WRK_DOC_CLAS = '0006'.
    ENDIF.
    select * INTO CORRESPONDING FIELDS OF TABLE
    it_doc FROM /OBIZ/ZXP_SHPHD WHERE doc_clas = WRK_DOC_CLAS.
    call METHOD doc_node->bind_table
    EXPORTING new_items = it_doc.
    endmethod.
    I have imported doc_desc via my inbound plug in the view.
    Regards
    Deric

  • Short dump while loading master data (0material_attr).

    Hi,
    I am experiencing a short dump while loading 0matrial_attr from R/3.
    Name of the runtime error :
    DBIF_RSQL_SQL_ERROR
    program is generating exception at this point.
    ***Try to insert the records into the ODS table
    INSERT /BIC/B0002905000 FROM TABLE L_T_DATA.
    pls help me.

    Hi,
    I am sure I am looking at the proper dump.
    the code I have pasted is the standard code.. which I get to see in the dump analysis.
    ******************************dump analysis*********************************
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was
    neither
    caught nor passed along using a RAISING clause, in the procedure "INSERT_ODS"
    "(FORM)"
    Since the caller of the procedure could not have expected this exception
    to occur, the running program was terminated.
    The reason for the exception is:
    The exception must either be prevented, caught within the procedure
    "INSERT_ODS"
    "(FORM)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:
    Database error text........: "ORA-14400: inserted partition key does not map to
    any partition"
    Internal call code.........: "[RSQL/INSR//BIC/B0002905000 ]"
    Please check the entries in the system log (Transaction SM21).
    system log in SM 21 is below**************
    After the attempt to access a database table the database system has
    returned an error code which indicates that the operation concerned
    could not be performed successfully.

  • Short dump while scheduling infopackage

    Hi,
    im getting short dump while scheduling infopackage  for( 0cfm_init_positions )as it is giving  dump like MESSAGE_TYPE_X runtime error in BI test system but in dev it's working fine if anybody knows how to resolve??.

    hi
    this is due to existence of TRFC-Packages for old failed requests in the source system.
    so for this QM-Action in the request monitor change manually to red.
    if you wont find the solution contact basis team.
    or
    use SE16. Look at RSSDLINIT table. Match up the LOGSYS with your OLTPSOURCE (for the infopackage that is causing the problem). Delete that line(s) Now you can open the infopackage. (be sure to delete the initialization) before you run the info pack again.)
    Also you can check SAP Note : 852443
    check this links
    Short dump MESSAGE_TYPE_X while trying to open infopackage
    DUMP IS COMMING WHILE CREATING INFOPACKAGE

  • Regarding Short Dump While loading data from DB Connect

    Dear All,
    We are having an issue of getting short dump while loading data from DB Connect to BW. We were able to load the data into BW Dev using the same data source without any problem. Whereas in Production, I am getting the following error:
    Runtime Error          PERFORM_CONFLICT_TAB_TYPE  
    Except.                   CX_SY_DYN_CALL_ILLEGAL_TYPE
    What could be the reason for the error that I am getting

    hi,
    Refer Note 707986 - Writing in trans. InfoCubes: PERFORM_CONFLICT_TAB_TYPE
    Summary
    Symptom
    When data is written to a transactional InfoCube, the termination PERFORM_CONFLICT_TAB_TYPE occurs. The short dump lists the following reasons for the termination:
    ("X") The row types of the two tables are incompatible.
    ("X") The table keys of the two tables do not correspond.
    Other terms
    transactional InfoCube, SEM, BPS, BPS0, APO
    Reason and Prerequisites
    The error is caused by an intensified type check in the ABAP runtime environment.
    Solution
    Workaround for BW 3.0B (SP16-19), BW 3.1 (SP10-13)
    Apply the attached correction instructions.
    BW 3.0B
    Import Support Package 20 for 3.0B (BW3.0B Patch20 or SAPKW30B20) into your BW system. The Support Package is available oncenote 0647752 with the short text "SAPBWNews BW3.0B Support Package 20", which describes this Support Package in more detail, has been released for customers.
    BW 3.10 Content
    Import Support Package 14 for 3.10 (BW3. 10 Patch14 or SAPKW31014) into your BW system. The Support Package is available once note 0601051 with the short text "SAPBWNews BW 3.1 Content Support Package 14" has been released for customers.
    BW3.50
    Import Support Package 03 for 3.5 (BW3.50 Patch03 or SAPKW35003) into your BW system. The Support Package is available once note 0693363 with the short text "SAPBWNews BW 3.5 Support Package 03", which describes this Support Package in more detail, has been released for customers.
    The notes specified may already be available to provide advance information before the Support Package is released. However, in this case, the short text still contains the term "Preliminary version" in this case.
    Header Data
    Release Status: Released for Customer
    Released on: 18.02.2004 08:11:39
    Priority: Correction with medium priority
    Category: Program error
    Primary Component: BW-BEX-OT-DBIF Interface to Database
    Secondary Components: FIN-SEM-BPS Business Planning and Simulation
    Releases
    Software
    Component Release From
    Release To
    Release And
    subsequent
    SAP_BW 30 30B 30B
    SAP_BW 310 310 310
    SAP_BW 35 350 350
    Support Packages
    Support
    Packages Release Package
    Name
    SAP_BW_VIRTUAL_COMP 30B SAPK-30B20INVCBWTECH
    Related Notes
    693363 - SAPBWNews BW SP03 NW'04 Stack 03 RIN
    647752 - SAPBWNews BW 3.0B Support Package 20
    601051 - SAPBWNews BW 3.1 Content Support Package 14
    Corrections Instructions
    Correction
    Instruction Valid
    from Valid
    to Software
    Component Ref.
    Correction Last
    Modifcation
    301776 30B 350 SAP_BW J19K013852 18.02.2004 08:03:33
    Attributes
    Attribute Value
    weitere Komponenten 0000031199
    Thanks
    (Activate ODS/Cube and Transfer rules again..)

Maybe you are looking for

  • Asha 302 doesn't want to use WiFi

    So I'm a user of Nokia Asha 302 and though I generally love the phone, one problem just gives me nightmares. Namely, I can't do almost anything requiring WiFi. The only thing that works is the stock browser - if I want to use the built-in email clien

  • How can i block PO adopt from PR with no release tab

    Dear Experts, I need to block PO creation ( by adoptation of PR) from PR which has no release tab active. Kindly help me how can i do this. From unreleased PR , PO can not be created and it is standard SAP function. But if PR has no release tab then

  • I don't have a pc but want firefox on my iphone

    ''dupe of https://support.mozilla.org/en-US/questions/920596'' Want firefox but don't have a computer what can I do

  • Flv player to play swf

    I have a simple swf animation that I would like to post on my website and I am looking for an swf player. I tried using the one bundled with flash professional but it seems that it only accept flv files. So is there any way around this. I could creat

  • Setting up a Yahoo account on Mail

    I am trying to set up my Mail to receive my yahoo.com account. I am not quite sure how to do this. I put in what I think is the correct info. and it says this: The POP server "mail.yahoo.com" is not responding. Check your network connection and that