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

Similar Messages

  • 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 best practice in report design ?

    Hi,
    According to you, what are the best practices in report desing about layout, fonts and colors ?
    Thks

    Hi,
    It all depends that what type of report you are designing and what tool you are using - WebI or Crystal.
    And in WebI, if it is cross tab or Tabular report etc.
    One most important thing is that what is client requirement. May be client does not like which is best practice.
    On the base of my personal experience I will create few demo reports using different options - layout, colors and fonts and show them to client so that they may decide.
    Regards,
    Bashir Awan

  • 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 are the common errors in reporting and extraction.

    hi friends,
    what are the common errors in reporting and extraction for implementation and support projects.
    thanking u
    suneel.

    Hi Suneel,
    Errors in reporting are like incorrect query creation, errors in creating RKF, CKF and variables, misunderstanding the data, or errors with other tools like broadcasting. Errors in extraction relate to source system connectivity, field-infoobject mapping, incorrect code etc. Also, please search the forums and you will find many real time examples.
    Hope this helps...

  • 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

  • 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

  • What are the standard bex analyzer reports available?

    hi all
    what are all the std reports available for fico? sd and mm?
    thanxs in advance
    regds
    hari

    Hi,
    This is the best way...and the simplest way....since it is a big question....just go Business content tab in RSA1 and there go to "query elements" option and cick on the option "select objects" this will give you all the standata BW queris based on all the BC cubes and it will not show self developed queries in you system.
    So fo MM reports go to...Infoarea "Supply Chain Management"-> "Inventory Management"....here you will see all the cubes related to MM and the reports nased on that.
    for FICO go to Infoarea FMCO Financial management and controlling.........
    Similarly you can find for SD.
    If you want to find the detailed information about all the queries .....you will have to search the help.sap.com witth the same name of the cubes and you will get various links explaining that.
    Thanks

  • 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!

  • 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

  • Quick report what are the notiifications are send out from SRM via SOST

    Hi all
    Can i have a list of messages sent out of SRM (from SRM via SOST.)
    sc completed by the buyer -
    but i want a set of all reports. so that i can decide i can filter go / no-go from srm system .
    any help is appreciated,
    what are the events are triggered notification.
    for eg. COMPLETED ...when buyer completed , requestor gets notification.
    so what are the other events. i have forgotten
    user creation too right? like that many..
    WHAT ARE THE ACTIONS IF I DO IN THE WEB , SOST entries will get created?. I KNEW BACKEND METHOD to download all sost message. but really we should know without seeing sost.
    Muthu

    You can check the fields of these tables via SE11
    Purchase Document Date  -  EKKO-BEDAT
    Item Description  -  EKPO-TXZ01
    Net price per item - EKPO-NETPR.
    Regards,
    Rich Heilman

  • What are the major components in class?

    1)     What is the purpose of ‘load-of-program’? When it will be trigger?
    2)     Write the code for displaying the three parameters in single line with the first parameter as mandatory in the selection screen?
    3)     Which event triggered whenever the user call the function BACK, EXIT, CANCEL?
    4)     What are the major components in class?
    5)     What is the functional module is used to get popup screen for ALV reports?
    6)     Which type of pool is used to get drop-down list?
    7)     What is the tcode for creating the variant truncations?
    8)     Is it possible to call LDB’s number of times in same report?
    9)     What are the conditions to use control break statements in our report program?
    10)     What is the use of range statement?
    11)     What is the difference between normal reports and alv reports? With comparing to normal report are there any disadvantages in alv reports?
    12)     What are the components used to suppress the fields in the selection-screen?
    13)     What is the standard program to transport selection screen variants?
    14)     What is the event keyword for defining event block for reporting events?
    15)     What is the specific statement use when writing a drill down report?
    16)     What are the different tools to report data in sap?
    17)     Write the menu path to create a selection text in reports?
    18)     How do we omit the leading zero s while formatting outputs in reports?
    19)     What are the report truncations?
    20)     How do we align selection input in single row?
    21)     How do we suppress the display of input fields on selection screen?

    this forum is not for answering your interview questions...if you stucked with any realtime problem then post...please try to respect forum terms and conditions.
    Thank you.

  • What are main events in that are used in ALV reports

    hi gurus
    what are main events in that are used in ALV reports....
    regards
    baskar

    hi
    i think this will help u.
    Events in alv and their FM    The main events in alv and their FM and why we use these: 
    1. SLIS_PRINT_ALV. 
    2. SLIS_T_LISTHEADER. 
    3. SLIS_T_EVENT. 
    4. SLIS_T_SORTINFO_ALV. 
    5. SLIS_T_LAYOUT_ALV. 
    6. SLIS_T_FIELDCAT_ALV. 
    and in classic reports what is the sequence of events:   === Events are 
    At selection-screen output. 
    Initialization. 
    At selection-screen on field 
    At selection-screen on end of field 
    At selection-screen on Radiobutton Group R1. (If you have any radio buttons) 
    At selection-screen on block b1. (If you have any blocks) 
    Start-of-selection. 
    Get node. (if the data is retreived from a logical database) 
    Get node late. (if the data is retreived from a logical database) 
    Top-of-page. (if the write statement is in the end-of-selection event or we can say that before the first write statement) 
    end-of-selection. 
    and fuction modules are 
    LISTHEADER - Is used to print the header information in the ALV List. Name, Date, Time, ALV Name and other details are called as Header information.   EVENT - Basically this is the FM to handle Event's. When the user needs to do some event operation like when double clicking the a particular field we need to perform some operation.   These events are captured by this FM.   LAYOUT - This FM is used to define the layout of the List. There are many options available in this FM to define the Layout style.   FIELDCAT - These are used to populate the List header. We can change them according to our req. 
    User-defined Text Output Event
        Application
          print_end_of_list
        Define output text to be printed at the end of the entire list
          print_top_of_list
        Define output text to be printed at the beginning of the entire list
          print_end_of_page
        Define output text to be printed at the end of each page
          print_top_of_page
        Define output text to be printed at the beginning of each page
          subtotal_text
        Define self-defined subtotals texts
    Mouse-controlled Actions in the Grid Control Event
        Application
          button_click
        Query a click on a pushbutton in the ALV Grid Control
          double_click
        Query a double-click on a cell of the ALV Grid control 
          hotspot_click
        Query a hotspot click on columns defined for this purpose in advance
          onDrag
        Collect information when elements of the ALV Grid Control are dragged 
          onDrop
        Process information when elements of the ALV Grid Control are dropped 
          onDropComplete
        Perform final actions after successful Drag&Drop 
          onDropGetFlavor
        Distinguish between options for Drag&Drop behavior
    Processing of Self-defined and Standard Functions Event
        Application
          before_user_command
        Query self-defined and standard function codes
          user_command
        Query self-defined function codes
          after_user_command
        Query self-defined and standard function codes
    Definition of Self-defined Functions Event
        Application
          toolbar
        Change, delete or add GUI elements in the toolbar
          menu_button
        Define menus for menu buttons in the toolbar
          context_menu_request
        Change context menu
          onf1
        Define self-defined F1 help
    All of these can be found under type group SLIS.
    Events
    SLIS_EV_ITEM_DATA_EXPAND        TYPE SLIS_FORMNAME VALUE 'ITEM_DATA_EXPAND',
    SLIS_EV_REPREP_SEL_MODIFY       TYPE SLIS_FORMNAME VALUE 'REPREP_SEL_MODIFY', SLIS_EV_CALLER_EXIT_AT_START TYPE SLIS_FORMNAME VALUE 'CALLER_EXIT',
    SLIS_EV_USER_COMMAND              TYPE SLIS_FORMNAME VALUE 'USER_COMMAND',
    SLIS_EV_TOP_OF_PAGE                     TYPE SLIS_FORMNAME VALUE 'TOP_OF_PAGE',
    SLIS_EV_DATA_CHANGED                TYPE SLIS_FORMNAME VALUE 'DATA_CHANGED',
    SLIS_EV_TOP_OF_COVERPAGE       TYPE SLIS_FORMNAME VALUE 'TOP_OF_COVERPAGE',
    SLIS_EV_END_OF_COVERPAGE       TYPE SLIS_FORMNAME VALUE 'END_OF_COVERPAGE',
    SLIS_EV_FOREIGN_TOP_OF_PAGE TYPE SLIS_FORMNAME
    VALUE 'FOREIGN_TOP_OF_PAGE', SLIS_EV_FOREIGN_END_OF_PAGE TYPE SLIS_FORMNAME
    VALUE 'FOREIGN_END_OF_PAGE',
    SLIS_EV_PF_STATUS_SET                  TYPE SLIS_FORMNAME VALUE 'PF_STATUS_SET',
    SLIS_EV_LIST_MODIFY                      TYPE SLIS_FORMNAME VALUE 'LIST_MODIFY',
    SLIS_EV_TOP_OF_LIST                       TYPE SLIS_FORMNAME VALUE 'TOP_OF_LIST',
    SLIS_EV_END_OF_PAGE                    TYPE SLIS_FORMNAME VALUE 'END_OF_PAGE',
    SLIS_EV_END_OF_LIST                      TYPE SLIS_FORMNAME VALUE 'END_OF_LIST',
    SLIS_EV_AFTER_LINE_OUTPUT       TYPE SLIS_FORMNAME VALUE 'AFTER_LINE_OUTPUT', SLIS_EV_BEFORE_LINE_OUTPUT     TYPE SLIS_FORMNAME VALUE 'BEFORE_LINE_OUTPUT',
    SLIS_EV_SUBTOTAL_TEXT                TYPE SLIS_FORMNAME VALUE 'SUBTOTAL_TEXT'.
    with regards
    sravani
    award points if found useful.

