Code at Infoset SQ02 - Start of Selection - not working

I have a code at SQ02 infoset START-OF-SELECTION:
select bukrs
  into table i_bukrs
  from t001
  where bukrs in ('SP$00007').
if sy-subrc = 0.
endif.
where SP$00007 is a select-option at the query selection screen.
This coding is not working. It is always returning sy-subrc 4. How do I acces a select option form the query start of selection?
Where I am doing wrong? I have got the 'SP$00007' from the generated code of query.
If I try like this it gives me a syntax error:
where bukrs in SP$00007.
Any idea what I am doing wrong?

The Solution:
DATA cond_syntax TYPE string.
CONCATENATE 'BUKRS' 'IN SP$00007'
            INTO cond_syntax SEPARATED BY space.
SELECT bukrs
  INTO TABLE i_bukrs
  FROM t001
  WHERE (cond_syntax).
IF sy-subrc = 0.
  LOOP AT i_bukrs INTO wa_bukrs.
    AUTHORITY-CHECK OBJECT 'J_B_BUKRS'
             ID 'BUKRS' FIELD wa_bukrs-bukrs.
    IF sy-subrc <> 0.
      MESSAGE s000(z_zzz_ca_messages)
      WITH
      'You do not have authorization to view Company Code '
       wa_bukrs-bukrs
       ' data.'.
      LEAVE LIST-PROCESSING.
    ENDIF.
  ENDLOOP.
ENDIF.
If there is a better way please let me know?

