Problem :ALV:Deletion Flags not showing in output

hi all !
I have a alv program which displays customer data.there are three deletion flags columns in the output.
First deletion flag will be: KNA1-LOEVM
Second deletion flag will be: KNB1-LOEVM
Third deletion flag will be: KNVV-LOEVM
earlier all three were showing.but now no one is showing.i'm pasting my code here if any expert can have a look and find out the BUG.
CODE STARTS----
report zqsdcap_cust.
INCLUDE DECLARATIONS
include:
  ziabapcapph_macros.                   "Holcim Useful Macros
TABLE DECLARATIONS
tables:
  tvko,                                "Org. Unit: Sales Organizations
  t001,                                "Company codes
  kna1,                                "Customer Master
  knvv,                                "Customer master sales
  knvi,                                "Customer tax classificat'n
  knb1,                                "Customer master company code
     <<CR003-DEVK949538 start ins
  adr6.                                "SMTP numbers
     <<CR003-DEVK949538 end ins
TYPE DECLARATIONS
type-pools:
  slis.
STRUCTURE DECLARATIONS
Define structure for keep data in ALV list
data: begin of gs_output_list,
        vkorg   like  knvv-vkorg,                "Sales organization
        ktokd   like  kna1-ktokd,                "Customer A/C grp
        kunnr   like  kna1-kunnr,                "Customer number
        vtweg   like  knvv-vtweg,                "Distribution channel
        name1   like  kna1-name1,                           "Name1
        name3   like  kna1-name3,                           "Name3
        name4   like  kna1-name4,                           "Name4
        stras   like  kna1-stras,                "Street
        cityc   like  kna1-cityc,                "City
        bezei1  like  t005h-bezei,               "Sales office
        land1   like  kna1-land1,                "Country
        regio   like  kna1-regio,                "Region
        bezei2  like  t005u-bezei,               "Region decription
        kdgrp   like  knvv-kdgrp,                "Customer group
        ktext   like  t151t-ktext,               "Cust grp name
        bzirk   like  knvv-bzirk,                "Sales district
        bztxt   like  t171t-bztxt,               "Description
        zterm   like  knvv-zterm,                "Payment term
        lzone   like  kna1-lzone,                "Transport zone
        vtext   like  tzont-vtext,               "Description
        erdat   like  kna1-erdat,                "Creation date
      end of gs_output_list.
Internal table for customer tax data
data: begin of gs_output_tax,
        vkorg  like  knvv-vkorg,                 "Sales organization
        kunnr  like  kna1-kunnr,                 "Customer number
        vtweg  like  knvv-vtweg,                 "Distribution channel
        name1  like  kna1-name1,                            "Name1
        name3  like  kna1-name3,                            "Name3
        name4  like  kna1-name4,                            "Name4
        ort01  like  kna1-ort01,                 "City
        stcd1  like  kna1-stcd1,                 "STD code
        spart  like  knvv-spart,                 "Division
        taxkd  like  knvi-taxkd,                 "Tax classific'n
        tatyp  like  knvi-tatyp,                 "Tax category
        vtext  like  tskdt-vtext,                "Tax description
      end of gs_output_tax.
Internal table for HVL customer master
data: begin of gs_output_hvl,
        kunnr  like  kna1-kunnr,                 "Customer number
        stceg  like  kna1-stceg,                 "VAT registration no
        telfx  like  kna1-telfx,                 "Fax number
        telf1  like  kna1-telf1,                 "First telephone number
        stras  like  kna1-stras,                 "House number and stret
        ort02  like  kna1-ort02,                 "District
        cityc  like  kna1-cityc,                 "City code
        bezei  like  t005h-bezei,                "City description
        regio  like  kna1-regio,                 "Region
        ort01  like  kna1-ort01,                 "City
        name2  like  kna1-name2,                            "Name2
        name1  like  kna1-name1,                            "Name1
        bzirk  like  knvv-bzirk,                 "Sales district
        spart  like  knvv-spart,                 "Division
        vtweg  like  knvv-vtweg,                 "Distribution channel
        vkorg  like  knvv-vkorg,                 "Sales organization
      end of gs_output_hvl.
Internal table for customer database CRM
data: begin of gs_output_crm,
        vkorg      like  knvv-vkorg,             "Sales organization
        vtweg      like  knvv-vtweg,             "Distribution channel
        bzirk      like  knvv-bzirk,             "Sales district
        kunnr      like  kna1-kunnr,             "Customer number
        name1      like  kna1-name1,                        "Name1
        name2      like  kna1-name2,                        "Name2
        stras      like  kna1-stras,             "House number street
        ort01      like  kna1-ort01,             "City
        ort02      like  kna1-ort02,             "District
        pstlz      like  kna1-pstlz,             "Postal code
        cityc      like  kna1-cityc,             "City code
        telf1      like  kna1-telf1,             "First telephone number
        telfx      like  kna1-telfx,             "Fax number
        vkbur      like  knvv-vkbur,             "Sales office
        regio      like  kna1-regio,             "Region
        vkgrp      like  knvv-vkgrp,             "Sales group
        kdgrp      like  knvv-kdgrp,             "Customer group
        kvgr3      like  knvv-kvgr3,             "Customer group 3
        altkn      like  knb1-altkn,             "Previous record number
        erdat      like  knvv-erdat,             "Creation date
        found_dat  like  zcrm_bp_ext-found_dat,  "Found date
      <<CR000-DEVK943142 start del
      versg      like  knvv-versg,             "Customer statistic grp
      bukrs      like  knb1-bukrs,             "Company code
      <<CR000-DEVK943142 end del
      end of gs_output_crm.
Internal table for customer information
data: begin of gs_output_info,
        kunnr           like  kna1-kunnr,        "Customer number
        vkorg           like  knvv-vkorg,        "Sales organization
        vtweg           like  knvv-vtweg,        "Distribution channel
        stcd2           like  kna1-stcd2,        "Tax code
        name1           like  kna1-name1,        "Name1
        name2           like  kna1-name2,        "Name2
      <<CR002-DEVK944835 start ins
        name3           like  kna1-name3,        "Name3
      <<CR002-DEVK944835 end ins
        stras           like  kna1-stras,        "House number street
        ort01           like  kna1-ort01,        "City
        ort02           like  kna1-ort02,        "District
        pstlz           like  kna1-pstlz,        "Postal code
        regio           like  kna1-regio,        "Region
        land1           like  kna1-land1,        "Country code
        cityc           like  kna1-cityc,        "City code
        telf1           like  kna1-telf1,        "First telephone number
        telfx           like  kna1-telfx,        "Fax number
      <<CR001-DEVK944239 start ins
        bzirk           like  knvv-bzirk,        "Sales District
        vkbur           like  knvv-vkbur,        "Sales Office
        kdgrp           like  knvv-kdgrp,        "Customer group
      <<CR001-DEVK944239 end ins
        vkgrp           like  knvv-vkgrp,        "Sales group
        kvgr3           like  knvv-kvgr3,        "Customer group 3
        versg           like  knvv-versg,        "Customer stat grp
        kdkg2           like  kna1-kdkg2,        "Customer condition gp2
        kdkg1           like  kna1-kdkg1,        "Customer condition gp1
      <<CR001-DEVK944239 start del
      kdgrp           like  knvv-kdgrp,        "Customer group
      <<CR001-DEVK944239 end del
        altkn           like  knb1-altkn,        "Previous record#
        erdat           like  knvv-erdat,        "Creation date
        note_text(200)  type  c,                 "<<CR003-DEVK949538 ins
        smtp_addr       like  adr6-smtp_addr,    "<<CR003-DEVK949538 ins
        loevm1          like  kna1-loevm,        "Deletion flag all
        loevm2          like  knb1-loevm,        "Deletion flag Cd
        loevm3          like  knvv-loevm,        "Deletion flag sal
      end of gs_output_info.
