Update the data into the ZTABLE fields thru program logic ..?

hi all,
i have ZTABLE1,ZTABLE2,ZTABLE3, and this tables like ALV grids using object methods.
in the same table fields now i wanted to update the data into the ZTABLE fields thru program logic .
could anyone please help me ....
please provide if anyone of have any program logic that would be helpfull to me.
thanks in advance...
srinivas....

Hi Srinivas,
  The following statements are used to upload the data into custom tables.
1. Modify
2. Update
3. Insert
if you are using OO ALV, you should enable the 'SAVE' button in the main toolbar. if the user press the save button, then you should upload the data to the custom table.
please find the example code, in this example 'PERFORM F_SAVE_DATA'(here i gave the message only, you write your own logic here) is used to save the data in custom table.
Report Program: ZB_ALVOOPS_TEST
Line:-----
REPORT  ZB_ALVOOPS_TEST MESSAGE-ID ZCR_MESSAGES.
Top Include - Global Data Declaration                        *
INCLUDE ZB_ALVOOPS_TEST_TOP.
SEL Include - Selection Screen                               *
INCLUDE ZB_ALVOOPS_TEST_SEL.
AT SELECTION SCREEN                                          *
Initialization Event                                         *
INITIALIZATION.
Initialize Screen Number.
  PERFORM F_INITIALIZE.
Initialize Field Catalog for ALV Grid.
  PERFORM F_INITIALIZE_GRID.
END-OF-SELECTION.
Call Display Screen                                          *
  CALL SCREEN 9000.
Event Handler - Class Definition and Implementation          *
  INCLUDE ZB_ALVOOPS_TEST_CL01.
PBO Event - Module Implementation                            *
  INCLUDE ZB_ALVOOPS_TEST_PBO.
PAI Event - Module Implementation                            *
  INCLUDE ZB_ALVOOPS_TEST_PAI.
Subroutine Include                                           *
  INCLUDE ZB_ALVOOPS_TEST_F01.
Include: ZB_ALVOOPS_TEST_TOP
Line:-------
Type Declaration For Internal Tables                         *
Collection Data
TYPES: BEGIN OF TY_MARA                                                    ,
         MATNR         TYPE  MATNR                                         ,  "  Material
         VPSTA         TYPE  VPSTA                                         ,  "  Maintenance status of complete material
         MTART         TYPE  MTART                                         ,  "  Material Type
         MBRSH         TYPE  MBRSH                                         ,  "  Industry Sector
         MATKL         TYPE  MATKL                                         ,  "  Material Group
         BISMT         TYPE  BISMT                                         ,  "  Old material number
         MEINS         TYPE  MEINS                                         ,  "  Base Unit of Measure
         BSTME         TYPE  BSTME                                         ,  "  Order unit
         BRGEW         TYPE  BRGEW                                         ,  "  Gross weight
         MAKTX         TYPE  MAKTX                                         ,  "  Material Description
         ROWCOLOR      TYPE  CHAR4                                         ,  "  Row Color
       END OF TY_MARA                                                      .
Flag                                                         *
DATA: FG_REFRESH  TYPE  XFLD                                               ,  "  Used to Refresh ALV
      FG_SAVE     TYPE  XFLD                                               .  "  Data Saved Or Not.
Internal Table Declaration                                   *
DATA: IT_MARA              TYPE  STANDARD TABLE OF TY_MARA                 ,  "  Internal table for Material
      WA_MARA              TYPE  TY_MARA                                   .  "  Workarea for Material
Variable Declaration For General Constants                   *
CONSTANTS: C_SCREEN_SELECT      TYPE  SYDYNNR         VALUE '9001'         ,  "  Selection Screen Number
           C_SCREEN_SELECT_NIL  TYPE  SYDYNNR         VALUE '9002'         ,  "  Empty Screen Number
           C_STATUS9000         TYPE  CHAR10          VALUE 'STATUS9000'   ,  "  PF-Status
           C_TITLEBAR           TYPE  CHAR4           VALUE '9000'         ,  "  Title Bar
           C_ISSUE_CONTAINER    TYPE  SCRFNAME        VALUE 'WORKCONTAINER',  "  Container Name (Screen Painter)
           C_BUTTON_TYPE        TYPE  CHAR1           VALUE '3'            ,  "  Button Type
           C_EXECUTE            TYPE  CHAR4           VALUE 'SELE'         ,  "  Functions 'SELE'    -> Execute
           C_BACK               TYPE  CHAR4           VALUE 'BACK'         ,  "  Functions 'BACK'    -> Back to main screen
           C_ENTER              TYPE  CHAR5           VALUE 'ENTER'        ,  "  Functions 'ENTER'   -> No Action
           C_SEL01              TYPE  CHAR5           VALUE 'SEL01'        ,  "  Functions 'SEL01'   -> Toggle Function
           C_SAVE               TYPE  CHAR4           VALUE 'SAVE'         ,  "  Functions 'SAVE'    -> Save Function
           C_REFRESH            TYPE  CHAR7           VALUE 'REFRESH'      ,  "  Functions 'REFRESH' -> Clear and Fres All objects
           C_ADD_MI             TYPE  CHAR6           VALUE 'ADD_MI'       ,  "  Functions 'ADD_MI'  -> Add New Media Issue
           C_TRUE               TYPE  CHAR1           VALUE 'X'            ,  "  Set X value
           C_REQUIRED           TYPE  CHAR1           VALUE '1'            ,  "  Un-Confirmed Qty field obligatory or not.
           C_INPUT              TYPE  CHAR1           VALUE '0'            ,  "  Reason field should not be input.
           C_ALV_SAVE           TYPE  CHAR1           VALUE 'A'            ,  "  ALV
           C_ERROR              TYPE  CHAR1           VALUE 'E'            ,  "  Error Type
           C_SIGN               TYPE  CHAR1           VALUE 'I'            ,  "  Sign
           C_OPTION             TYPE  CHAR2           VALUE 'EQ'           ,  "  Option.
           C_COMMIT_WAIT        TYPE  CHAR1           VALUE '5'            ,  "  Waiting to update in DB
           C_TABNAME            TYPE  CHAR1           VALUE '1'            ,  "  Parameter (ALV)
           C_CANCEL             TYPE  CHAR1           VALUE 'N'            ,  "  Cancel
           C_YES                TYPE  CHAR1           VALUE 'J'            .  "  Yes.
