What r the events in alv's

what r the events contain in alv's
plz give in an order
clearly with decsription

(Build up events table)
build an event table, which are used for firing both user commands and the system dependent events i.e. top of page, end of page etc.
A list of possible events is populated into an event table (I_EVENTS) when this table is passed from the function module REUSE_ALV_EVENT_NAMES_GET. The return table from this function module contains all the possible events.
The function module contains following import and export parameters.
IMPORTING PARAMETERS: I_LIST_TYPE
This parameter has possible values from 0-4.
The parameter I_LIST_TYPE is of TYPE SLIS_LIST_TYPE and is DEFAULT 0 .
EXPORTING PARAMETERS:  I_EVENTS table.
This table is of TYPE SLIS_T_EVENT and returns to the program the name of all the possible events.
The table structure contains the fields:
     I_EVENTS-NAME: Name of the Callback event.
I_EVENTS-FORM: Name of the form routine that should be called in the calling program at the event.
Only events with a form routine name are processed.
The I_EVENTS table returns with the following possible constants:
1.     Slis_ev_item_data_expand TYPE slis_formname VALUE 'ITEM_DATA_EXPAND'.     
Only relevant for hierarchical-sequential lists using the layout parameter IS_LAYOUT-EXPAND_FIELDNAME of the structure IS_LAYOUT. Exit for passing item entries (ITEM table) for a header record that was expanded interactively by the user.
2.     Slis_ev_reprep_sel_modify TYPE slis_formname VALUE 'REPREP_SEL_MODIFY'.
RS_SELFIELD-TABINDEX contains the header table index for which the item entries are to       be put in the global item output table (T_OUTTAB_SLAVE). The Callback is only called if ALV has no items for a header that is to be expanded.
RFLG_ALL is passed with 'X' if the user shows all items. The application must ensure that    entries are not repeated in the item table.
    RS_SELFIELD is initial in this case.         
3.     Slis_ev_caller_exit_at_start TYPE slis_formname VALUE 'CALLER_EXIT'.
Is called at the beginning of the function module to make special settings. It is not usually used.          
4.     Slis_ev_user_command TYPE slis_formname VALUE 'USER_COMMAND'.
As this is a frequently-used Callback event, the form routine can also be passed        directly in the interface by passing the user command in the IMPORTING parameter           I_CALLBACK_USER_COMMAND.
5.     Slis_ev_top_of_page TYPE slis_formname VALUE 'TOP_OF_PAGE'.
   Equivalent to the list processing TOP-OF-PAGE event.           
6.     Slis_ev_top_of_coverpage TYPE slis_formname VALUE 'TOP_OF_COVERPAGE'.       
The selection information and list status are output together (if they exist) on a separate page by default
7.     Slis_ev_end_of_coverpage TYPE slis_formname VALUE 'END_OF_COVERPAGE'.       
Analogously to TOP_OF_COVERPAGE the user can add other information
to the information output by ALV (selection information, list status) at this event.
8.     Slis_ev_foreign_top_of_page TYPE slis_formname VALUE ‘FOREIGN_TOP_OF_PAGE'.
The Top-of-page event is always processed in ALV and is only passed to the caller via the Callback mechanism. This is still the case if the caller, e.g. by a user action, processes a branch list which was not formatted by ALV (e.g. a popup with additional information about the list record selected and displayed by ALV).
In this case, top-of-page cannot be formatted by ALV analogously to the basic list, it must be handled completely by the caller. The event top-of-page still occurs in ALV. When ALV notices a top-of-page which was not caused by an ALV output, the form routine in FOREIGN_TOP_OF_PAGE is called.
9.     Slis_ev_foreign_end_of_page TYPE slis_formname VALUE 'FOREIGN_END_OF_PAGE'.  
The event end-of-page is always processed in ALV and only passed to the caller via callback. This is still the case, e.g. when the caller processes a details list which was not formatted by ALV (e.g. a popup with further information about selected list records which were displayed by ALV).
In this case, end-of-page cannot be formatted by ALV analogously to the basic list, it must be handled completely by the caller. The event end-of-page still occurs in ALV. When ALV notices an end-of-page that was not caused by an ALV output, the form routine in FOREIGN_END_OF_PAGE is called.                             
10.     Slis_ev_pf_status_set TYPE slis_formname VALUE 'PF_STATUS_SET'.
If a user list status is to be set, it must be done in the form routine assigned to this event. The ALV function codes, which must not be active, are in the Parameter RT_EXTAB. This table must be passed with the SET PF-STATUS command (with inactive user function codes as well, if necessary).
The STANDARD status of the function group SALV should be used as a          template for a user-specific status. As this is a frequently used Callback event, its form routine can also be passed directly in the interface in the IMPORTING parameter I_CALLBACK_PF_STATUS_SET.
11.     Slis_ev_list_modify TYPE slis_formname VALUE 'LIST_MODIFY'.     
LIST_MODIFY USING R_TABNAME TYPE SLIS_TABNAME
                                         R_INDEX LIKE SY-TABIX
                                         R_INDEX_ITEM LIKE SY-TABIX
                                         R_INDEX_SUM LIKE SY-TABIX.