ALV Grid Declaration
data:
  gs_fieldcat             type  slis_fieldcat_alv,
  gs_layout               type  slis_layout_alv,
  gs_event                type  slis_t_event,
  gs_variant              like  disvariant,
  gs_sort_info            type  slis_sortinfo_alv,
  gs_exit_caused_by_user  type  slis_exit_by_user,
  gs_tabname              type  slis_tabname,
  gs_header               type  slis_entry.
INTERNAL TABLE DECLARATIONS
Define internal table for keep data in ALV list
data:
  gt_output_list       like  table of gs_output_list,
  gt_output_tax        like  table of gs_output_tax,
  gt_output_hvl        like  table of gs_output_hvl,
  gt_output_crm        like  table of gs_output_crm,
  gt_output_info       like  table of gs_output_info,
<<CR003-DEVK949538 start ins
  gv_text              like  tline occurs 0 with header line,
<<CR003-DEVK949538 start ins
ALV Grid Declaration
  gt_fieldcat           type  slis_t_fieldcat_alv,
  gt_list_top_of_page   type  slis_t_listheader,
  gt_list_top_of_page2  type  slis_t_listheader,
  gt_sort_info          type  slis_t_sortinfo_alv.
VARIABLE DECLARATIONS
data:
ALV Grid Declaration
  gv_save,
  gv_exit_caused_by_caller,
  gv_repid         type  sy-repid,
  gv_user_command  type  slis_formname value 'USER_COMMAND',
  gv_top_of_page   type  slis_formname value 'TOP_OF_PAGE',
  gv_top_of_list   type  slis_formname value 'TOP_OF_LIST',
  gv_end_of_list   type  slis_formname value 'END_OF_LIST',
  lv_store         like  thead-tdname,           "<<CR003-DEVK949538 ins
  lv_id            like  thead-tdid,             "<<CR003-DEVK949538 ins
  lv_lines         type  i.                      "<<CR003-DEVK949538 ins
SELECTION SCREEN DECLARATIONS
Define selection-screen of query
selection-screen: begin of block blk with frame title text-001.
select-options:   s_vkorg  for   knvv-vkorg           "Sales org
                                 obligatory
                                 memory id vko,
                  s_bzirk  for   knvv-bzirk,          "Sales district
                  s_vtweg  for   knvv-vtweg,          "Dist channel
                  s_spart  for   knvv-spart           "Division
                                 default 'CM',
                  s_taxkd  for   knvi-taxkd,          "Tax classific'n
                  s_kunnr  for   kna1-kunnr,          "Customer number
                  s_regio  for   kna1-regio,          "Region
                  s_kdgrp  for   knvv-kdgrp,          "Customer group
                  s_vkgrp  for   knvv-vkgrp,          "Sales group
                  s_vkbur  for   knvv-vkbur,          "Sales office
                  s_lzone  for   kna1-lzone,          "Zone
                  s_erdat  for   kna1-erdat,          "Creation date
                  s_zuawa  for   knb1-zuawa,          "Key for sorting
                  s_ktokd  for   kna1-ktokd,          "Customer A/C grp
                  s_altkn  for   knb1-altkn,          "Previous rec no
                  s_bukrs  for   knb1-bukrs           "Company code
                                 obligatory
                                 memory id buk,
                 s_loevm1 for   kna1-loevm,          "Deletion flag all
                 s_loevm2 for   knb1-loevm,          "Deletion flag Cd
                 s_loevm3 for   knvv-loevm.          "Deletion flag sal
selection-screen: end of block blk.
selection-screen: begin of block b2 with frame title text-002.
parameters:       pr_cust1  radiobutton group a1
                            default 'X'
                            user-command bkg,
                  pr_cust2  radiobutton group a1,
                  pr_cust3  radiobutton group a1,
                  pr_cust4  radiobutton group a1,
                  pr_cust5  radiobutton group a1.
selection-screen: end of block b2.
AT SELECTION-SCREEN ON S_VKORG
at selection-screen on s_vkorg.
  select  vkorg
    into  tvko-vkorg
    from  tvko
   where  vkorg in s_vkorg.
  authorization check for sales org.
    authority-check object 'V_VBRK_VKO'
                        id 'VKORG' field tvko-vkorg
                        id 'ACTVT' field '03'.
    check sy-subrc ne 0.
    message e002(zgen) with 'No authorization for sales org.'
                             tvko-vkorg.
  endselect.
AT SELECTION-SCREEN ON S_BUKRS
at selection-screen on s_bukrs.
  if pr_cust4 eq 'X' or
     pr_cust5 eq 'X'.
    select  bukrs
      into  t001-bukrs
      from  t001
     where  bukrs in s_bukrs.
    authorization check for plant and company code
      authority-check object 'A_S_WERK'
                          id 'BUKRS' field t001-bukrs
                          id 'WERKS' dummy.
      check sy-subrc ne 0.
      message e002(zgen) with 'No authorization for this company code.'
                               t001-bukrs.
    endselect.
  endif.