Variable Declaration For Container and ALV Grid              *
DATA: OBJ_CUST_CONTAINER  TYPE  REF TO  CL_GUI_CUSTOM_CONTAINER            ,  "  Container Class
      OBJ_CUST_GRID       TYPE  REF TO  CL_GUI_ALV_GRID                    .  "  ALV  Grid Class
Field Catalog Declaration For Container and ALV Grid         *
DATA: IT_FIELDCAT  TYPE  LVC_T_FCAT                                        ,  "  Field Catalog
      IT_EXCLUDE   TYPE  UI_FUNCTIONS                                      ,  "  Standard Function Exclude from ALV
      WA_FIELDCAT  TYPE  LVC_S_FCAT                                        ,  "  For Field Catalog
      WA_LAYOUT    TYPE  LVC_S_LAYO                                        .  "  ALV Layout
Global Variable Declaration                                  *
DATA: OK_CODE                  TYPE  SY-UCOMM                              ,  "  OK CODE ( Screen Attribute Don't Change the var.name)
      G_SAVE_CODE              TYPE  SY-UCOMM                              ,  "  OK CODE
      G_ANSWER                 TYPE  CHAR1                                 ,  "  OK or Cancel.
      G_SELECTION_DYNNR        TYPE  SYDYNNR                               ,  "  Screen Number
      G_ERROR_TEXT             TYPE  CHAR128                               ,  "  Error Text
      G_SELECTION_TOGGLE_TEXT  TYPE  CHAR50                                ,  "  Toggle Text, Value: Hide Selection, Show Selection
      G_MATNR                  TYPE  MATNR                                 ,  "  Material
      G_SMATNR                 TYPE  MATNR                                 ,  "  Material
      G_SMTART                 TYPE  MTART                                 .  "  Material Type
Include: ZB_ALVOOPS_TEST_SEL
Line:-------
Selection Screen
SELECTION-SCREEN BEGIN OF SCREEN 9001 AS SUBSCREEN                           .
SELECTION-SCREEN BEGIN OF BLOCK SELECTION WITH FRAME TITLE TEXT-001          .
SELECT-OPTIONS: S_MATNR  FOR G_SMATNR                                        ,  "  Material
                S_MTART  FOR G_SMTART                                        .  "  Material Type
SELECTION-SCREEN   END OF BLOCK SELECTION                                    .
SELECTION-SCREEN   END OF SCREEN 9001                                        .
Empty Selection
SELECTION-SCREEN BEGIN OF SCREEN 9002 AS SUBSCREEN                           .
SELECTION-SCREEN BEGIN OF BLOCK SELECTION_NIL WITH FRAME TITLE TEXT-002      .
Nil
SELECTION-SCREEN   END OF BLOCK SELECTION_NIL                                .
SELECTION-SCREEN   END OF SCREEN 9002                                        .
Include: ZB_ALVOOPS_TEST_CL01
Line:-------
CLASS lcl_event_handler DEFINITION                                  *
Event Handler Class Definition                                      *
CLASS LCL_EVENT_HANDLER DEFINITION.
  PUBLIC SECTION.
    METHODS:
    HANDLER_TOOLBAR      FOR EVENT TOOLBAR OF CL_GUI_ALV_GRID
                             IMPORTING  E_OBJECT E_INTERACTIVE     ,
    HANDLER_USER_COMMAND FOR EVENT USER_COMMAND OF CL_GUI_ALV_GRID
                             IMPORTING E_UCOMM                     .
ENDCLASS.                    "lcl_event_handler DEFINITION
CLASS lcl_event_handler IMPLEMENTATION                              *
Event Class Implementation.                                         *
CLASS LCL_EVENT_HANDLER IMPLEMENTATION.
Toolbar -----Create 'Add Issue' button
  METHOD HANDLER_TOOLBAR.
    DATA:  L_WA_TOOLBAR  TYPE  STB_BUTTON.                                          "  Toolbar
    CLEAR: L_WA_TOOLBAR.
Button Type
    L_WA_TOOLBAR-BUTN_TYPE  =  C_BUTTON_TYPE   .            "  3.
    APPEND L_WA_TOOLBAR TO E_OBJECT->MT_TOOLBAR.
Add Issue Button.
    CLEAR: L_WA_TOOLBAR.
    L_WA_TOOLBAR-FUNCTION   =  'ADD_MI'   .                                         "  'ADD_MI'   .
    L_WA_TOOLBAR-ICON       =  'ICON_CREATE'.
    L_WA_TOOLBAR-QUICKINFO  =  'CREATE'   .                                         "  'Add Issue'.
    L_WA_TOOLBAR-TEXT       =  'CREATE'   .                                         "  'Add Issue'.
    L_WA_TOOLBAR-DISABLED   =  ''.
    APPEND L_WA_TOOLBAR TO E_OBJECT->MT_TOOLBAR.
    CLEAR: L_WA_TOOLBAR.
  ENDMETHOD.                    "handler_toolbar
User Actions Events-- Handle 'Add Issue' Button Click.
  METHOD HANDLER_USER_COMMAND.
    CASE E_UCOMM.
Add Issue Button.
      WHEN C_ADD_MI.
        IF NOT G_MATNR IS INITIAL.
          FG_REFRESH  =  C_TRUE.
          PERFORM F_ADD_MEDIAISSUE.
        ENDIF.
    ENDCASE.
Refresh Control
    CALL METHOD CL_GUI_CFW=>FLUSH
      EXCEPTIONS
        CNTL_SYSTEM_ERROR = 1
        CNTL_ERROR        = 2
        OTHERS            = 3.
