Rollover icons not working

Hi,
In my app i'm trying to set rollover icons for my buttons. Here's an exmple of the code i'm using:
nodeButton = new JButton(IconRepository.NODE_ICON);
toolbarButtons.add(nodeButton);
nodeButton.setToolTipText("Node");
nodeButton.setRolloverSelectedIcon(IconRepository.NODE_ROLLICON);
          nodeButton.setRolloverIcon(IconRepository.NODE_ROLLICON);
          nodeButton.setRolloverEnabled(true);
          nodeButton.setSelectedIcon(IconRepository.NODE_ROLLICON);
          System.out.println(nodeButton.getRolloverIcon());
//Code for the NODE_ROLLICON
public final ImageIcon NODE_ROLLICON = new ImageIcon("icons/noderoll.gif");
Problem is that this doesn't work - nothing happens when I move the cursor over the JButton.
Please Help
Thanks
Stuart

I can never remember exactly how it goes but...
is the icons directory in the correct place in location to where this file is? The way you make the call to get the icon, I seem to remember having to have the "icons" directory as a sub directory of the directory containing the class file.
But If that's not right, its a sub directory of the dir from which the program is run (or rather a sub dir from the directory one step up from where the code's package heirarchy begins).
I've had code compile and run with no icons showing up because the directory structures were wrong. Good luck!