AT SELECTION-SCREEN OUTPUT
at selection-screen output.
  loop at screen .
    if pr_cust1 eq 'X'.
      if screen-name = 'S_VTWEG-LOW'   or
         screen-name = 'S_VTWEG-HIGH'  or
         screen-name = 'S_SPART-LOW'   or
         screen-name = 'S_SPART-HIGH'  or
         screen-name = 'S_TAXKD-LOW'   or
         screen-name = 'S_TAXKD-HIGH'  or
         screen-name = 'S_BUKRS-LOW'   or
         screen-name = 'S_BUKRS-HIGH'  or
         screen-name = 'S_ERDAT-LOW'   or
         screen-name = 'S_ERDAT-HIGH'  or
         screen-name = 'S_ALTKN-LOW'   or
         screen-name = 'S_ALTKN-HIGH'  or
         screen-name = 'S_VKBUR-LOW'   or
         screen-name = 'S_VKBUR-HIGH'  or
         screen-name = 'S_LOEVM1-LOW'  or
         screen-name = 'S_LOEVM1-HIGH' or
         screen-name = 'S_LOEVM2-LOW'  or
         screen-name = 'S_LOEVM2-HIGH' or
         screen-name = 'S_LOEVM3-LOW'  or
         screen-name = 'S_LOEVM3-HIGH'.
        screen-input = 0.
      endif.
    elseif pr_cust2 eq 'X'.
      if screen-name = 'S_BZIRK-LOW'    or
         screen-name = 'S_BZIRK-HIGH'   or
         screen-name = 'S_KDGRP-LOW'    or
         screen-name = 'S_KDGRP-HIGH'   or
         screen-name = 'S_LZONE-LOW'    or
         screen-name = 'S_LZONE-HIGH'   or
         screen-name = 'S_KTOKD-LOW'    or
         screen-name = 'S_KTOKD-HIGH'   or
         screen-name = 'S_ERDAT-LOW'    or
         screen-name = 'S_ERDAT-HIGH'   or
         screen-name = 'S_KTOKD-LOW'    or
         screen-name = 'S_KTOKD-HIGH'   or
         screen-name = 'S_ALTKN-LOW'    or
         screen-name = 'S_ALTKN-HIGH'   or
         screen-name = 'S_VKBUR-LOW'    or
         screen-name = 'S_VKBUR-HIGH'   or
         screen-name = 'S_LOEVM1-LOW'   or
         screen-name = 'S_LOEVM1-HIGH'  or
         screen-name = 'S_LOEVM2-LOW'   or
         screen-name = 'S_LOEVM2-HIGH'  or
         screen-name = 'S_LOEVM3-LOW'   or
         screen-name = 'S_LOEVM3-HIGH'  or
         screen-name = 'S_BUKRS-LOW'    or
         screen-name = 'S_BUKRS-HIGH'   or
         screen-name = 'S_VKGRP-LOW'    or
         screen-name = 'S_VKGRP-HIGH'.
        screen-input = 0.
      endif.
    elseif pr_cust3 eq 'X'.
      if screen-name = 'S_BZIRK-LOW'   or
         screen-name = 'S_BZIRK-HIGH'  or
         screen-name = 'S_KDGRP-LOW'   or
         screen-name = 'S_KDGRP-HIGH'  or
         screen-name = 'S_LZONE-LOW'   or
         screen-name = 'S_LZONE-HIGH'  or
         screen-name = 'S_ERDAT-LOW'   or
         screen-name = 'S_ERDAT-HIGH'  or
         screen-name = 'S_KTOKD-LOW'   or
         screen-name = 'S_KTOKD-HIGH'  or
         screen-name = 'S_SPART-LOW'   or
         screen-name = 'S_SPART-HIGH'  or
         screen-name = 'S_TAXKD-LOW'   or
         screen-name = 'S_TAXKD-HIGH'  or
         screen-name = 'S_REGIO-LOW'   or
         screen-name = 'S_REGIO-HIGH'  or
         screen-name = 'S_ALTKN-LOW'   or
         screen-name = 'S_ALTKN-HIGH'  or
         screen-name = 'S_VKBUR-LOW'   or
         screen-name = 'S_VKBUR-HIGH'  or
         screen-name = 'S_LOEVM1-LOW'  or
         screen-name = 'S_LOEVM1-HIGH' or
         screen-name = 'S_LOEVM2-LOW'  or
         screen-name = 'S_LOEVM2-HIGH' or
         screen-name = 'S_LOEVM3-LOW'  or
         screen-name = 'S_LOEVM3-HIGH' or
         screen-name = 'S_BUKRS-LOW'   or
         screen-name = 'S_BUKRS-HIGH'  or
         screen-name = 'S_VKGRP-LOW'   or
         screen-name = 'S_VKGRP-HIGH'  or
         screen-name = 'S_VTWEG-LOW'   or
         screen-name = 'S_VTWEG-HIGH'.
        screen-input = 0.
      endif.
    elseif pr_cust4 eq 'X'.
      if screen-name = 'S_LZONE-LOW'  or
         screen-name = 'S_LZONE-HIGH' or
         screen-name = 'S_TAXKD-LOW'  or
         screen-name = 'S_TAXKD-HIGH' or
         screen-name = 'S_REGIO-LOW'  or
         screen-name = 'S_REGIO-HIGH' or
         screen-name = 'S_ZUAWA-LOW'  or
         screen-name = 'S_ZUAWA-HIGH'.
        screen-input = 0.
      endif.
    else.
      if screen-name = 'S_LZONE-LOW'   or
         screen-name = 'S_LZONE-HIGH'  or
         screen-name = 'S_TAXKD-LOW'   or
         screen-name = 'S_TAXKD-HIGH'.
        screen-input = 0.
      endif.
    endif.
    modify screen.
  endloop.
INITIALIZATION
initialization.
  perform deactivate_program using sy-cprog.
START OF SELECTION
start-of-selection.
Customized function to get data from database table
  perform get_data.
<<CR003-DEVK949538 start ins
  perform get_internal_note_text tables gt_output_info.
<<CR003-DEVK949538 end ins
Create sort of ALV list
  perform build_sort.
Send data to ALV list to display
  if pr_cust1 eq 'X'.
    gs_tabname = text-003.
    gs_header  = text-004.
    perform write_alv_report tables gt_output_list
                                    gt_sort_info.
  elseif pr_cust2 eq 'X'.
    gs_tabname = text-005.
    gs_header  = text-006.
    perform write_alv_report tables gt_output_tax
                                    gt_sort_info.
  elseif pr_cust3 eq 'X'.
    gs_tabname = text-007.
    gs_header  = text-008.
    perform write_alv_report tables gt_output_hvl
                                    gt_sort_info.
  elseif pr_cust4 eq 'X'.
    gs_tabname = text-009.
    gs_header  = text-010.
    perform write_alv_report tables gt_output_crm
                                    gt_sort_info.
  else.
    gs_tabname = text-011.
    gs_header  = text-012.
    perform write_alv_report tables gt_output_info
                                    gt_sort_info .
  endif.
FORM EVENTTAB_FIELD
Fill Event tab, for ALV Grid Display
form eventtab_field using gs_events type slis_t_event.
  data:
    ls_event  type  slis_alv_event.
  call function 'REUSE_ALV_EVENTS_GET'
       exporting
            i_list_type = 0
       importing
            et_events   = gs_events.
  read table gs_events with key name = slis_ev_top_of_page
                           into ls_event.
  if sy-subrc = 0.
    move gv_top_of_page to ls_event-form.
    append ls_event     to gs_events.
  endif.
endform.                    " eventtab_field
FORM TOP_OF_PAGE
Write at Top of Page of ALV grid
form top_of_page.
  call function 'REUSE_ALV_COMMENTARY_WRITE'
       exporting
            it_list_commentary = gt_list_top_of_page.
endform.                    "top_of_page
FORM COMMENT_BUILD
Write header of ALV grid
form comment_build using lt_top_of_page type slis_t_listheader
                         gs_header.
  data:
    lv_tdate(10),
    lv_fdate(10),
    ls_line   type  slis_listheader.
  clear: ls_line.
  ls_line-typ  = 'H'.
  ls_line-info = gs_header.
  append ls_line to lt_top_of_page.
