One example for edit the grid in oops and provide f4 help for particular field in Grid

Hi all
Here is the code for that editable Grid
*& Report  YVAMC_EDIT_GRID
REPORT  YVAMC_EDIT_GRID.
DATA GR_ALVGRID TYPE REF TO CL_GUI_ALV_GRID .
*--- Name of the custom control added on the screen
DATA GC_CUSTOM_CONTROL_NAME TYPE SCRFNAME VALUE 'CC1_ALV' .
*--- Custom container instance reference
DATA GR_CCONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER .
*--- Field catalog table
DATA GT_FIELDCAT TYPE LVC_T_FCAT .
TYPES: BEGIN OF IT_LIST,
         BANFN TYPE EBAN-BANFN,
         BNFPO TYPE EBAN-BNFPO,
         BSART TYPE EBAN-BSART,
         BSTYP TYPE EBAN-BSTYP,
         BSAKZ TYPE EBAN-BSAKZ,
         LOEKZ TYPE EBAN-LOEKZ,
         STATU TYPE EBAN-STATU,
         ESTKZ TYPE EBAN-ESTKZ,
         FRGKZ TYPE EBAN-FRGKZ,
         FRGZU TYPE EBAN-FRGZU,
       END OF IT_LIST.
DATA: GT_LIST TYPE STANDARD TABLE OF IT_LIST,
       WA_LIST TYPE IT_LIST.
DATA GS_LAYOUT TYPE LVC_S_LAYO .
DATA OK_CODE TYPE SY-UCOMM.
DATA ZFLAG.
** data for event handling
DATA: GS_F4 TYPE LVC_S_F4,
       GT_F4 TYPE LVC_T_F4.
START-OF-SELECTION.
   SELECT BANFN
          BNFPO
          BSART
          BSTYP
          BSAKZ
          LOEKZ
          STATU
          ESTKZ
          FRGKZ
          FRGZU
     FROM  EBAN INTO TABLE GT_LIST.
   CALL SCREEN 9000.
*&      Module  DISPLAY_ALV  OUTPUT
*       text
MODULE STATUS_9000 OUTPUT.
   set pf-status 'ZNEW_STS'.
   PERFORM DISPLAY_ALV.
ENDMODULE.                 " DISPLAY_ALV  OUTPUT
*&      Module  USER_COMMAND_9000  INPUT
*       text
MODULE USER_COMMAND_9000 INPUT.
   OK_CODE = SY-UCOMM.
   CASE OK_CODE.
     WHEN 'BACK'.
       LEAVE TO SCREEN 0.
     WHEN 'EXIT'.
       LEAVE PROGRAM.
     WHEN 'EDIT'.
       ZFLAG = '1'.
       PERFORM UPDATE_FIELD_CATALOG CHANGING GT_FIELDCAT.
       PERFORM REGISTER_EDIT.
     WHEN 'DISPLAY'.
       ZFLAG = '0'.
       PERFORM UPDATE_FIELD_CATALOG CHANGING GT_FIELDCAT.
   ENDCASE.
ENDMODULE.                 " USER_COMMAND_9000  INPUT
*&      Form  DISPLAY_ALV
*       text
FORM DISPLAY_ALV.
   IF GR_ALVGRID IS INITIAL.
     CREATE OBJECT GR_CCONTAINER
       EXPORTING
*        parent                      =
         CONTAINER_NAME              = GC_CUSTOM_CONTROL_NAME  .
     IF SY-SUBRC <> 0.
*     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
     ENDIF.
     CREATE OBJECT GR_ALVGRID
       EXPORTING
         I_PARENT = GR_CCONTAINER.
     IF SY-SUBRC <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
     ENDIF.
*----Preparing field catalog.
     PERFORM PREPARE_FIELD_CATALOG CHANGING GT_FIELDCAT .
     CALL METHOD GR_ALVGRID->SET_TABLE_FOR_FIRST_DISPLAY
   EXPORTING
      IS_LAYOUT                     = GS_LAYOUT
   CHANGING
         IT_OUTTAB                     = GT_LIST[]
         IT_FIELDCATALOG               = GT_FIELDCAT
     IF SY-SUBRC <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
     ENDIF.
   ELSE.
     CALL METHOD GR_ALVGRID->REFRESH_TABLE_DISPLAY
*    EXPORTING
*      is_stable      =
*      i_soft_refresh =
*    EXCEPTIONS
*      finished       = 1
*      others         = 2
     IF SY-SUBRC <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
     ENDIF.
   ENDIF.
ENDFORM.                    "DISPLAY_ALV
*&      Form  prepare_field_catalog
*       text
*      -->PT_FIELDCAT  text
FORM PREPARE_FIELD_CATALOG CHANGING PT_FIELDCAT TYPE LVC_T_FCAT .
   DATA LS_FCAT TYPE LVC_S_FCAT .
   LS_FCAT-FIELDNAME = 'BANFN' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '10' .
   LS_FCAT-COLTEXT = 'Requisition no' .
*  LS_FCAT-SELTEXT = 'Requisition no' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'BNFPO' .
   LS_FCAT-INTTYPE = 'N' .