Similar Messages

  • Due to MODIF ID, SELECT query in START-OF-SELECTION not getting triggered

    Dear SAP Gurus,
    I'm stuck with this program, where, my program is not being executed, as in, my SELECT query in my event START-OF-SELECTION is not getting triggered. Since i hav used MODIF ID, for SELECT-OPTIONS, even after putting the entries in select-options...................when i click on the execute button, or press F8, the program still goes into the AT SELECTION-SCREEN OUTPUT event..........but i want it to goto START-OF-SELECTION event where my SELECT query is........what should i do??????????????
    Please find the notepad file having the code, n exucse me for any selection-texts absence.
    Need help from u in this issue.
    Thanks in advance.
    REPORT  ZPPR_CONVSTAT NO STANDARD PAGE HEADING.
    INCLUDE ZPPR_CONVSTAT_TOP.               " data declaration
    INCLUDE ZPPR_CONVSTAT_SEL_CRITERIA.      " selection criteria
    INCLUDE ZPPR_CONVSTAT_PBO.               " event at selection-screen output
    INCLUDE ZPPR_CONVSTAT_START_SELECTION.   " event start-of-selection
    INCLUDE ZPPR_CONVSTAT_F_START_OF_SEL.
    *&  Include           ZPPR_CONVSTAT_TOP
    TABLES  : VBUK,
              VBUP,
              VBAK,
              VBAP,
              VBEP,
              VBPA,
              TVAK,
              EKUB,
              LIKP,
              LIPS,
              MARA,
              MAKT,
              MARC,
              PLAF,
              AUFK,
              AFKO,
              AFPO,
              AFVC,
              AFVV,
              CRHD,
              PBIM,
              KNA1,
              T134,
              IOHEADER,
              IOITEM.
    TYPE-POOLS  : slis.
    TYPES : BEGIN OF ty_final,
            werks   TYPE vbap-werks,  "Plant
            auart   TYPE vbak-auart,  "Sales Order Doc. type
            erdat   TYPE vbak-erdat,  "Sales Order Creation date
            vbeln   TYPE vbak-vbeln,  "Sales Order No.
            posnr   TYPE vbap-posnr,  "Sales Order Item No.
            aedat   TYPE vbak-aedat,  "Sales Order Change Date
            kwmeng  TYPE vbap-kwmeng, "Sales Order qty.
            vdatu   TYPE vbak-vdatu,  "Requested Delivery Date
            lfimg   TYPE lips-lfimg,  "Sales Order Delivered Qty.
            matnr   TYPE vbap-matnr,  "Material ID
            arktx   TYPE vbap-arktx,  "Material Description
            strgr   TYPE marc-strgr,  "Planning Strategy
            vrkme   TYPE vbap-vrkme,  "UOM
            plnum   TYPE plaf-plnum,  "Plan Order No.
            gsmng   TYPE plaf-gsmng,  "Plan Order Qty.
            auffx   TYPE plaf-auffx,  "Plan Order Firming Indicator u2013 Qty.
            stlfx   TYPE plaf-stlfx,  "Plan Order Firming Indicator - Component
            erdat2  TYPE aufk-erdat,  "Production Order Creation Date
            aufnr   TYPE aufk-aufnr,  "Production Order No.
            prdqty  TYPE afko-gamng,  "Production Order qty.
            pckqty  TYPE lips-lfimg,  "Packed Delivered Qty.
            psamg   TYPE afpo-psamg,  "Allotted scrap
            igmng   TYPE afko-igmng,  "Confirmed Yield Qty.
            iasmg   TYPE afko-iasmg,  "Confirmed Scrap Qty
            iamng   TYPE afpo-iamng,  "Expected Yield
            wemng   TYPE afpo-wemng,  "Delivered Qty.
            altscrp TYPE c LENGTH 6,  "Allotted Scrap %
            actscrp TYPE c LENGTH 6,  "Actual Scrap %
            umrez   TYPE afvv-umrez,  "Ups (from Prd. ORD)
            ups     TYPE clobjdat-ausp1,  "Ups (from Material Master)
            crtnstl TYPE clobjdat-ausp1,  "Carton Style
            ppopr   TYPE clobjdat-ausp1,  "Pre-Printing Operation
            brdtyp  TYPE clobjdat-ausp1,  "Board Type
            lsdim1  TYPE clobjdat-ausp1,  "Layout Size u2013 Dim 1
            lsdim2  TYPE clobjdat-ausp1,  "Layout Size u2013 Dim 2
            lsgsm   TYPE clobjdat-ausp1,  "GSM
            inktyp  TYPE clobjdat-ausp1,  "Ink Type
            foiltyp TYPE clobjdat-ausp1,  "Foiling
            wintyp  TYPE clobjdat-ausp1,  "Window Type
            lamin   TYPE clobjdat-ausp1,  "Lamination
            fsvrnsh TYPE clobjdat-ausp1,  "Front Side Varnish
            bsvrnsh TYPE clobjdat-ausp1,  "Back Side Varnish
            emboss  TYPE clobjdat-ausp1,  "Embossing
            punch   TYPE clobjdat-ausp1,  "Punching
            paste   TYPE clobjdat-ausp1,  "Pasting
            oprno   TYPE afvc-vornr,      "Operation No.
            wrkcntr TYPE crhd-arbpl,      "Work Centre
            oprtxt  TYPE afvc-ltxa1,      "Operation Text
            oprqty  TYPE afvv-mgvrg,      "Operation qty.
            yield   TYPE afvv-lmnga,      "Yield
            scrap   TYPE afvv-xmnga,      "Scrap
            jobtyp  TYPE vbak-augru,      "Job Type
            prordst TYPE bsvx-sttxt,      "Production Order Status
            solinst TYPE vbup-lfsta,      "Sales Order Line Item Status
            sldprty TYPE kna1-name1,      "Sold to Party Name
            shpprty TYPE kna1-name1,      "Ship to Party Name
            shpcity TYPE kna1-ort01,      "Ship to party - City
            END OF  ty_final.
    TYPES : BEGIN OF ty_vbak,
            auart   TYPE vbak-auart,
            erdat   TYPE vbak-erdat,  "Doc creation date
            vbeln   TYPE vbak-vbeln,
            aedat   TYPE vbak-aedat,  "Doc change date
            vdatu   TYPE vbak-vdatu,  "Requested delivery date
            kunnr   TYPE vbak-kunnr,
            augru   TYPE vbak-augru,  "Job Type
            END OF ty_vbak.
    TYPES : BEGIN OF ty_vbap,
            vbeln   TYPE vbap-vbeln,
            posnr   TYPE vbap-posnr,
            werks   TYPE vbap-werks,
            matnr   TYPE vbap-matnr,
            arktx   TYPE vbap-arktx,
            kwmeng  TYPE vbap-kwmeng,
            vrkme   TYPE vbap-vrkme,
            END OF ty_vbap.
    TYPES : BEGIN OF ty_pbim,
            pbdnr TYPE pbim-pbdnr,  "Requirements Plan Number
            bdzei TYPE pbim-bdzei,  "Independent requirements pointer
            matnr TYPE pbim-matnr,
            werks TYPE pbim-werks,
            END OF ty_pbim.
    TYPES : BEGIN OF ty_pbhi,
            bdzei TYPE pbhi-bdzei,  "Independent requirements pointer
            pdatu TYPE pbhi-pdatu,  "Requirement date
            laeda TYPE pbhi-laeda,  "Date of Last Change
            END OF ty_pbhi.
    TYPES : BEGIN OF ty_ekko,
            ebeln TYPE ekko-ebeln,  "STO doc no
            bsart TYPE ekko-bsart,
            reswk TYPE ekko-reswk,  "Supplying plant
            aedat TYPE ekko-aedat,  "Doc creation date
            END OF ty_ekko.
    TYPES : BEGIN OF ty_ekpo,
            ebeln TYPE ekpo-ebeln,
            ebelp TYPE ekpo-ebelp,
            aedat TYPE ekpo-aedat,  "Doc change date
            menge TYPE ekpo-menge,
            meins TYPE ekpo-meins,
            matnr TYPE ekpo-matnr,
            txz01 TYPE ekpo-txz01,
            END OF ty_ekpo.
    TYPES : BEGIN OF ty_eket,
            ebeln TYPE eket-ebeln,
            ebelp TYPE eket-ebelp,
            eindt TYPE eket-eindt,  "Requested delivery date
            END OF ty_eket.
    TYPES : BEGIN OF ty_lips,
            vbeln TYPE lips-vbeln,
            posnr TYPE lips-posnr,
            vgbel TYPE lips-vgbel,
            vgpos TYPE lips-vgpos,
            lfimg TYPE lips-lfimg,
            END OF ty_lips.
    TYPES : BEGIN OF ty_plaf,
            plnum TYPE plaf-plnum,
            matnr TYPE plaf-matnr,
            gsmng TYPE plaf-gsmng,
            auffx TYPE plaf-auffx,
            stlfx TYPE plaf-stlfx,
            kdauf TYPE plaf-kdauf,
            kdpos TYPE plaf-kdpos,
            pbdnr TYPE plaf-pbdnr,
            END OF ty_plaf.
    TYPES : BEGIN OF ty_aufk,
            aufnr TYPE aufk-aufnr,
            erdat TYPE aufk-erdat,
            objnr TYPE aufk-objnr,
            END OF ty_aufk.
    TYPES : BEGIN OF ty_afko,
            aufnr TYPE afko-aufnr,
            gamng TYPE afko-gamng,  "Total order quantity
            gasmg TYPE afko-gasmg,  "Total scrap quantity in the order
            igmng TYPE afko-igmng,  "Confirmed Yield Qty
            iasmg TYPE afko-iasmg,  "Confirmed Scrap Qty
            aufpl TYPE afko-aufpl,  "Routing number of operations in the order
            END OF ty_afko.
    TYPES : BEGIN OF ty_afpo,
            aufnr TYPE afpo-aufnr,
            plnum TYPE afpo-plnum,
            matnr TYPE afpo-matnr,
            pgmng TYPE afpo-pgmng,  "Plan Order Qty
            kdauf TYPE afpo-kdauf,
            kdpos TYPE afpo-kdpos,
            psamg TYPE afpo-psamg,  "Allotted scrap
            iamng TYPE afpo-iamng,  "Expected Yield Variance
            wemng TYPE afpo-wemng,  "Delivered Qty
            END OF ty_afpo.
    TYPES : BEGIN OF ty_afvc,
            vornr TYPE afvc-vornr,
            aufpl TYPE afvc-aufpl,  "Routing number of operations in the order
            aplzl TYPE afvc-aplzl,  "General counter for order
            arbid TYPE afvc-arbid,  "Object ID of the resource
            ltxa1 TYPE afvc-ltxa1,
            END OF ty_afvc.
    TYPES : BEGIN OF ty_afvv,
            aufpl TYPE afvv-aufpl,  "Routing number of operations in the order
            aplzl TYPE afvv-aplzl,  "General counter for order
            umrez TYPE afvv-umrez,
            mgvrg TYPE afvv-mgvrg,
            lmnga TYPE afvv-lmnga,
            xmnga TYPE afvv-xmnga,
            END OF ty_afvv.
    TYPES : BEGIN OF ty_mdvm,
            mdkey TYPE mdvm-mdkey,
            disst TYPE mdkp-disst,
            matnr TYPE mdkp-matnr,
            plwrk TYPE mdkp-plwrk,
            END OF ty_mdvm.
    DATA :  it_final  TYPE STANDARD TABLE OF ty_final,
            it_vbak   TYPE STANDARD TABLE OF ty_vbak,
            it_vbap   TYPE STANDARD TABLE OF ty_vbap,
            it_lips   TYPE STANDARD TABLE OF ty_lips,
            it_pbim   TYPE STANDARD TABLE OF ty_pbim,
            it_pbhi   TYPE STANDARD TABLE OF ty_pbhi,
            it_ekko   TYPE STANDARD TABLE OF ty_ekko,
            it_ekpo   TYPE STANDARD TABLE OF ty_ekpo,
            it_eket   TYPE STANDARD TABLE OF ty_eket,
            it_plaf   TYPE STANDARD TABLE OF ty_plaf,
            it_aufk   TYPE STANDARD TABLE OF ty_aufk,
            it_afko   TYPE STANDARD TABLE OF ty_afko,
            it_afpo   TYPE STANDARD TABLE OF ty_afpo,
            it_afvc   TYPE STANDARD TABLE OF ty_afvc,
            it_afvv   TYPE STANDARD TABLE OF ty_afvv,
            it_mdvm   TYPE STANDARD TABLE OF ty_mdvm.
    DATA :  wa_final  TYPE ty_final,
            wa_vbak   TYPE ty_vbak,
            wa_vbap   TYPE ty_vbap,
            wa_lips   TYPE ty_lips,
            wa_pbim   TYPE ty_pbim,
            wa_pbhi   TYPE ty_pbhi,
            wa_ekko   TYPE ty_ekko,
            wa_ekpo   TYPE ty_ekpo,
            wa_eket   TYPE ty_eket,
            wa_plaf   TYPE ty_plaf,
            wa_aufk   TYPE ty_aufk,
            wa_afko   TYPE ty_afko,
            wa_afpo   TYPE ty_afpo,
            wa_afvc   TYPE ty_afvc,
            wa_afvv   TYPE ty_afvv,
            wa_mdvm   TYPE ty_mdvm.
    DATA :  it_object TYPE hum_object_t,
            wa_object TYPE hum_object,
            it_item   TYPE hum_hu_item_t,
            wa_item   TYPE vepovb,
            count1(6) TYPE n.
    DATA :  gv_objek TYPE ausp-objek.       "Put matnr for use in FM u2018CLAF_CLASSIFICATION_OF_OBJECTSu2019
    DATA : BEGIN OF it_sclass OCCURS 0.
            INCLUDE STRUCTURE sclass.
    DATA : END OF it_sclass.
    DATA : BEGIN OF it_clobjdat OCCURS 0.
            INCLUDE STRUCTURE clobjdat.
    DATA : END OF it_clobjdat.
    *&  Include           ZPPR_CONVSTAT_SEL_CRITERIA
      SELECTION-SCREEN FOR 'PLANNING STAGE'
    SELECTION-SCREEN BEGIN OF BLOCK main WITH FRAME TITLE text-001.
      PARAMETERS: mrpntdn RADIOBUTTON GROUP sel                    DEFAULT 'X' user-command flag,
                  pldord  RADIOBUTTON GROUP sel,
                  prdord  RADIOBUTTON GROUP sel.
    SELECTION-SCREEN END OF BLOCK main.
      SELECTION-SCREEN FOR 'SELECTION BY PLANT AND PLANT DATA'
    SELECTION-SCREEN BEGIN OF BLOCK plant WITH FRAME TITLE text-002.
      PARAMETERS      : p_werks   LIKE  ioheader-werks OBLIGATORY  DEFAULT '1100' MATCHCODE OBJECT H_T001W.
      SELECT-OPTIONS  : so_matnr  FOR   ioitem-matnr                              MATCHCODE OBJECT MAT1.
      PARAMETERS      : so_mtart  TYPE  t134-mtart     OBLIGATORY  DEFAULT 'ZFIN' MATCHCODE OBJECT H_T134.
      SELECT-OPTIONS  : so_plnum  FOR   ioitem-plnum                              MATCHCODE OBJECT plnum  MODIF ID pld,
                        so_aufnr  FOR   ioheader-aufnr                            MATCHCODE OBJECT orde   MODIF ID prd.
      PARAMETERS      : p_prdsta  LIKE  tj02t-txt04                                                       MODIF ID prd.
    SELECTION-SCREEN END OF BLOCK plant.
      SELECTION-SCREEN FOR 'SELECTION BY REQUIREMENT TYPE'
    SELECTION-SCREEN BEGIN OF BLOCK reqtyp  WITH FRAME TITLE text-003.
      PARAMETERS      : cb_so     TYPE AUSWL_EB AS CHECKBOX USER-COMMAND flag,
                        cb_sto    TYPE AUSWL_EB AS CHECKBOX USER-COMMAND flag,
                        cb_pir    TYPE AUSWL_EB AS CHECKBOX USER-COMMAND flag.
    SELECTION-SCREEN END OF BLOCK reqtyp.
      SELECTION-SCREEN FOR 'SELECTION BY DATE AND REQUIREMENT TYPE NOS'
    SELECTION-SCREEN BEGIN OF BLOCK dtreqtypno WITH FRAME TITLE text-004.
      SELECT-OPTIONS  : so_crtdt  FOR vbak-erdat                                                                MODIF ID gen,
                        so_vbeln  FOR vbap-vbeln                                  MATCHCODE OBJECT WTY_F4_VBAP  MODIF ID rso,
                        so_posnr  FOR vbap-posnr                                                                MODIF ID rso,
                        so_ebeln  FOR ekub-ebeln                                  MATCHCODE OBJECT MEKKM        MODIF ID rst,
                        so_ebelp  FOR ekub-ebelp                                                                MODIF ID rst,
                        so_pbdnr  FOR pbim-pbdnr                                                                MODIF ID rpi,
                        so_reqdt  FOR vbep-edatu                                                                MODIF ID gen.
    SELECTION-SCREEN END OF BLOCK dtreqtypno.
      SELECTION-SCREEN FOR 'SELECTION BY OTHER PARAMETERS'
    SELECTION-SCREEN BEGIN OF BLOCK othrparam WITH FRAME TITLE text-005.
      SELECT-OPTIONS  : so_kunnr FOR kna1-kunnr                                   MATCHCODE OBJECT debi   MODIF ID rso,
                        so_auart FOR tvak-auart                                   MATCHCODE OBJECT H_TVAK MODIF ID rso,
                        so_lfsta FOR vbup-lfsta                                                           MODIF ID rso.
    SELECTION-SCREEN END OF BLOCK othrparam.
    *&  Include           ZPPR_CONVSTAT_PBO
    *&   Event AT SELECTION-SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
      IF mrpntdn = 'X'.
        LOOP AT SCREEN.
          IF ( screen-group1 = 'PLD' OR screen-group1 = 'PRD' ).
            screen-active = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSEIF pldord = 'X'.
        LOOP AT SCREEN.
          IF screen-group1 = 'PLD'.
            screen-intensified = 1.
            MODIFY SCREEN.
          ENDIF.
          IF screen-group1 = 'PRD'.
            screen-active = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSEIF prdord = 'X'.
        LOOP AT SCREEN.
          IF ( screen-group1 = 'PLD' OR screen-group1 = 'PRD' ).
            screen-intensified = 1.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
      IF ( cb_so = ' ' AND cb_sto = ' ' AND cb_pir = ' ' ).
        LOOP AT SCREEN.
          IF ( screen-group1 = 'GEN'
          OR screen-group1 = 'RSO'
          OR screen-group1 = 'RST'
          OR screen-group1 = 'RPI' ).
            screen-active = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
      IF cb_so = 'X'.
        LOOP AT SCREEN.
          IF screen-group1 = 'RSO'.
            screen-active = 1.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
        IF cb_sto = ' '.
          LOOP AT SCREEN.
            IF screen-group1 = 'RST'.
              screen-active = 0.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        ENDIF.
        IF cb_pir = ' '.
          LOOP AT SCREEN.
            IF screen-group1 = 'RPI'.
              screen-active = 0.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        ENDIF.
      ELSEIF cb_sto = 'X'.
        IF cb_so = ' '.
          LOOP AT SCREEN.
            IF screen-group1 = 'RSO'.
              screen-active = 0.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        ENDIF.
        IF cb_pir = ' '.
          LOOP AT SCREEN.
            IF screen-group1 = 'RPI'.
              screen-active = 0.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        ENDIF.
      ELSEIF cb_pir = 'X'.
        IF cb_so = ' '.
          LOOP AT SCREEN.
            IF screen-group1 = 'RSO'.
              screen-active = 0.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        ENDIF.
        IF cb_sto = ' '.
          LOOP AT SCREEN.
            IF screen-group1 = 'RST'.
              screen-active = 0.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        ENDIF.
      ENDIF.
    *&  Include           ZPPR_CONVSTAT_START_SELECTION
    *&   Event START-OF-SELECTION
    IF mrpntdn = 'X'.
      PERFORM start_of_selection_mrpntdn.
    ELSEIF pldord = 'X'.
      PERFORM start_of_selection_pldord.
    ELSEIF prdord = 'X'.
      PERFORM start_of_selection_prdord.
    ENDIF.
    *&  Include           ZPPR_CONVSTAT_F_START_OF_SEL
    *&      Form  START_OF_SELECTION
          Subroutine for MRP NOT DONE
    FORM start_of_selection_mrpntdn.
        SELECT mdkey INTO TABLE it_mdvm FROM mdvm
                     WHERE GSAEN = 'X'
                       AND AKKEN = 'X'.
          IF sy-subrc = 0.
            LOOP AT it_mdvm INTO wa_mdvm.
              wa_mdvm-disst = wa_mdvm-mdkey(3).
              wa_mdvm-matnr = wa_mdvm-mdkey+3(18).
              wa_mdvm-plwrk = wa_mdvm-mdkey+21(4).
              MODIFY it_mdvm FROM wa_mdvm INDEX sy-index TRANSPORTING disst matnr plwrk.
            ENDLOOP.
          ENDIF.
    ENDFORM.
    *&      Form  START_OF_SELECTION
          Subroutine for PLAN ORDER CREATED
    FORM start_of_selection_pldord.
    ENDFORM.
    *&      Form  START_OF_SELECTION for PRODUCTION ORDER CREATED
          Subroutine for PRODUCTION ORDER CREATED
    FORM start_of_selection_prdord.
    ENDFORM.

    You need to mention START-OF-SELECTION explicitly in your code.
    Change your code as below:
    *& Event START-OF-SELECTION
    START-OF-SELECTION.
    IF mrpntdn = 'X'.

  • The select/start button is not working on my Vita?

    as title, anybody face the problems???
    actually, my vita (wifi) freezed last week, PS button blue light, cannot shut down.
    after hold down power button, enter to Safe Mode, and done everything (restore, restart, rebuild, format m.card).
    now, PS button alive, working, but select / start button still not working!!
    HELP HELP HELP.......

    Here Is the Solution see on pictures This Fault Is Caused With Shorted Right Top Button When This shows conductivity few ohm this interfere with the signal line on the pcb.to test it disconnect this button from the socket by lifting up the small lock on amphenol socket.measure the 2 tracks on the foil if its conductive.in most cases will be leave it disconnected turn on the psp vita with some games and test if the start button respond 99% it will be working ok.if yesthen turn off the unit disconnect the main battery to avoid shortage to the motherboard.peel gently off the top right button and replace with new oneiff you cannot get parts then separate the 2 foil and clean the ferrite pad's.cut a thin foil with 2 hole same size as the button conductive pad's this will create bigger gap between these conductive touch pad's and the foil. Warning !!! This guide is for advanced component level engineers not for beginners require esd protection.  

  • I need my redemption code. Followed all tips, but did not work. Had to reinstall Windows 8Redemption Code - forgot mine

    I need my redemption code. Followed all tips, but did not work. Had to reinstall Windows 8 due to Windows Explorer crash issue,and had to reinstall all softwares. I am a monthly regular CC customer, and dont recall my 24 digit  code.

    Since this is an open forum, not Adobe support... you need to contact Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Photoshop CC. Colour selection not working when using alt and brush.

    Hi, Photoshop CC. Windows 8.1 64 bit. Colour selection not working when using alt and brush. I have tried rebooting and other things like closing swatch panel etc.
    The alt key is otherwise OK.  It's not the recent upgrade from Win 8 to 8.1 (5 days ago) because the colour selection facility was working yesterday. Any ideas.

    I'd say things sound desperate enough to try resetting Preferences
    Reset Preferences
    Windows — Hold down Shift Ctrl Alt immediately after starting Photoshop
    Mac — Hold down Shift Cmd Opt immediately after starting Photoshop
    If that fails, we need to know your operating system?
    Do you have a full CC subscription, or by apps do you mean Photoshop, Bridge and Lightroom?
    Another other information that might pertain ?

  • Windows 8.1 - Upgrade from 8, Start Button Does Not Work

    I cannot find a fix for my 8.1 start button.
    It works when I move the task bar to the top, right or left but not at the bottom. I ran all windows updates and there are no missing/unknown drivers in device manager. No errors in the event log. I've restarted multiple times and created a new local profile.
    I've also tried: 
    Copy WinX folder under C:\Users\Default\AppData\Local\Microsoft\Windows into C:\Users\[your user name]\AppData\Local\Microsoft\Windows.
    dism /online /cleanup-image /restorehealth
    Any ideas? I would prefer not to do a clean install. Thanks in advance. 
    HP Touchsmart 23 series
    i5-3475S 2.90GHz
    16GB RAM
    1TB HDD

    Could you please describe a little more detailed about “Start Button does not work”? What is the symptom?
    Yes, when the taskbar is at the bottom of the screen, I cannot left click on the start button. The machine is also a touch-screen, which does work when I touch the start button. If I move the task bar to the left, right or top; the start button does work.
    And what is the kind of the account, Domain? Local? Or both?
    This is local machine.
    It still doesn’t work in a new account?
    Same issue happens with a new account.
    What happens if you use win + "X"?
    Win + "X" works fine; displays options.
    Regarding to the “doesn’t work, both for screen touch and mouse?
    Left-click via the mouse does not work. Touch works fine.
    Can you try to copy the WinX folder from a working PC to your PC for a test?
    I do not have another Windows 8.1 machine available to me.

  • On my Mac Book Pro My password at the start up is not working on restart

    Hi
    My password at the start up is not working on restart
    But if i close the cover and re-open it he ask for my password

    Changing or resetting an account password 

  • Row selection not working in SQL view?

    Hope this something silly --
    I have an ADF view defined something like this -- breaks selected orders into pricing buckets.
    select floor((billingAmount / mileAge) / .05) as bucket,
    floor((billingAmount / mileAge) / .05)* .05 as bucketMin,
    ceiling((billingAmount / mileAge) / .05)* .05 as bucketMax,
    count(*) as orders
    from ordersMaster
    where originZoneNumber = ? and destinationZoneNumber = ? and DSRDate >= ?
    group by floor((billingAmount / mileAge) / .05),
    floor((billingAmount / mileAge) / .05)* .05,
    ceiling((billingAmount / mileAge) / .05)* .05
    After setting the bind variables, this gives me a fine read-only table with selection columns.
    The first couple rows of the table looks something like
    Select Bucket bucketMin bucketMax orders
    60 3.00 3.05 1
    61 3.05 3.10 4
    62 3.10 3.15 7
    On the Select button, I have this code snippet:
    DCIteratorBinding ib = ADFUtils.findIterator("RevenueRangeViewIterator");
    Row row = ib.getCurrentRow();
    System.out.println("Selected range starts at " + row.getAttribute("bucketMin"));
    System.out.println("Selected range has " + row.getAttribute("orders"));
    Regardless of what row I have selected, I get data for the first row.
    When I do the same code against a table created from entities, it works fine.
    What am I missing?
    Thanks in advance
    Ed Schechter

    Hope this something silly --
    I have an ADF view defined something like this -- breaks selected orders into pricing buckets.
    select floor((billingAmount / mileAge) / .05) as bucket,
    floor((billingAmount / mileAge) / .05)* .05 as bucketMin,
    ceiling((billingAmount / mileAge) / .05)* .05 as bucketMax,
    count(*) as orders
    from ordersMaster
    where originZoneNumber = ? and destinationZoneNumber = ? and DSRDate >= ?
    group by floor((billingAmount / mileAge) / .05),
    floor((billingAmount / mileAge) / .05)* .05,
    ceiling((billingAmount / mileAge) / .05)* .05
    After setting the bind variables, this gives me a fine read-only table with selection columns.
    The first couple rows of the table looks something like
    Select Bucket bucketMin bucketMax orders
    60 3.00 3.05 1
    61 3.05 3.10 4
    62 3.10 3.15 7
    On the Select button, I have this code snippet:
    DCIteratorBinding ib = ADFUtils.findIterator("RevenueRangeViewIterator");
    Row row = ib.getCurrentRow();
    System.out.println("Selected range starts at " + row.getAttribute("bucketMin"));
    System.out.println("Selected range has " + row.getAttribute("orders"));
    Regardless of what row I have selected, I get data for the first row.
    When I do the same code against a table created from entities, it works fine.
    What am I missing?
    Thanks in advance
    Ed Schechter

  • Suddenly won't boot, start up commands not working... am I out of luck?

    Funny, this is my first mac being a hardcore and longtime PC user as my "test" mac... everything works perfectly... of course until 12 days after my warranty is up...
    This morning on waking up my mac to turn on some music in iTunes, i click on the iTunes window to bring it into focus. It suddenly closes and dissapears, on returning to the shortcut bar (the tray at the bottom for programs, i don't know what mac users call it) and click on iTunes ot relaunch it after its crash/dissapearance, the task tray then decides to suddenly dissapear/crash (don't know which, it's like a crash but best described as a vanishing act as it doesn't lag or churn before dying, just vanishes).
    Possibly related to this issue, not long ago my iChat stopped working, whenever i launched it, it would stay open for a couple seconds and automatically closed. I could sit there all day clicking it, it would open, 2 seconds later, close. I gave up on that. I gave up on that a week ago.
    Shortly after my iTunes dissapeared/crash and then after the program tray also dissapearing. my mac mini reboots. Except it's stuck on the screen with the mac apple in the middle of the screen with the moving (yes it's moving) pinwheel on the bottom center of the screen. I let it sit there for a long while... 15 minutes pass nothing happens.
    I try rebooting... same thing happens.
    I'm go on my PC (Which i'm now typing from) and start searching for solutions. apple support pages suggest I try safe mode with shift.
    SAFE MODE: Won't work. I tried pushing both shift buttons on my keyboard at different times (before the start up tone, immediately after the beggining of the start up tone, and after the start up tone finishes) all that happens is, I get the same pinwheel/apple screen that is "loading" (according to the pinwheel) forever.
    I went to forums, read up on other different commands like holding down "X" or option command P+R.... X does the same as the not-working safe mode... option command P+R continually reboots the computer.
    And in the end I'm still at square one. thouroughly frustrated. wishing my mac mini was a PC (as i've never had a PC problem I can't fix) Ironic experience... PCs, break often, easily fixed, no support needed.... Macs: rarely break, when they do, support needed, but support from apple expires 12 days ago, not easily fixed... and now I think i'm screwed out of the 700$+ i payed for this POS and I've lost my whole iTunes library, all the CDs i've loaded onto it, and all the music and TV shows i've purchased from the apple music store. Good game, apple takes a bunch of money, refuses to support my product which is now dead (had a similar situation with an iPod I had bought for my girlfriend).
    My only hope is... I know mac users have a happy helpful community and always band together to help fellow mac users, something the PC world doesn't as-cohsively have. So...
    Help me Obi-Wan Kenobi... you guys are my last and only hope.
    Thanks in advance.
    -John

    Hi, John. Welcome to the Discussions.
    1. You wrote: "I get the same pinwheel/apple screen that is "loading" (according to the pinwheel) forever"The "pinwheel" is known as a "spinning gear progress indicator."
    This, combined with the other issues you've reported, sounds like problems with the hard drive. I suggest you begin troubleshooting using the Procedure specified in my "Resolving Disk, Permission, and Cache Corruption" FAQ. Perform the steps therein in the order specified.
    2. You wrote: "...the shortcut bar (the tray at the bottom for programs, i don't know what mac users call it)"It's called the Dock. See "Mac OS X: About the Dock."
    3. You wrote: "...this is my first mac..."My "Learning About Mac OS X" FAQ has a number of resources that you will find helpful including books, online training, and more.
    4. You wrote: "...Macs: rarely break, when they do, support needed, but support from apple expires 12 days ago, not easily fixed..."You should have bought the AppleCare Protection Plan (ACPP) before your warranty expired. The ACPP provides a two-year extension on the warranty and three years of telephone support.
    PS: Word to the Wise: watch the language. I appreciate your frustration, but don't let it into your posts. These forums are "family friendly" and a good way to get banned from them is to rant, use profanity (including profane abbreviations), etc. What passes for "acceptable behavior" on most PC/Windows forums is not tolerated here.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Task created to stop and start Health service not working.

    We have multiple servers being grayed out so we created a task to stop and start the health service on SCOM 2007 R2. We have created two tasks one to stop and another task to start. The STOP task works but the START tasks keeps running but there is no result
    as well as when i check in Services.msc it is still stopped. Below are the screen shots .
    Task created to STOP the health service which is running.
    Screen shot of service start task creation which is NOT working
    The same was created for another service windows audio. Which worked for both stop and stop (Created separate tasks).
    We also tried the recycle health service and chche which is also failing.
    Can any one please help. The issue is on both SCOM 2007R2 and 2012 R2 both. Is there any other way to touch the health service.
    We are facing the issue only with Healthservice.

    Hi All,
    Thank you for all your answers.
    @ dktoa -
    You are right we have to concentrate on the servers to determine why do they go grey (all in one site). But before we do that i felt i find a temporary solution. Then go deep investigation to solve the issue.
    @Yan LI: As per the likn provided above you. I overrided the servers but still the health services were not starting or restarting. When i created a custom group and added the servers to that  group in that site and then  enabled the override on Restart
    Health Service for a specific group and pointed towards that group then it worked.
    Thanks All.

  • Auto Select not working in Photoshop CS6--Why?

    I'm experiencing the auto-select in Photoshop CS6 not working when it is checked and I click on different layers. It worked fine in 5.5, but I am now using PS CS6 cloud and it works only sporadically. Any reason why?
    Thanks in advance!
    -Jane

    Moving this discussion to photoshop Forum discussion.

  • Seek or start playback offset not working on big flv's

    Hello,
    I try to start a FLV (created with soundbooth cs5) at a certain point of time using ns.play('video', 33000) or even just ns.seek(33000);
    The FLV is about 9 hours long.
    How do I make this work ? And why is it not working?

    Do you face problem with all big flv files or just few set of files? Is it possible for you to pass on that files so that we can check at our end? But before you that - which version of FMS and Flash Player version are you on?

  • Restriction in Rows Selection not working

    Hello,
    I  have a requrement where i need to restrict the material based on the date
    output is
    Sno Material                                       date           quantity
    1      Material > 90 days                  5/7/2012        20
            material within 90 days          12/31/2011      5
                                                            1/2/2012        10
    like this
    Material > 90 days is material exist 90 days from current system date Ex. for Feb 7,2012 ./ the range is may 7 ,2012
    material within 90 days is material  +  or - 90 days.. ex, for Feb 7,2012 .. the range is Dec 7,2011 to May 7,2012
    I created a new selection in Rows for material and restricted based on 0DAT variable with offset.
    its not working.
    Request you to help on this
    Thanks
    Bala

    Hi, Malkit.
       I am not quite clear with this "Earlier it was working fine but some how it stopped although custom OVS is working fine when i remove the restricted filed, all the values come properly".
    Can you please explain what happened more clearly?
    Have you tried executing your QueryByElements with projectID in PDI?
    Regards,
    Fred

  • Option-drag selection not working in CS6 layer panel

    Thought I'd force myself to use CS6 on a new project. I want to select multiple objects using "Option-drag", in the Layer Panel, but it doesn't work as it does in CS5.
    Is there a different shortcut for selecting multiple contiguous objects using the Layer Panel, in CS6? Of course, I mean "Select" not "highlight".
    Thanks.

    Ok so it has been omitted in CS 6 and I think the reason is is because of the change to the Layers panel function.
    That is because you can now rename and object directky with the Layers Panel rather than use the Layer Options.
    Whether this wa intentional or by accident I do not know but that is why I think it has been changed.
    I would make a feature request to either return it to Option Drag or Or Option Click to select a contigous selection of objects.
    I notice that many people use names for their paths on even modest ai files so I would think being able to name the objects and layers are a really important feature but so is the feature you referring to though I think Click-Option Click would be even better on rellly large complex Illustrations.

  • My quick start icons will not work why?

    The quick start icons have always worked but yesterday they stopped working. Why?

    If your card hasn't been activated then you will need to try contacting iTunes Support (these are user-to-user forums) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes (you will probably need to give them images of the front and back of the card, and possibly its receipt)

Maybe you are looking for