endform.                    "comment_build
FORM INIT_FIELDCAT
Fill Field Catalog for ALV Grid
form init_fieldcat using gs_tabname.
  refresh: gt_fieldcat.
use this function to get the all fields in the structure.
  call function 'REUSE_ALV_FIELDCATALOG_MERGE'
       exporting
            i_program_name     = gv_repid
            i_internal_tabname = gs_tabname
            i_inclname         = gv_repid
       changing
            ct_fieldcat        = gt_fieldcat.
  if sy-subrc eq 0.
  clear mark for key field to set color of key column
    gs_fieldcat-key = ''.
    modify gt_fieldcat from gs_fieldcat transporting key
                      where fieldname ne space.
    read table gt_fieldcat with key fieldname = 'FOUND_DAT'
                               into gs_fieldcat.
    gs_fieldcat-seltext_l = text-013.
    modify gt_fieldcat from gs_fieldcat
               transporting seltext_l
                      where fieldname = 'FOUND_DAT'.
  <<CR003-DEVK949538 start ins
    read table gt_fieldcat with key fieldname = 'NOTE_TEXT'
                               into gs_fieldcat.
    gs_fieldcat-seltext_l = text-014.
    modify gt_fieldcat from gs_fieldcat
               transporting seltext_l
                      where fieldname = 'NOTE_TEXT'.
  <<CR003-DEVK949538 start ins
  endif.
endform.                    "init_fieldcat
FORM INIT_LAYOUT
Layout initial
form init_layout using gs_layout type slis_layout_alv.
  gs_layout-info_fieldname    = 'LINECOLOR'.
  gs_layout-colwidth_optimize = 'X'.
  gs_layout-zebra             = 'X'.
endform.                    " init_layout
FORM WRITE_ALV_REPORT
form write_alv_report tables gt_output
                             gt_sort_info.
ALV Grid display
  clear: gv_repid,
         gv_save.
  gv_repid          = sy-repid.
  gs_variant-report = gv_repid.
  gv_save           = 'A'.
Build fieldcatalog
  perform init_fieldcat using gs_tabname.
Build list events
  perform eventtab_field using gs_event.
Show in ALV Grid form
  perform init_layout using gs_layout.
Build comments
  perform comment_build using gt_list_top_of_page[]
                              gs_header.
  call function 'REUSE_ALV_GRID_DISPLAY'
       exporting
            i_buffer_active         = ' '
            i_callback_program      = gv_repid
            is_layout               = gs_layout
            i_save                  = gv_save
            is_variant              = gs_variant
            it_events               = gs_event[]
            it_sort                 = gt_sort_info[]
            it_fieldcat             = gt_fieldcat[]
       importing
            e_exit_caused_by_caller = gv_exit_caused_by_caller
            es_exit_caused_by_user  = gs_exit_caused_by_user
       tables
            t_outtab                = gt_output
       exceptions
            program_error           = 1
            others                  = 2.
endform.                    "write_alv_report
FORM GET_DATA
form get_data.
Get customer list
  if pr_cust1 eq 'X'.
    select  knvv~vkorg
            kna1~ktokd
            kna1~kunnr
            knvv~vtweg
            kna1~name1
            kna1~name3
            kna1~name4
            kna1~stras
            kna1~cityc
            kna1~regio
            kna1~land1
            knvv~kdgrp
            knvv~bzirk
            knvv~zterm
            kna1~lzone
            kna1~erdat
      from  kna1 join  knvv
        on  kna1kunnr = knvvkunnr
      into  corresponding fields of table gt_output_list
     where  kna1~kunnr in s_kunnr
       and  knvv~vkorg in s_vkorg
       and  knvv~bzirk in s_bzirk
       and  kna1~regio in s_regio
       and  knvv~kdgrp in s_kdgrp
       and  kna1~lzone in s_lzone
       and  kna1~erdat in s_erdat
       and  kna1~ktokd in s_ktokd.
    loop at gt_output_list into gs_output_list.
    Get City decsription
      perform get_city_description using gs_output_list-cityc
                                changing gs_output_list-bezei1.
    Get Region description
      select single  bezei
               from  t005u
               into  gs_output_list-bezei2
              where  bland = gs_output_list-regio
                and  land1 = gs_output_list-land1"<<CR000-DEVK942345 ins
                and  spras = sy-langu.
    Get customer group description
      select single  ktext
               from  t151t
               into  gs_output_list-ktext
              where  kdgrp = gs_output_list-kdgrp
                and  spras = sy-langu.
    Get sales district description
      select single  bztxt
               from  t171t
               into  gs_output_list-bztxt
              where  bzirk = gs_output_list-bzirk
                and  spras = sy-langu.
    Get zone decription
      select single  vtext
               from  tzont
               into  gs_output_list-vtext
              where  zone1 = gs_output_list-lzone
                and  spras = sy-langu.
      modify gt_output_list from gs_output_list index sy-tabix
                                         transporting bezei1
                                                      bezei2
                                                      ktext
                                                      bztxt
                                                      vtext.
      clear gs_output_list.
    endloop.
Get customer tax data
  elseif pr_cust2 eq 'X'.
    select  kna1~kunnr
            kna1~name1
            kna1~name3
            kna1~name4
            kna1~ort01
            kna1~stcd1
            knvv~vkorg
            knvv~spart
            knvv~vtweg
            knvi~taxkd
            knvi~tatyp
      from  kna1 join  knvv
        on  kna1kunnr = knvvkunnr
            join  knvi
        on  kna1kunnr = knvikunnr
      into  corresponding fields of table gt_output_tax
     where  kna1~kunnr in s_kunnr
       and  knvv~vkorg in s_vkorg
       and  knvv~vtweg in s_vtweg
       and  knvv~spart in s_spart
       and  kna1~regio in s_regio
       and  knvi~taxkd in s_taxkd.
  Get customer tax description
    loop at gt_output_tax into gs_output_tax.
      select single  vtext
               from  tskdt
               into  gs_output_tax-vtext
              where  tatyp = gs_output_tax-tatyp
                and  taxkd = gs_output_tax-taxkd
                and  spras = sy-langu.
      if sy-subrc eq 0.
        modify gt_output_tax from gs_output_tax index sy-tabix
                                         transporting vtext.
        clear gs_output_tax.
      endif.
    endloop.
Get customer HVL data
  elseif pr_cust3 eq 'X'.
    select  kna1~kunnr
            kna1~stceg
            kna1~telfx
            kna1~telf1
            kna1~stras
            kna1~ort02
            kna1~cityc
            kna1~regio
            kna1~ort01
            kna1~name2
            kna1~name1
            knvv~bzirk
            knvv~spart
            knvv~vtweg
            knvv~vkorg
      from  kna1 join  knvv
        on  kna1kunnr = knvvkunnr
      into  corresponding fields of table gt_output_hvl
     where  kna1~kunnr in s_kunnr
       and  knvv~vkorg in s_vkorg.
    loop at gt_output_hvl into gs_output_hvl.
    Get city description.
      perform get_city_description using gs_output_hvl-cityc
                                changing gs_output_hvl-bezei.
      if sy-subrc eq 0.
        modify gt_output_hvl from gs_output_hvl index sy-tabix
                                         transporting bezei.
        clear gs_output_hvl.
      endif.
    endloop.