*ls_fcat-outputlen = '5' .
   LS_FCAT-COLTEXT = 'Item no' .
   LS_FCAT-SELTEXT = 'Item no' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'BSART' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '5' .
   LS_FCAT-COLTEXT = 'Doc Type' .
   LS_FCAT-SELTEXT = 'Doc Type' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'BSTYP' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '1' .
   LS_FCAT-COLTEXT = 'Doc Category' .
   LS_FCAT-SELTEXT = 'Doc Category' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'BSAKZ' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '1' .
   LS_FCAT-COLTEXT = 'Control Indicator' .
   LS_FCAT-SELTEXT = 'Control Indicator' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'LOEKZ' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '1' .
   LS_FCAT-COLTEXT = 'Deletion Indicator' .
   LS_FCAT-SELTEXT = 'Deletion Indicator' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'STATU' .
   LS_FCAT-INTTYPE = 'C' .
   LS_FCAT-F4AVAILABL = 'X'.
*ls_fcat-outputlen = '1' .
   LS_FCAT-COLTEXT = 'Processing status' .
   LS_FCAT-SELTEXT = 'Processing Status' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'ESTKZ' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '1' .
   LS_FCAT-COLTEXT = 'Creation Indicator' .
   LS_FCAT-SELTEXT = 'Creation Indicator' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'FRGKZ' .
   LS_FCAT-INTTYPE = 'C' .
*  ls_fcat-outputlen = '1' .
   LS_FCAT-COLTEXT = 'Release Indicator' .
   LS_FCAT-SELTEXT = 'Release Indicator' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'FRGZU' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '8' .
   LS_FCAT-COLTEXT = 'Release Status' .
   LS_FCAT-SELTEXT = 'Release Status' .
   APPEND LS_FCAT TO PT_FIELDCAT .
ENDFORM.                    "prepare_field_catalog
*&      Form  update_field_catalog
*       text
*      -->PT_FIELDCAT  text
FORM UPDATE_FIELD_CATALOG CHANGING PT_FIELDCAT TYPE LVC_T_FCAT.
   DATA LS_FCAT TYPE LVC_S_FCAT .
   CALL METHOD GR_ALVGRID->GET_FRONTEND_FIELDCATALOG
     IMPORTING
       ET_FIELDCATALOG = PT_FIELDCAT[].
   LOOP AT PT_FIELDCAT INTO LS_FCAT .
     IF ZFLAG = '1'.
       IF LS_FCAT-FIELDNAME = 'BSART' .
         LS_FCAT-EDIT = 'X' .
         LS_FCAT-F4AVAILABL = 'X'.
         LS_FCAT-REF_TABLE = 'T161T'.
         LS_FCAT-REF_FIELD = 'BSART'.
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'BSTYP' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'BSAKZ' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'LOEKZ' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'STATU' .
         LS_FCAT-EDIT = 'X' .
         LS_FCAT-F4AVAILABL = 'X'.
*        ls_fcat-drdn_hndl = '1'.
*        ls_fcat-outputlen = 15.
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'ESTKZ' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'FRGKZ' .
         LS_FCAT-EDIT = 'X' .
* for laready attcahed search help
         LS_FCAT-F4AVAILABL = 'X'.
         LS_FCAT-REF_TABLE = 'T161U'.
         LS_FCAT-REF_FIELD = 'FRGKZ'.
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF.
       IF LS_FCAT-FIELDNAME = 'FRGZU' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
* add customise f4 help on feild STATU
       CLEAR GT_F4.
       GS_F4-FIELDNAME  = 'STATU'.
       GS_F4-REGISTER   = 'X'.
*      gs_f4-getbefore  = check_be.               "§7a
*      gs_f4-chngeafter = chn_aft.               "§7b
       APPEND GS_F4 TO GT_F4.
       CALL METHOD GR_ALVGRID->REGISTER_F4_FOR_FIELDS
         EXPORTING
           IT_F4 = GT_F4.
     ELSEIF ZFLAG = '2'.
       IF LS_FCAT-FIELDNAME = 'BANFN' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'BNFPO' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
     ELSE.
       IF LS_FCAT-FIELDNAME = 'BSART' .
         LS_FCAT-EDIT = SPACE.
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'BSTYP' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'BSAKZ' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'LOEKZ' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'STATU' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'ESTKZ' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'FRGKZ' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'FRGZU' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
     ENDIF.
   ENDLOOP .
   CALL METHOD GR_ALVGRID->SET_FRONTEND_FIELDCATALOG
     EXPORTING
       IT_FIELDCATALOG = PT_FIELDCAT[].
ENDFORM.                    "update_field_catalog
*&      Form  register_edit
*       text
FORM REGISTER_EDIT .
   CALL METHOD GR_ALVGRID->REGISTER_EDIT_EVENT
     EXPORTING
       I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED.
ENDFORM.                    "register_edit