Handle Exceptions
    IF SY-SUBRC <> 0.
      CASE SY-SUBRC.
        WHEN 1.
          G_ERROR_TEXT = TEXT-026.                                        "  'Control System Error'.
        WHEN 2.
          G_ERROR_TEXT = TEXT-027.                                        "  'Control CL_GUI_CFW Has Raised Error'.
      ENDCASE.
        MESSAGE G_ERROR_TEXT TYPE 'E'.
    ENDIF.
Refresh Alv Grid.
    PERFORM F_REFRESH_GRID.
  ENDMETHOD.                    "handler_user_command
ENDCLASS.                    "lcl_event_handler IMPLEMENTATION
Object Ref. Event Class.
DATA: OBJ_EVENT_HANDLER TYPE REF TO LCL_EVENT_HANDLER.
Include: ZB_ALVOOPS_TEST_PBO
Line:----
Module  STATUS_9000  OUTPUT                                        *
Set PF-Status                                                      *
MODULE STATUS_9000 OUTPUT.
PF Status
  SET PF-STATUS C_STATUS9000  .
  SET TITLEBAR  C_TITLEBAR    .
ENDMODULE.                 " STATUS_9000  OUTPUT
Module  Create_Alvgrid  OUTPUT                                     *
Create Or Refresh ALV Grid                                         *
MODULE CREATE_ALVGRID OUTPUT.
  PERFORM F_PROCESS_ALV .
  PERFORM F_REFRESH_GRID.
ENDMODULE.                 " create_alvgrid  OUTPUT
Include: ZB_ALVOOPS_TEST_PAI
Line:----
Module  exit_command  INPUT                                        *
Exit Command ( Cancel and Exit )                                   *
MODULE EXIT_COMMAND INPUT.
  LEAVE PROGRAM.
ENDMODULE.                 " exit_command  INPUT
Module  user_command_9000  INPUT                                   *
User Command - Process toolbar Events                              *
MODULE USER_COMMAND_9000 INPUT.
Take an Action based on user Input
  G_SAVE_CODE = OK_CODE.
  CLEAR OK_CODE.
  CASE G_SAVE_CODE.
Back
    WHEN C_BACK .
Raise the Confirmation Message When User not saved the data.
      IF FG_SAVE = C_YES.
        PERFORM F_EXITCHECK CHANGING G_ANSWER .
        IF G_ANSWER = C_YES.
          PERFORM F_SAVE_DATA.
        ELSE.
          CLEAR G_SAVE_CODE.
        ENDIF.
        CLEAR: FG_SAVE.
      ENDIF.
      LEAVE PROGRAM.
Enter
    WHEN C_ENTER.
Execute ( F8 )
    WHEN C_EXECUTE .
      IF IT_MARA IS INITIAL.
        PERFORM F_SELECTMATERIAL.
      ENDIF.
Toggle Button
    WHEN C_SEL01.
      PERFORM F_TOGGLE_SELECTION_SCREEN.                                  " USING ok_code.
SAVE  ( CTRL+S )
    WHEN C_SAVE.
      IF NOT G_MATNR IS INITIAL.
        PERFORM F_SAVE_DATA.
        CLEAR: G_MATNR.
      ENDIF.
New Entry ( CTRL+F1 )
    WHEN C_REFRESH.
      PERFORM F_REFRESH_DATA.
  ENDCASE.
ENDMODULE.                 " user_command_9000  INPUT
Include: ZB_ALVOOPS_TEST_F01
Line:----
Form  f_toggle_selection_screen                                    *
Toggle Function - Hide Selection / Show Selection                  *
FORM F_TOGGLE_SELECTION_SCREEN.
Toggle Function
  IF G_SELECTION_DYNNR = C_SCREEN_SELECT.
    G_SELECTION_DYNNR = C_SCREEN_SELECT_NIL.
    G_SELECTION_TOGGLE_TEXT = TEXT-902.
  ELSE.
    G_SELECTION_DYNNR = C_SCREEN_SELECT.
    G_SELECTION_TOGGLE_TEXT = TEXT-901.
  ENDIF.
ENDFORM.                    " f_toggle_selection_screen
Form  f_initialize
Initialize Screen Number and Text
FORM F_INITIALIZE .
Initialize Screen Number
  G_SELECTION_DYNNR      = C_SCREEN_SELECT.
  G_SELECTION_TOGGLE_TEXT = TEXT-901.
ENDFORM.                    "f_initialize
Form  f_selectmaterial                                           *
FORM F_SELECTMATERIAL .
Select the data from Mara Table
  SELECT A~MATNR
         A~VPSTA
         A~MTART
         A~MBRSH
         A~MATKL
         A~BISMT
         A~MEINS
         A~BSTME
         A~BRGEW
         B~MAKTX
    INTO TABLE IT_MARA
    FROM MARA AS A INNER JOIN MAKT AS B ON AMATNR = BMATNR
   WHERE A~MATNR IN S_MATNR
     AND A~MTART IN S_MTART
     AND B~SPRAS = 'EN'.
  IF SY-SUBRC = 0.
    FG_REFRESH  =  C_TRUE.
    FG_SAVE     =  C_YES .
    G_MATNR     =  C_TRUE.
    LOOP AT IT_MARA INTO WA_MARA WHERE BRGEW >= 200.
      WA_MARA-ROWCOLOR  =  'C310'.
      MODIFY IT_MARA FROM WA_MARA.
    ENDLOOP.
  ELSE.
    MESSAGE 'No data Found' TYPE 'E'.
  ENDIF.