Get cust CRM data
  elseif pr_cust4 eq 'X'.
    select  kna1~kunnr
          knvv~versg                           "<<CR000-DEVK943142 del
            knvv~vkorg
            knvv~vtweg
            knvv~bzirk
            knvv~vkgrp
            knvv~kdgrp
            knvv~vkbur
            kna1~name1
            kna1~name2
            kna1~ort01
            kna1~pstlz
            kna1~regio
            kna1~stras
            kna1~telf1
            kna1~telfx
            kna1~ort02
            kna1~cityc
            knvv~kvgr3
            knb1~altkn
          knb1~bukrs                           "<<CR000-DEVK943142 del
            knvv~erdat
            zcrm_bp_ext~found_dat
      from  kna1 join knvv
        on  kna1kunnr = knvvkunnr
      join  knb1
        on  knvvkunnr = knb1kunnr
      join  zcrm_bp_ext
        on  knb1kunnr = zcrm_bp_extkunnr
      into  corresponding fields of table gt_output_crm
     where  kna1~kunnr in s_kunnr
       and  knvv~vkorg in s_vkorg
       and  knvv~vtweg in s_vtweg
       and  knvv~spart in s_spart
       and  knvv~bzirk in s_bzirk
       and  knvv~kdgrp in s_kdgrp
       and  knvv~vkgrp in s_vkgrp
       and  knvv~vkbur in s_vkbur
       and  knvv~erdat in s_erdat
       and  kna1~ktokd in s_ktokd
       and  kna1~loevm in s_loevm1
       and  knb1~loevm in s_loevm2
       and  knvv~loevm in s_loevm3
       and  knb1~bukrs in s_bukrs
       and  knb1~altkn in s_altkn.
  else.
  Get customer information
   <<CR001-DEVK944342 start del
   select  kna1~kunnr
           knvv~vkorg
           knvv~vtweg
           kna1~stcd2
           kna1~name1
           kna1~name2
           kna1~ort01
           kna1~land1
           kna1~pstlz
           kna1~regio
           kna1~stras
           kna1~telf1
           kna1~telfx
           knvv~bzirk                          "<<CR001-DEVK944239 ins
           knvv~vkbur                          "<<CR001-DEVK944239 ins
           kna1~ort02
           kna1~cityc
           knvv~vkgrp
           knvv~kvgr3
           knvv~versg
           kna1~kdkg2
           kna1~kdkg1
           knvv~kdgrp
           knb1~altkn
           knvv~erdat
           kna1~loevm
           knb1~loevm
           knvv~loevm
   <<CR001-DEVK944342 end del
  <<CR001-DEVK944342 start ins
    select  kna1~kunnr
            knvv~vkorg
            knvv~vtweg
            kna1~stcd2
            kna1~name1
            kna1~name2
            kna1~name3                           "<<CR002-DEVK944835 ins
            kna1~stras
            kna1~ort01
            kna1~ort02
            kna1~pstlz
            kna1~regio
            kna1~land1
            kna1~cityc
            kna1~telf1
            kna1~telfx
            knvv~bzirk
            knvv~vkbur
            knvv~kdgrp
            knvv~vkgrp
            knvv~kvgr3
            knvv~versg
            kna1~kdkg2
            kna1~kdkg1
            knb1~altkn
            knvv~erdat
            kna1~loevm
            knb1~loevm
            knvv~loevm
  <<CR001-DEVK944342 end ins
      from  kna1 join knvv
        on  kna1kunnr = knvvkunnr
            join knb1
        on  kna1kunnr = knb1kunnr
    <<CR001-DEVK944252 start del
    into  corresponding fields of table gt_output_info
    <<CR001-DEVK944252 end del
    <<CR003-DEVK949538 start del
      into  table gt_output_info                "<<CR001-DEVK944342 ins
    <<CR003-DEVK949538 end del
    <<CR003-DEVK949538 start ins
      into  corresponding fields of table gt_output_info
    <<CR003-DEVK949538 end ins
     where  kna1~kunnr in s_kunnr
       and  knvv~vkorg in s_vkorg
       and  knvv~vtweg in s_vtweg
       and  knvv~spart in s_spart
       and  knvv~bzirk in s_bzirk
       and  knvv~kdgrp in s_kdgrp
       and  knvv~vkgrp in s_vkgrp
       and  knvv~vkbur in s_vkbur
       and  knvv~erdat in s_erdat
       and  kna1~ktokd in s_ktokd
       and  kna1~regio in s_regio
     <<CR001-DEVK944252 start del
     and  kna1~loevm in s_loevm1
     and  knb1~loevm in s_loevm2
     and  knvv~loevm in s_loevm3
     <<CR001-DEVK944252 end del
     <<CR001-DEVK944252 start ins
       and ( kna1~loevm in s_loevm1
        or   knb1~loevm in s_loevm2
        or   knvv~loevm in s_loevm3 )
     <<CR001-DEVK944252 end ins
       and  knb1~zuawa in s_zuawa
       and  knb1~bukrs in s_bukrs
       and  knb1~altkn in s_altkn.
     <<CR003-DEVK949538 start ins
       loop at gt_output_info into gs_output_info.
      select single  adrnr
               into  kna1-adrnr
               from  kna1
              where  kunnr = gs_output_info-kunnr.
      check sy-subrc eq 0.
      select single  smtp_addr
               into  adr6-smtp_addr
               from  adr6
              where  addrnumber = kna1-adrnr.
      check sy-subrc eq 0.
      gs_output_info-smtp_addr = adr6-smtp_addr.
      modify gt_output_info from gs_output_info.
    endloop.
     <<CR003-DEVK949538 end ins
  endif.
<<CR003-DEVK949538 start ins
  loop at gt_output_info into gs_output_info.
    lv_store = gs_output_info-loevm1.
  endloop.
<<CR003-DEVK949538 end ins
endform.
FORM BUILD_SORT
form build_sort.
  if pr_cust1 eq 'X' or
     pr_cust2 eq 'X'.
    clear gs_sort_info.
    gs_sort_info-fieldname = 'VKORG'.
    gs_sort_info-spos      = 1.
    gs_sort_info-up        = 'X'.
    append gs_sort_info to gt_sort_info.
  endif.
  clear gs_sort_info.
  gs_sort_info-fieldname = 'KUNNR'.
  gs_sor

hi shivaji!
thx for the reply.
can u chk whether there is any problem with the queries or not.
regards
sachin