12.     Slis_ev_top_of_list TYPE slis_formname VALUE 'TOP_OF_LIST'.  
Information output at the start of the list     
13.     Slis_ev_end_of_page TYPE slis_formname VALUE 'END_OF_PAGE'.
Information output at the end of a page. This is only called for printing.
14.     Slis_ev_end_of_list TYPE slis_formname VALUE 'END_OF_LIST'.     
Information output at the end of the list
15.     Slis_ev_after_line_output TYPE slis_formname VALUE 'AFTER_LINE_OUTPUT'.
Output information after each output line. Should only be used in justified cases because it costs a lot of performance.
16.     Slis_ev_before_line_output TYPE slis_formname VALUE   'BEFORE_LINE_OUTPUT'.       
Output information before each output line. Should only be used in justified cases because it costs a lot of performance.         
17.     Slis_ev_subtotal_text TYPE slis_formname VALUE  'SUBTOTAL_TEXT'.                        
This event table (I_EVENTS) is now checked with the desired constants. If the desired constant is found, then the corresponding field for the FORM NAME is populated with the name of the routine containing the corresponding event.
Sample code :
FORMNAME_TOP_OF_PAGE TYPE SLIS_FORMNAME VALUE 'TOP_OF_PAGE',
FORMNAME_END_OF_PAGE TYPE SLIS_FORMNAME VALUE 'END_OF_PAGE', FORMNAME_USER_COMMAND TYPE SLIS_FORMNAME VALUE 'USER_COMMAND'.
DATA: L_I_EVENT TYPE SLIS_ALV_EVENT.
  CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       EXPORTING
           I_LIST_TYPE = 0
       IMPORTING
            ET_EVENTS   = I_EVENTS.
  READ TABLE I_EVENTS WITH KEY NAME = SLIS_EV_TOP_OF_PAGE
                           INTO L_I_EVENT.
  IF SY-SUBRC = 0.
    MOVE FORMNAME_TOP_OF_PAGE TO L_I_EVENT-FORM.
    APPEND L_I_EVENT TO I_EVENTS.
  ENDIF.
  READ TABLE I_EVENTS WITH KEY NAME = SLIS_EV_END_OF_PAGE
                           INTO L_I_EVENT.
  IF SY-SUBRC = 0.
    MOVE FORMNAME_END_OF_PAGE TO L_I_EVENT-FORM.
    APPEND L_I_EVENT TO I_EVENTS.
  ENDIF.
  CLEAR L_I_EVENT.
  READ TABLE I_EVENTS WITH KEY NAME = SLIS_EV_USER_COMMAND
                           INTO L_I_EVENT.
  IF SY-SUBRC = 0.
    MOVE FORMNAME_USER_COMMAND TO L_I_EVENT-FORM.
    APPEND L_I_EVENT TO I_EVENTS.
  ENDIF.
This will prepare the events table for the report.
The report will contain three forms for the above events:
1.     FORM TOP_OF_PAGE: This form will contain the top of page event for the report i.e. header etc
Using the function module ‘REUSE_ALV_COMMENTARY_WRITE’, the internal table containing the headings for top of page event can be passed to the list output. Also, any logo specific to the report can be passed to the function module.
2.     FORM END_OF_PAGE: This form will contain the end of page event for the report i.e. footer etc
3.     FORM USER_COMMAND: This form will contain the desired user command i.e. pick/line selection
hope this helps
Regards
Abdullah