ENDFORM.                    " f_selectmaterial
Form  f_initialize_grid                                            *
Initialize Field Catalog.                                          *
FORM F_INITIALIZE_GRID .
  field catalog
  PERFORM F_ATTRFCAT USING :
                   'MATNR'  '1' '0'   TEXT-005       '15' '0' 'X' ' ' ' ',
                   'VPSTA'  '1' '1'   TEXT-006       '15' '0' 'X' ' ' ' ',
                   'MTART'  '1' '2'   TEXT-007       '15' '0' ' ' ' ' ' ',
                   'MBRSH'  '1' '3'   TEXT-008       '15' '0' ' ' ' ' ' ',
                   'MATKL'  '1' '4'   TEXT-009       '15' '0' ' ' 'X' ' ',
                   'BISMT'  '1' '5'   TEXT-010       '15' '0' ' ' ' ' ' ',
                   'MEINS'  '1' '6'   TEXT-011       '15' '0' ' ' ' ' ' ',
                   'BSTME'  '1' '7'   TEXT-012       '15' '0' ' ' ' ' ' ',
                   'MAKTX'  '1' '8'   TEXT-013       '15' '0' ' ' ' ' 'C711',
                   'BRGEW'  '1' '9'   TEXT-014       '15' '0' ' ' ' ' ' '.
Set Editable Fields in ALV.
  PERFORM F_SETEDIT_FIELDS CHANGING IT_FIELDCAT.
ENDFORM.                    "f_initialize_grid
Form  f_setedit_fields                                             *
Set Editable Fields in ALV                                         *
C_IT_FIELDCAT  <--  Field Catalog                                  *
FORM F_SETEDIT_FIELDS  CHANGING C_IT_FIELDCAT TYPE LVC_T_FCAT.
Local Variable Declaration.
  DATA: LS_FIELDCAT LIKE LINE OF C_IT_FIELDCAT.                           "  Field Catalog
Create Editable Fields.
  LOOP AT C_IT_FIELDCAT INTO LS_FIELDCAT.
    CASE LS_FIELDCAT-FIELDNAME.
      WHEN 'BRGEW'.
        LS_FIELDCAT-EDIT = C_TRUE.
      WHEN 'MAKTX'.
        LS_FIELDCAT-EDIT = C_TRUE.
    ENDCASE.
    MODIFY C_IT_FIELDCAT FROM LS_FIELDCAT.
  ENDLOOP.
ENDFORM.                    " f_setedit_fields
Form  f_attrfcat                                                   *
Update Field Catalog Internal Table                                *
U_FIELDNAME     -->  Field Name                                    *
U_ROW_POS       -->  Row Position                                  *
U_COL_POS       -->  Column Position                               *
U_SELTEXT_L     -->  Display Column Heading                        *
U_OUTPUTLEN     -->  Heading Output Length                         *
U_DECIMALS_OUT  -->  Number of decimal places in output            *
U_KEY           -->  Key in ALV Display                            *
U_FIX           -->  Existence of fixed values                     *
FORM F_ATTRFCAT USING
                    U_FIELDNAME    TYPE  SLIS_FIELDNAME
                    U_ROW_POS      TYPE  SYCUROW
                    U_COL_POS      TYPE  SYCUCOL
                    U_SELTEXT_L    TYPE  SCRTEXT_L
                    U_OUTPUTLEN    TYPE  OUTPUTLEN
                    U_DECIMALS_OUT TYPE  CHAR1
                    U_KEY          TYPE  CHAR1
                    U_FIX          TYPE  VALEXI
                    U_COL_COLOR    TYPE  LVC_EMPHSZ.
Update field catalog.
  WA_FIELDCAT-FIELDNAME    = U_FIELDNAME.
  WA_FIELDCAT-ROW_POS      = U_ROW_POS.
  WA_FIELDCAT-COL_POS      = U_COL_POS.
  WA_FIELDCAT-COLTEXT      = U_SELTEXT_L.
  WA_FIELDCAT-SELTEXT      = U_SELTEXT_L.
  WA_FIELDCAT-OUTPUTLEN    = U_OUTPUTLEN.
  WA_FIELDCAT-DECIMALS_O   = U_DECIMALS_OUT.
  WA_FIELDCAT-KEY          = U_KEY.
  WA_FIELDCAT-VALEXI       = U_FIX.
  WA_FIELDCAT-EMPHASIZE    = U_COL_COLOR.
  APPEND WA_FIELDCAT TO IT_FIELDCAT.
  CLEAR WA_FIELDCAT.
ENDFORM.                    "ATTR_FCAT
Form  f_refresh_data                                               *
Clear All the objects used in the program ( Data Related )         *
FORM F_REFRESH_DATA .
Clear All the Objects Used in Our Program.
  CLEAR: S_MATNR      ,
         S_MTART      ,
         IT_MARA      ,
         OK_CODE      ,
         FG_REFRESH   ,
         FG_SAVE      ,
         G_SAVE_CODE  ,
         G_MATNR      .
  FREE:  S_MATNR      ,
         S_MTART      ,
         IT_MARA      ,
         OK_CODE      ,
         FG_REFRESH   ,
         FG_SAVE      ,
         G_SAVE_CODE  ,
         G_MATNR      .
Refresh Alv.
  FG_REFRESH  =  C_TRUE.
ENDFORM.                    " f_refresh_data
Form  f_process_alv                                                *
1. Create Custom Container                                         *
2. Create ALV Grid                                                 *
3. Exclude Standard Functions                                      *
4. Display the ALV                                                 *
5. Register the Events.                                            *
FORM F_PROCESS_ALV .
Display ALV
Custom Container
  IF OBJ_CUST_CONTAINER IS INITIAL.
    CREATE OBJECT OBJ_CUST_CONTAINER
      EXPORTING
        CONTAINER_NAME = C_ISSUE_CONTAINER.
ALV Grid
    IF OBJ_CUST_GRID IS INITIAL.
      CREATE OBJECT OBJ_CUST_GRID
        EXPORTING
          I_PARENT = OBJ_CUST_CONTAINER.
    ENDIF.
Exclude Standard Functions
    PERFORM F_EXCLUDETOOLBAR USING OBJ_CUST_GRID
                          CHANGING IT_EXCLUDE.
Layout.
    WA_LAYOUT-CWIDTH_OPT  =  C_TRUE.
    WA_LAYOUT-INFO_FNAME  =  'ROWCOLOR'.