Similar Messages

  • Print icon not working

    Hi All,
    I have developed a program to display two alv reports. The program when executed displays the first report and on the click of a push button it wud display the second report. The standard icons are all working in the first report but few icons like print, local file save are not working in the second screen. Can anyone help me on this?
    REPORT  ZMY20FCORD    MESSAGE-ID 8I.
    ALV
    TYPE-POOLS: SLIS.
    DATA: TXT_REPORT LIKE DOKHL-OBJECT.   "Reportname für Erläuterungsaufruf
    DATA: GT_FIELDCAT         TYPE SLIS_T_FIELDCAT_ALV,
          GT_EVENTS           TYPE SLIS_T_EVENT,
          GT_SORT             TYPE SLIS_T_SORTINFO_ALV,
          GT_LIST_TOP_OF_PAGE TYPE SLIS_T_LISTHEADER,
          GS_LAYOUT           TYPE SLIS_LAYOUT_ALV.
    TABLES                 ABAP Internal     Table definitions
    TABLES : T001, T001W, T005, TVST, ZMY20PROD, ZMY20WKFC, TVKO, ZMY20RMRK,
             ZMY20FCVER,    ZMY20GP, VBAK, VBAP, VBEP, VBPA, KNA1.
    INTERNAL TABLES (i_):  ABAP Internal     Internal Table definitions
    DATA: I_ZMY20WKFC LIKE ZMY20WKFC OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF I_VBAK OCCURS 0,
            VBELN    LIKE VBAK-VBELN,
            KUNNR    LIKE VBAK-KUNNR,    " Sold-to-Party
          END OF I_VBAK.
    DATA: BEGIN OF I_ORDER OCCURS 0,
            VBELN    LIKE VBAK-VBELN,
            POSNR    LIKE VBAP-POSNR,
            ETENR    LIKE VBEP-ETENR,
            KUNNR    LIKE VBAK-KUNNR,    " Sold-to-Party
            MATNR    LIKE VBAP-MATNR,
            WERKS    LIKE VBAP-WERKS,
            VSTEL    LIKE VBAP-VSTEL,
            WMENG    LIKE VBEP-WMENG,
            VRKME    LIKE VBEP-VRKME,
            LDDAT    LIKE VBEP-LDDAT,
            SHIPTO   LIKE VBPA-KUNNR,
            SOLDCN   LIKE KNA1-LAND1,
            SHIPCN   LIKE KNA1-LAND1,
            PRODUCT  LIKE ZMY20PROD-PRODUCT,
            STCSTP   LIKE ZMY20WKFC-STCSTP,
            SPMON    LIKE ZMY20WKFC-SPMON,
            WEEK     LIKE SCAL-WEEK,
            UPDFLG(1) TYPE C,
          END OF I_ORDER.
    DATA: BEGIN OF I_SHIPTO OCCURS 0,
            CUSTOMER(20) TYPE C,
            SHIPTO       LIKE VBPA-KUNNR,
          END OF I_SHIPTO.
    DATA: BEGIN OF I_OUTPUT OCCURS 0,
            SORTKEY(1) TYPE C,
            STCSTP   LIKE ZMY20WKFC-STCSTP,
            WERKS    LIKE ZMY20WKFC-WERKS,
            SHPPOINT LIKE ZMY20WKFC-SHPPOINT,
            PRODUCT  LIKE ZMY20WKFC-PRODUCT,
            MAKTX    LIKE ZMY20PROD-MAKTX,
            QTY01    LIKE ZMY20WKFC-QTY01,
            ORD01    LIKE ZMY20WKFC-QTY01,
            QTY02    LIKE ZMY20WKFC-QTY01,
            ORD02    LIKE ZMY20WKFC-QTY01,
            QTY03    LIKE ZMY20WKFC-QTY01,
            ORD03    LIKE ZMY20WKFC-QTY01,
            QTY04    LIKE ZMY20WKFC-QTY01,
            ORD04    LIKE ZMY20WKFC-QTY01,
            QTY05    LIKE ZMY20WKFC-QTY01,
            ORD05    LIKE ZMY20WKFC-QTY01,
            QTY06    LIKE ZMY20WKFC-QTY01,
            ORD06    LIKE ZMY20WKFC-QTY01,
            TOTFC1   LIKE ZMY20WKFC-QTY01,
            TOTORD1  LIKE ZMY20WKFC-QTY01,
            FCORD1(5) TYPE P DECIMALS 2,
            QTY07    LIKE ZMY20WKFC-QTY01,
            ORD07    LIKE ZMY20WKFC-QTY01,
            QTY08    LIKE ZMY20WKFC-QTY01,
            ORD08    LIKE ZMY20WKFC-QTY01,
            QTY09    LIKE ZMY20WKFC-QTY01,
            ORD09    LIKE ZMY20WKFC-QTY01,
            QTY10    LIKE ZMY20WKFC-QTY01,
            ORD10    LIKE ZMY20WKFC-QTY01,
            QTY11    LIKE ZMY20WKFC-QTY01,
            ORD11    LIKE ZMY20WKFC-QTY01,
            QTY12    LIKE ZMY20WKFC-QTY01,
            ORD12    LIKE ZMY20WKFC-QTY01,
            TOTFC2   LIKE ZMY20WKFC-QTY01,
            TOTORD2  LIKE ZMY20WKFC-QTY01,
            FCORD2(5) TYPE P DECIMALS 2,
            CELLCOLOR TYPE SLIS_T_SPECIALCOL_ALV,
            DUMMY(1)  TYPE C,
          END OF I_OUTPUT.
    DATA: I_COLOUR TYPE LVC_T_SCOL WITH HEADER LINE.
    DATA: BEGIN OF I_PRDWISE OCCURS 0,
            SORTKEY(1) TYPE C,
            STCSTP     LIKE ZMY20WKFC-STCSTP,
            PRODUCT    LIKE ZMY20WKFC-PRODUCT,
            MAKTX      LIKE ZMY20PROD-MAKTX,
            TOTFC1     LIKE ZMY20WKFC-QTY01,
            TOTORD1    LIKE ZMY20WKFC-QTY01,
            FCORD1(5)  TYPE P DECIMALS 2,
            DIFF1      LIKE ZMY20WKFC-QTY01,
            TOTFC2     LIKE ZMY20WKFC-QTY01,
            TOTORD2    LIKE ZMY20WKFC-QTY01,
            FCORD2(5)  TYPE P DECIMALS 2,
            DIFF2      LIKE ZMY20WKFC-QTY01,
          END OF I_PRDWISE.
    DATA: BEGIN OF I_TVST OCCURS 0,
            VSTEL LIKE TVST-VSTEL,
          END OF I_TVST.
    DATA: BEGIN OF T_STCP OCCURS 0,
            SORTKEY(1) TYPE C,
            STCSTP LIKE ZMY20WKFC-STCSTP,
          END OF T_STCP.
    DATA: BEGIN OF T_PROD OCCURS 0,
            PRODUCT LIKE ZMY20PROD-PRODUCT,
            MAKTX   LIKE ZMY20PROD-MAKTX,
          END OF T_PROD.
    DATA: BEGIN OF T_USER OCCURS 0,
            UNAME LIKE SY-UNAME,
          END OF T_USER.
    DATA: I_FIELDS LIKE SVAL OCCURS 0 WITH HEADER LINE.
    VARIABLES (v_):          ABAP Internal   Variables definitions
    DATA : V_ENDMTH LIKE S125-SPMON,
           V_STRDT1 LIKE SY-DATUM,
           V_STRDT2 LIKE SY-DATUM,
           V_ENDDT1 LIKE SY-DATUM,
           V_ENDDT2 LIKE SY-DATUM,
           V_STRWK1 LIKE SCAL-WEEK,
           V_STRWK2 LIKE SCAL-WEEK,
           V_ENDWK1 LIKE SCAL-WEEK,
           V_ENDWK2 LIKE SCAL-WEEK,
           V_STRMTH LIKE S125-SPMON.    " Only for Report Header
    DATA : BEGIN OF I_WEEKS OCCURS 0,
            SLNO       TYPE I,
            WEEKS      LIKE SCAL-WEEK,
            MONTH(2)   TYPE C,
            HDRWK(13)  TYPE C,
           END OF I_WEEKS.
    DATA : V_TABIX  LIKE SY-TABIX,
           V_VERSN  LIKE ZMY20WKFC-VERSN,
           V_VKORG  LIKE TVKO-VKORG.
    DATA : V_REMARK1    LIKE ZMY20RMRK-REMARK1,
           V_REMARK2    LIKE ZMY20RMRK-REMARK2,
           V_RETCODE    TYPE C,
           V_FNAME(30)  TYPE C,
           V_UPDFLAG(1) TYPE C.
    WORKING VARIABLES (w_):  ABAP Internal   Working Variables definitions
    DATA: W_TOT(5)      TYPE N,
          W_SLNO        TYPE I.
    DATA: W_WEEKS       LIKE SCAL-WEEK.
    DATA: W_WKHDR01(13) TYPE C,
          W_WKHDR02(13) TYPE C,
          W_WKHDR03(13) TYPE C,
          W_WKHDR04(13) TYPE C,
          W_WKHDR05(13) TYPE C,
          W_WKHDR06(13) TYPE C,
          W_WKHDR07(13) TYPE C,
          W_WKHDR08(13) TYPE C,
          W_WKHDR09(13) TYPE C,
          W_WKHDR10(13) TYPE C,
          W_WKHDR11(13) TYPE C,
          W_WKHDR12(13) TYPE C.
    DATA: W_FCHDR01(13) TYPE C,
          W_FCHDR02(13) TYPE C,
          W_FCHDR03(13) TYPE C,
          W_FCHDR04(13) TYPE C,
          W_FCHDR05(13) TYPE C,
          W_FCHDR06(13) TYPE C,
          W_FCHDR07(13) TYPE C,
          W_FCHDR08(13) TYPE C,
          W_FCHDR09(13) TYPE C,
          W_FCHDR10(13) TYPE C,
          W_FCHDR11(13) TYPE C,
          W_FCHDR12(13) TYPE C,
          W_FCHDRT1(13) TYPE C,
          W_FCHDRT2(13) TYPE C,
          W_ORHDR01(13) TYPE C,
          W_ORHDR02(13) TYPE C,
          W_ORHDR03(13) TYPE C,
          W_ORHDR04(13) TYPE C,
          W_ORHDR05(13) TYPE C,
          W_ORHDR06(13) TYPE C,
          W_ORHDR07(13) TYPE C,
          W_ORHDR08(13) TYPE C,
          W_ORHDR09(13) TYPE C,
          W_ORHDR10(13) TYPE C,
          W_ORHDR11(13) TYPE C,
          W_ORHDR12(13) TYPE C,
          W_ORHDRT1(13) TYPE C,
          W_ORHDRT2(13) TYPE C,
          W_HDR%1(13)   TYPE C,
          W_HDR%2(13)   TYPE C,
          W_DIFF1(13)   TYPE C,
          W_DIFF2(13)   TYPE C.
    DATA: W_WKTBL01 LIKE SCAL-WEEK,
          W_WKTBL02 LIKE SCAL-WEEK,
          W_WKTBL03 LIKE SCAL-WEEK,
          W_WKTBL04 LIKE SCAL-WEEK,
          W_WKTBL05 LIKE SCAL-WEEK,
          W_WKTBL06 LIKE SCAL-WEEK,
          W_WKTBL07 LIKE SCAL-WEEK,
          W_WKTBL08 LIKE SCAL-WEEK,
          W_WKTBL09 LIKE SCAL-WEEK,
          W_WKTBL10 LIKE SCAL-WEEK,
          W_WKTBL11 LIKE SCAL-WEEK,
          W_WKTBL12 LIKE SCAL-WEEK.
    DATA: W_SHIPTO  LIKE VBPA-KUNNR,
          W_SOLDCN  LIKE KNA1-LAND1,
          W_SHIPCN  LIKE KNA1-LAND1,
          W_PRODUCT LIKE ZMY20PROD-PRODUCT.
    DATA: W_ORD01   LIKE ZMY20WKFC-QTY01,
          W_ORD02   LIKE ZMY20WKFC-QTY01,
          W_ORD03   LIKE ZMY20WKFC-QTY01,
          W_ORD04   LIKE ZMY20WKFC-QTY01,
          W_ORD05   LIKE ZMY20WKFC-QTY01,
          W_ORD06   LIKE ZMY20WKFC-QTY01,
          W_ORD07   LIKE ZMY20WKFC-QTY01,
          W_ORD08   LIKE ZMY20WKFC-QTY01,
          W_ORD09   LIKE ZMY20WKFC-QTY01,
          W_ORD10   LIKE ZMY20WKFC-QTY01,
          W_ORD11   LIKE ZMY20WKFC-QTY01,
          W_ORD12   LIKE ZMY20WKFC-QTY01,
          W_ORDT1   LIKE ZMY20WKFC-QTY01,
          W_ORDT2   LIKE ZMY20WKFC-QTY01.
    SELECTION SCREEN DATA : ABAP Internal      Select Options&Parameters
              SELECT-OPTIONS (s_)              definitions
              PARAMETERS     (p_)
    SELECTION-SCREEN BEGIN OF BLOCK MYSEL1 WITH FRAME TITLE TEXT-001.
    PARAMETERS     : P_BUKRS  LIKE T001-BUKRS OBLIGATORY DEFAULT 'MY20',
                     P_STRMTH LIKE S125-SPMON OBLIGATORY DEFAULT '200608'.
    SELECT-OPTIONS : S_STCSTP  FOR ZMY20WKFC-STCSTP,
                     S_WERKS   FOR T001W-WERKS,
                     S_PROD    FOR ZMY20PROD-PRODUCT,
                     S_SHP     FOR VBAP-VSTEL.
    SELECTION-SCREEN END OF BLOCK MYSEL1.
    SELECTION-SCREEN BEGIN OF BLOCK MYSEL2 WITH FRAME.
    PARAMETER      : P_ZERO AS CHECKBOX.
    SELECTION-SCREEN END OF BLOCK MYSEL2.
    AT SELECTION-SCREEN
    Begin of Addition by T.Karthikeyan - UIS on 18/01/2007 - Req No - BA3K986971
    AT SELECTION-SCREEN ON P_BUKRS.
      AUTHORITY-CHECK OBJECT 'Z_BASF_SD'
                 ID 'BUKRS'   FIELD P_BUKRS
                 ID 'VKORG'   DUMMY
                 ID 'ZZ_UB'   DUMMY
                 ID 'ZZ_SBU'  DUMMY
                 ID 'WERKS'   DUMMY
                 ID 'ZZ_PROG' FIELD SY-CPROG.
      IF SY-SUBRC NE 0.
        MESSAGE ID 'SD' TYPE 'E' NUMBER '836' WITH
        TEXT-E02 SY-CPROG.
        RETURN.
      ENDIF.
    End of Addition by T.Karthikeyan - UIS on 18/01/2007 - Req No - BA3K986971
    At selection screen F4 help
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_STCSTP-LOW.
      PERFORM F4_HELP_STCSTP.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_STCSTP-HIGH.
      PERFORM F4_HELP_STCSTP.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_PROD-LOW.
      PERFORM F4_HELP_PRODUCT.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_PROD-HIGH.
      PERFORM F4_HELP_PRODUCT.
    START-OF-SELECTION
    START-OF-SELECTION.
      PERFORM 1000_GET_WEEK_DETAILS.
      PERFORM 1500_GET_SHIPTO_CUSTOMER.
      PERFORM 2000_GET_FORECAST_DATA.
      PERFORM 3000_GET_ORDER_DATA.
      PERFORM 4000_CONSOLIDATE_DATA.
    END-OF-SELECTION
    END-OF-SELECTION.
      REFRESH : GT_FIELDCAT, GT_LIST_TOP_OF_PAGE, GT_EVENTS, GT_SORT.
      PERFORM FIELDCAT_INIT USING GT_FIELDCAT[].
      PERFORM LAYOUT_INIT USING GS_LAYOUT.
      PERFORM COMMENT_BUILD USING GT_LIST_TOP_OF_PAGE[].
      PERFORM EVENTTAB_BUILD USING GT_EVENTS[].
      PERFORM SORT_BUILD USING GT_SORT[].
      PERFORM MAIN.
    *&      Form  1000_GET_WEEK_DETAILS
          text
    -->  p1        text
    <--  p2        text
    FORM 1000_GET_WEEK_DETAILS .
      REFRESH : I_WEEKS.
      V_STRMTH = P_STRMTH.
      V_ENDMTH = P_STRMTH + 1.
      IF V_ENDMTH+4(2) GT '12'.
        MOVE '01' TO V_ENDMTH+4(2).
        ADD 1 TO V_ENDMTH+0(4).
      ENDIF.
      CONCATENATE P_STRMTH0(4) P_STRMTH4(2) '01' INTO V_STRDT1.
      CONCATENATE V_ENDMTH0(4) V_ENDMTH4(2) '01' INTO V_ENDDT1.
      CALL FUNCTION 'BKK_GET_MONTH_LASTDAY'
        EXPORTING
          I_DATE = V_STRDT1
        IMPORTING
          E_DATE = V_STRDT2.
      CALL FUNCTION 'BKK_GET_MONTH_LASTDAY'
        EXPORTING
          I_DATE = V_ENDDT1
        IMPORTING
          E_DATE = V_ENDDT2.
      CALL FUNCTION 'DATE_GET_WEEK'
        EXPORTING
          DATE = V_STRDT1
        IMPORTING
          WEEK = V_STRWK1.
      CALL FUNCTION 'DATE_GET_WEEK'
        EXPORTING
          DATE = V_STRDT2
        IMPORTING
          WEEK = V_STRWK2.
      CALL FUNCTION 'DATE_GET_WEEK'
        EXPORTING
          DATE = V_ENDDT1
        IMPORTING
          WEEK = V_ENDWK1.
      CALL FUNCTION 'DATE_GET_WEEK'
        EXPORTING
          DATE = V_ENDDT2
        IMPORTING
          WEEK = V_ENDWK2.
      CLEAR : W_WEEKS, W_SLNO.
      MOVE V_STRWK1 TO W_WEEKS.
      MOVE '1'      TO W_SLNO.
      DO.
        CLEAR : I_WEEKS.
        MOVE W_SLNO  TO I_WEEKS-SLNO.
        MOVE W_WEEKS TO I_WEEKS-WEEKS.
        MOVE P_STRMTH+4(2) TO I_WEEKS-MONTH.
        CONCATENATE I_WEEKS-MONTH '-' W_WEEKS+4(2) INTO I_WEEKS-HDRWK.
        APPEND I_WEEKS.
        ADD 1 TO W_SLNO.
        CALL FUNCTION 'NEXT_WEEK'
          EXPORTING
            CURRENT_WEEK = W_WEEKS
          IMPORTING
            NEXT_WEEK    = W_WEEKS.
        IF W_WEEKS GT V_STRWK2.
          EXIT.
        ENDIF.
      ENDDO.
      CLEAR : W_WEEKS, W_SLNO.
      MOVE V_ENDWK1 TO W_WEEKS.
      MOVE '7'      TO W_SLNO.
      DO.
        CLEAR : I_WEEKS.
        MOVE W_SLNO  TO I_WEEKS-SLNO.
        MOVE W_WEEKS TO I_WEEKS-WEEKS.
        MOVE V_ENDMTH+4(2) TO I_WEEKS-MONTH.
        CONCATENATE I_WEEKS-MONTH '-' W_WEEKS+4(2) INTO I_WEEKS-HDRWK.
        APPEND I_WEEKS.
        ADD 1 TO W_SLNO.
        CALL FUNCTION 'NEXT_WEEK'
          EXPORTING
            CURRENT_WEEK = W_WEEKS
          IMPORTING
            NEXT_WEEK    = W_WEEKS.
        IF W_WEEKS GT V_ENDWK2.
          EXIT.
        ENDIF.
      ENDDO.
      LOOP AT I_WEEKS.
        IF     I_WEEKS-SLNO = '1'.
          MOVE I_WEEKS-HDRWK TO W_WKHDR01.
          MOVE I_WEEKS-WEEKS TO W_WKTBL01.
        ELSEIF I_WEEKS-SLNO = '2'.
          MOVE I_WEEKS-HDRWK TO W_WKHDR02.
          MOVE I_WEEKS-WEEKS TO W_WKTBL02.
        ELSEIF I_WEEKS-SLNO = '3'.
          MOVE I_WEEKS-HDRWK TO W_WKHDR03.
          MOVE I_WEEKS-WEEKS TO W_WKTBL03.
        ELSEIF I_WEEKS-SLNO = '4'.
          MOVE I_WEEKS-HDRWK TO W_WKHDR04.
          MOVE I_WEEKS-WEEKS TO W_WKTBL04.
        ELSEIF I_WEEKS-SLNO = '5'.
          MOVE I_WEEKS-HDRWK TO W_WKHDR05.
          MOVE I_WEEKS-WEEKS TO W_WKTBL05.
        ELSEIF I_WEEKS-SLNO = '6'.
          MOVE I_WEEKS-HDRWK TO W_WKHDR06.
          MOVE I_WEEKS-WEEKS TO W_WKTBL06.
        ELSEIF I_WEEKS-SLNO = '7'.
          MOVE I_WEEKS-HDRWK TO W_WKHDR07.
          MOVE I_WEEKS-WEEKS TO W_WKTBL07.
        ELSEIF I_WEEKS-SLNO = '8'.
          MOVE I_WEEKS-HDRWK TO W_WKHDR08.
          MOVE I_WEEKS-WEEKS TO W_WKTBL08.
        ELSEIF I_WEEKS-SLNO = '9'.
          MOVE I_WEEKS-HDRWK TO W_WKHDR09.
          MOVE I_WEEKS-WEEKS TO W_WKTBL09.
        ELSEIF I_WEEKS-SLNO = '10'.
          MOVE I_WEEKS-HDRWK TO W_WKHDR10.
          MOVE I_WEEKS-WEEKS TO W_WKTBL10.
        ELSEIF I_WEEKS-SLNO = '11'.
          MOVE I_WEEKS-HDRWK TO W_WKHDR11.
          MOVE I_WEEKS-WEEKS TO W_WKTBL11.
        ELSEIF I_WEEKS-SLNO = '12'.
          MOVE I_WEEKS-HDRWK TO W_WKHDR12.
          MOVE I_WEEKS-WEEKS TO W_WKTBL12.
        ENDIF.
      ENDLOOP.
      CONCATENATE W_WKHDR01 'F' INTO W_FCHDR01.
      CONCATENATE W_WKHDR02 'F' INTO W_FCHDR02.
      CONCATENATE W_WKHDR03 'F' INTO W_FCHDR03.
      CONCATENATE W_WKHDR04 'F' INTO W_FCHDR04.
      CONCATENATE W_WKHDR05 'F' INTO W_FCHDR05.
      CONCATENATE W_WKHDR06 'F' INTO W_FCHDR06.
      CONCATENATE W_WKHDR07 'F' INTO W_FCHDR07.
      CONCATENATE W_WKHDR08 'F' INTO W_FCHDR08.
      CONCATENATE W_WKHDR09 'F' INTO W_FCHDR09.
      CONCATENATE W_WKHDR10 'F' INTO W_FCHDR10.
      CONCATENATE W_WKHDR11 'F' INTO W_FCHDR11.
      CONCATENATE W_WKHDR12 'F' INTO W_FCHDR12.
      CONCATENATE W_WKHDR01 'O' INTO W_ORHDR01.
      CONCATENATE W_WKHDR02 'O' INTO W_ORHDR02.
      CONCATENATE W_WKHDR03 'O' INTO W_ORHDR03.
      CONCATENATE W_WKHDR04 'O' INTO W_ORHDR04.
      CONCATENATE W_WKHDR05 'O' INTO W_ORHDR05.
      CONCATENATE W_WKHDR06 'O' INTO W_ORHDR06.
      CONCATENATE W_WKHDR07 'O' INTO W_ORHDR07.
      CONCATENATE W_WKHDR08 'O' INTO W_ORHDR08.
      CONCATENATE W_WKHDR09 'O' INTO W_ORHDR09.
      CONCATENATE W_WKHDR10 'O' INTO W_ORHDR10.
      CONCATENATE W_WKHDR11 'O' INTO W_ORHDR11.
      CONCATENATE W_WKHDR12 'O' INTO W_ORHDR12.
      CONCATENATE P_STRMTH4(2) '/' P_STRMTH0(4) 'F-TOT' INTO W_FCHDRT1.
      CONCATENATE V_ENDMTH4(2) '/' V_ENDMTH0(4) 'F-TOT' INTO W_FCHDRT2.
      CONCATENATE P_STRMTH4(2) '/' P_STRMTH0(4) 'O-TOT' INTO W_ORHDRT1.
      CONCATENATE V_ENDMTH4(2) '/' V_ENDMTH0(4) 'O-TOT' INTO W_ORHDRT2.
      CONCATENATE P_STRMTH4(2) '/' P_STRMTH0(4) '-%'    INTO W_HDR%1.
      CONCATENATE V_ENDMTH4(2) '/' V_ENDMTH0(4) '-%'    INTO W_HDR%2.
      CONCATENATE P_STRMTH4(2) '/' P_STRMTH0(4) '-DIFF' INTO W_DIFF1.
      CONCATENATE V_ENDMTH4(2) '/' V_ENDMTH0(4) '-DIFF' INTO W_DIFF2.
    ENDFORM.                    " 1000_GET_WEEK_DETAILS
    *&      Form  1500_GET_SHIPTO_CUSTOMER
          text
    -->  p1        text
    <--  p2        text
    FORM 1500_GET_SHIPTO_CUSTOMER .
      REFRESH : I_SHIPTO.
      SELECT * FROM ZMY20GP WHERE ZZKEY1 = 'ZMY20FCUP'
                                     AND   ZZKEY3 = 'SHIPTOCUST'.
        CLEAR : I_SHIPTO.
        MOVE ZMY20GP-ZZKEY2 TO I_SHIPTO-CUSTOMER.
        IF ZMY20GP-ZZVAL1 NE SPACE.
          MOVE ZMY20GP-ZZVAL1+0(10) TO I_SHIPTO-SHIPTO.
          APPEND I_SHIPTO.
        ENDIF.
        IF ZMY20GP-ZZVAL2 NE SPACE.
          MOVE ZMY20GP-ZZVAL2+0(10) TO I_SHIPTO-SHIPTO.
          APPEND I_SHIPTO.
        ENDIF.
        IF ZMY20GP-ZZVAL3 NE SPACE.
          MOVE ZMY20GP-ZZVAL3+0(10) TO I_SHIPTO-SHIPTO.
          APPEND I_SHIPTO.
        ENDIF.
        IF ZMY20GP-ZZVAL4 NE SPACE.
          MOVE ZMY20GP-ZZVAL4+0(10) TO I_SHIPTO-SHIPTO.
          APPEND I_SHIPTO.
        ENDIF.
      ENDSELECT.
      PERFORM GET_REMARKENTRY_USER.
    ENDFORM.                    " 1500_GET_SHIPTO_CUSTOMER
    *&      Form  2000_GET_FORECAST_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM 2000_GET_FORECAST_DATA .
    Get the Forecast data for the give input
      REFRESH : I_ZMY20WKFC.
      SELECT * INTO CORRESPONDING FIELDS OF TABLE I_ZMY20WKFC FROM ZMY20WKFC
               WHERE BUKRS    EQ P_BUKRS
               AND   STCSTP   IN S_STCSTP
               AND   WERKS    IN S_WERKS
               AND   PRODUCT  IN S_PROD
               AND   SHPPOINT IN S_SHP
               AND   SPMON    GE P_STRMTH
               AND   SPMON    LE V_ENDMTH.
    Filter the final version of the forecast data
      LOOP AT I_ZMY20WKFC.
        V_TABIX = SY-TABIX.
        SELECT SINGLE VERSN INTO V_VERSN FROM ZMY20FCVER
                            WHERE BUKRS EQ I_ZMY20WKFC-BUKRS
                            AND   STCSTP EQ I_ZMY20WKFC-STCSTP
                            AND   WERKS  EQ I_ZMY20WKFC-WERKS
                            AND   SPMON  EQ I_ZMY20WKFC-SPMON.
        IF I_ZMY20WKFC-VERSN EQ V_VERSN.
        ELSE.
          DELETE I_ZMY20WKFC INDEX V_TABIX.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " 2000_GET_FORECAST_DATA
    *&      Form  3000_GET_ORDER_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM 3000_GET_ORDER_DATA .
      REFRESH : I_VBAK, I_ORDER.
      CLEAR   : V_VKORG.
      SELECT SINGLE VKORG INTO V_VKORG FROM TVKO WHERE BUKRS EQ P_BUKRS.
      SELECT VBELN KUNNR INTO CORRESPONDING FIELDS OF TABLE I_VBAK FROM VBAK
             WHERE VKORG    EQ V_VKORG
             AND   AUART    EQ 'TA'              "Type OR
             AND   BUKRS_VF EQ P_BUKRS.
      SORT I_VBAK BY VBELN.
      LOOP AT I_VBAK.
        CLEAR : W_SHIPTO, W_SOLDCN, W_SHIPCN.
        SELECT SINGLE KUNNR INTO W_SHIPTO FROM VBPA WHERE VBELN EQ I_VBAK-VBELN
                                                    AND   PARVW EQ 'WE'.
        SELECT SINGLE LAND1 INTO W_SOLDCN FROM KNA1 WHERE KUNNR EQ I_VBAK-KUNNR.
        SELECT SINGLE LAND1 INTO W_SHIPCN FROM KNA1 WHERE KUNNR EQ W_SHIPTO.
        SELECT * FROM VBAP WHERE VBELN EQ I_VBAK-VBELN AND WERKS IN S_WERKS
                           AND   ABGRU EQ SPACE
                           AND   VSTEL IN S_SHP.
          CLEAR : W_PRODUCT.
          SELECT SINGLE PRODUCT INTO W_PRODUCT FROM ZMY20PROD WHERE SAPMATL EQ VBAP-MATNR.
          SELECT * FROM VBEP WHERE VBELN EQ I_VBAK-VBELN
                             AND   POSNR EQ VBAP-POSNR
                             AND   LDDAT GE V_STRDT1
                             AND   LDDAT LE V_ENDDT2
                             AND   WMENG GT 0.
            CLEAR : I_ORDER.
            MOVE I_VBAK-VBELN    TO I_ORDER-VBELN.
            MOVE I_VBAK-KUNNR    TO I_ORDER-KUNNR.
            MOVE W_SHIPTO        TO I_ORDER-SHIPTO.
            MOVE W_SOLDCN        TO I_ORDER-SOLDCN.
            MOVE VBAP-POSNR      TO I_ORDER-POSNR.
            MOVE VBAP-MATNR      TO I_ORDER-MATNR.
            MOVE VBAP-WERKS      TO I_ORDER-WERKS.
            MOVE VBAP-VSTEL      TO I_ORDER-VSTEL.
            MOVE W_PRODUCT       TO I_ORDER-PRODUCT.
            MOVE VBEP-ETENR      TO I_ORDER-ETENR.
            MOVE VBEP-LDDAT+0(6) TO I_ORDER-SPMON.
            MOVE VBEP-WMENG      TO I_ORDER-WMENG.
            MOVE VBEP-VRKME      TO I_ORDER-VRKME.
            MOVE VBEP-LDDAT      TO I_ORDER-LDDAT.
            CALL FUNCTION 'DATE_GET_WEEK'
              EXPORTING
                DATE = VBEP-LDDAT
              IMPORTING
                WEEK = I_ORDER-WEEK.
            READ TABLE I_SHIPTO WITH KEY SHIPTO = I_ORDER-SHIPTO.
            IF SY-SUBRC EQ 0.
              MOVE I_SHIPTO-CUSTOMER TO I_ORDER-STCSTP.
            ELSE.
              MOVE I_ORDER-SOLDCN    TO I_ORDER-STCSTP.
            ENDIF.
            IF W_SOLDCN = 'CN' OR W_SOLDCN = 'HK'.
              MOVE 'CN&HK' TO I_ORDER-STCSTP.
            ENDIF.
            IF I_ORDER-STCSTP IN S_STCSTP AND I_ORDER-PRODUCT IN S_PROD.
              APPEND I_ORDER.
            ENDIF.
          ENDSELECT.
        ENDSELECT.
      ENDLOOP.
    ENDFORM.                    " 3000_GET_ORDER_DATA
    *&      Form  4000_CONSOLIDATE_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM 4000_CONSOLIDATE_DATA .
      REFRESH : I_OUTPUT, I_PRDWISE.
      LOOP AT I_ZMY20WKFC.
        CLEAR : W_ORD01, W_ORD02, W_ORD03, W_ORD04, W_ORD05, W_ORD06,
                W_ORD07, W_ORD08, W_ORD09, W_ORD10, W_ORD11, W_ORD12,
                W_ORDT1, W_ORDT2.
        LOOP AT I_ORDER WHERE STCSTP  EQ I_ZMY20WKFC-STCSTP
                        AND   WERKS   EQ I_ZMY20WKFC-WERKS
                        AND   PRODUCT EQ I_ZMY20WKFC-PRODUCT
                        AND   SPMON   EQ I_ZMY20WKFC-SPMON.
    *BEGIN OF CHANGES BY FAIZAL ON 26/01/07 TR# BA3K987278
         IF I_ORDER-VSTEL CA I_ZMY20WKFC-SHPPOINT.
          IF I_ZMY20WKFC-SHPPOINT CS I_ORDER-VSTEL.
    *END OF CHANGES BY FAIZAL ON 26/01/2007 TR# BA3K987278
          ELSE.
            CONTINUE.
          ENDIF.
          IF I_ORDER-SPMON EQ P_STRMTH.
            IF     I_ORDER-WEEK EQ W_WKTBL01.
              W_ORD01 = W_ORD01 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL02.
              W_ORD02 = W_ORD02 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL03.
              W_ORD03 = W_ORD03 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL04.
              W_ORD04 = W_ORD04 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL05.
              W_ORD05 = W_ORD05 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL06.
              W_ORD06 = W_ORD06 + I_ORDER-WMENG.
            ENDIF.
            W_ORDT1  = W_ORDT1 + I_ORDER-WMENG.
          ELSE.
            IF I_ORDER-WEEK EQ W_WKTBL07.
              W_ORD07 = W_ORD07 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL08.
              W_ORD08 = W_ORD08 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL09.
              W_ORD09 = W_ORD09 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL10.
              W_ORD10 = W_ORD10 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL11.
              W_ORD11 = W_ORD11 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL12.
              W_ORD12 = W_ORD12 + I_ORDER-WMENG.
            ENDIF.
            W_ORDT2  = W_ORDT2 + I_ORDER-WMENG.
          ENDIF.
          MOVE 'X' TO I_ORDER-UPDFLG.
          MODIFY I_ORDER INDEX SY-TABIX.
        ENDLOOP.
        READ TABLE I_OUTPUT WITH KEY STCSTP   = I_ZMY20WKFC-STCSTP
                                     WERKS    = I_ZMY20WKFC-WERKS
                                     PRODUCT  = I_ZMY20WKFC-PRODUCT
                                     SHPPOINT = I_ZMY20WKFC-SHPPOINT.
        IF SY-SUBRC EQ 0.
          IF I_ZMY20WKFC-SPMON EQ P_STRMTH.
            MOVE I_ZMY20WKFC-QTY01  TO I_OUTPUT-QTY01.
            MOVE I_ZMY20WKFC-QTY02  TO I_OUTPUT-QTY02.
            MOVE I_ZMY20WKFC-QTY03  TO I_OUTPUT-QTY03.
            MOVE I_ZMY20WKFC-QTY04  TO I_OUTPUT-QTY04.
            MOVE I_ZMY20WKFC-QTY05  TO I_OUTPUT-QTY05.
            MOVE I_ZMY20WKFC-QTY06  TO I_OUTPUT-QTY06.
            MOVE I_ZMY20WKFC-TOTQTY TO I_OUTPUT-TOTFC1.
            MOVE W_ORD01          TO I_OUTPUT-ORD01.
            MOVE W_ORD02          TO I_OUTPUT-ORD02.
            MOVE W_ORD03          TO I_OUTPUT-ORD03.
            MOVE W_ORD04          TO I_OUTPUT-ORD04.
            MOVE W_ORD05          TO I_OUTPUT-ORD05.
            MOVE W_ORD06          TO I_OUTPUT-ORD06.
            MOVE W_ORDT1          TO I_OUTPUT-TOTORD1.
          ELSE.
            MOVE I_ZMY20WKFC-QTY01  TO I_OUTPUT-QTY07.
            MOVE I_ZMY20WKFC-QTY02  TO I_OUTPUT-QTY08.
            MOVE I_ZMY20WKFC-QTY03  TO I_OUTPUT-QTY09.
            MOVE I_ZMY20WKFC-QTY04  TO I_OUTPUT-QTY10.
            MOVE I_ZMY20WKFC-QTY05  TO I_OUTPUT-QTY11.
            MOVE I_ZMY20WKFC-QTY06  TO I_OUTPUT-QTY12.
            MOVE I_ZMY20WKFC-TOTQTY TO I_OUTPUT-TOTFC2.
            MOVE W_ORD07          TO I_OUTPUT-ORD07.
            MOVE W_ORD08          TO I_OUTPUT-ORD08.
            MOVE W_ORD09          TO I_OUTPUT-ORD09.
            MOVE W_ORD10          TO I_OUTPUT-ORD10.
            MOVE W_ORD11          TO I_OUTPUT-ORD11.
            MOVE W_ORD12          TO I_OUTPUT-ORD12.
            MOVE W_ORDT2          TO I_OUTPUT-TOTORD2.
          ENDIF.
          MODIFY I_OUTPUT INDEX SY-TABIX.
        ELSE.
          CLEAR : I_OUTPUT.
          MOVE I_ZMY20WKFC-STCSTP   TO I_OUTPUT-STCSTP.
          MOVE I_ZMY20WKFC-WERKS    TO I_OUTPUT-WERKS.
          MOVE I_ZMY20WKFC-PRODUCT  TO I_OUTPUT-PRODUCT.
          MOVE I_ZMY20WKFC-SHPPOINT TO I_OUTPUT-SHPPOINT.
          IF I_ZMY20WKFC-SPMON EQ P_STRMTH.
            MOVE I_ZMY20WKFC-QTY01  TO I_OUTPUT-QTY01.
            MOVE I_ZMY20WKFC-QTY02  TO I_OUTPUT-QTY02.
            MOVE I_ZMY20WKFC-QTY03  TO I_OUTPUT-QTY03.
            MOVE I_ZMY20WKFC-QTY04  TO I_OUTPUT-QTY04.
            MOVE I_ZMY20WKFC-QTY05  TO I_OUTPUT-QTY05.
            MOVE I_ZMY20WKFC-QTY06  TO I_OUTPUT-QTY06.
            MOVE I_ZMY20WKFC-TOTQTY TO I_OUTPUT-TOTFC1.
            MOVE W_ORD01          TO I_OUTPUT-ORD01.
            MOVE W_ORD02          TO I_OUTPUT-ORD02.
            MOVE W_ORD03          TO I_OUTPUT-ORD03.
            MOVE W_ORD04          TO I_OUTPUT-ORD04.
            MOVE W_ORD05          TO I_OUTPUT-ORD05.
            MOVE W_ORD06          TO I_OUTPUT-ORD06.
            MOVE W_ORDT1          TO I_OUTPUT-TOTORD1.
          ELSE.
            MOVE I_ZMY20WKFC-QTY01  TO I_OUTPUT-QTY07.
            MOVE I_ZMY20WKFC-QTY02  TO I_OUTPUT-QTY08.
            MOVE I_ZMY20WKFC-QTY03  TO I_OUTPUT-QTY09.
            MOVE I_ZMY20WKFC-QTY04  TO I_OUTPUT-QTY10.
            MOVE I_ZMY20WKFC-QTY05  TO I_OUTPUT-QTY11.
            MOVE I_ZMY20WKFC-QTY06  TO I_OUTPUT-QTY12.
            MOVE I_ZMY20WKFC-TOTQTY TO I_OUTPUT-TOTFC2.
            MOVE W_ORD07          TO I_OUTPUT-ORD07.
            MOVE W_ORD08          TO I_OUTPUT-ORD08.
            MOVE W_ORD09          TO I_OUTPUT-ORD09.
            MOVE W_ORD10          TO I_OUTPUT-ORD10.
            MOVE W_ORD11          TO I_OUTPUT-ORD11.
            MOVE W_ORD12          TO I_OUTPUT-ORD12.
            MOVE W_ORDT2          TO I_OUTPUT-TOTORD2.
          ENDIF.
          APPEND I_OUTPUT.
        ENDIF.
      ENDLOOP.
    Process the Order data which Forecast not available
      LOOP AT I_ORDER WHERE UPDFLG NE 'X'.
        READ TABLE I_OUTPUT WITH KEY STCSTP   = I_ORDER-STCSTP
                                     WERKS    = I_ORDER-WERKS
                                     PRODUCT  = I_ORDER-PRODUCT
                                     SHPPOINT = I_ORDER-VSTEL.
        IF SY-SUBRC EQ 0.
          IF I_ORDER-SPMON EQ P_STRMTH.
            IF     I_ORDER-WEEK EQ W_WKTBL01.
              I_OUTPUT-ORD01 = I_OUTPUT-ORD01 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL02.
              I_OUTPUT-ORD02 = I_OUTPUT-ORD02 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL03.
              I_OUTPUT-ORD03 = I_OUTPUT-ORD03 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL04.
              I_OUTPUT-ORD04 = I_OUTPUT-ORD04 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL05.
              I_OUTPUT-ORD05 = I_OUTPUT-ORD05 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL06.
              I_OUTPUT-ORD06 = I_OUTPUT-ORD06 + I_ORDER-WMENG.
            ENDIF.
            I_OUTPUT-TOTORD1  = I_OUTPUT-TOTORD1 + I_ORDER-WMENG.
          ELSE.
            IF     I_ORDER-WEEK EQ W_WKTBL07.
              I_OUTPUT-ORD07 = I_OUTPUT-ORD07 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL08.
              I_OUTPUT-ORD08 = I_OUTPUT-ORD08 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL09.
              I_OUTPUT-ORD09 = I_OUTPUT-ORD09 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL10.
              I_OUTPUT-ORD10 = I_OUTPUT-ORD10 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL11.
              I_OUTPUT-ORD11 = I_OUTPUT-ORD11 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL12.
              I_OUTPUT-ORD12 = I_OUTPUT-ORD12 + I_ORDER-WMENG.
            ENDIF.
            I_OUTPUT-TOTORD2  = I_OUTPUT-TOTORD2 + I_ORDER-WMENG.
          ENDIF.
          MODIFY I_OUTPUT INDEX SY-TABIX.
        ELSE.
          CLEAR : I_OUTPUT.
          MOVE I_ORDER-STCSTP   TO I_OUTPUT-STCSTP.
          MOVE I_ORDER-WERKS    TO I_OUTPUT-WERKS.
          MOVE I_ORDER-PRODUCT  TO I_OUTPUT-PRODUCT.
          MOVE I_ORDER-VSTEL    TO I_OUTPUT-SHPPOINT.
          IF I_ORDER-SPMON EQ P_STRMTH.
            IF     I_ORDER-WEEK EQ W_WKTBL01.
              I_OUTPUT-ORD01 = I_OUTPUT-ORD01 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL02.
              I_OUTPUT-ORD02 = I_OUTPUT-ORD02 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL03.
              I_OUTPUT-ORD03 = I_OUTPUT-ORD03 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL04.
              I_OUTPUT-ORD04 = I_OUTPUT-ORD04 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL05.
              I_OUTPUT-ORD05 = I_OUTPUT-ORD05 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL06.
              I_OUTPUT-ORD06 = I_OUTPUT-ORD06 + I_ORDER-WMENG.
            ENDIF.
            I_OUTPUT-TOTORD1  = I_OUTPUT-TOTORD1 + I_ORDER-WMENG.
          ELSE.
            IF     I_ORDER-WEEK EQ W_WKTBL07.
              I_OUTPUT-ORD07 = I_OUTPUT-ORD07 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL08.
              I_OUTPUT-ORD08 = I_OUTPUT-ORD08 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL09.
              I_OUTPUT-ORD09 = I_OUTPUT-ORD09 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL10.
              I_OUTPUT-ORD10 = I_OUTPUT-ORD10 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL11.
              I_OUTPUT-ORD11 = I_OUTPUT-ORD11 + I_ORDER-WMENG.
            ELSEIF I_ORDER-WEEK EQ W_WKTBL12.
              I_OUTPUT-ORD12 = I_OUTPUT-ORD12 + I_ORDER-WMENG.
            ENDIF.
            I_OUTPUT-TOTORD2  = I_OUTPUT-TOTORD2 + I_ORDER-WMENG.
          ENDIF.
          APPEND I_OUTPUT.
        ENDIF.
      ENDLOOP.
    Convert the Order Qty from KG to MT and calculate the %
      LOOP AT I_OUTPUT.
        V_TABIX = SY-TABIX.
        SELECT SINGLE MAKTX INTO I_OUTPUT-MAKTX FROM ZMY20PROD WHERE PRODUCT EQ I_OUTPUT-PRODUCT.
        I_OUTPUT-ORD01   = I_OUTPUT-ORD01 / 1000.
        I_OUTPUT-ORD02   = I_OUTPUT-ORD02 / 1000.
        I_OUTPUT-ORD03   = I_OUTPUT-ORD03 / 1000.
        I_OUTPUT-ORD04   = I_OUTPUT-ORD04 / 1000.
        I_OUTPUT-ORD05   = I_OUTPUT-ORD05 / 1000.
        I_OUTPUT-ORD06   = I_OUTPUT-ORD06 / 1000.
        I_OUTPUT-ORD07   = I_OUTPUT-ORD07 / 1000.
        I_OUTPUT-ORD08   = I_OUTPUT-ORD08 / 1000.
        I_OUTPUT-ORD09   = I_OUTPUT-ORD09 / 1000.
        I_OUTPUT-ORD10   = I_OUTPUT-ORD10 / 1000.
        I_OUTPUT-ORD11   = I_OUTPUT-ORD11 / 1000.
        I_OUTPUT-ORD12   = I_OUTPUT-ORD12 / 1000.
        I_OUTPUT-TOTORD1 = I_OUTPUT-TOTORD1 / 1000.
        I_OUTPUT-TOTORD2 = I_OUTPUT-TOTORD2 / 1000.
        IF I_OUTPUT-TOTFC1 GT 0.
          I_OUTPUT-FCORD1 = I_OUTPUT-TOTORD1 / I_OUTPUT-TOTFC1 * 100.
        ENDIF.
        IF I_OUTPUT-TOTFC2 GT 0.
          I_OUTPUT-FCORD2 = I_OUTPUT-TOTORD2 / I_OUTPUT-TOTFC2 * 100.
        ENDIF.
        MOVE '1'   TO I_OUTPUT-SORTKEY.
        SELECT SINGLE * FROM ZMY20GP WHERE ZZKEY1 EQ 'ZMY20FCUP'
                                              AND   ZZKEY2 EQ I_OUTPUT-STCSTP
                                              AND   ZZKEY3 EQ 'SHIPTOCUST'.
        IF SY-SUBRC EQ 0.
          MOVE '2' TO I_OUTPUT-SORTKEY.
        ENDIF.
        MODIFY I_OUTPUT INDEX SY-TABIX.
      ENDLOOP.
      LOOP AT I_OUTPUT.
        READ TABLE I_PRDWISE WITH KEY SORTKEY = I_OUTPUT-SORTKEY
                                      STCSTP  = I_OUTPUT-STCSTP
                                      PRODUCT = I_OUTPUT-PRODUCT.
        IF SY-SUBRC EQ 0.
          I_PRDWISE-TOTFC1  = I_PRDWISE-TOTFC1  + I_OUTPUT-TOTFC1.
          I_PRDWISE-TOTORD1 = I_PRDWISE-TOTORD1 + I_OUTPUT-TOTORD1.
          I_PRDWISE-TOTFC2  = I_PRDWISE-TOTFC2  + I_OUTPUT-TOTFC2.
          I_PRDWISE-TOTORD2 = I_PRDWISE-TOTORD2 + I_OUTPUT-TOTORD2.
          MODIFY I_PRDWISE INDEX SY-TABIX.
        ELSE.
          CLEAR : I_PRDWISE.
          MOVE I_OUTPUT-SORTKEY TO I_PRDWISE-SORTKEY.
          MOVE I_OUTPUT-STCSTP  TO I_PRDWISE-STCSTP.
          MOVE I_OUTPUT-PRODUCT TO I_PRDWISE-PRODUCT.
          MOVE I_OUTPUT-MAKTX   TO I_PRDWISE-MAKTX.
          I_PRDWISE-TOTFC1  = I_PRDWISE-TOTFC1  + I_OUTPUT-TOTFC1.
          I_PRDWISE-TOTORD1 = I_PRDWISE-TOTORD1 + I_OUTPUT-TOTORD1.
          I_PRDWISE-TOTFC2  = I_PRDWISE-TOTFC2  + I_OUTPUT-TOTFC2.
          I_PRDWISE-TOTORD2 = I_PRDWISE-TOTORD2 + I_OUTPUT-TOTORD2.
          APPEND I_PRDWISE.
        ENDIF.
      ENDLOOP.
      LOOP AT I_PRDWISE.
        IF I_PRDWISE-TOTFC1 GT 0.
          I_PRDWISE-FCORD1 = I_PRDWISE-TOTORD1 / I_PRDWISE-TOTFC1 * 100.
        ENDIF.
        IF I_PRDWISE-TOTFC2 GT 0.
          I_PRDWISE-FCORD2 = I_PRDWISE-TOTORD2 / I_PRDWISE-TOTFC2 * 100.
        ENDIF.
        I_PRDWISE-DIFF1 = I_PRDWISE-TOTORD1 - I_PRDWISE-TOTFC1.
        I_PRDWISE-DIFF2 = I_PRDWISE-TOTORD2 - I_PRDWISE-TOTFC2.
        MODIFY I_PRDWISE INDEX SY-TABIX.
      ENDLOOP.
      SORT I_OUTPUT BY SORTKEY STCSTP WERKS PRODUCT.
    Begin of Changes by Karthikeyan on 09/03/2007 - Req No -BA3K988704
    SORT I_PRDWISE BY SORTKEY STCSTP PRODUCT.
      SORT I_PRDWISE BY PRODUCT STCSTP.
    End of Changes by Karthikeyan on 09/03/2007 - Req No -BA3K988704
      IF P_ZERO = 'X'.
        DELETE I_OUTPUT  WHERE TOTFC1  EQ 0
                         AND   TOTORD1 EQ 0
                         AND   TOTFC2  EQ 0
                         AND   TOTORD2 EQ 0.
        DELETE I_PRDWISE WHERE TOTFC1  EQ 0
                         AND   TOTORD1 EQ 0
                         AND   TOTFC2  EQ 0
                         AND   TOTORD2 EQ 0.
      ENDIF.
    Set Cell colour for Remark entries
      LOOP AT I_OUTPUT.
        V_TABIX = SY-TABIX.
        SELECT * FROM ZMY20RMRK  WHERE BUKRS    EQ P_BUKRS
                               AND   STCSTP   EQ I_OUTPUT-STCSTP
                               AND   WERKS    EQ I_OUTPUT-WERKS
                               AND   SHPPOINT EQ I_OUTPUT-SHPPOINT
                               AND   PRODUCT  EQ I_OUTPUT-PRODUCT.
          CLEAR : V_FNAME.
          IF ZMY20RMRK-SPMON = P_STRMTH.
            READ TABLE I_WEEKS WITH KEY WEEKS = ZMY20RMRK-WEEK
                                        MONTH = P_STRMTH+4(2).
            IF     I_WEEKS-SLNO = '1'.
              IF ZMY20RMRK-FC_ORDER = 'FC'.
                MOVE 'QTY01' TO V_FNAME.
              ELSE.
                MOVE 'ORD01' TO V_FNAME.
              ENDIF.
            ELSEIF I_WEEKS-SLNO = '2'.
              IF ZMY20RMRK-FC_ORDER = 'FC'.
                MOVE 'QTY02' TO V_FNAME.
              ELSE.
                MOVE 'ORD02' TO V_FNAME.
              ENDIF.
            ELSEIF I_WEEKS-SLNO = '3'.
              IF ZMY20RMRK-FC_ORDER = 'FC'.
                MOVE 'QTY03' TO V_FNAME.
              ELSE.
                MOVE 'ORD03' TO V_FNAME.
              ENDIF.
            ELSEIF I_WEEKS-SLNO = '4'.
              IF ZMY20RMRK-FC_ORDER = 'FC'.
                MOVE 'QTY04' TO V_FNAME.
              ELSE.
                MOVE 'ORD04' TO V_FNAME.
              ENDIF.
            ELSEIF I_WEEKS-SLNO = '5'.
              IF ZMY20RMRK-FC_ORDER = 'FC'.
                MOVE 'QTY05' TO V_FNAME.
              ELSE.
                MOVE 'ORD05' TO V_FNAME.
              ENDIF.
            ELSEIF I_WEEKS-SLNO = '6'.
              IF ZMY20RMRK-FC_ORDER = 'FC'.
                MOVE 'QTY06' TO V_FNAME.
              ELSE.
                MOVE 'ORD06' TO V_FNAME.
              ENDIF.
            ENDIF.
          ELSEIF ZMY20RMRK-SPMON = V_ENDMTH.
            READ TABLE I_WEEKS WITH KEY WEEKS = ZMY20RMRK-WEEK
                                        MONTH = V_ENDMTH+4(2).
            IF     I_WEEKS-SLNO = '7'.
              IF ZMY20RMRK-FC_ORDER = 'FC'.
                MOVE 'QTY07' TO V_FNAME.
              ELSE.
                MOVE 'ORD07' TO V_FNAME.
              ENDIF.
            ELSEIF I_WEEKS-SLNO = '8'.
              IF ZMY20RMRK-FC_ORDER = 'FC'.
                MOVE 'QTY08' TO V_FNAME.
              ELSE.
                MOVE 'ORD08' TO V_FNAME.
              ENDIF.
            ELSEIF I_WEEKS-SLNO = '9'.
              IF ZMY20RMRK-FC_ORDER = 'FC'.
                MOVE 'QTY09' TO V_FNAME.
              ELSE.
                MOVE 'ORD09' TO V_FNAME.
              ENDIF.
            ELSEIF I_WEEKS-SLNO = '10'.
              IF ZMY20RMRK-FC_ORDER = 'FC'.
                MOVE 'QTY10' TO V_FNAME.
              ELSE.
                MOVE 'ORD10' TO V_FNAME.
              ENDIF.
            ELSEIF I_WEEKS-SLNO = '11'.
              IF ZMY20RMRK-FC_ORDER = 'FC'.
                MOVE 'QTY11' TO V_FNAME.
              ELSE.
                MOVE 'ORD11' TO V_FNAME.
              ENDIF.
            ELSEIF I_WEEKS-SLNO = '12'.
              IF ZMY20RMRK-FC_ORDER = 'FC'.
                MOVE 'QTY12' TO V_FNAME.
              ELSE.
                MOVE 'ORD12' TO V_FNAME.
              ENDIF.
            ENDIF.
          ENDIF.
          IF V_FNAME NE SPACE.
            PERFORM ALV_COLOR USING V_FNAME 6 0 0 CHANGING I_OUTPUT-CELLCOLOR.
          ENDIF.
        ENDSELECT.
        MODIFY I_OUTPUT INDEX V_TABIX.
      ENDLOOP.
    ENDFORM.                    " 4000_CONSOLIDATE_DATA
    *&      Form  f4_help_stcstp
          text
    -->  p1        text
    <--  p2        text
    FORM F4_HELP_STCSTP.
    *Initialize screen values
      DATA: PROGNAME LIKE SY-REPID,
            DYNNUM   LIKE SY-DYNNR.
      PROGNAME = SY-REPID.
      DYNNUM   = SY-DYNNR.
      CLEAR   : T_STCP.
      REFRESH : T_STCP.
      SELECT * FROM  T005 WHERE LAND1 NE SPACE.
        CLEAR : T_STCP.
        MOVE T005-LAND1 TO T_STCP-STCSTP.
        MOVE '1'        TO T_STCP-SORTKEY.
        APPEND T_STCP.
      ENDSELECT.
      SELECT * FROM ZMY20GP WHERE ZZKEY1 = 'ZMY20FCUP'
                                     AND   ZZKEY3 = 'SHIPTOCUST'.
        CLEAR : T_STCP.
        MOVE ZMY20GP-ZZKEY2 TO T_STCP-STCSTP.
        MOVE '2'        TO T_STCP-SORTKEY.
        APPEND T_STCP.
      ENDSELECT.
      SORT T_STCP BY SORTKEY STCSTP.
      DELETE ADJACENT DUPLICATES FROM T_STCP COMPARING SORTKEY STCSTP.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD    = 'STCSTP'
          DYNPPROG    = PROGNAME
          DYNPNR      = DYNNUM
          DYNPROFIELD = 'S_STCSTP'
          VALUE_ORG   = 'S'
        TABLES
          VALUE_TAB   = T_STCP.
    ENDFORM.                    " f4_help_stcstp
    *&      Form  f4_help_product
          text
    -->  p1        text
    <--  p2        text
    FORM F4_HELP_PRODUCT.
    *Initialize screen values
      DATA: PROGNAME LIKE SY-REPID,
            DYNNUM   LIKE SY-DYNNR.
      PROGNAME = SY-REPID.
      DYNNUM   = SY-DYNNR.
      CLEAR   : T_PROD.
      REFRESH : T_PROD.
      SELECT * INTO CORRESPONDING FIELDS OF TABLE T_PROD FROM ZMY20PROD
                                             WHERE PRODUCT NE SPACE.
      SORT T_PROD BY PRODUCT.
      DELETE ADJACENT DUPLICATES FROM T_PROD COMPARING PRODUCT.

    in st pf-status place the FCT code below the icon
    for save - SAVE.
    reward if useful.

  • File Type Icons Not Working

    Hey everyone, the issue I'm haveing is not just with Photoshop, but sense I couldnt find a general CS5 forum, and Photoshop was the last CS5 application I noticed this for I'm hoping to find some answers here.
    So on to the issue....
    I have noticed that on other computers (Macs for sure) that Illustrator, Photoshop, Dreamweaver etc... are set as the default handlers of certain file types that are associated with each application, and as such, give each filetype there own little icons reflecting such. (see screenshot)
    However on my system (Windows 7 Ultimate x64) this does not seem to be the case. I can go in and set them as default manually, which I have done for the filetypes I use most frequently, but I do not get to enjoy the nice icons that are made for each filetype, i just get a bland, default icon that is the same for every filetype.
    As you can see, some of the file icons are working just fine (the .ai, .eps and .php) but the files I have had to set manually (.html and .psd) give me the default windows association icon that is simply the applications icon on top of a blank file. To clear up any confusion as to what icons I'm talking about, the icons in the "Change Icon" menu are the ones that should be shown, but are not.
    Is there a way to fix this issue?
    Thanks for you help.

    This may help. not sure.
    http://www.sevenforums.com/customization/69163-changing-icons-image-files-jpg-png.html

  • PDFMaker icon not working in Acrobat Pro 8.3.1.

    I am using  OS Windows XP Home and Microsoft Office 2003.
    I generally use the work around of "Print". Annoying that I cannot use the PDFMaker icon in any Microsoft products. It use to work flawlessly. I keep getting the annoying message "The acrobat pdfmaker server could not be loaded". I have found solutions regarding modifying registry key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\AcroDist.exe"
    Since I do not have a folder that specifically says Distillr, I modified the default key to C:\Program Files\Adobe\Acrobat 8.0\Acrobat\acrodist.exe and Path to C:\Program Files\Adobe\Acrobat 8.0\Acrobat\.
    Did not work.
    Anyone out there know how to repair??? The Acrobat "Repair" procedure is really not working for me.
    Thanks.

    Gernal_USA,
    I'm moving your question to the Acrobat forum, since it does not relate to the CreatePDF service.
    Dave

  • Scrollup and down icons not working in ALV. Please help!

    Hi Experts,
           I have a ALV webdynpro ABAP report. I have to show only fixed no of rows.
           But the scrollup and scroll down icons in the ALV (^) not working when I use subtotal (aggregation).
           Interestingly scrolling works perfectly if I remove my subtotal code.  
           My subtotal code is like this:
    *...Sort PRODUCT and group it for subtotal
    *lr_field_settings ?= l_value.
    *lr_field = lr_field_settings->get_field( 'PRODUCT' ).
    *lr_field->if_salv_wd_sort~set_group_aggregation_allowed( ABAP_TRUE ).
    *lr_field->if_salv_wd_sort~create_sort_rule( ).
    *l_sortrule = lr_field->if_salv_wd_sort~GET_SORT_RULE(  ).
    *l_sortrule->set_sort_order( if_salv_wd_c_sort=>sort_order_ascending ).
    *l_sortrule->set_group_aggregation( ABAP_TRUE ).
    **...Aggregate Field QTY
    *lr_field = lr_field_settings->get_field( 'QTY' ).
    *lr_field->if_salv_wd_aggr~create_aggr_rule( ).
    *lr_aggr_rule = lr_field->if_salv_wd_aggr~get_aggr_rule(  ).
    *lr_aggr_rule->set_aggregation_type( if_salv_wd_c_aggregation=>aggrtype_total ).
    **lr_field_settings ?= l_value.
    **lr_field_settings->set_group_aggr_displayed( abap_true ).
           One more thing, In addition to subtotal it also shows grand total in the end. Is this the normal feature or my code for subtotal is wrong?
           So what could be the problem?
           Any sample code will be really helpfull. Please help!
    Thanks
    Gopal
    Message was edited by:
            gopalkrishna baliga

    Hi Gopal,
    Please try to build the effect you commented out in the settings of the ALV. You can save it as a special layout. If scrolling works then, you should check which part of your coding leads to the problem and possibly correct it.
    If this is not possible, just create an OSS message.
    Ciao, Regina

  • Icons not working on Palm Z22

    The icons are not working on my Palm Z 22. I have performed both a soft reset and hard reset to no avail.  What next?

    theresajane wrote:
    After  performing the hard reset, the screen is asking that I "tap the center of the target".  The target does not respond to my tap.  Before I did the hard reset, none of the icons responded nor did the 5-way button allow me to move around.  I'm wondering if I should bury this PDA and move on?
    Certainly seems like its best days are over...  
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Rollover links not working

    i'm a newbie to DW3 (not 4) and I'm constructing my first site. I've used the insert rollover dialog box to place the initial link graphic and then the one to be seen in rollover state. I've chek'd "preload rollover image" and pointed the URL to the proper file inside my site folder. There are 7 of these rollover instances, 2 work and 5 don't yet they're all constructed the same way at the same time! When I don't use the rollover technique and just add one graphic as a link they all work fine!
    I've deleted all the rollovers and completely reconstructed the page's rollovers and still the same result on the same rollovers.
    Does anyone have any suggestions?
    Thanks,
    Tony

    Hi Tony,
    The answer, as always, is in your code.  Can you upload your page and dependant files to remote server and post a URL here so we can see what have done so far?
    My best guess without seeing your code is that you have applied the rollover states to something other than links????  Or you have some other mal-formed code somewhere in your page that is tripping you up.
    Use the on-line validation tools below my sig to check your code and fix any reported errors.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics |  Print | Media Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    HTML Validator - http://validator.w3.org
    CSS Validator - http://jigsaw.w3.org/css-validator/
    FREE HTML & CSS Tutorials  - http://w3schools.com/

  • App store icon not working--how can I download app store...tried the process as described on the Mac page...didn't find the update or download.

    My app store icon is not working. Went to Mac page of Apple store to find a new download for it and the process didn't work. No new downloads found.
    Any ideas ?

    Hi James...
    The only way to reinstall the App Store is by downloadiing and installing the Mac OS X 10.6.8 Update Combo
    Restart your Mac after the update is installed. It's ok to do this even though you are already running v10.6.8.

  • Rollover css not working in cs4

    Hi
    I like to putz around with websites etc but I am building a very simple site, probably unorthadox but anyway I can't figure out why the rollovers in the nav are not working. I want them to change to an "orange" color on rollover and active and all the settings seem to be right and not being a code expert the code seems to indicate that is how it is set but can't figure out why they don't change color on the hover.
    the root to the site is
    www.allkindzatreasures.com
    I am not really sure how these forums work and if the pros can get the source code or not, if you need more info let me know.
    Thanks for any advice anyone cares to give.

    UPDATE: For the sake of any other "putzers" who might be looking on, I made a small change in the design view and then saved the template file and then it asked me to update all the pages, I did and seems to be working now. Thanks again.
    Cool but not out of the woods yet
    I changed the code in the template and when i save it and preview it it works the way I want,
    however after saving changes it does not ask me to update all the pages based on that template and none of the other pages have the new code, do you have any thoughts on that?
    I don't know if this is what you want but I'll copy and paste the code for the master below.
    <!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" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title></title>
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    body {
        background-image: url(../www/images/pg_bkg_1.jpg);
        background-repeat: repeat;
    .cellbkg {
        background-image: url(../www/images/landpg_bkg_1000x700.jpg);
        font-size: medium;
        font-weight: bold;
        background-repeat: no-repeat;
    .cellbkg td div table {
        color: #7A8C90;
        font-size: large;
        background-color: #FFC;
    .cellbkg td {
        background-image: url(../www/images/gen_list_bkg.jpg);
        background-repeat: repeat;
    -->
    </style>
    <link href="../www/css1.css" rel="stylesheet" type="text/css" /><style type="text/css">
    <!--
    a {
        text-decoration: none;
        color: #869598;
    a:visited {
        color: #839194;
    a:hover {
        color: #F90;
        text-decoration: underline;
    body,td,th {
        font-family: Georgia, Times New Roman, Times, serif;
        color: #717C7E;
    .headings {
        font-size: larger;
        color: #717F80;
    .price {
        font-weight: bold;
    .title {
        font-size: 36px;
    .title strong {
        color: #717C7E;
    .nav {
        font-family: Tahoma, Geneva, sans-serif;
    .nav {
        font-weight: bold;
    .nav {
        color: #717C7E;
    .smnav {
        font-size: xx-small;
    .nav {
        color: #AEBAB8;
    .smnav td {
        color: #728081;
    .xsmallnav {
        font-size: x-small;
    .blktype {
        font-family: Arial, Helvetica, sans-serif;
    -->
    </style>
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body text="#717C7E" link="#717C7E" vlink="#FFFFFF" alink="#717C7E">
    <table width="1000" border="7" align="center" cellpadding="4" cellspacing="2" class="blktype">
      <tr>
        <td colspan="4" bgcolor="#FFFFFF"><img src="../www/images/gen_banner_top.jpg" width="994" height="276" border="0" usemap="#Map" /></td>
      </tr>
      <tr>
        <td height="100" colspan="4" valign="middle" bgcolor="#FFFFFF"><blockquote>
          <table width="911" height="85" border="0" align="center" cellpadding="2" cellspacing="1">
            <!-- TemplateBeginEditable name="EditRegion5" -->
            <tr>
              <td height="47" colspan="5" valign="top" nowrap="nowrap"><span class="title"><strong>ART &amp; DECOR</strong></span></td>
              <td width="53" valign="top" nowrap="nowrap"> </td>
              <td colspan="2" nowrap="nowrap"> </td>
              <td width="34" nowrap="nowrap"> </td>
              <td colspan="3" align="right" nowrap="nowrap" class="nav"><a href="../www/aboutus.html">About Us</a></td>
              <td width="98" align="right" nowrap="nowrap" class="nav"><a href="../www/contact.html">Contact</a></td>
            </tr>
            <!-- TemplateEndEditable -->
            <tr align="center" class="xsmallnav" style="color: #748484; font-size: 12px; font-family: 'Courier New', Courier, monospace;">
              <td width="157" nowrap="nowrap"><a href="../www/antiques.html">Antiques /Collectables</a></td>
              <td width="68" nowrap="nowrap"><a href="../www/art.html">Art/Decor</a></td>
              <td width="61" nowrap="nowrap"><a href="../www/household.html">Household</a></td>
              <td width="75" nowrap="nowrap"><a href="../www/elect.html">Electronics</a></td>
              <td width="51" nowrap="nowrap"><a href="../www/clothes.html">Clothes</a></td>
              <td nowrap="nowrap"><a href="../www/jewelry.html">Jewelry</a></td>
              <td width="37" nowrap="nowrap"><a href="../www/photo.html">Photo</a></td>
              <td width="40" nowrap="nowrap"><a href="../www/books.html">Books</a></td>
              <td nowrap="nowrap"><a href="../www/toys.html">Toys</a></td>
              <td width="70" nowrap="nowrap"><a href="../www/new.html">Brand New</a></td>
              <td width="102" nowrap="nowrap"><a href="../www/trash.html">One man's trash</a></td>
              <td colspan="2" nowrap="nowrap"><a href="../www/evelse.html">Everything Else</a></td>
              </tr>
          </table>
        </blockquote></td>
      </tr>
      <!-- TemplateBeginEditable name="EditRegion4" -->
      <tr bgcolor="#B7C5C5" style="color: #006; font-size: small;">
        <td>  </td>
        <td> </td>
        <td> </td>
        <td height="250"> </td>
      </tr>
      <tr>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td height="250" bgcolor="#FFFFFF"> </td>
      </tr>
      <tr>
        <td bgcolor="#B7C5C5"> </td>
        <td bgcolor="#B7C5C5"> </td>
        <td bgcolor="#B7C5C5"> </td>
        <td height="250" bgcolor="#B7C5C5"> </td>
      </tr>
      <tr>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td height="250" bgcolor="#FFFFFF"> </td>
      </tr>
      <tr bgcolor="#B7C5C5">
        <td> </td>
        <td> </td>
        <td> </td>
        <td height="250"> </td>
      </tr>
      <tr>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td height="250" bgcolor="#FFFFFF"> </td>
      </tr>
      <tr bgcolor="#B7C5C5">
        <td> </td>
        <td> </td>
        <td> </td>
        <td height="250"> </td>
      </tr>
      <tr>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td height="250" bgcolor="#FFFFFF"> </td>
      </tr>
      <tr bgcolor="#B7C5C5">
        <td> </td>
        <td> </td>
        <td> </td>
        <td height="250"> </td>
      </tr>
      <tr>
        <td width="128" bgcolor="#FFFFFF"> </td>
        <td width="406" bgcolor="#FFFFFF"> </td>
        <td width="250" bgcolor="#FFFFFF"> </td>
        <td width="204" height="250" bgcolor="#FFFFFF"> </td>
      </tr>
      <!-- TemplateEndEditable -->
    </table>
    <map name="Map" id="Map">
      <area shape="rect" coords="518,79,925,255" href="../www/index.html" alt="back home" />
    </map>
    </body>
    </html>

  • HELP-Rollover image not working

    I am having problems with the rollover image on my index page @ edzayi.com.  While the rollover images work fine on the rest of my pages it is not working on this particular page.  I have checked the code on different pages and compared it to my index page and although everything looks the same, it is still not working.  HELP!!!!

    eddem wrote:
    Thanks so much Nadia.  It was a matter of moving the meta script.  You are the best!!  Now it works the way I intended it to: www.edzayi.com
    You're welcome  :-)
    And yes, the right alignment was intentional.
    Does look a little strange though  - would look much better centered (personal opinion of course)     ;-)
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://twitter.com/nadiap
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/

  • Project Plan icon not working

    The little icon found on the left that allows you to access your project plan is not working for one of my project managers, who is the owner of that specific project. However in the Admin's view they are able to access it by clicking that button.
    Any thoughts why?

    Hi EPM Admin,
    The issue occurs only for 1 PM? Is the icon working for this PM with another view? Can the PM try on another machine? When you say that it doesn't work, do you have any error message or just nothing happens? Have you tried refreshing IE deleting the cache
    (press CTRL F5)?
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • IPhone App - Gear icon not working

    We have an multi-folio (Enterprise) app that is built for iPad and iPhone. The iPad version seems to be working properly, but in the iPhone version, the Gear icon is not working. I didn't see anything in the App Builder that would negate that from working.
    Am I missing something?
    Thanks.
    Damon

    When you tap the gear icon in your iPad app, which options do you see? If you just see "Remove Issues from iPad," it makes sense that the gear icon is empty on the iPhone app—you swipe from right to left in the iPhone library to remove downloaded folios.
    But if you see options such as "Privacy Policy" or "Restore All Purchases" in the iPad but not on the iPhone, that's a different issue.

  • 8500 A909g setup icon not working

    Can anyone help?
    I have the above printer and recently I have been unable to access the setup screen via the touch screen (spanner icon) all the lower section works i.e. copy, scan etc. and if I do a partial reset all other toch buttons work, the only items that do not work are the 3 at the top of the screen next to the data and time i.e. spanner, cartridge and ? icons. anyone know a solution or is the touch screen pad U/S, thanks Jbradders

    Hi @Jbradders 
    I just sent you a private message. If you are not sure how to check your forum messages this post, has instructions.
    Thank you,
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Image and Text rollover together not working

    Hi,
    I am trying to make a simple image thumbnail rollover with a text rollover at the same time. I would like to have the text able to be linked to different areas of my site to the image which is underneath. However I need to have the text cover the whole image area so that it recognises the rollover.
    I have done my best to make it work in various ways with different effects but not the way I want it.
    Here is the page that has the attempts at what I want.
    http://studiotrulytruly02.businesscatalyst.com/design.html
    The first one on the left works but I cannot keep the text in the same place on rollover.
    The second I have pinned the text box to hold it there but it will not allow the image to have rollover as well.  Also pinning does not work as it means when you scroll down the buttons stay there.
    The third one works but there is an invisible button above text buttons that is aligned with them and taking you to the wrong place. 
    What is the correct way to do this?

    can you check if ur facetime and imessage has complete the activation?
    your current SIM card provides you with international sms function?
    if not maybe u can try with a diff SIM?

  • Rollover states not working when published online. Suggestions?

    I have created rollover states for image navigation. Works great in preview. Works great when published to desktop. I have uploaded to FTP site. Some of the rollovers work, others do not.? I have replaced and re-uploaded, still not working. The normal and active states all work, but the rollover state vanishes. The images are in the image folder. The css pages do have the code to swap the images. Same issue in Chrome, Safari, Firefox, and on ipad.
    What am I missing? Thank you for your help!

    What's the URL?

Maybe you are looking for

  • Urgent Quicktime Download Issue

    I have bought the full version of Quicktime and have it installed. I have downloaded an avi file (Xvid.PDTV [Ramp]) but it isn't showing any picture or playing any audio. Quicktime pointed me to the page that shows additional downloads but I'm not su

  • Printing with JSP

    When I try to print with <%=%> sysntax JSP compiler throws the foll. error" illegal start of expression. out.println(); works fine. I am using JRun 3.1 on Win NTSP6a

  • Problem sending IM with physical keyboard

    Motorola Droid 4 XT894 w/ CyanogenMod 10.1.3-maserati (Although it was same issue when I was on stock Android), Verizon and WiFi, Skype v4.4.0.31835 This has been a huge issue for me for a while, and I thought all the updates to Skype would eventuall

  • I face problem with the billing

    II face problem with the billing information of the visa

  • HT4906 how to import from iphone to iphoto

    How to import photos from iphone 4S to iphoto on my Mac