Hi all
Here is the code for that editable Grid
*& Report  YVAMC_EDIT_GRID
REPORT  YVAMC_EDIT_GRID.
DATA GR_ALVGRID TYPE REF TO CL_GUI_ALV_GRID .
*--- Name of the custom control added on the screen
DATA GC_CUSTOM_CONTROL_NAME TYPE SCRFNAME VALUE 'CC1_ALV' .
*--- Custom container instance reference
DATA GR_CCONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER .
*--- Field catalog table
DATA GT_FIELDCAT TYPE LVC_T_FCAT .
TYPES: BEGIN OF IT_LIST,
         BANFN TYPE EBAN-BANFN,
         BNFPO TYPE EBAN-BNFPO,
         BSART TYPE EBAN-BSART,
         BSTYP TYPE EBAN-BSTYP,
         BSAKZ TYPE EBAN-BSAKZ,
         LOEKZ TYPE EBAN-LOEKZ,
         STATU TYPE EBAN-STATU,
         ESTKZ TYPE EBAN-ESTKZ,
         FRGKZ TYPE EBAN-FRGKZ,
         FRGZU TYPE EBAN-FRGZU,
       END OF IT_LIST.
DATA: GT_LIST TYPE STANDARD TABLE OF IT_LIST,
       WA_LIST TYPE IT_LIST.
DATA GS_LAYOUT TYPE LVC_S_LAYO .
DATA OK_CODE TYPE SY-UCOMM.
DATA ZFLAG.
** data for event handling
DATA: GS_F4 TYPE LVC_S_F4,
       GT_F4 TYPE LVC_T_F4.
START-OF-SELECTION.
   SELECT BANFN
          BNFPO
          BSART
          BSTYP
          BSAKZ
          LOEKZ
          STATU
          ESTKZ
          FRGKZ
          FRGZU
     FROM  EBAN INTO TABLE GT_LIST.
   CALL SCREEN 9000.
*&      Module  DISPLAY_ALV  OUTPUT
*       text
MODULE STATUS_9000 OUTPUT.
   set pf-status 'ZNEW_STS'.
   PERFORM DISPLAY_ALV.
ENDMODULE.                 " DISPLAY_ALV  OUTPUT
*&      Module  USER_COMMAND_9000  INPUT
*       text
MODULE USER_COMMAND_9000 INPUT.
   OK_CODE = SY-UCOMM.
   CASE OK_CODE.
     WHEN 'BACK'.
       LEAVE TO SCREEN 0.
     WHEN 'EXIT'.
       LEAVE PROGRAM.
     WHEN 'EDIT'.
       ZFLAG = '1'.
       PERFORM UPDATE_FIELD_CATALOG CHANGING GT_FIELDCAT.
       PERFORM REGISTER_EDIT.
     WHEN 'DISPLAY'.
       ZFLAG = '0'.
       PERFORM UPDATE_FIELD_CATALOG CHANGING GT_FIELDCAT.
   ENDCASE.
ENDMODULE.                 " USER_COMMAND_9000  INPUT
*&      Form  DISPLAY_ALV
*       text
FORM DISPLAY_ALV.
   IF GR_ALVGRID IS INITIAL.
     CREATE OBJECT GR_CCONTAINER
       EXPORTING
*        parent                      =
         CONTAINER_NAME              = GC_CUSTOM_CONTROL_NAME  .
     IF SY-SUBRC <> 0.
*     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
     ENDIF.
     CREATE OBJECT GR_ALVGRID
       EXPORTING
         I_PARENT = GR_CCONTAINER.
     IF SY-SUBRC <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
     ENDIF.
*----Preparing field catalog.
     PERFORM PREPARE_FIELD_CATALOG CHANGING GT_FIELDCAT .
     CALL METHOD GR_ALVGRID->SET_TABLE_FOR_FIRST_DISPLAY
   EXPORTING
      IS_LAYOUT                     = GS_LAYOUT
   CHANGING
         IT_OUTTAB                     = GT_LIST[]
         IT_FIELDCATALOG               = GT_FIELDCAT
     IF SY-SUBRC <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
     ENDIF.
   ELSE.
     CALL METHOD GR_ALVGRID->REFRESH_TABLE_DISPLAY
*    EXPORTING
*      is_stable      =
*      i_soft_refresh =
*    EXCEPTIONS
*      finished       = 1
*      others         = 2
     IF SY-SUBRC <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
     ENDIF.
   ENDIF.
ENDFORM.                    "DISPLAY_ALV
*&      Form  prepare_field_catalog
*       text
*      -->PT_FIELDCAT  text
FORM PREPARE_FIELD_CATALOG CHANGING PT_FIELDCAT TYPE LVC_T_FCAT .
   DATA LS_FCAT TYPE LVC_S_FCAT .
   LS_FCAT-FIELDNAME = 'BANFN' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '10' .
   LS_FCAT-COLTEXT = 'Requisition no' .
*  LS_FCAT-SELTEXT = 'Requisition no' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'BNFPO' .
   LS_FCAT-INTTYPE = 'N' .
*ls_fcat-outputlen = '5' .
   LS_FCAT-COLTEXT = 'Item no' .
   LS_FCAT-SELTEXT = 'Item no' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'BSART' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '5' .
   LS_FCAT-COLTEXT = 'Doc Type' .
   LS_FCAT-SELTEXT = 'Doc Type' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'BSTYP' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '1' .
   LS_FCAT-COLTEXT = 'Doc Category' .
   LS_FCAT-SELTEXT = 'Doc Category' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'BSAKZ' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '1' .
   LS_FCAT-COLTEXT = 'Control Indicator' .
   LS_FCAT-SELTEXT = 'Control Indicator' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'LOEKZ' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '1' .
   LS_FCAT-COLTEXT = 'Deletion Indicator' .
   LS_FCAT-SELTEXT = 'Deletion Indicator' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'STATU' .
   LS_FCAT-INTTYPE = 'C' .
   LS_FCAT-F4AVAILABL = 'X'.
