What are integration events

Its not clear at all to me what are integration events for? they generate a queue, and the who consumes that queue? whats the difference with web services?
thanks

Hi !
You'll use workflows to create an integration event. When the workflow triggers, it creates a new event and put it in the queue. Then, you have to use webservices to ping the queue, get the events and do whatever you want.
For example, you need to create automatically an account in another application when a new one is created in CRM OD. You can use an integration event on account creation, ping the queue, get the event and datas with webservices and create the account in your other application.
Hope this will help, feel free to ask more !
Max

Similar Messages

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

  • 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 SUB EVENTS OF EVENTS IN REPORTS ?

    WHAT ARE SUB EVENTS OF EVENTS IN REPORTS I.E INITIALIZATION, AT SELECTION SCREEN, START OF SELECTION, END OF SELECTION. WHAT ALL EVENTS HAVE SUB EVENTS ? PLEASE EXPLAIN IN DETAIL.
    REWARD POINTS GUARENTEED FOR ANSWERS!!

    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 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 application events and system events? what is difference between ?

    what are application events and system events? what is difference between ?

    The Control Framework triggers the event irrespective of the screen flow logic, that is, without processing the PAI and PBO events. These events are called system events. This type of event processing is the default setting.
    ·The Control Framework processes the PAI module after an event. In this case, you must call method CL_GUI_CFW=>DISPATCHto initiate the event handling of ABAP Objects. These events are called application events.
    Application Event : you must first register the events for the control instance and consequently on the frontend.
    like..
    DATA events TYPE cntl_simple_events.
    DATA wa_events TYPE cntl_simple_event.
    1. Using field
    appl_event , define the event as an application event:
    wa_events-appl_event = 'X'.
    System events are passed on irrespective of the flow logic of the relevant screen.
    1. Change the value of field
    wa_events-appl_event in the PBO module:
    wa_events-appl_event = SPACE.
    Edited by: Devi Raju on Jul 1, 2008 1:48 PM

  • 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

  • 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

  • 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 New features in OBPM in performance, integration & dev level

    Hi,
    Could someone help me
    I would like to know what are the new features in Oracle BPM that will improve the performance of appln,
    and new features in integration and development level.Thanks in advance.

    Hi,
    The information can be found in Release Content Documents (RCD) Published by Oracle.
    Please refer metalink note 404152.1 ... download "Customer Relationship Management Family RCD (zip, 3.2 MB)"
    You will find istore specific details in r12_mkt_sales_rcd.zip
    Thanks,
    Hrishi

  • How to find what are all the rules and events are monitoring for specific server in SCOM 2007

    how to find what are all the rules and events are monitoring for specific server in SCOM 2007.
    I need to know what are all the events, services, and rules are monitored for the specific server.
    Kindly help me friends.

    how to find what are all the rules and events are monitoring for specific server in SCOM 2007.
    I need to know what are all the events, services, and rules are monitored for the specific server.
    Kindly help me friends.
    Thanks for the question Sandoss. This is something that we all come across at sometime.
    Thanks & regards, Sumit Agrawal
    The lack of this feature is an inexcusable oversight for an enterprise management product.  They have some serious lightweights making design decisions on the SCOM team. 5 thumbs down. 
    BTW the answer is probably LOTS of stuff. Literally 100's of workflows are running on any server. 
    The following OpsMgr DB query will list all running monitors on a server. Change the name of @srv. I think this works pretty well.  I'd like some feedback if something is missing.
    DECLARE @srv varchar(30)
    SET @srv = 'your name here'
    SELECT mon.displayName as monitor, bme.FullName,bme.DisplayName as object,
    case
        when s.HealthState = 1 then 'healthy'
        when s.HealthState = 2 then 'Warning'
        when s.HealthState = 3 then 'Critical'
        else 'N/A'
    end as Health
    FROM state AS s WITH (NOLOCK)
    left join BaseManagedEntity as bme WITH (NOLOCK) on s.basemanagedentityid = bme.basemanagedentityid
    left join dbo.MonitorView Mon WITH (NOLOCK) on Mon.ID = s.monitorid
    where
    bme.FullName like '%' + @srv + '%'
    and s.HealthState <> 0
    and mon.IsInternalRollupMonitor = 0
    and mon.IsExternalRollupMonitor = 0
    order by bme.DisplayName, mon.displayName

  • WHAT ARE SUBEVENTS OF DIFFERENT EVENTS IN REPORTS ?

    WHAT ARE SUBEVENTS OF DIFFERENT EVENTS IN REPORTS ?
    BEST REGARDS,
    RYAN

    hi,
    output events are.........
    <b>start-of-selection.</b>
    using this event we can genarate basic list.
    <b>end-of-selection.</b>
    we can use this event also for genarating basic list
    <b>top-of-page</b>.
    this event is related to list, we can use this event to providing list header.
    <b>end-of-page.</b>
    this event is related to list, we can use this event to providing list footer.
    if our program reading data from logical database, in that case GET and
    GET LATE events triggered to  genarate report.
    <u><b>interactive repotrs.</b></u>
    we use <b>AT LINE -SELECTION</b> and <b>AT USER-COMMAND</b> events to genarate secondary events based on user actions.
    <b>TOP-OF-PAGE DURING LINE-SELECTION</b> EVENT, provides page heading to all secondary lists.
    PBO and PAI   events also used to genarating list.
    regards,
    AshokReddy.

Maybe you are looking for

  • Tell iPhone to NOT sleep when connected to dock?

    I can't seem to find any setting where I can accomplish this. Am I missing something?

  • Need new keyboard for Portege 4000/4010

    Anyone know where I can get a replacement keyboard for this model notebook? The part number on the back of the keyboard is UE2025P03KB-EN Any help would be appreciated.

  • Can't put files on a USB or hard drive with Lion

    I've installed Lion on my MacBook Pro (i5) about 2 weeks ago. Yesterday i want to put a movie on my USB, put nothing happend. You see that he is copying the movie, but after that it copied the movie, it's still not on my USB. I tried it with another

  • Virus deleted contents off itunes and I pod please help

    My computer has recently had a virus and deleted my i tunes, I  tried to connect my ipod to load the music on to the i tunes and it also deleted that. Is there any way that I can log in to get back at leas the music that I purchased and how do I do i

  • Formatting Numbers - Emergency

    Hi...I have an assignment where the actual outcome is 138, but i need to format the outcome to be rounded up the nearest tenth, so it is 140. If someone could help me with this...i would really appreciate it. THANKS SOO MUCH.