Maybe you are looking for

  • Weblogic 10.0 Page not found  error

    Hi, I'm just trying Weblogic 10.0 but when I try to add a datasource or press next it gives: Page not found The server has not found anything matching the Request-URI. The URI is: http://localhost:7001/console/7001/console/console.portal?CreateGlobal

  • I have change my hd in my macbook pro and i know i´m going to lost all my information i have in iphone, what to do?

    i have change my hd in my macbook pro. I have no security copies and i know i´m going to lost all my information i have in iphone if i upgrade to 5, what to do? its possible to send first all the information i have in the iphone to the computer than

  • Only first row of a mysql table is updated

    Hi, I'm using Netbeans 5.5 with Visual Web Pack and trying to update data, stored in a mysql table. I use a dropdown list to select a row and show the data in various textfields. This works fine. The problem, that it's not possible to save changes, I

  • File sender name dynamic

    hello, i've a interface FILE to RFC. The name of file is dynamic, depending the data the file has different name, i know when receiver file this is possible, but when the file is sender i don't know if this is possible? how can i do? thanks vey much,

  • Hexagon pattern, easy but keep on getting "the lines" (cs6)

    hi there i have created a hexagon pattern, following this tutorial: Creating geometric patterns in Illustrator | Veerle's blog after creating i noticed thin white lines, which seems to be a bug, i've followed these tips: http://fashionclassroom.com/b