*ls_fcat-outputlen = '1' .
   LS_FCAT-COLTEXT = 'Processing status' .
   LS_FCAT-SELTEXT = 'Processing Status' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'ESTKZ' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '1' .
   LS_FCAT-COLTEXT = 'Creation Indicator' .
   LS_FCAT-SELTEXT = 'Creation Indicator' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'FRGKZ' .
   LS_FCAT-INTTYPE = 'C' .
*  ls_fcat-outputlen = '1' .
   LS_FCAT-COLTEXT = 'Release Indicator' .
   LS_FCAT-SELTEXT = 'Release Indicator' .
   APPEND LS_FCAT TO PT_FIELDCAT .
   LS_FCAT-FIELDNAME = 'FRGZU' .
   LS_FCAT-INTTYPE = 'C' .
*ls_fcat-outputlen = '8' .
   LS_FCAT-COLTEXT = 'Release Status' .
   LS_FCAT-SELTEXT = 'Release Status' .
   APPEND LS_FCAT TO PT_FIELDCAT .
ENDFORM.                    "prepare_field_catalog
*&      Form  update_field_catalog
*       text
*      -->PT_FIELDCAT  text
FORM UPDATE_FIELD_CATALOG CHANGING PT_FIELDCAT TYPE LVC_T_FCAT.
   DATA LS_FCAT TYPE LVC_S_FCAT .
   CALL METHOD GR_ALVGRID->GET_FRONTEND_FIELDCATALOG
     IMPORTING
       ET_FIELDCATALOG = PT_FIELDCAT[].
   LOOP AT PT_FIELDCAT INTO LS_FCAT .
     IF ZFLAG = '1'.
       IF LS_FCAT-FIELDNAME = 'BSART' .
         LS_FCAT-EDIT = 'X' .
         LS_FCAT-F4AVAILABL = 'X'.
         LS_FCAT-REF_TABLE = 'T161T'.
         LS_FCAT-REF_FIELD = 'BSART'.
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'BSTYP' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'BSAKZ' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'LOEKZ' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'STATU' .
         LS_FCAT-EDIT = 'X' .
         LS_FCAT-F4AVAILABL = 'X'.
*        ls_fcat-drdn_hndl = '1'.
*        ls_fcat-outputlen = 15.
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'ESTKZ' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'FRGKZ' .
         LS_FCAT-EDIT = 'X' .
* for laready attcahed search help
         LS_FCAT-F4AVAILABL = 'X'.
         LS_FCAT-REF_TABLE = 'T161U'.
         LS_FCAT-REF_FIELD = 'FRGKZ'.
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF.
       IF LS_FCAT-FIELDNAME = 'FRGZU' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
* add customise f4 help on feild STATU
       CLEAR GT_F4.
       GS_F4-FIELDNAME  = 'STATU'.
       GS_F4-REGISTER   = 'X'.
*      gs_f4-getbefore  = check_be.               "§7a
*      gs_f4-chngeafter = chn_aft.               "§7b
       APPEND GS_F4 TO GT_F4.
       CALL METHOD GR_ALVGRID->REGISTER_F4_FOR_FIELDS
         EXPORTING
           IT_F4 = GT_F4.
     ELSEIF ZFLAG = '2'.
       IF LS_FCAT-FIELDNAME = 'BANFN' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'BNFPO' .
         LS_FCAT-EDIT = 'X' .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
     ELSE.
       IF LS_FCAT-FIELDNAME = 'BSART' .
         LS_FCAT-EDIT = SPACE.
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'BSTYP' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'BSAKZ' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'LOEKZ' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'STATU' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'ESTKZ' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'FRGKZ' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
       IF LS_FCAT-FIELDNAME = 'FRGZU' .
         LS_FCAT-EDIT = SPACE .
         MODIFY PT_FIELDCAT FROM LS_FCAT .
       ENDIF .
     ENDIF.
   ENDLOOP .
   CALL METHOD GR_ALVGRID->SET_FRONTEND_FIELDCATALOG
     EXPORTING
       IT_FIELDCATALOG = PT_FIELDCAT[].
ENDFORM.                    "update_field_catalog
*&      Form  register_edit
*       text
FORM REGISTER_EDIT .
   CALL METHOD GR_ALVGRID->REGISTER_EDIT_EVENT
     EXPORTING
       I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED.
ENDFORM.                    "register_edit