ALV Grid Display
    CALL METHOD OBJ_CUST_GRID->SET_TABLE_FOR_FIRST_DISPLAY
      EXPORTING
       IS_LAYOUT            = WA_LAYOUT
        IT_TOOLBAR_EXCLUDING = IT_EXCLUDE
        I_SAVE               = C_ALV_SAVE
      CHANGING
        IT_FIELDCATALOG      = IT_FIELDCAT[]
        IT_OUTTAB            = IT_MARA.
  ENDIF.
Register Editable ALV Events
  CALL METHOD OBJ_CUST_GRID->REGISTER_EDIT_EVENT
    EXPORTING
      I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED
    EXCEPTIONS
      ERROR      = 1
      OTHERS     = 2.
*Create Object for Custom Event Handler Class if the ref. object is
*initial.
  IF OBJ_EVENT_HANDLER IS INITIAL.
    CREATE OBJECT OBJ_EVENT_HANDLER.
  ENDIF.
Register Events
  SET HANDLER: OBJ_EVENT_HANDLER->HANDLER_TOOLBAR       FOR
  OBJ_CUST_GRID,
               OBJ_EVENT_HANDLER->HANDLER_USER_COMMAND  FOR
               OBJ_CUST_GRID.
Set Toolbar
  CALL METHOD OBJ_CUST_GRID->SET_TOOLBAR_INTERACTIVE.
ENDFORM.                    " f_process_alv
Form  f_excludetoolbar                                             *
Exclude Standard Functions from ALV                                *
U_OBJ_CUST_GRID  -->  Instant for CL_GUI_ALV_GRID                  *
C_IT_EXCLUDE     <--  Internal table for Exclude                   *
FORM F_EXCLUDETOOLBAR  USING  U_OBJ_CUST_GRID  TYPE REF TO CL_GUI_ALV_GRID
                    CHANGING  C_IT_EXCLUDE     TYPE UI_FUNCTIONS.
Exclude Standard Functions
  CLEAR: C_IT_EXCLUDE.
  APPEND U_OBJ_CUST_GRID->MC_FC_CHECK              TO  C_IT_EXCLUDE.
  APPEND U_OBJ_CUST_GRID->MC_FC_REFRESH            TO  C_IT_EXCLUDE.
  APPEND U_OBJ_CUST_GRID->MC_FC_LOC_COPY           TO  C_IT_EXCLUDE.
  APPEND U_OBJ_CUST_GRID->MC_FC_LOC_COPY_ROW       TO  C_IT_EXCLUDE.
  APPEND U_OBJ_CUST_GRID->MC_FC_LOC_CUT            TO  C_IT_EXCLUDE.
  APPEND U_OBJ_CUST_GRID->MC_FC_LOC_DELETE_ROW     TO  C_IT_EXCLUDE.
  APPEND U_OBJ_CUST_GRID->MC_FC_LOC_APPEND_ROW     TO  C_IT_EXCLUDE.
  APPEND U_OBJ_CUST_GRID->MC_FC_LOC_INSERT_ROW     TO  C_IT_EXCLUDE.
  APPEND U_OBJ_CUST_GRID->MC_FC_LOC_MOVE_ROW       TO  C_IT_EXCLUDE.
  APPEND U_OBJ_CUST_GRID->MC_FC_LOC_PASTE          TO  C_IT_EXCLUDE.
  APPEND U_OBJ_CUST_GRID->MC_FC_LOC_PASTE_NEW_ROW  TO  C_IT_EXCLUDE.
  APPEND U_OBJ_CUST_GRID->MC_FC_LOC_UNDO           TO  C_IT_EXCLUDE.
ENDFORM.                    " f_excludetoolbar
Form  f_create_returnrequest                                       *
Create Return Request based on the Work container ( ALV Grid Data) *
FORM F_CREATE_RETURNREQUEST.
Message to save
ENDFORM.                    " f_create_returnrequest
Form  f_add_mediaissue                                             *
Create New Media Issue if the user click 'ADD ISSUE' Button.       *
1. Get the Input From User                                         *
2. Get Total Delivery and Return Quantity                          *
3. Append to Final internal table                                  *
FORM F_ADD_MEDIAISSUE .
Local Variable Declaration.
  MESSAGE 'Add Button Clicked' TYPE 'I'.
ENDFORM.                    " f_add_mediaissue
Form  f_refresh_grid                                               *
Refresh ALV Grid                                                   *
FORM F_REFRESH_GRID .
Refresh ALV Grid.
  IF FG_REFRESH IS NOT INITIAL.
    CALL METHOD OBJ_CUST_GRID->REFRESH_TABLE_DISPLAY.
    CLEAR: FG_REFRESH.
  ENDIF.
ENDFORM.                    " f_refresh_grid
Form  f_getcollectissue                                            *
FORM F_GETCOLLECTISSUE .
Collection Plan Data
ENDFORM.                    " f_getcollectissue
Form  f_perpare_final                                              *
FORM F_PERPARE_FINAL .
Perpare Final Internal table
ENDFORM.                    " f_perpare_final
Form  f_validate_data                                              *
FORM F_VALIDATE_DATA.
Message if any data validation.
ENDFORM.                    " f_validate_data
Form  f_modify_final                                               *
Update Actual Delivery Qty and Return Qty in Final Internal table  *
Form  f_save_data                                                  *
Save the Data When User Click 'Save' Button                        *
FORM F_SAVE_DATA .
Message
  MESSAGE 'Save Button Clicked' TYPE 'I'.
ENDFORM.                    "f_save_data
Form  f_exitcheck                                                  *
When User Exit from the Transaction then Raise Confirmation message*
C_ANSWER  <--  OK or Cancel.                                       *
FORM F_EXITCHECK  CHANGING C_ANSWER TYPE CHAR1.
Security Check.
  C_ANSWER  =  C_CANCEL.
  CALL FUNCTION 'POPUP_TO_CONFIRM_DATA_LOSS'
    EXPORTING
      TITEL  = TEXT-039
    IMPORTING
      ANSWER = C_ANSWER.