Similar Messages

  • What is the Event in ALV to handle a mark/demark?

    Hi togehter,
    I´m looking for the event to react on a mark or demark in ALV OO.
    Thanks in advance,
    Sebastian

    Hi,
    Check with the [Select or Deselect the row of ALV|Row Select in ALV]
    Hope it helps you.
    Regareds!

  • What are the events in alv reports

    hai this is siva

    Hi siva:
    This is technical question. you should post this query to an ABAPer.
    However this link may help you.
    alv report
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    MSReddy

  • What is the event by which i can get that user deny the offline data store when the message comes in the browser

    I have an application which stores manifest for offline use. Now firefox asking for a confirm message that if i want to allow or not. If i say 'allow' the application works fine. but if i say 'not now' or 'never for this site' the application stops. What is the event to check that user deny to allowing store data. i used different option like - cached,noupdate,error,uncached,idle,obsolete. as an example- applicationCache.addEventListener('idle', function () {});
    but none of this says that user deny to allow. Please tell me the option that i can check that user does not want to allow and do my rest work.

    It should be possible to allow offline data storage for only certain websites, and that setting is in Options > Advanced > Network. If the answer is "don't do it", then it should not be done. Is that not what is happening?

  • What is the difference between ALV list FM display and OO ALV Display?

    What is the difference between ALV Function Modules and Object Oriented ALV Display?

    Hi Sathish ,
      There is not much diffrence , it is only another way of implementing it.
    Regards
    Arun

  • What are the events in interactive reports?

    what are the events in interactive reports?
    could plz explain

    hi,
    First event -
    Initialization : triggered when the report is loaded in memory.
    At selection-screen output : triggered when the selection screen is loaded in memory before being displayed.
    At selection-screen : before leaving the selection screen.
    start-of-selection : the first event for displaying the report.
    This event keyword defines an event block whose event is triggered by the ABAP runtime environment
    when calling the executable program selection screen processing of a selection screen.
    In an executable program, all statements that are not declarations,
    and are listed before the first explicit processing block, are assigned to this event block.
    If the program does not contain an explicitly defined event block START-OF-SELECTION,
    these statements form the complete event block START-OF-SELECTION.
    If a program contains an explicitly defined event block START-OF-SELECTION,
    these statements are added to the beginning of the event block.
    If the program contains no explicitly defined event blocks,
    these statements form the entire event block START-OF-SELECTION.
    end-of-selection : after the start-of-selection is completed.
    classiscal report events.
    top-of-page : every time a new page is started in the list.
    end-of-page : every time the list data reaches the footer region of the page.
    interactive report events.
    top of page during line selection : top of page event for secondary list.
    at line-selection : evey time user dbl-clicks(F2) on the list data.
    at pF<key> : function key from F5 to F12 to perform interactive action on the list.
    at user-command
    <b>http://help.sap.com/saphelp_47x200/helpdata/en/56/1eb6c705ad11d2952f0000e8353423/content.htm</b>
    Rgds
    Anver

  • What are the events in Module Pool Programming ?

    hi,
    what are the events in Module Pool Programming ???
    thx

    Refer the following links :
    http://www.sapdevelopment.co.uk/dialog/dialoghome.htm
    http://help.sap.com/saphelp_webas630/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/content.htm
    http://www.sap-img.com/
    http://help.sap.com/saphelp_46c/helpdata/en/08/bef2dadb5311d1ad10080009b0fb56/content.htm
    http://www.sapgenie.com/links/abap.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm
    http://www.sapdevelopment.co.uk/dialog/dialoghome.htm
    http://help.sap.com
    http://www.sapgenie.com/abap/example_code.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/52/670ba2439b11d1896f0000e8322d00/frameset.htm
    http://www.allsaplinks.com/dialog_programming.html
    http://www.sapbrain.com/TUTORIALS/default.html
    http://www.sappoint.com/abap/spmp.pdf
    <b>Reward points if it helps in any way.</b>

  • What are the events of lsmw?

    what are the events of lsmw?

    hi,
    Check out these:
    Processing time Meaning Default setting
    __BEGIN_OF_PROCESSING__ Before the beginning of
    data processing
    (blank)
    __BEGIN_OF_TRANSACTION__ Before the beginning of
    transaction data
    processing
    (blank)
    __BEGIN_OF_RECORD__ Before applying the
    conversion rules for a
    source structure
    Initialize the structure <segment>
    (Name of target structure)
    Batch Input, Direct Input:
    <segment> = init_<segment>.
    BAPI, IDoc:
    g_edidd_segnam = '...'.
    g_edidd_segnum = '....'.
    g_edidd_psgnum = '......'.
    g_edidd_hlevel = '..'.
    Clear <segment>.
    __END_OF_RECORD After applying the
    conversion rules for a
    source structure
    Transfer_record.
    __END_OF_TRANSACTION__ After finishing transaction
    processing
    Transfer_transaction.
    __END_OF_PROCESSING__ After finishing data
    processing
    (blank)
    transfer_record. Transfers the current record (i.e. for the current target
    structure) to the output buffer.
    transfer_this_record '...'. Transfers a record of another target structure to the output
    buffer. The name of the target structure has to be specified as
    argument in single quotes.
    at_first_transfer_record. Transfers the current record to the output buffer, if it is the first
    transaction.
    on_change_transfer_record. Transfers the current record to the output buffer, if it has
    changed compared to the last record.
    transfer_transaction. Writes the current transaction to an output file. All records of
    Legacy System Migration Workbench
    38
    the output buffer are transferred to the output file.
    skip_record. The current record is not transferred to the output buffer.
    skip_transaction. The current transaction is not written to the output file.

  • What is the event name after RESIZE is finished?

    Hi,
    I need to determine the new size of a component after it is
    resized by the user. But it seems if I check the 'size' when
    Event.RESIZE happens, 'size' is still the old one, not the new one.
    So what is the event name for the event when the Event.RESIZE
    is finished?
    Thanks!

    From my understanding when the resize has occurred the event
    is fired, so when you receive the event you should have the resized
    dimensions. Could you stick up your code?

  • How to capture the event in ALV grid display?

    Hi experts,
      How to capture the event in an ALV grid display which is editable. I have to capture the TAB key or ENTER key.
    regards,
    Arul Jothi.

    Hi Arul,
    Take a look at sample program BCALV_EDIT_03. (Find string "register ENTER" in the program to see how to register)
    Basically you have to Register edit events using method call REGISTER_EDIT_EVENT and then write a handler method for event DATA_CHANGED..
    If you are using a REUSE..GRID fm then first get the grid reference using function module GET_GLOBALS_FROM_SLVC_FULLSCR and then repeat the above procedure..
    Hope this helps..
    Sri
    Message was edited by: Srikanth Pinnamaneni

  • Query about the events in ALV List

    Hi,
    When does the events being triggered in the ALV?
    Whta is its behavior? Thanks a lot!

    Hi,
    Following this report is the sample report  ALV. Kindly go through that one.
    REPORT  YMS_ALVDEMO                             .
    TYPE-POOLS : SLIS.
    TABLES : QALS.
    DATA : BEGIN OF T_OUT OCCURS 0,
    MATNR LIKE QALS-MATNR, "MATERIAL
    WERK LIKE QALS-WERK, "PLANT
    ART LIKE QALS-ART, "Inspaction Lot Type
    OBJNR LIKE QALS-OBJNR, "Object Number
    END OF T_OUT.
    DATA : I_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
    I_LAYOUT TYPE SLIS_LAYOUT_ALV,
    GS_LAYOUT TYPE LVC_S_LAYO,
    G_REPID TYPE SY-REPID,
    LS_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    SELECT-OPTIONS:S_PRFLOS FOR QALS-PRUEFLOS.
    INITIALIZATION.
      G_REPID = SY-REPID.
      I_LAYOUT-ZEBRA = 'X'.
      I_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
    START-OF-SELECTION.
      PERFORM FETCH_DATA.
    END-OF-SELECTION.
      PERFORM FILL_FIELDCAT.
      PERFORM DISPLAY_ALV.
    *& Form FETCH_DATA
    * text
    * --> p1 text
    * <-- p2 text
    FORM FETCH_DATA .
      SELECT MATNR WERK ART OBJNR
      FROM QALS
      INTO TABLE T_OUT
      WHERE PRUEFLOS IN S_PRFLOS.
    ENDFORM. " FETCH_DATA
    *& Form FILL_FIELDCAT
    * text
    FORM FILL_FIELDCAT .
      REFRESH I_FIELDCAT[].
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          I_PROGRAM_NAME         = G_REPID
          I_INTERNAL_TABNAME     = 'T_OUT'
          I_INCLNAME             = G_REPID
        CHANGING
          CT_FIELDCAT            = I_FIELDCAT[]
        EXCEPTIONS
          INCONSISTENT_INTERFACE = 1
          PROGRAM_ERROR          = 2
          OTHERS                 = 3.
    ENDFORM. " FILL_FIELDCAT
    *& Form display_alv
    * text
    FORM DISPLAY_ALV .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM = G_REPID
          IS_LAYOUT          = I_LAYOUT
          IT_FIELDCAT        = I_FIELDCAT[]
        TABLES
          T_OUTTAB           = T_OUT
        EXCEPTIONS
          PROGRAM_ERROR      = 1
          OTHERS             = 2.
    ENDFORM. " display_alv
    Thanks,
    Sankar M

  • What are the 'events' that are captured by a Visual Studio Workflow (PWA)

    Hello All,
    I need to understand what are the different events that Visual Studio workflow (PWA 2013) knows when it an event is triggered. As far as I know there are 3 events
    'OnProjectSubmit', 'OnProjectCommit' and “OnProjectCheckIn'.
    Are there any other events that workflow understands, especially on a click of a Save button?

    well done...
    http://www.soran.edu.iq

  • What are the events triggered in lsmw?

    what are the the events trigered in lsmw?

    check this link for complete info in LSMW
    How to mantaian the manditory ,optional and required fields in LSMW
    Regards
    Prabhu

  • Whats are the events in SAP ISU billing?

    Hi all,
    can any one tel about the events in isu billing?.if u have any dicumentation regarding that plz fwd to : msc7338 at gmail
    Thanks&Regards..
    Satesh.

    Hello,
    This list may be useful to you
    ISUT_CHECK_CURRENCY_BILLING
    ISU_ACTION_SUPPRESS_BILLING
    ISU_AGGBILLPR_MASS_CREATE_R488
    ISU_AGGRBILL_INTERVALS
    ISU_AGGRBILL_INTERVALS_CLOSED
    ISU_ALL_TRIGG_OF_INSTALL_BILL
    ISU_ALL_TRIGG_OF_INST_BILL_INT
    ISU_ARCHIVE_BILL_HEAD_SELECT
    ISU_ARCHIVE_BILL_LINES_SELECT
    ISU_ARCHIVE_DISPLAY_BILL_DOC
    ISU_BACK_BILLING_EXECUTE
    ISU_BACK_BILLING_LINES_CANCEL
    ISU_BACK_BILLING_LINES_SUM
    ISU_BEGIN_OF_BILLING_PERIOD
    ISU_BICO_BILLDOCINFO_REMOTE
    ISU_BICO_REBILL
    ISU_BICO_REBILL_REMOTE
    ISU_BILLABLE_CONTRACT_SHIFT
    ISU_BILLDOC_INTERVALS
    ISU_BILLDOC_INTERVLS_KEY_GET
    ISU_BILLDOC_INTERVLS_KEY_SET
    ISU_BILLED_CONTR_ABLEINH
    ISU_BILLED_CONTR_PORTION
    ISU_BILLING_BREAKPOINTS
    ISU_BILLING_CANCEL_UPD
    ISU_BILLING_CHECK
    ISU_BILLING_DATA_COLLECTION
    ISU_BILLING_DATES_CORRECT
    ISU_BILLING_DATES_FOR_INSTLN
    ISU_BILLING_DATES_FOR_PROFILE
    ISU_BILLING_DATE_GET_SHIFT
    ISU_BILLING_DOC_CANCEL_METHOD
    ISU_BILLING_DOC_CANCEL_METHOD2
    ISU_BILLING_DOC_SORT_METHOD
    ISU_BILLING_EABLG_READ
    ISU_BILLING_FACTOR_DETERMINE
    ISU_BILLING_INTERVAL_CHECK
    ISU_BILLING_LINE_ITEM_CANCEL
    ISU_BILLING_MASS_CREATE_R452
    ISU_BILLING_MASS_PARA_R453
    ISU_BILLING_PRORATE
    ISU_BILLING_STATUS_CHECK
    ISU_BILLING_STAT_INSTLN
    ISU_BILLPERIODS_FOR_DISPLAY
    ISU_BILLPRINT_INTERVALS
    ISU_BILLPRINT_INTERVALS_CLOSED
    ISU_BILLPRINT_MASS_CREATE_R446
    ISU_BILLPRINT_MASS_PARA_R447
    ISU_BILLSIMVALUE_INPUT
    ISU_BILLTYPE_COMPRESS
    ISU_BILL_BIBP_MASS_CREATE_R457
    ISU_BILL_CANCELLATION
    ISU_BILL_CANCELLATION_CHECK
    ISU_BILL_CORR_OPEN
    ISU_BILL_DOC_DYNAMIC_REVERSE
    ISU_BILL_INVOICE_PRINT_ACC
    ISU_BILL_OLDER_ONE_YEAR
    ISU_BILL_OUTSORT
    ISU_BILL_SCAN_FOR_ETRG_INSERT
    ISU_BILL_SIMU_MASS_CREATE_R454
    ISU_BILL_TO_PRINT_METHOD
    ISU_BILL_TO_PRINT_SIM_METHOD
    ISU_BILL_TYPE_BILL_DOC
    ISU_BILL_TYPE_COMPANY_CODE
    ISU_BILL_TYPE_CONTRACT
    ISU_BILL_TYPE_DATE
    ISU_BILL_TYPE_DIVISION
    ISU_BILL_TYPE_DIVISION_DATE
    ISU_BILL_TYPE_EQUITMENT
    ISU_BILL_TYPE_GROSS_ITEM
    ISU_BILL_TYPE_GROSS_PRICE_CONT
    ISU_BILL_TYPE_GROSS_PRICE_DIV
    ISU_BILL_TYPE_GROSS_PRICE_SLO
    ISU_BILL_TYPE_IDE
    ISU_BRE_BILLING
    ISU_BUAG_COLLECTIVE_BILL_CHECK
    ISU_BUDGET_BILLING_EXTRAPOLATE
    ISU_BUD_BILL_MASS_CREATE_R444
    ISU_BUD_BILL_MASS_PARA_R445
    ISU_BW_BILLORD_ATTR
    ISU_BW_BILLORD_DELTA_WRITE
    ISU_BW_DUMMY_BILL
    ISU_BW_SALES_STATS_FOR_BILLDOC
    ISU_BW_SIM_SALES_FOR_BILLDOC
    ISU_CALVAL_TO_BE_BILLED
    ISU_CHANGE_BILLABLE_EABLS
    ISU_CHECK_ABILITY_TO_BE_BILLED
    ISU_CHECK_BILLING_DATES_INSTLN
    ISU_CHECK_DEREG_COLL_BILL
    ISU_CHECK_MANUAL_BILL
    ISU_COLL_BILL_CREATE_UPDATE
    ISU_COLL_BILL_DISC_MESSAGE
    ISU_COLL_BILL_FREE_BY_OPBEL
    ISU_COLL_BILL_FREE_BY_SROPBEL
    ISU_COLL_BILL_FREE_BY_VKONT
    ISU_COLL_BILL_GENERATE
    ISU_COLL_BILL_INFORM_DISCNO
    ISU_COLL_BILL_SPERR_TEST
    ISU_COMEV_BILLINGINST_CHANGED
    ISU_DB_BILLING_SCHEMA_SELECT
    ISU_DB_BILLP_T005_SINGLE
    ISU_DB_BILL_OUTSORT_CHECK_GRP
    ISU_DB_BILL_SELECT
    ISU_DB_BILL_SINGLE
    ISU_DB_BILL_UPDATE
    ISU_DB_COLLECTIVE_BILL_SELECT
    ISU_DB_COLL_BILL_TRANSACT_UPDT
    ISU_DB_COLL_BILL_TRANS_UPDATE
    ISU_DB_CREATE_NEW_COLL_BILL
    ISU_DB_DELETE_BILL_DOC
    ISU_DB_EABL_SELECT_BILL_ORDER
    ISU_DB_EOSB_UPDATE_BILLDOC
    ISU_DB_ERCHC_SELECT_BILL
    ISU_DB_ERCHC_UPDATE_BILL
    ISU_DB_ERCHO_SELECT_BILL
    ISU_DB_ERCHO_UPDATE_BILL
    ISU_DB_ERCHP_SELECT_BILL
    ISU_DB_ERCHP_UPDATE_BILL
    ISU_DB_ERCHR_SELECT_BILL
    ISU_DB_ERCHR_UPDATE_BILL
    ISU_DB_ERCHT_SELECT_BILL
    ISU_DB_ERCHT_UPDATE_BILL
    ISU_DB_ERCHU_SELECT_BILL
    ISU_DB_ERCHU_UPDATE_BILL
    ISU_DB_ERCHV_SELECT_BILL
    ISU_DB_ERCHV_UPDATE_BILL
    ISU_DB_ERCHZ_SELECT_BILL
    ISU_DB_ERCHZ_SELECT_BILL_NEW
    ISU_DB_ERCHZ_TEMPLATE_UP_BILL
    ISU_DB_ERCHZ_UPDATE_BILL
    ISU_DB_ERCHZ_UPDATE_BILL_NEW
    ISU_DB_ERCH_SELECT_BILLINGRUN
    ISU_DB_EWABILL_SELECT
    ISU_DB_EWABILL_SINGLE
    ISU_DB_EWABILL_UPDATE
    ISU_DB_GET_HVORG_FOR_BILLING
    ISU_DB_INST_EABL_FOR_BILLING
    ISU_DB_SELECT_MULTIPLE_BILL
    ISU_DB_SET_PRINTED_TO_COLLBILL
    ISU_DB_TEBILLTYPET_SINGLE
    ISU_DB_TEFKTVOSBILL_SELECT
    ISU_DB_TEFKTVOSBILL_SINGLE
    ISU_DB_TEWASERVICEBILL_SELECT
    ISU_DEREG_INV_CHCKSIMBILL
    ISU_DEREG_INV_SHOW_BILL
    ISU_DEREG_INV_SIMBILL_001
    ISU_DETERMINE_BILL_AMOUNT_R511
    ISU_DETERM_MRSTAT_BILLPERIOD
    ISU_DIALOG_FOR_BILLING_DATES
    ISU_DISCONNECTS_FOR_BILLING
    ISU_DISPLAY_BILL
    ISU_DISPLAY_BILL_FROM_ARCHIVE
    ISU_DISPLAY_BILL_FROM_PREVIEW
    ISU_DISPLAY_BILL_LINES
    ISU_DYN_BILLING_EXECUTE
    ISU_DYN_BILLING_INIT
    ISU_DYN_BILLING_LINES_CANCEL
    ISU_EBF_BILL_SIMULATE
    ISU_EBF_C_REBILL01
    ISU_EWA_BILLING_FLD_F4_EXIT
    ISU_GET_BILLING_HVORG_R410_F4
    ISU_GET_BILLING_TVORG_R410_F4
    ISU_GET_BILL_BALANCE
    ISU_GET_PREV_BILL_CONTRACT_BAL
    ISU_IBILLVAL_ADJUST
    ISU_INST_STRUC_CHNG_BILL_CHECK
    ISU_INVOICE_SIM_FOR_BILLDOC
    ISU_INV_AGGREGATED_BILL
    ISU_INV_BILLDOC_PROCESSING
    ISU_INV_BILL_DOC_CHECK
    ISU_INV_BILL_PREPARE
    ISU_INV_BILL_PS
    ISU_INV_CHILD_COLL_BILL_CREATE
    ISU_INV_COMPRESS_PARTIAL_BILL
    ISU_INV_CREATE_VKKDOC_BILL
    ISU_INV_ISU_BILL_SIM_GRID
    ISU_INV_PARENT_COLL_BILL
    ISU_INV_PARTIAL_BILL_CREATION
    ISU_INV_PREPARE_BILL_DOCS
    ISU_INV_SET_ABP_NU_TO_BILL_DOC
    ISU_INV_SET_DATA_TO_BILL_DOC
    ISU_JBP_CHECK_MR_CONFL_BILLED
    ISU_KPI_LOAD_BILLING_OBJ
    ISU_LAST_BILLDATE_FOR_PROFILE
    ISU_MASTER_DATA_FOR_BILLING
    ISU_MOVEIN_REVERSE_BILLDOC
    ISU_MOVEOUT_CR_REVERSE_BILLDOC
    ISU_MOVEOUT_RV_REVERSE_BILLDOC
    ISU_MOVE_BILLDOC_FIND
    ISU_MOVE_IN_PERIOD_BILL
    ISU_M_BILLDOCEBF_DI
    ISU_M_TRIGGER_BILL
    ISU_NEXT_BILLREL_MR_DATE
    ISU_NUMBER_GET_BILLING
    ISU_OSB_DOWNLOAD_BILL_SIMU
    ISU_OUTSORT_BILL_DOC_RELEASE
    ISU_O_AMB_BILL_DOC_OPEN
    ISU_O_BILL_DOC_CLOSE
    ISU_O_BILL_DOC_OPEN
    ISU_O_EBFBILL_CHANGE
    ISU_O_EBFBILL_CLOSE
    ISU_O_EBFBILL_CREATE
    ISU_O_EBFBILL_OPEN
    ISU_O_EWABILL_CLOSE
    ISU_O_EWABILL_OPEN
    ISU_O_EWABILL_PREPARE_CLOSE
    ISU_O_MANUBILL_ACTION
    ISU_O_MANUBILL_CLOSE
    ISU_O_MANUBILL_INPUT
    ISU_O_MANUBILL_OPEN
    ISU_O_MANUBILL_PAI_AFTER
    ISU_O_MANUBILL_PAI_BEFORE
    ISU_O_MANUBILL_PBO
    ISU_O_MANUBILL_PREPARE_CLOSE
    ISU_O_MANUBILL_USAGE
    ISU_O_OUTL_BILL_BON_OPEN
    ISU_O_OUTL_BILL_CAN_OPEN
    ISU_O_OUTL_BILL_CLOSE
    ISU_O_OUTL_BILL_MASTER_DATA
    ISU_O_OUTL_BILL_OPEN
    ISU_O_OUTL_BILL_PREPARE_CLOSE
    ISU_PDSCR_DEV_BILL_INST_CREATE
    ISU_PDSCR_DEV_BILL_INST_MODIFY
    ISU_PDSCR_DEV_BILL_INST_SAVE
    ISU_PDSCR_REG_BILL_INST_MODIFY
    ISU_PREP_COLL_BILL_POSTING
    ISU_PREP_EWAORDER_FOR_BILL_REV
    ISU_PREP_INDEXGG_FOR_BILL_REV
    ISU_PREVIOUS_BILL_SELECT
    ISU_QUERY_BILL_INVOICED
    ISU_REG_RELATION_FOR_BILLING
    ISU_REVERSE_CA_BILL_DOC
    ISU_REVERSE_CA_BILL_DOC_1
    ISU_REVERSE_CA_BILL_DOC_MASS
    ISU_REVERSE_CA_BILL_DOC_MASS1
    ISU_RFC_DISPLAY_BILL_FROM_PREV
    ISU_SAMPLE_BILLPRINT_SORT_R390
    ISU_SAMPLE_R403_COLL_BILL
    ISU_SDORPOS_DELETEBILLINGBLOCK
    ISU_SELECT_BILL_DOC
    ISU_SET_CO_ACCOUNTS_TO_BILLDOC
    ISU_SHOW_CONSUMPTION_BILL
    ISU_SIMULATION_PERIOD_BILL
    ISU_SIM_SET_PAOBJNR_TO_BILLDOC
    ISU_SIM_TRANSF_BILLDOC_TO_COPA
    ISU_SIM_UPDATE_BILLDOC_TO_COPA
    ISU_SINGLE_TRIGGER_BILL
    ISU_START_WF_DISC_COLL_BILL
    ISU_STATS_BILL_DIVIDE_BY_MONTH
    ISU_S_BBP_COLLBILL_DEACTIV
    ISU_S_BILLDOCUMENT_DI
    ISU_S_BILL_CORR
    ISU_S_BILL_CORR_CLOSE
    ISU_S_BILL_CORR_COP_OBJECT
    ISU_S_BILL_CORR_DISPLAY_INT
    ISU_S_BILL_CORR_GIVE_OBJECT
    ISU_S_BILL_CORR_REDISPLAY
    ISU_S_BILL_CORR_TEXT_EDIT
    ISU_S_BILL_CORR_USER_COMMAND
    ISU_S_BILL_DOC_DISPLAY
    ISU_S_BILL_SIMU_SELECT_FORMKEY
    ISU_S_DB_BILL_SINGLE
    ISU_S_EWABILL_CHANGE
    ISU_S_EWABILL_CREATE
    ISU_S_EWABILL_DISPLAY
    ISU_S_MANUBILL_CHANGE
    ISU_S_MANUBILL_CREATE
    ISU_S_MANUBILL_DELETE
    ISU_S_MANUBILL_DISPLAY
    ISU_S_MANUBILL_PROVIDE
    ISU_S_OUTL_BILL_ALLSINGLE_SIM
    ISU_S_OUTL_BILL_BON_COMP_CHECK
    ISU_S_OUTL_BILL_CANCEL
    ISU_S_OUTL_BILL_CAN_COMP_CHECK
    ISU_S_OUTL_BILL_COMPARE_DISC
    ISU_S_OUTL_BILL_COMPLETE_CHECK
    ISU_S_OUTL_BILL_COMPRESS_ERCHV
    ISU_S_OUTL_BILL_COMPR_BO_ERCHV
    ISU_S_OUTL_BILL_CREATE
    ISU_S_OUTL_BILL_DIF_AMOUNT
    ISU_S_OUTL_BILL_DISC_OUTL_CON
    ISU_S_OUTL_BILL_DISC_SI_CON
    ISU_S_OUTL_BILL_FEE_CORR_SI
    ISU_S_OUTL_BILL_OLD_DOC
    ISU_S_OUTL_BILL_OUTLCON_SIM
    ISU_S_OUTL_BILL_TOT_NEW_OU
    ISU_S_OUTL_BILL_TOT_NEW_SI
    ISU_S_OUTL_BILL_TOT_OLD_OU
    ISU_S_OUTL_BILL_TOT_OLD_SI
    ISU_S_PPM_BILL_INV_SIMULATION
    ISU_S_QS05_FROM_LAST_CM_BILL
    ISU_TAX_CODE_FOR_BILLING
    ISU_TAX_CODE_FOR_MANUBILLING
    ISU_TRIGGER_BILLING_EXECUTE
    ISU_TRIGGER_BILLING_METHOD
    ISU_UPDATE_BILLING_DATA
    ISU_UPDATE_COLL_BILL_FROM_BBP
    ISU_USAGE_FACTORS_FOR_BILLING
    ISU_USAGE_FACTORS_FOR_BILL_OLD
    ISU_USAGE_FACTORS_FOR_BILL_REV
    ISU_VACANCY_BILL_ORDER_CHECK
    ISU_WASTE_BILLING_DATA_READ
    ISU_WASTE_SIMULATE_PERIOD_BILL
    Hope this helps
    Rgds
    Rajendra

  • Capturing the event of ALV

    Does anyone know how to create an ALV that captures the <b>event of checking/unchecking a checkbox</b>.
    After which the selected rows will be used for custom processing.
    Thank you.!

    Hi,
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    Reward if useful!

Maybe you are looking for