Similar Messages

  • ' delete an app. All apps wiggle incl. the one in questions. However the app I want to delete does not show the x button. I reseted, also restrictions are on with on for apps delete. Suggestions?

    ' delete an app. All apps wiggle incl. the one in questions. However the app I want to delete does not show the x button. I reseted, also restrictions are on with on for apps delete. Suggestions?

    mardemar wrote:
    ... - the only one without an x delete button.
    What is the name of this App and where did you get it...?

  • TS3276 Does anyone have problems with sent messages not showing in their Mail? I have two sent folders when really I only want one. Any tips?

    Does anyone have problems with sent messages not showing in their Mail? I have two sent folders when really I only want one. Any tips?

    Not sure if this is a fix, but I tried sending myself a test email from only  the Bcc field, and lo and behold it now shows the Bcc field in all sent item previews;
    ...maybe leaving the 'To' field blank on purpose forced Mail to show it.
    Rebooted the Mail program, still there - rebooted the machine, still there. Hope this is still relevant and it works for you too - J.

  • My iphone problem is network bar not show for searching why how can resolved my iphone

    my iphone problem is network bar not show for searching why how can resolved my iphone
    my iphone model is MD239B/A
    my iphone serial no: DQ******TD2
    <Edited by Host>

    Hi mirza_ali,
    The article below may be able to help you with this issue.
    Click on the link below to see more details and screenshots. 
    iOS: Understanding cellular data networks
    iPhone: Wireless carrier support and features
    I hope this information helps ....
    Have a great day!
    - Judy

  • Background job not showing full output of Report

    Dear Experts
    we have created zpgm for stad report and try to take output as mail to particular user for future analysis bcaz stad gives only 2 days report only we need keep report for months together so when we run job in foreground it shows proper output but when same thing when we run from background it shows only some part of report in mail (we are unable to get full output through background job )
    we send mail through spool receipts we have created folder and maintain user for getting mails through so15 distribution list
    we need some input to come out of this major issue
    if there is any other workaround let me know
    Regards

    Hello,
    If a job is defined by transaction SM36, the print format parameters will only be taken into account, if they are saved as user specific print parameters of the batch user. If no user specific print format
    is defined,  the ALV standard logic will be processed adjusting the print format to the actual line size of the report.
    For example, the list line size is about 132 characters, the widest available format of the chosen printer will be selected X_65_132.
    The problem would be solved by defining a device type which is no format assigned to print, or by defining user specific print format parameters for the batch user, who creates the jobs in SM36 (see
    SAP note 1179399, item 6).
    Regards,
    David

  • Error in ALV : Field Does not exists in Output table .

    Hi All,
    In my ALV report, program get dumped and showing error when i tried to put a col named Distribution channel ion the alv.
    I have put the Distribution cannel field in the IT_FInal table , but still getting folwong errors :
    Error : Field Symbol is not been assigned.
    As Instructed i have passed            I_INTERFACE_CHECK              = 'X'.
    By this i am getting detail error that :
    Field Distribution channel does not exists in Output table & Heading for List is missing .
    But i have maintained the distribition channel in IT_Final table
    Please suggest wheather we have to define dis channel in any other place.
    Thanks in advance.
    Can any one help me regrarding this.
    Thanks in advance.

    Hello,
    You have to populate the same in the fieldcatalog as well, i think you have not maintained this field there.
    BR,
    Suhas
    PS: Also make it a point to follow-up on your previous post: [Error in ALV : Field Symbol not been assigned.|Error in ALV : Field Symbol not been assigned.]

  • Not showing correct output when parsing the date

    //WAP the gives the details of employees
    import java.io.*;
    import java.util.*;
    import java.text.Format;
    import java.text.DateFormat;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    class employee
      private String nm,curr_dt;
      private Date dob,doj;
      private int salary;
               employee()
                  nm="\0";
                  dob=null;
                  doj=null;
                  curr_dt=null;
                  salary=0;
               void getdata()throws IOException
                  String dt;
                  BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
                  //we can create date with these 3 type of objects
                  Format fm=new SimpleDateFormat("dd-mm-yyyy");
                  DateFormat df=new SimpleDateFormat("dd-mm-yyyy");
       //object of base class are type compatible with the object of derived class
                  SimpleDateFormat sdf=new SimpleDateFormat("dd-mm-yyyy");
                  System.out.print("\nEnter the name of Employee : ");
                  nm=br.readLine();
                  try{
                  System.out.print("\nEnter the date of birth of Employee : ");
                  dt=br.readLine();
                  dob=(Date)fm.parseObject(dt);
                  System.out.print("\nEnter the date of joining of Employee : ");
                  dt=br.readLine();
                  doj=df.parse(dt);
                  }catch(ParseException e){
                  Date d=new Date();
                  curr_dt=sdf.format(d);
                  System.out.print("\nEnter the salary of employee : ");
                  salary=Integer.parseInt(br.readLine());
               void putdata()
                  System.out.println("\n\n\nEmployee Name : "+nm);
                  System.out.println("\nDate of birth : "+dob);
                  System.out.println("\nDate of joining : "+doj);
                  System.out.println("\nCurrent date : "+curr_dt);
                  /*if((doj-curr_dt)>1)
                       salary+=3000;
                  System.out.println("\nSalary of Employee : "+salary);
    class emp
      public static void main(String str[])throws IOException
           employee emp[]=new employee[1];
           System.out.println("\nEnter the detail of employees \n\n");
           for(int i=0;i<1;i++)
                emp=new employee();
    emp[i].getdata();
    System.out.println("\n\nDetail of employees are\n\n");
    for(int i=0;i<1;i++)
    emp[i].putdata();
    }*Output:*
    Enter the detail of employees
    Enter the name of Employee : Rajendra Sharma
    Enter the date of birth of Employee : 10-10-1979
    Enter the date of joining of Employee : 05-09-2004
    Enter the salary of employee : 2000
    *it is not showing date in the "dd-mm-yyyy" format and not showing correct month as well*
    Detail of employees are
    Employee Name : Rajendra Sharma
    Date of birth : Wed Jan 10 00:10:00 IST 1979
    Date of joining : Mon Jan 05 00:09:00 IST 2004
    Current date : 17-08-2008
    Salary of Employee : 2000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi,
    Use below code that will help u to sort ur problem.
    import java.io.*;
    import java.util.*;
    import java.text.Format;
    import java.text.DateFormat;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    class employee
    private String nm,curr_dt;
    private Date dob,doj;
    private int salary;
    private String dobb,dojj;
    employee()
    nm="\0";
    dob=null;
    doj=null;
    curr_dt=null;
    salary=0;
    void getdata()throws IOException
    String dt;
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    //we can create date with these 3 type of objects
    DateFormat fm=new SimpleDateFormat("dd-mm-yyyy");
    DateFormat df=new SimpleDateFormat("dd-mm-yyyy");
    //object of base class are type compatible with the object of derived class
    SimpleDateFormat sdf=new SimpleDateFormat("dd-mm-yyyy");
    System.out.print("\nEnter the name of Employee : ");
    nm=br.readLine();
    try{
    System.out.print("\nEnter the date of birth of Employee : ");
    dt=br.readLine();
    dob=(Date)fm.parseObject(dt);
    dobb= fm.format(dob);
    System.out.print("\nEnter the date of joining of Employee : ");
    dt=br.readLine();
    doj=df.parse(dt);
    dojj = df.format(doj);
    }catch(ParseException e){
    Date d=new Date();
    curr_dt=sdf.format(d);
    System.out.print("\nEnter the salary of employee : ");
    salary=Integer.parseInt(br.readLine());
    void putdata()
    System.out.println("\n\n\nEmployee Name : "+nm);
    System.out.println("\nDate of birth : "+dobb);
    System.out.println("\nDate of joining : "+dojj);
    System.out.println("\nCurrent date : "+curr_dt);
    /*if((doj-curr_dt)>1)
    salary+=3000;
    System.out.println("\nSalary of Employee : "+salary);
    class emp
    public static void main(String str[])throws IOException
    employee emp[]=new employee[1];
    System.out.println("\nEnter the detail of employees \n\n");
    for(int i=0;i<1;i++)
    emp=new employee();
    emp[i].getdata();
    System.out.println("\n\nDetail of employees are\n\n");
    for(int i=0;i<1;i++)
    emp[i].putdata();
    thanks,
    prabhu selvakumar.

  • Document Flags not showing on Web Excel

    We are using BW3.5 SEM4.0.
    Documents are added to cells in planning layouts.
    Documents flags are showing up on web and BEx reports. They are also showing up on non-Excel web planning layouts, and Excel Gui layouts.
    The flags are, however, not showing on Web Excel layouts. Althought the document could still be viewed, if you know which cell they are located in.
    Is there a solution to this? Thanks for reading.
    William

    Hi guys,
    I have a related problem: I set up BPS to handle the documents (and I already tested it, it works fine).
    My 4 characteristics are WBS element, version, fisc per, and material.
    Now, I am just creating a web reports that should also display these documents. What do I have to adjust in the Query designer? Do I have to restrict the report to exactly this combination to see them?
    (I have tried Query properties ->Display ->Display Document links, it shows icons per column, but does not display any BPS document I created)
    any help is appreciated
    thanks,
    martin

  • Some emails not deleting or not showing up in my Mail window.

    My Mail program is having many problems--Some emails will be deleted but show up again when I reopen my Mail window, I cannot see emails in my draft folder, and there are times when emails sent to me are not showing up in my Mail window. I've redownloaded the mail program using my Tiger disk three times, but it never solves the problem. I'm about to reload my whole Tiger software, but I'm afraid I'll lose my 10.4.7 updates.
    iMac G4   Mac OS X (10.4.7)  
    iMac G4   Mac OS X (10.4.7)  

    OK. In order to fix the problem, we need to re-create the index. Problem is, Mail may or may not choke on those messages while re-creating the index, so either be prepared for it or perform the optional steps 1 and 3:
    1. (Optional, but recommended). Try to find in ~/Library/Mail/POP-username@mailserver/INBOX.mbox/Messages/ the *.emlx files associated with the troublesome messages. Viewing the *.emlx files as List in the Finder showing the creation/modification date may help. Just identify them; do not get rid of them yet (you must quit Mail first).
    2. Quit Mail.
    3. (Optional, but recommended). If you found the troublesome *.emlx files in step 1, move them to the Trash.
    4. In the Finder, go to ~/Library/Mail/. Make a backup copy of this folder, just in case something goes wrong -- e.g. by dragging it to the Desktop while holding the Option (Alt) key down.
    5. Locate the Envelope Index file and move it to the Trash. If you see an Envelope Index-journal file there, delete it as well.
    6. In the Finder, go to ~/Library/Mail/POP-username@mailserver/. Locate Deleted Messages.mbox, and move it to the Trash. I assume there is nothing to be preserved there.
    7. In the Finder, go to ~/Library/Mail/Mailboxes/. Locate the *.mbox folder that corresponds to the mailbox you created to try to isolate the troublesome messages, and move it to the Trash. Again, I assume there is nothing to be preserved there.
    8. Open Mail. It will tell you that your mail needs to be "imported". Click Continue and Mail will proceed to re-create Envelope Index -- Mail says it's "importing", but it just re-creates the index if the mailboxes are already in Mail 2.x format.
    Note: For those not familiarized with the ~/ notation, it refers to the user's home folder.

  • Problem with Css styles not showing in live view or when i browse

    I am using Mac osx 10.6 and building website with Dreamweaver CS5.  Sometimes div tags i create not showing styles or rendering in live view or when I browse but  showing in design view. I looked in dreamwever faq and they talk about not showing in design view to toggle the display styles. That is not the problem becuase it is check marked and I tried turning off and turning on and made no difference.I am using firefox browser.
    It happened before the other day too. But all of my other pages in this site that i have created the same way building with div tags and css styles. So not sure what the problem is. Maybe someone has a suggestion here.
    Johanna

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Portfolio</title>
    <style type="text/css"></style>
    <link href="css/jbstyles.css" rel="stylesheet" type="text/css" />
    <style type="text/css"></style>
    </head>
    <body>
    <div id="wrapper">
      <div id="mainnav">
        <div id="navbar">
          <ul>
            <li><a href="index.html"><br />
            </a></li>
    <li>
              <ul>
                <li><a href="index.html">          Home</a><a href="about.html">About</a></li>
                <li><a href="portfolio.html">Portfolio</a><a href="contact.html">Contact</a></li>
              </ul>
            </li>
          </ul>
      </div>
        <div id="contentinside">
          <div id="navbar2">
            <ul>
              <li><a href="design.html">Design</a></li>
              <li><a href="multimedia.html">Multimedia</a></li>
              <li><a href="webdesign.html">Web Design</a></li>
            </ul>
          </div>
          <div id="mm1thumb">Content for  id "mm1thumb" Goes Here</div>
          <div id="mm2thumb">Content for  id "mm2thumb" Goes Here</div>
        </div>
        <img src="images/multimsidebar.gif" width="212" height="615" alt="mmsdbr" longdesc="http://multimsidebar" />
      <div id="footer">
        <p> </p>
        <p>Johanna Bresnahan</p>
        <p>Web &amp; Graphic Design - http://www.johannabresnahan.com</p>
        <p> email: [email protected] ....phone....857•991•5717<br />
      </p>
    </div>
    </div>
    <!--end wrapper--></div>
    </body>
    </html> 
    Here is the html code above. not sure how to attach my file so get a visual. This is the first time I have used this forum.
    Johanna

  • How do I fix a problem with .eps files not showing up properly in icon view

    Actually my .eps files are not showing properly in any of the views but icon view is most important to me.  I am using OSX.8.5 on a mac mini and mac book air.  Almost all of my .eps files are conversions of .wmf files converted to .eps by WMF Converter software.  All of these files used to be on a PC running windows Vista using ST Thumbnails explorer to be able to view thumbnails.  For background info: I had to use a program to view the WMF files becasue hackers could put viruses into the thumbnail for WMF fies so instead of fixing the problem Microsoft disabled the thumbnail view for all WMF files. 
    A few of my .eps files are conversions of files created in CorelDraw 3x and converted to .eps in CorelDraw 3x.  Both types of .eps files misbehave the same.
    I downloaded one .eps file today from the internet to see if it would misbehave the same way (it does).
    Here is the problem: After a reboot when I first view a folder that contains .eps files in icon view I can see the file contents fine.  If I use the resize slider at the bottom of the window or resize the window itself then some or all of my .eps files revert to displaying the "generic icon" of a Loupe with a picture behind it.  If i can manage to put the resize slider to exactly where it was then my icons display the file contents as they did before I messed with the slider.  There seems to be no rhyme or reason as to when an icon will display as the file contents or when the generic icon comes up.  In some folders all the icons display correctly at the smallest icon size and in other folders the icons may display correctly or as only generic or a mix of generic and file contents.  Icons to files that came from the same source will not necessarily display the same way.  Icons to files that came from the same source and were converted by WMF Converter at the same minute do not necessarily display the same way.  If I display "info" for the files sometimes the previev pane of the info box will display the generic icon or sometimes it will show the file contents.  If I take an .eps icon that displays properly and drop it into a folder where all .eps icons are displayed as generic then that icon displays generic.  When I move that same icon out of that folder then it will display properly.  Icon view, list view, column view and cover flow view all display differently with no discernable pattern.  Sometimes I can see file contents in column view and not icon view.  Sometimes in cover flow and not in icon view.  It makes no difference if I have a handful of .eps files in a folder or hundereds of files in a folder.  After an undetermined amount of time the icons might display properly again or maybe not.
    What I have done so far:  exhaustive search of the internet did not find anyone else with the same issue.  I checked and fixed all disk permission errors that disk utilities would fix.  I know that icon view and quick look are two different things, but, I did however, download and install an eps quicklook plugin that did not seem to make a difference for my issue.  BTW Quick look sometimes works and sometimes not (no discernable pattern to this behavior either).  I tried the cnet download fix for quicklook just for grins.  It had me force QL to reload plugins and it's cache then I cleared out the QL configuration files.  This did not seem to make a difference in the behavior of icon view or Quicklook.  The only two things I have found to be consistant are 1)  The "open with preview" always works but I know this is different because this preview actually generates a pdf view of the file. 2) When the icon does display the file contents it always displays correctly.
    When you read this please be mindful of:  I am a Microsoft refugee not yet familiar with the Apple world so you may have to tell me how to do "simple" things.  I have no idea what is the difference between a "thumbnail" or a "preview" or the behind the scenes way that apple generates the icon appearance for the 4 different views. 
    Any assistance would be greatly appreciated.  I tried to insert a screen shot but got an error message when I did it.

    Was the error number really 0XE8....
    iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting

  • Zen Vision M problem, album art is not showing

    I am embedding the album art into the ID3v2 tags, as i assumed that it would show up when browsing my albums. But the art is not showing up and i have no idea why.
    I had another problem which seems that my Zen is reading ID3v tags, a lot of my music was not being recognised, even with v2 tags, and was only recognised when i filled in the v tags also. Does anyone have suggestions as to whats going on here? It is a Zen Vision M 30gb, with the latest firmware, and i use Tag & Rename to edit tags and add the art, Im also on Vista if that changes anything.
    Thanks in advance.Message Edited by Ninjabachelor on 0-28-20070:20 PM

    Hi Boxy !
    For now, you can't zoom in the Album Art, but it can be a new feature on a future firmware. To hack it somehow, you have to mess around the system folder which is inaccessible...
    ZenMaster2628

  • Alv grid - file not showing correctly in spredsheet when saving the file

    The Report  ouput is coming correctly(invoice no), but when i go to save the file in spredsheet the invoice no not showing all digits one digit is missing like  0090000407 it showing 9000040.
    I am not coded for gui_download.
    Just i am exporting file to download spredsheet format,
    why i am not getting all digits.
    Thanks in advance.
    mahahe.

    Hi
    even i faced this kind of problem earlier.
    You could control this through ABAP too.
    i used
    CONCATENATE '=REPLACE("' wa_abc-ordernumber '",1,14,"'
                               wa_abc-ordernumber  '")' INTO lv_order number .
    then pass lv_ordernumber to the fianl table..
    Note: 14 is your sap field length.
            lv_ordernumber(56) type c

  • IOS 8 - deleted photos not showing in Recently Deleted album

    Updated iPhone 5 to iOS 8, noticed that the Camera Roll has disappeared, extremely anoying, and you are not able to see all the photos on the phone, instead only the recently added. Did some research and found that they are all in the photos. Also, found that when deleting a photo it first goes to the Recently Deleted album.
    Tried it out by deleting some photos, however, no photos show in the Recently Deleted album. Asked the Apple store staff and they do not know either why it is not showing in the Recently Deleted album.
    Anyone has an idea as to why and how to fix?

    Hi tech.smart79,
    Thanks for you reply.
    As a matter of fact I did do a backup on my computer via iTunes, then did the update to iOS 8 via iTunes and had to restore the phone from that backup, which was also done via iTunes.
    All photos are on the Photos, located at the bottom right in the Albums.

  • ABAP query output not showing all output fields

    I added a new field group in an existing query and marked them to display in the output list. When I test the output from SQ01 -> InfoSer Query, the output is what I expect. However, if I execute the query itself, it does not show the additional fields I just created.
    I notice that in the Basic List layout design, the new fields are on a new line and not appended to the same line as the output fields before I did the modifications. I already tried to manipulate the output length and positions, but it didn't help. I turned on the ruler to drag the fields in the desired positions, sometimes it works but not for all the fields. Can someone help me please?

    I figured it out already. The maximum width for the report output is 255 only. Switching from graphical query painter, I got the error that some fields were overlapping. Then I recalculated the starting positions of the fields and adjusted their lengths. 

Maybe you are looking for

  • Access the Name and Value of a StationGlo​bals container programati​cally

    Hello, I am having some trouble trying to programmatically write the contents of a container into my HTML report header. The container contains a series of strings and numbers. These are saved into StaionGlobals. Note that I am performing all of thes

  • I can't Update Garageband iMac21.5-inch, Mid 2011

    I cant update garageband to 6.05 ... App Store says i have update available but when i try to update ... there is an error ... i have an imac 21.5 garageband was preinstalled.. tyied to download and this messege apperse ....

  • Good old ClassNotFoundException _Stub

    Hi all, Once upon a time many moons ago, i could get this stuff to work, now I'm failing miserably .. must be getting old. Right, I have very simple interface and implementation code as follows: // Interface import java.rmi.*; public interface Perfec

  • Penalise Heavy Users who already pay extra for mor...

    I've just had a mail telling me I've reached 80mb and my speed will be limited to 1mbs for 30 days if I go over 100. I've read all the posts about fair use policy etc etc and speed warnings so I know this is not new news. But what gets me is that for

  • 480i codec still in existance?

    We are using the freeware app. Multiscreener to sync two projectors through mini macs and have been informed by the artists that in case the files are too much for the macs to handle to convert it to a 480i or 480p SD DV-NTSC. However when viewing th