ENDFORM.                    "f_exitcheck
Screen Numer : 9000
Line:------
PROCESS BEFORE OUTPUT.
  MODULE STATUS_9000.
  CALL SUBSCREEN: SELECTIONSCREEN INCLUDING SY-CPROG G_SELECTION_DYNNR.
  MODULE CREATE_ALVGRID.
PROCESS AFTER INPUT.
  MODULE EXIT_COMMAND AT EXIT-COMMAND.
  CALL SUBSCREEN: SELECTIONSCREEN.
  MODULE USER_COMMAND_9000.
pls reward if it is useful

Similar Messages

  • How to populate the data into the newly added infoobjects?

    Hi,
    how to populate the data into the newly added infoobjects?
    Thanx in advance,
    Ravi.

    hi ravi,
      here is one example how to enhance.
    Goto RSA6- select the 0Material.- Click on Enhance extract structure-> it will take u to the next screen there u need to create the field material group1. and append it to 0Material.
    Goback to RSA6-- RC on 0material-- it will take you to customer version edit screen- here unchk the Hide and Field only known in exit options n save it.
    Next Go back to RSA6-- 0material- click on Function enhancement it will take you to CMOD Screen( here we need to enter the project name and click create if not created on click display)
    In the next screen we find the function exits Like EXIT_SAPLRSAP_001 FOR T DATA AND EXIT_SAPLRSAP_002 FRO Master Data,_003 for Text n _004 for Hierarchies.
    select the appropriate function exit and double clikc on it. It will take you to Function builder screen.
    D Click on defn of Include ZXRSAU01. it will take you to abap editor screen.
    here u need to include the code for the enhanced fields n also write the code to populate the dat for that particular field.
    save it and avtivate the code.
    Hope this Is helpz,
    partha

  • Error while writing the data into the file . can u please help in this.

    The following error i am getting while writing the data into the file.
    <bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    <part name="code">
    <code>null</code>
    </part>
    <part name="summary">
    <summary>file:/C:/oracle/OraBPELPM_1/integration/orabpel/domains/default/tmp/
    .bpel_MainDispatchProcess_1.0.jar/IntermediateOutputFile.wsdl
    [ Write_ptt::Write(Root-Element) ] - WSIF JCA Execute of operation
    'Write' failed due to: Error in opening
    file for writing. Cannot open file:
    C:\oracle\OraBPELPM_1\integration\jdev\jdev\mywork\
    BPEL_Import_with_Dynamic_Transformation\WORKDIRS\SampleImportProcess1\input for writing. ;
    nested exception is: ORABPEL-11058 Error in opening file for writing.
    Cannot open file: C:\oracle\OraBPELPM_1\integration\jdev\jdev\mywork\
    BPEL_Import_with_Dynamic_Transformation
    \WORKDIRS\SampleImportProcess1\input for writing. Please ensure 1.
    Specified output Dir has write permission 2.
    Output filename has not exceeded the max chararters allowed by the
    OS and 3. Local File System has enough space
    .</summary>
    </part>
    <part name="detail">
    <detail>null</detail>
    </part>
    </bindingFault>

    Hi there,
    Have you verified the suggestions in the error message?
    Cannot open file: C:\oracle\OraBPELPM_1\integration\jdev\jdev\mywork\BPEL_Import_with_Dynamic_Transformation\WORKDIRS\SampleImportProcess1\input for writing.
    Please ensure
    1. Specified output Dir has write permission
    2. Output filename has not exceeded the max chararters allowed by the OS and
    3. Local File System has enough space
    I am also curious why you are writing to a directory with the name "..\SampleImportProcess1\input" ?

  • Saving the data into the tab limited text file

    Dear Friends ,
    please help me at the earliest possible , i want to store the data into an text file which is tab limited ,previously i was able to the same into the excel sheet using the jakarta HSSF POI , an open source library to store the data into the EXCEL sheet , now friends please tell me whether is there any other open source to store the data into the tab limited text file what i mean by tablimited is the data is to be saved as
    Name        Email-id        phone          streeet          city
    sri            @some.com     9434           jahdui          hye
    asdf         @.com           3455           sdgsdf         retlike this so please suggest me
    thank you in advance,
    bye
    sriharsha

    Consult the docs for BufferedWriter and from there.
    regards
    Christian
    import java.io.*;
    public class Test
         public static void main(String[] args)
              BufferedWriter writer;
              String[][] s = { {"Name","Email-id","phone","streeet","city"},
                        {"sri","@some.com","9434","jahdui","hye"},
                        {"asdf","@.com","3455","sdgsdf","ret"}};
              try {
                   writer = new BufferedWriter(new FileWriter("out.txt"));
                   for (int j=0; j< s.length; j++) {
                        for (int i = 0; i < s[j].length; ++i) {
                             writer.write(s[j]+"\t");
                        writer.newLine();
                   writer.close();
              } catch (IOException e) {
                   e.printStackTrace();

  • Dynamically generating the ssrs dataset and filling the data into the dataset and binding it to ssrs report dynamically

    I have a work to do, in ssrs we are using server reports in our project. i am looking for dynamically generating the ssrs dataset and filling the data into the dataset and binding the dataset to ssrs report(RDL) dynamically.
    Getting the dataset dynamically has a solution by using Report Definition Customization Extension (RDCE), but the problem is binding that dataset to the report(RDL) dynamically was not there.
    Here is the reference for RDCE http://www.codeproject.com/Articles/355461/Dynamically-Pointing-to-Shared-Data-Sources-on-SQL#6
    I looked for binding the dataset to the report(RDL) dynamically and searched many sites but i did not get the solution. Can anyone help me here.
    Is there any custom assemblies or any Custom data processing extensions to work around. Please help.
    Thanks in advance

    Hi Prabha2233,
    Thank you for your question.
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated.
    Thank you for your understanding and support.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Creating a collection from a query in Apex 4.2 is not populating the data into the collection.

    I have a process that creates a collection with data from multiple tables. The query returns multiple rows in 'Sql commands' tab. The same query is used to create the collection in 'Before Header' and when i create a region with Region source as
    Select * From apex_collections Where collection_name = 'load_dashboard';
    At the time of rendering the page shows me 'no data found'.
    what could be the problem? Are there any prerequisites before creating the collection?
    Thanks in Advance,
    Sriram

    Hi Denes,
    Below is my code for creating and saving data into the collection.
    if apex_collection.collection_exists(p_collection_name =>'load_dashboard') then
       apex_collection.delete_collection(
             p_collection_name =>'load_dashboard');
    end if;
    apex_collection.create_collection_from_query(
        p_collection_name => 'load_dashboard',
        p_query => 'select a.rowid
                   ,b.first_name
                   ,b.last_name
                   ,c.job_title
                   ,d.parent
                   ,d.child_level_1
                   ,d.child_level_2
                   ,a.resource_allocation
                   ,a.person_id
                   ,a.month_id
                   ,a.oracom_project_id    ,wwv_flow_item.md5(a.rowid,b.first_name,b.last_name,c.job_title,d.parent,d.child_level_1,d.child_level_2,a.resource_allocation,a.person_id,a.month_id,a.oracom_project_id)
    from oracom_resource_management a, oracom_people b,oracom_job c ,oracom_project d where a.supervisor_id=886302415 and a.month_id=201312 and a.oracom_job_id=c.job_id and a.person_id=b.person_id and a.oracom_project_id=d.oracom_project_id',
       p_generate_md5 => 'YES'
    Sriram.

  • How to writing the data into the file at the same frequency of data acquisition using myRIO

    Hi everyone,
    I have a question regarding data acquisition fequency and data recording frequency of myRIO. Hope you guys can help me out.
    Basically, I want to acquire voltage input at analog input 0 at the frequency of 1kHz and then write the data into a file (tdms format). 
    However, I always found there were only 55 or 56 data points recorded every second in the data file (see the excel sheet). 
    To confirm my data acquisition was performed at the correct frequency, I added a small function in the main loop to indicate the time spent between two acquisition events. 
    To my surprise, the period of data acquistion is correct (1ms or 1kHz) but there are only 55 or 56 data point per second recorded in the data file.
    How can I record every data point acquired by the analog input?
    Thank you!
    P.S. I am very new to myRIO. How can I manually set the system time for myRIO? The default time of my myRIO is wrong. 
    Best,
    Tengyang
    Attachments:
    test result.xlsx ‏16 KB
    Main with timed loop.vi ‏122 KB
    test result.xlsx ‏16 KB

    Have a look at the Jakarta POI project, they have a Java API for creating Word documents.
    http://jakarta.apache.org/poi/hwpf/index.html

  • Displaying the data into the UI tables

    Hello Experts,
    I am new to web dynpro ABAP and I have created the tree with two UI tables(table1 and table2) by using web dynpro ABAP and want to display the data into both the UI tables at the same time just by one click on the item node of the tree.
    presently I am able to display the data as follows
    1. when I click on the item node the relevant data for the item  appears into table1, but not into table2
    2. when I  select the row of table1 then the revlevant data for item appears into table2.
    like this i can able to dispaly the data into both the table.
    My Question.
    how  to display the data at the same time into both the tables table1 and table2 just by one click
      on the item node.
    please help
    Thanks in advance
    Regards,
    fahad.

    Hi,
    I am able to invoke the method before the taskflow.
    But it is giving me the exception as *"UI Component is Null"* .
    The value of the table which I am using to display the data is coming as Null.
    Please let me know what could be the issue and how to solve this.

  • Want to Read the a txt file and put the data into the table colums.

    I have a text file in which data is piped separated and I want to put the data in the table column.
    Eg.
    Text File Column
    First_name|Last_name|address|phone_number
    Database table:
    first_name ,last_name,address,phone_number
    It's very urgent.
    Thanks For your help in advance.
    Himanshu

    Use sqlldr or external file.
    See http://download.oracle.com/docs/cd/E11882_01/server.112/e10701/part_ldr.htm#i436326 for SQL Loader.
    See http://download.oracle.com/docs/cd/E11882_01/server.112/e10595/tables013.htm#ADMIN11705 for External table.

  • How to export out the date into the csv file?

    Hi, I had been trying to export out the value of the date to csv file.
    This is the  script:
    $strADPath = 'LDAP://dc=test,dc=com'
    function ConvertLargeIntegerToDate([object]$LargeInteger){
    try
    $int64 = ConvertLargeIntegerToInt64 ($LargeInteger)
    if ($int64 -gt 0)
    $retDate = [datetime]::fromfiletime($int64)
    else
    $retDate = $null
    return $retDate
    catch
    return $null
    $objSearch = New-Object DirectoryServices.DirectorySearcher
    $objSearch.Filter = '(&(objectClass=user)(samaccountname=user1))'
    $objSearch.SearchRoot = $strADPath
    $objSearch.PageSize = 1000
    $objSearch.SearchScope = "subtree"
    $objResults = $objSearch.Findall()
    $dateAccountExpires = ConvertLargeIntegerToDate $objUser.accountexpires[0]
    Write-Host "date Account expires: " $dateAccountexpires
    $objResults| ForEach-Object{
    $_.GetDirectoryEntry()
    } |
    Select-Object -Property @{Name="sAMaccountName";Expression={$_.sAMAccountName}},
    @{Name="cn";Expression={$_.cn}},
    @{Name="name";Expression={$_.name}},
    @{Name="manager";Expression={$_.manager}},
    @{Name="givenName";Expression={$_.givenName}},
    @{Name="accountExpires";Expression={$_.dateAccountExpires}},
    @{Name="department";Expression={$_.department}} |
    Export-Csv -Path 'D:\test44.csv'
    This is what I get in PowerShell ISE:
    This is what I had get for the csv file for the expire date:

    hi FWN,
    the code had giving me error saying that it could not call method on a null-value expression.
    $temp = $_.Properties
    the code had gave error saying that it could not call method on a null-value expression.
    $properties | %{ $res.$_ = $temp.Item($_) }
    the code had gave error saying that it could not call method on a null-value expression.
    with lot of thanks
    noobcy

  • AFTER LOADING THE DATA INTO THE INFOCUBE IT SHOULD NOT DISPLAY IN REPORTING

    Hi experts,
                     I have the data in infocube. When i selected the cube in reporting it should not display i.e; the data should not display in reporting.
    thanks nd regards,
    venkat

    Bit strange requirement. But if you have data in Cube and automatically its will be available for Reporting. unlike ODS, we do not have option of "Automatic request activation".
    However on repoeting side, you can restrict the values to #  and exclude everything from slection. But not good solution as such.
    Regards
    Pankaj

  • Error while loading the data into the cube using DTP.

    No SID found for the value'UL' of characterstics 0BASE_UOM.
    Please give me the idea ,to solve the error.
    Thanks&Regards
    Syam Prasad Dasari

    https://forums.sdn.sap.com/click.jspa?searchID=23985990&messageID=6733764
    https://forums.sdn.sap.com/click.jspa?searchID=23985990&messageID=5062570

  • How do I auto populate the date into text fields when form is first opened?

    Hello,
    I read all about the changing the scripts but its not really working for me. I was hoping someone could help me with directions on how to auto populate the date into designated text fields when my adobe document is first opened?
    I am working in Adobe Acrobat 9.
    Thank you,
    Sheri

    When you add a new document JavaScript (Advanced > Document Processing > Document JavaScripts > Script Name (enter something) > Add), you will be given a function skeleton by default. Just delete it and enter the line of code I showed above. Now, whenever the document is opened, the code will get triggered and the field will be updated with the current date. There is no "Document Open" action (at least that's accessible via Acrobat's UI), but this is effectively the same thing since any document-level JavaScripts are executed when the document is opened.

  • Adding data into the InfoCube

    i have follow a step by step guide to do this BI solution but i can load the data into the info. is there any way to load data into the info cube?? thanks for your help.

    Hi,
    Please follow the below steps to load your data
    Here are the steps,
    1.Open Administrator Workbench: Modeling, from the menu or using the transaction RSA1
    2.Go to Source Systems (File)and Create a new System.
    3. Double click on the datasources, create data source
    4.Entitle the Datasource, choose Transaction Data as Data Type Datasource
    5. In next screen, Go to Extraction , Activate the data source
    6.Go to Preview. Press Read Preview Data.
    7.Data will be loaded: Save and activate the datasource
    8.Go to InfoProvider, go to Info area and create Infocube
    9.Entitle the infocube, press create
    10.Display all info objects: . Choose your info objects ,Move the characteristics and key figure to the infocube by drag and drop adn activate
    11.Go to InfoCube, create transformation
    12.Click on the ‘Show Navigator’ button. Match the fields in navigator. Save and activate.
    13.go to info provider, your info cube, create data transfer process
    14.Choose: Extraction Mode: full
    Update: Valid records update, Reporting possible (Request green)
    Activate, execute
    14.Double click on the data source, Read Preview Data
    15.Create an InfoPackage by right clicking on the datasource. Execute the load into PSA.
    16.Verify data was loaded into PSA before proceeding with the next step.
    17. Execute the Data Transfer Process
    18.Monitor the results (Menu: GoTo: DTP Monitor)
    19.Try to display the data at the BW Frontend.
    Hope this is helpfull.
    Harish

  • Upload the data into interface

    HI Abapers,
    My requirement is that i want to upload the data into the transaction where for the header data there are n number of  item transactions , so my requirement is to select all the item  transactions that should be done in background, so i have written the code below but it is selectiong only the first row
    itd2[] = itd[].
    *icount = 1.
        LOOP AT itd2 INTO wa_itd2.
    icount = 1.
        CONCATENATE 'GWA_MTBAL-CHECK(' icount ')'  INTO w_fnam.
          PERFORM bdc_field       USING 'BDC_CURSOR'
                                  w_fnam.
          PERFORM bdc_field       USING w_fnam
            'X'.
          icount = icount + 1.
        ENDLOOP.
        PERFORM bdc_dynpro      USING 'SAPMZPP001_PRODORDCONF' '9010'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=GR'.
    Pls reply for any changes in code or any clarifications for this post.
    Thanks In advance.

    Hi thank you  for kind reply i need to create the entries  for CO Activity /Price planning .
    i have to upload data to KP26 which i have posted the fields ..
    i already cheked the function modules which you have been given .. it is not suitable ..
    Is there any ohter  BAPI is there ... le t me know ...
    regards
    purushotham.ineni

Maybe you are looking for

  • PDF forms and how they work with different Reader versions

    I'll start this off by giving a little background information and describing a workflow scenario. I work as an InHouse designer for a company that keeps the majority of the employee population always a few versions behind. Fortunately, for us designe

  • Master and Slave concept

    hi guys, i am confused about the master and slave realtionship in ospf. any one can explain it to me in detail.

  • Problems with some memebrs

    Hi guys, I have verry strange problem. I deployed planning application to essbase with EPMA. In Dimension Library I had for example element called: Rachunek przeplywow pienieznych (metoda posrednia). I deployed it. I have this element in esbase and i

  • Hpe 150 freezes. hp assistants says Smart Drive error. Common issue?

    HPE-150f seems like the hard drive is going out. Is this common with these TB drives? Which do i use to replace it? After only one year? Wow. How do i reinstall? I have no CD?

  • Liquidity analysis (FF7b) and Purchase Order

    Hi, I try to figure out, what controls the values from Purchase Order going into Liquidity Analysis. is this based on vendor in EKKO (LIFNR) or based on partner roles? We have a partner role Vendor, a role Sending Party and  a partner role Invoicing