Similar Messages

  • I accientally synced my iPhone to 2 different computers. Now my older apps are on one computer and new apps are on another.  Every time I try to sync all apps on one computer it takes the other apps of and just syncs what is on that computer - Help please

    I accientally synced my iPhone to 2 different computers. Now my older apps are on one computer and new apps are on another.  Every time I try to sync all apps on one computer it takes the other apps of and just syncs what is on that computer - Help please
    I cannot for the life of me figure this out.

    What you need to do is connect your phone to iTunes but do not click sync.  Go to File at the top and click transfer purchases from phone, that'll put all your apps into iTunes.  When it's done transferring, locate your phone on the sidebar and click it.  Then find the apps option above the picture of your iphone, you can select which apps you want or don't want on your phone.  After selecting your apps then you can sync.  Once you do this you should never have your problem anymore.

  • I am having a challenge getting an uploaded Podcast to appear on iTunes inventory list although it is present once I click on a left hand column for Podcasts (the extra step may make it too elusive for listeners to find.)

    Each week, a Radio Program is uploaded from my website to iTunes for access to our community. The December 17, 2012 episode and January 7, 2013 episodes, although they've been uploaded, will not appear on the Inventory on iTunes. When I look to the left of the running list of Inventory, which appears in alphabetical order, the word Podcast appears to the left with a number 1 next to it - as if there's a message waiting. When I click
    there and open, the December 17 episode is listed.
    Is there a way for the Podcast to join the other episode titles in chronological order? There will be another new one from this morning to join the list.
    (I have not heard back from Express Apple, have tried iTunes Support, Blog Talk Support, etc.)
    Thanks for any insights or tips....

    Hi Trukntigger,
    Thank you for visiting the HP Support Forums and Welcome. Thank you for sharing your findings we appreciate you taking the time to post.
    Have a great week.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Proper way to make bulk changes the Owner ID, Path and file share credentials for my existing subscriptions, ExtensionSettings

    We are going through with an upgrade/migration to SSRS 2012 and moving everything to a different domain. We have about 200 active subscriptions running, the reports are being delivered to a file share.  What is the correct way, in bulk, to change
    the OwnerId, the Path and the FileShare Username password credentials for these subscriptions?  I see these values are being stored in Subscriptions > ExtensionSettings.  I see that the file share path and Owner wouldn't be a problem to change,
    but since I see the file share credentials are encrypted I would not be able change them directly in ExtensionSettings.  Anyone know the proper way to change the Owner ID, Path and file share credentials for my existing subscriptions without having to
    change each one of them manually in the report manager?
    Note: Reporting Services Native upgrade from SSRS 2005 to SSRS 2012.
    Thanks in advance.

    Hi Cygnus46,
    Based on my understanding, you want to change the Owner ID, Path and file share credentials for all existing subscriptions.
    In Reporting Services, the subscription information are stored in the Report Server database. In your scenario, you can go to report server database and run the query to list all the subscriptions, then modify the owner and fileshare paths in the subscriptions
    table. For more information, please refer to this article: Tip: Change the Owner of SQL Reporting Services Subscription. If you want to change
    the file share credentials for subscriptions, you can run the query provided by
    wiperzeus from this similar thread:
    Windows File Share Delivery/ SSRS 2008 R2.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Hello, my mac book air won't update. Every time i try it goes onto the purple starry screen and stays that way for hours, so i just have to shut it down. I have deleted a lot on my laptop so there is enough space, please help?

    Hello, my mac book air won't update. Every time i try it goes onto the purple starry screen and stays that way for hours, so i just have to shut it down. I have deleted a lot on my laptop so there is enough space, please help?

    I believe that system has a hall sensor on it to detect when the lid is closed so it can put the system to sleep and/or disable the monitor so it can be used with an external monitor only. If the sensor is marginal or has a bad cable, it may intermittently cut the monitor on and off, and may likewise put the system to sleep. One way to check would be to plug in an external monitor and if the laptop's screen cuts off or doesn't show up, start using the trackpad and press on a non-typing key like the shift key. If the external display suddenly pops and becomes active while the laptop display remains black, it's probably a problem with the sensor or the cable/connection. You might be able to fool the sensor into kicking on and off by moving a magnet over it. It's located on the left had side of the base with the unit opened up, and right over the audio output plug.
    I know of some people that put a small magnet right over the hall sensor's location so the laptop display turns off and they use the system with an external monitor, keyboard, and mouse. If fooling with magnets, make sure they're small and don't get them close to the hard drive because a strong magnet can wipe them out.
    I don't know if this will help you much, but it might.

  • HT1725 I downloaded two albums yesterday and only half of each of the songs have downloaded when I play them. There is nothing to say it is waiting for the rest to download and I have checked for available downloads...help please!

    I downloaded two albums yesterday and only half of each of the songs have downloaded when I play them. There is nothing to say it is waiting for the rest to download and I have checked for available downloads...help please!

    no, i had to leave so i logged out and when i opened itunes on my mac and went into the downloads tab it only had one paused download listed. i resumed the download for the one movie listed and the other one never showed up. its been about two weeks since i initially bought the two movies so i figured something was wrong.

  • Whenever i connect my ipod touch 3rd gen to itunes itunes responds really slowly and when i try and sync it it says sync in progress on my ipod screen but then is stuck with "verifying "matts ipod" at the top of itunes and stays like that for ages.. help

    whenever i connect my ipod touch 3rd gen to itunes itunes responds really slowly and when i try and sync it it says sync in progress on my ipod screen but then is stuck with "verifying "matts ipod" at the top of itunes and stays like that for ages.. help

    You buy one and only one download.
    As it should have been transferred to your computer when you synced, you can contact itunes support and ask for an exception.
    http://www.apple.com/support/itunes

  • HT1386 when i click on check for update, the iTunes wants me to provide me a file or something from my computer, instead, it should check and suggest for an update

    when i click on check for update, the iTunes wants me to provide me a file or something from my computer, instead, it should check and suggest for an update

    Demo,
    I'm not sure how I'm supposed to do that the instruction says since i am not familiar with Apple at all what are quick links even? Am i supposed to do this on Itunes on my Ipad or on the computer?
    this was that reply you mentioned.
    I spoke with Apple Tech Support and they guided me through this.  I was trying to get the App Store working on a new iPad mini using a new, but existing Apple ID.  To get it to work, I had to go onto iTunes on my main computer (not on the iPad).  I had been trying to use the Sign In button, and I was having the issue of being "forced" to enter a credit card, which I did not want to do.  Here was the solution I was given, which worked for me.
    Log out of iTunes, if you are not already.  (Or hit Cancel if you're on the Review Payment screen.)
    Instead of going into Sign In, go to Redeem under the Quick Links, on the right-hand side, down a bit.
    Go through the screens, accepting the EULA, etc.  You will get to a Review Payment screen, similar to the one you saw before, but it will have a None button.
    You can enter an iTunes card here if you want, but I was able to leave that field blank and still successfully get the account set up, ready to use on the iPad.

  • My macbook wont start the screen turn blue and stay like that for hrs. It only work when i use safe mode, i try to use disk utilities to fix it but the disk utilities keep saying error and a bunch of other stuff. I dont the cds the comp came with, help.

    my macbook wont start the screen turn blue and stay like that for hrs. It only work when i use safe mode, i try to use disk utilities to fix it but the disk utilities keep saying error and a bunch of other stuff. I dont the cds the comp came with, help. i've tried the command s command p command v but nothing i've tried to the safe mode then a quick restart but nothing
    disk utility give me this:
    Process:         Disk Utility [371]
    Path:            /Applications/Utilities/Disk Utility.app/Contents/MacOS/Disk Utility
    Identifier:      com.apple.DiskUtility
    Version:         11.5.2 (298.4)
    Build Info:      DiskUtility-2980400~60
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [86]
    Date/Time:       2013-11-05 03:29:41.247 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          9522 sec
    Crashes Since Last Report:           29
    Per-App Interval Since Last Report:  981 sec
    Per-App Crashes Since Last Report:   25
    Anonymous UUID:                      F6B8E263-76C8-4C7D-AA58-48134BF4BA78
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000020
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x0000000100c62fbc _read_images + 312
    1   libobjc.A.dylib                         0x0000000100c79721 map_images_nolock + 1266
    2   libobjc.A.dylib                         0x0000000100c62761 map_images + 115
    3   dyld                                    0x00007fff5fc039c5 dyld::notifyBatchPartial(dyld_image_states, bool, char const* (*)(dyld_image_states, unsigned int, dyld_image_info const*)) + 853
    4   dyld                                    0x00007fff5fc0c849 ImageLoader::link(ImageLoader::LinkContext const&, bool, bool, ImageLoader::RPathChain const&) + 201
    5   dyld                                    0x00007fff5fc04d54 dyld::link(ImageLoader*, bool, ImageLoader::RPathChain const&) + 118
    6   dyld                                    0x00007fff5fc08f7c dlopen + 490
    7   libSystem.B.dylib                       0x0000000100a14e40 dlopen + 61
    8   com.apple.CoreFoundation                0x0000000100d78ef7 _CFBundleDlfcnLoadBundle + 231
    9   com.apple.CoreFoundation                0x0000000100d77e97 _CFBundleLoadExecutableAndReturnError + 1191
    10  com.apple.Foundation                    0x0000000101008355 _NSBundleLoadCode + 638
    11  com.apple.Foundation                    0x0000000101007c78 -[NSBundle loadAndReturnError:] + 742
    12  com.apple.Foundation                    0x000000010101960c -[NSBundle principalClass] + 38
    13  com.apple.framework.DUSupport           0x0000000100082080 -[DUModuleManager(_private) findDUModules:] + 405
    14  com.apple.framework.DUSupport           0x0000000100081ed9 -[DUModuleManager orderedModuleListOfModules] + 40
    15  com.apple.DiskUtility                   0x0000000100006082 0x100000000 + 24706
    16  com.apple.DiskUtility                   0x0000000100005f59 0x100000000 + 24409
    17  com.apple.AppKit                        0x0000000101444625 -[NSWindowController _windowDidLoad] + 538
    18  com.apple.AppKit                        0x00000001013e1f77 -[NSWindowController window] + 112
    19  com.apple.AppKit                        0x00000001015f61d9 -[NSWindowController showWindow:] + 47
    20  com.apple.AppKit                        0x00000001015c7c5c -[NSDocument showWindows] + 98
    21  com.apple.AppKit                        0x00000001015c64bb -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 340
    22  com.apple.AppKit                        0x00000001014f7b44 -[NSDocumentController(NSInternal) _openUntitled] + 111
    23  com.apple.AppKit                        0x00000001014f79ab -[NSApplication _doOpenUntitled] + 257
    24  com.apple.AppKit                        0x00000001014f733b -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 185
    25  com.apple.AppKit                        0x00000001014f6fd9 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 77
    26  com.apple.Foundation                    0x0000000100ffd0d6 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 360
    27  com.apple.Foundation                    0x0000000100ffcf06 _NSAppleEventManagerGenericHandler + 114
    28  com.apple.AE                            0x0000000104d7332b aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 162
    29  com.apple.AE                            0x0000000104d73224 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 32
    30  com.apple.AE                            0x0000000104d7312b aeProcessAppleEvent + 210
    31  com.apple.HIToolbox                     0x00000001028a0619 AEProcessAppleEvent + 48
    32  com.apple.AppKit                        0x00000001013fc095 _DPSNextEvent + 1191
    33  com.apple.AppKit                        0x00000001013fb801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    34  com.apple.AppKit                        0x00000001013c168f -[NSApplication run] + 395
    35  com.apple.AppKit                        0x00000001013ba3b0 NSApplicationMain + 364
    36  com.apple.DiskUtility                   0x0000000100002009 0x100000000 + 8201
    37  com.apple.DiskUtility                   0x0000000100001db8 0x100000000 + 7608
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x0000000100a27c0a kevent + 10
    1   libSystem.B.dylib                       0x0000000100a29add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x0000000100a297b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x0000000100a292de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x0000000100a28c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x0000000100a28aa5 start_wqthread + 13
    AND MORE TOO MUCH TO COPY N PASTE HELP PLEASE!!!!!

    Reset the PRAM
    Reinstall the operating system from the dvd (you will not loose your data)

  • Issue in Exporting the Sales Price List and Purchase Price List for the Materials from SAP Business ByDesign (SAP Cloud)

    Hello Everyone,
    I would like to have a discussion on the issues, which I am facing at the time of Exporting the Sales Price List and Purchase Price List for the Materials from
    SAP Business ByDesign (SAP Cloud).
    (1). Sales Price List :
    We have maintained Customer Group Specific Sales Price List for the Materials in the following Location.
    Location :         Product and Service Portfolio Work Center > Pricing > Price Lists > Customer Group Specific Price List (Type of Price List)
    Target :             We want to export the entire records in some reports or excel sheet.
    Records :          Number of Materials in the Customer Group Specific Price List is more than 2,00,000
    Issues : 
                                         (A). In the SAP Business ByDesign Screen we can filter by number of records but we can export till  50,000 records.
                                                 And if we are trying to export records more than that limit, then it throws "HTTP 500 Internal Server Error".
                                         (B). We could not find any SAP standard reports in Product and Service Portfolio and/or Business Analytics Work Center
                                                for getting the entire record set of the Sales Price List, so that we can have the entire set of records together.
    Searching For :
                                          (A). Is there any SAP reports or data source available for getting the entire Sales Price List records?
                                          (B). Can we have any other filter conditions for exporting the Sales Price List records in a single shot or module wise?
    (2). Purchase Price List :
    We have maintained the Purchase Price List for the Materials in the following Location.
    Location :           Product Portfolio Work Center > List Prices > Active List Prices (Type of Price List)
    Target :               We want to export the entire records in some reports or excel sheet.
    Records :            Number of Materials in the Purchase Price List is more than 4,00,000.
    Issues :  
                                           (A). In the SAP Business ByDesign Screen we can not see more than 10,000 records and the actual number of
                                                   records are more than 4,00,000. We could able to download the records till 10,000 but that is not sufficient.
                                                   We want to export the entire records in an excel sheet.
                                           (B). We could not find any SAP standard reports in Product Portfolio and/or Business Analytics Work Center for
                                                  getting the entire record set of the Purchase Price List, so that we can have the entire set of records together.
    Searching For :
                                           (A). Is there any SAP reports or data source available for getting the entire Purchase Price List records?
                                           (B). Can we have any other filter conditions for exporting the Purchase Price List records in a single shot or module wise?
    Please go through the attached screen shots for the references and more clarity on the issues.
    I am waiting for the valuable responses.
    Thanks and regards,
    Susanta Dey Sarkar
    Bangalore, India
    19th March, 2015

    Dear Michael,
    The number of records :
    2 Million (Approximately) is for the Sales Price List Material Price Data
    4 Million (Approximately) is for the Purchase Price List Material Price Data.
    Regards,
    Susanta Dey Sarkar

  • [svn:fx-trunk] 10075: Cleanups from the spark text changes and some bug fixes for VideoElement.

    Revision: 10075
    Author:   [email protected]
    Date:     2009-09-08 18:01:58 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Cleanups from the spark text changes and some bug fixes for VideoElement.  Also some PARB changes for UIComponent.
    TitleBar: Changing the skin part type from Label to Textbase
    UIComponent: skipMeasure()->canSkipMeasurement() to be in line with GraphicElement.  This has been PARB approved.
    UIComponent: same with hasComplexLayoutMatrix...this replaces hasDeltaIdentityTransform.  This has been PARB approved.
    StyleProtoChain: cleanup around what interfaces to use
    TextBase: clean up code that?\226?\128?\153s no longer needed.
    VideoElement: Fixing 4 bugs:
    SDK-22824: sourceLastPlayed keeps track of what video file we?\226?\128?\153ve called play() with last.  This way if a user pauses the video and wants to start it up again at the same point, we can call play(null) on the underlying FLVPlayback videoPlayer.  However, anytime the souce changes, we want to null out sourceLastPlayed.  This was causing a bug when someone set the source to null and then reset it to it?\226?\128?\153s previous value.
    SDK-23034 (GUMBO_PRIORITY): This deals with some FLVPlayback quirks around sizing.  I had put in a fix so we weren?\226?\128?\153t setting width/height on the underlying videoPlayer too many times, but apparently we need to make sure it always gets called once.  Hopefully when switching to Strobe we can cleanup this logic...I put a FIXME in to do this.
    SDK-21947/ SDK-22533 - some video files don?\226?\128?\153t always send out a metadata event.  I?\226?\128?\153m not quite sure why this is, but in case this happens, we do a check in the ready handler to see whether we should call invalidateSize() to make sure it gets sized properly.
    QE notes:-
    Doc notes:-
    Bugs: SDK-22824, SDK-23034, SDK-21947, SDK-22533
    Reviewer: Glenn, Corey
    Tests run: checkintests, Button, GraphicTags, VideoElement, and VideoPlayer (some VideoPlayer were failing, but I think it should be fine)
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/windowClasses/TitleB ar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/spark/src/mx/core/UITLFTextField.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Label.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichEditableText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/GroupBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/Skin.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/TextBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AddActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/RemoveActionIns tance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as

  • Hello, i have been sent the following email from apple: - You've taken the added security step and provided a rescue email address. Now all you need to do is verify that it belongs to you... and asks for apple login details, is this a genuine request?

    Hello, i have been sent the following email from apple, see below and asks for apple login details, is this a genuine request?
    Thank you.
    You’ve taken the added security step and provided a rescue email address. Now all you need to do is verify that it belongs to you.
    The rescue email address that you gave us is [email protected]
    Just click the link below to verify, sign in using your Apple ID and password, then follow the prompts.
    Verify Now >
    The rescue email address is dedicated to your security and allows Apple to get in touch if any account questions come up, such as the need to reset your password or change your security questions. As promised, Apple will never send any announcements or marketing messages to this address.
    When using Apple products and services, you’ll still sign in with your primary email address as your Apple ID.
    It’s about protecting your identity.
    Just so you know, Apple sends out an email whenever someone adds or changes a rescue email address associated with an existing Apple ID. If you received this email in error, don’t worry. It’s likely someone just mistyped their own email address when creating a new Apple ID.
    If you have questions or need help, visit the Apple ID Support site.
    Thanks again,
    Apple Support

    In that case, someone is trying to hi-jack your Apple ID.
    You should change your password immediately.

  • How to get the page layouts programmatically and create a page for that pagelayout

    how get the page layouts programmatically and create a page for that pagelayout and add webpart
    please help me with da code.Thanks
    adityadugyala

    Hi if your page layouts alreday created then create new page programaticaaly  and apply your page ayouts to that page by coding you can do something like following
    PublishingWeb publishingWeb =
    PublishingWeb.GetPublishingWeb(web);
    PageLayout[] layouts = publishingWeb.GetAvailablePageLayouts();
    PageLayout layout = layouts[0];
    string pageName =
    "MyPublishingPage5.aspx";
    PublishingPage newPage = publishingWeb.GetPublishingPages().Add(newFolder.Folder.ServerRelativeUrl +
    "/"+ pageName, layout); 
    newPageUrl = web.Url +"/" + newPage.Url;
    newPage.Description = "This my sample publishing page";
    newPage.Title = "My Publishing Page";
    newPage.Update();
    Please follow link
    http://blogs.msdn.com/b/sowmyancs/archive/2008/03/15/create-publishing-pages-in-portal-sites-programmatically.aspx
    Please mark answer , if you think answer is helpful or correct.

  • I need to have endnotes at the end with sections and numbering beginning again for each section. I also need to be able to write Chapter

    I need to have endnotes at the end with sections and numbering beginning again for each section. I also need to be able to write Chapter #s above each section of endnotes. How do I do this, please?

    I have precisely the same problem and am wondering if anyone has found a workaround for what seems to be a bug or an unattended issue in Pages. Hopefully the next update (whenever it arrives, I hope it arrives soon) will take care of this.

  • Hello ive been trying to get this matter token care of for the past 24 hrs and still no help im getting very upset now I paid 100 plus $$ to have this program that isn't even working I would like to speak to someone about on the phone I got a 1800 number

    hello ive been trying to get this matter token care of for the past 24 hrs and still no help im getting very upset now I paid 100 plus $$ to have this program that isn't even working I would like to speak to someone about on the phone I got a 1800 number for tech but everytime I call it hangs up and says to chat........ ive been doing that all day yesterday its kinda getting old telling the same thing over n over again so I would like some real live help a number I can call or someone can call me 402 802 1211 everytime I try to do something on this it ask for my serial num I put it in and it says invalid number and when I do my pics it has trail across them

    Hi,
    I'm sorry to hear that you are having problems but this is a user to user forum and only occasionally visited by Adobe staff. Depending on your version of Photoshop elements, you may be able to get help through the chat sessions starting here
    https://helpx.adobe.com/uk/contact.html?promoid=KLXNA
    If you give us details like your operating system, Photoshop elements version and the problem you ae having, someone may well be able to help you.
    Brian

Maybe you are looking for