Activity transition event

Does the engine generate any events (not the audit trail type) when it completes/starts an activity?
The use case is this:
Lets say I have an interactive activity defined as external. I want to know when I'm able to invoke the prepare method. If the process is not in that activity I'll get an exception.
For this I have two choices, wait for an event that tells me the instance moved to the interactive activity, or do some polling. I'd rather do the fist, but I don't know if the engine generates events, if I could achieve this through jmx or something else.

PAPI does not have listeners, so you must do a polling over the instance (checks the activity name).

Similar Messages

  • Actived a event (Without workflow)

    Hi all.
    We have a problem with a event.
    We had a migration and we think that in this process an event has been desactivated.
    It must run when the order (VA01) has created.
    In the development enviroment it run correctly, but in Test enviroment it does not run.
    We review the Tx SWO1 and PRFC. This Tx are the same configuration.
    It can be with Tx sSPRO? in with Tx?
    Thanks for all.
    Regards

    Hi All!
    It is solve.
    We prove with the TX SWUD and activated this event.
    In the migration it must be desactivated.
    Thanks all.
    PD: This Tx is very interesting for the Workflow events.
    Regards.

  • ********  Need to add any button activated ACTION EVENT***********

    Can anyone help me add any type of ACTION EVENT /ACTION LISTENER TO THIS CODE
    PLEASE REVIEW AND COMPILE IF NECESSARY. Ensure that it compiles without errors. Currently it compiles without errors. It opens up as a GUI window that accepts a password. If anyone could just add a button to it that will do just about anything, time check, date check whatever it would be great!!!!! THIS WAS COMPILED WITH THE JGRASP COMPILER JAVA ACCEPTED
    Thank you all,
    ********************** Bruce's Code*****************************
    import java.awt.*;
    public class TimeEntryForm extends Panel
    private Panel tallPanel = new Panel();
    private Panel tallPanel2= new Panel();
    public TimeEntryForm()
    tallPanel.setLayout(new GridLayout(3, 1));
    tallPanel.add(new Label("Hrs Total"));
    tallPanel.add(new Label("Any"));
    tallPanel.add(new Label("One"));
    tallPanel2.setLayout(new GridLayout(3,1));
    tallPanel2.add(new Label("Personal Leave "));
    tallPanel2.add(new Label("Hrs Total "));
    tallPanel2.add(new Label("Pay Calc "));
    setLayout(new GridBagLayout());
    GridBagConstraints c = new GridBagConstraints();
    c.gridx = 0; c.gridy = 2;
    add(new Label("Social Security # "), c);
    c.gridx = 1; c.gridy = 0;
    add(new Label("TIME ENTRY FORM"), c);
    c.gridx = 1;c.gridy = 1;
    add(new Label("Enter Date Here "), c);
    c.gridx = 3;c.gridy = 2;
    add(new Label("Employee Name "), c);
    c.gridx = 3;c.gridy = 4;
    add(new Label("Sick Time "), c);
    c.gridx = 0; c.gridy = 3;
    add(new Label("IN OUT "), c);
    c.gridx = 0; c.gridy = 4;
    add(new Label("IN OUT "), c);
    c.gridx = 0; c.gridy = 5;
    add(new Label("IN OUT "), c);
    c.gridx = 0; c.gridy = 6;
    add(new Label("IN OUT "), c);
    c.gridx = 0; c.gridy = 7;
    add(new Label("IN OUT "), c);
    c.gridx = 0; c.gridy = 8;
    add(new Label("IN OUT "), c);
    c.gridx = 0; c.gridy = 9;
    add(tallPanel2, c);
    c.gridx = 1;c.gridy = 11; //note, sets y
    add(new Label("Hrs Worked Today "), c);
    c.gridx = 1;c.gridy = 12;
    add(new Label("Pay Earned Today "), c);
    c.gridx = 2;
    add(tallPanel2, c);
    public static void main(String args[])
    Frame f = new Frame("Time Entry Form");
    f.add(new TimeEntryForm());
    f.pack();
    f.setVisible(true);
    }

    Hi java-luv,
    I am not sure if I understand the problem. But I was able to add a JButton to your code (using the JBuilder designer). The button just exists the application. Please check the listing below. Hope this helps.
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class TimeEntryForm extends Panel
    private Panel tallPanel = new Panel();
    private Panel tallPanel2 = new Panel();
    private JButton jButton1 = new JButton();
    public TimeEntryForm() {
    tallPanel.setLayout(new GridLayout(3, 1));
    tallPanel.add(new Label("Hrs Total"));
    tallPanel.add(new Label("Any"));
    tallPanel.add(new Label("One"));
    tallPanel2.setLayout(new GridLayout(3, 1));
    tallPanel2.add(new Label("Personal Leave "));
    tallPanel2.add(new Label("Hrs Total "));
    tallPanel2.add(new Label("Pay Calc "));
    setLayout(new GridBagLayout());
    GridBagConstraints c = new GridBagConstraints();
    c.gridx = 0;
    c.gridy = 2;
    add(new Label("Social Security # "), c);
    c.gridx = 1;
    c.gridy = 0;
    add(new Label("TIME ENTRY FORM"), c);
    c.gridx = 1;
    c.gridy = 1;
    add(new Label("Enter Date Here "), c);
    c.gridx = 3;
    c.gridy = 2;
    add(new Label("Employee Name "), c);
    c.gridx = 3;
    c.gridy = 4;
    add(new Label("Sick Time "), c);
    c.gridx = 0;
    c.gridy = 3;
    add(new Label("IN OUT "), c);
    c.gridx = 0;
    c.gridy = 4;
    add(new Label("IN OUT "), c);
    c.gridx = 0;
    c.gridy = 5;
    add(new Label("IN OUT "), c);
    c.gridx = 0;
    c.gridy = 6;
    add(new Label("IN OUT "), c);
    c.gridx = 0;
    c.gridy = 7;
    add(new Label("IN OUT "), c);
    c.gridx = 0;
    c.gridy = 8;
    add(new Label("IN OUT "), c);
    c.gridx = 0;
    c.gridy = 9;
    add(tallPanel2, c);
    c.gridx = 1;
    c.gridy = 11; //note, sets y
    add(new Label("Hrs Worked Today "), c);
    c.gridx = 1;
    c.gridy = 12;
    add(new Label("Pay Earned Today "), c);
    c.gridx = 2;
    add(tallPanel2, c);
    jbInit();
    public static void main(String args[]) {
    Frame f = new Frame("Time Entry Form");
    f.add(new TimeEntryForm());
    f.pack();
    f.setVisible(true);
    private void jbInit() {
    jButton1.setText("Exit");
    jButton1.addActionListener(new TimeEntryForm_jButton1_actionAdapter(this));
    this.add(jButton1, null);
    void jButton1_actionPerformed(ActionEvent e) {
    System.exit(0);
    class TimeEntryForm_jButton1_actionAdapter implements java.awt.event.ActionListener {
    TimeEntryForm adaptee;
    TimeEntryForm_jButton1_actionAdapter(TimeEntryForm adaptee) {
    this.adaptee = adaptee;
    public void actionPerformed(ActionEvent e) {
    adaptee.jButton1_actionPerformed(e);

  • Activating Click event on Item Renderer only

    Hey. I'm working on a s:list and a click event problem. I have everything working just fine on the component and linking, but as you probably guessed, the event cues when anything on the s:list is clicked, including the scroll bar or empty space.
    Is there a quick fix to make the event only cue when an Item Renderer is clicked inside the list? Help would be much appreciated, I've been trying to solve this problem for a while.
    Thanks!
    RKaster

    Hi RKaster,
    do you need the reference to the item renderer by force or could you immagine a different approach? If you could work around that you could use the change event instead of the click event. The change event gets fired whenever the selection of items in the list change. A click on an item renderer of course will change the selection if the underlying item isn't already selected.
    If you can't work around the need of an item renderer reference you should experiment with the mouseChildren property of the List component (inherited from DisplayObjectContainer, see http://bit.ly/dhqCFS). IMHO of course
    Regards,
    Thilo

  • Global or external activation of events?

    Dear all, I need to know when the flash player enters or exits rebuffering, and when download of a video is completed. I know this can be done by activation in a script, but this won't work in my case. I'd rather need to activate this globally, e.g. by a registry setting or some other means. Is there a way to achieve it? Kind regards and thank you in advance, Wolfgang

    Hi, You may want to look at the right of your thread when you open it, where it says "More like This". Perhaps there may be some helpful threads there.
    I don't know the answer to your question. If you are using an Adobe program you might want to look at the forum for it.
    Thanks,
    eidnolb

  • Active Standby events

    How to disable the internet search, WLAN, share online?

    This depends which phone model you have. On most S60 phones, you onlyhave the option to switch Active Standby on or off - switching it off removes those but also the quicklaunch shortcuts.
    If you have an FP2 phone such as the N96, you have an additional option which gives you a smaller number of shortcuts without the text links.
    Go to Menu> Tools> Settings> Personalisation> Standby mode

  • Firewall activity on event log question

    Hi, i have recently noticed that my event log lists a lot of IN: ACCEPT [57] Connection opened and closed events at strnage hours of the day when nobody is even awake using the home internet such as 5am.
    When i checked the location of some of the ip address's some of them are in locations in the world such as Guatemala and Mexico
    Would anybody be able to tell me why these events are taking place?
    Many Thanks.

    just the firewall do its job nothing to worry about
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Active X Calendar Event

    I would like to select an event case in an event structure when a new date is selected in an active x contained calendar. How do I get the active x event to be seen within Labview?

    Hello optobionics,
    Assuming you are using LabVIEW 7.0 or 7.1, there are two shipping examples that deal with registering callback functions for ActiveX events: �ActiveX Event Callback for Excel.vi� and �ActiveX Event Callback for IE.vi�. This will give you some idea of what to do. It is actually up to the program being called through ActiveX as to whether the events are available or not. The following KnowledgeBase also discusses using callback functions.
    Migrating from the ActiveX Event VIs to Using the Register Event Callback Node
    If none of these suggestions help, or if I�m not correctly understanding your issue, please reply with comments or answer
    s to the discussion above and any additional information that may help, and I�ll be happy to look further into it.
    Have a nice day!
    Robert M
    Applications Engineer
    National Instruments
    Robert Mortensen
    Software Engineer
    National Instruments

  • Event is not being activated

    Dear Expert,
                       i m working with workflow, data is created for complex solution, task is 90000002   ZMileston "Milestone for Network" a event SAVED is showing there with the Object type AFVC_NETW catogary is "BOR Object type . This is basically used for build Order creation when network is released. i m activating this event but this is not being activated, in the attribute of this event linkage is deactivated. can u assist how it will activate.
    Its urgent .
    Thanks

    If you are activating the event and if it gets deactivated then there is some problem in the Event to workflow binding.
    Check the binding button (Green color button) in the basic data screen where you assigned the event to the workflow. The reasons can be,
    1. You have not binded any element to a mandatory parameter in workflow container (Mandatory parameters are indicated by a yellow color exclamatory symbol)
    2. You have an imprpoer workflow definition (means definition with errors)
    Easy way is to switch on the event trace using transaction SWELS and then activate the event linkage and then trigger the event once. Then goto transaction SWEL and check if the event has started the receiver correctly.
    If you get "No Receiver Entered" - It means your event type linkage is not active at all and you have to activate it in SWE2. If you get "Linkage deactivated" then you might get a "Feedback after error" which might explain you the reason for deactivation.
    Thanks,
    Prasath N

  • Active Event handler in Web Survey SAP-BI.

    I am creating web survey in survey transaction. In change questionnaire section, when I insert event handler in the question for example TO POSTING the right mach code show u201CNO FUNCTION SELECTu201D.
    I need programming o check the input field value of the question. I load application library and assigning an application library to a Survey the implementation badi UWS_FORM_RUNTIME , how explicate Sap Library u2013 Web Survey http://help.sap.com/saphelp_nw04/helpdata/en/02/739fe7a80746caa668958d558993ae/frameset.htm, but not function.
    I have a question, As can I implement Exit, BADI, BTE  or other way for checking the value in input field the question in the questionnaire the web survey and active the event handler.
    Thanks and Regards
    Emely

    Hi Emily,
    did you solve the issue?
    I have exactly the same issue. I have created the class, I have assign the application library to the class via UBDS and the message appears with the error "no function selected".
    Could you give me any clue?
    Thanks, have a great weeknd.

  • Wait on active event hangs

    Hi,
    I have a program that used the wait on activeX event vi.  The program executes, but when it gets to the wait on active x event vi, it hangs.  I tried to change the timeout time, but it did not work.  No matter what value I create for the timeout time, after 10 seconds the vi hangs.  Is there any way possible to tell the vi not to use the timeout command?  I already tried to set the value to -1, but that also did not work.  Might it be possible to create a structure that would tell the wait on activex event vi to run again if the timeout were true and flush the current timeout value?  Since the wait on activex event vi is password protected, I can't see how the timeout value is passed or used. 

    I tried to rewrite the code to accept an MSAgent voice, but I can't seem to get Obtain Notifer to correctly pass to the Wait on ActiveX Event_New.  The original Wait for voice event, used the ActiveX event Q output to pass into Wait on ActiveX event.  Any ideas on what I am doing wrong?
    Attachments:
    Wait On ActiveX Event_New.vi ‏16 KB
    Wait for Voice Event_broken.vi ‏25 KB
    Create ActiveX Event Queue_New_4.vi ‏18 KB

  • RE: Short dump after activation of BADI

    Hi all,
    We are getting short dumps in all the transactions after activating the BADI  'BADI_LAYER'
    We are not able to execute any of the transactions.
    The details of runtimeerror
    Runtime Errors         RAISE_EXCEPTION
    Date and Time          30.07.2007 09:58:06
    Short text
    Exception condition "SINGLE_EXIT_MULTIPLY_ACTIVE" raised.
    What happened?
    The current ABAP/4 program encountered an unexpected
    situation.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    A RAISE statement in the program "CL_EXITHANDLER================CP" raised the
    exception
    condition "SINGLE_EXIT_MULTIPLY_ACTIVE".
    Since the exception was not intercepted by a superior
    program, processing was terminated.
    Short description of exception condition:
    For detailed documentation of the exception condition, use
    Transaction SE37 (Function Library). You can take the called
    function module from the display of active calls.
    How to correct the error
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "RAISE_EXCEPTION" " "
    "CL_EXITHANDLER================CP" or "CL_EXITHANDLER================CM001"
    "GET_INSTANCE"
    or
    "CL_EXITHANDLER================CP" "SINGLE_EXIT_MULTIPLY_ACTIVE"
    or
    "SAPMF05A " "SINGLE_EXIT_MULTIPLY_ACTIVE"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    System environment
    SAP-Release 700
    Application server... "sapdevp"
    Network address...... "192.168.0.205"
    Operating system..... "Windows NT"
    Release.............. "5.2"
    Hardware type........ "4x Intel 80686"
    Character length.... 16 Bits
    Pointer length....... 32 Bits
    Work process number.. 0
    Shortdump setting.... "full"
    Database server... "SAPDEVP"
    Database type..... "ORACLE"
    Database name..... "TDV"
    Database user ID.. "SAPSR4"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Apr 2 2006 23:08:16"
    create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version. "OCI_10103_SHARE "
    Patch level. 52
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
    SAP database version. 700
    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    Memory consumption
    Roll.... 8176
    EM...... 6271344
    Heap.... 0
    Page.... 57344
    MM Used. 1728072
    MM Free. 360856
    User and Transaction
    Client.............. 400
    User................ "FIUSER01"
    Language key........ "E"
    Transaction......... "FB50 "
    Program............. "CL_EXITHANDLER================CP"
    Screen.............. "SAPMF05A 1010"
    Screen line......... 7
    Information on where terminated
    Termination occurred in the ABAP program "CL_EXITHANDLER================CP" -
    in "GET_INSTANCE".
    The main program was "SAPMF05A ".
    In the source code you have the termination point in line 145
    of the (Include) program "CL_EXITHANDLER================CM001".
    Source Code Extract
    Line
    SourceCde
    115
    SELECT SINGLE is_impl FROM badiisimpled INTO is_impl
    116
    WHERE badi_name = mig_badi_name.
    117
    IF sy-subrc NE 0.
    118
          not yet filled
    119
    is_impl = cl_enh_badi_tool_utilities=>update_badiisimpled( mig_badi_name ).
    120
    ENDIF.
    121
    122
    IF is_impl = 'X'.
    123
          ok at least one implementation found
    124
    act_imp_existing = 'X'.
    125
    ENDIF.
    126
    127
    ENDIF.
    128
    ENDIF.
    129
    ELSE.
    130
    131
    check how many implementations exist for an exit
    132
    CALL METHOD cl_badi_flt_data_trans_and_db=>act_imps_per_flt_val
    133
    EXPORTING
    134
    runtime_call                  = seex_true
    135
    exit_name                     = exit_name
    136
    EXCEPTIONS
    137
    singular_exit_multiply_active = 1
    138
    no_active_implementation      = 2
    139
    only_default_implementation   = 3
    140
    OTHERS                        = 4.
    141
    CASE sy-subrc.
    142
    WHEN 0.
    143
    act_imp_existing = seex_true.
    144
    WHEN 1.
    >>>>>
    RAISE single_exit_multiply_active.
    146
    WHEN 2.
    147
    act_imp_existing = seex_false.
    148
    WHEN 3.
    149
    act_imp_existing = seex_false.
    150
    def_impl = seex_true.
    151
    WHEN 4.
    152
    RAISE data_incons_in_exit_managem.
    153
    ENDCASE.
    154
    155
    new parameter considered for performance purposes
    156
    IF act_imp_existing = seex_true OR
    157
    def_impl = seex_true OR
    158
    null_instance_accepted = seex_false.
    159
    160
    ok, then do your job
    161
    CREATE OBJECT exit TYPE (abs_type_classname).
    162
    CATCH SYSTEM-EXCEPTIONS move_cast_error = 1.
    163
    instance ?= exit.
    164
    ENDCATCH.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    1
    SY-INDEX
    0
    SY-TABIX
    0
    SY-DBCNT
    2
    SY-FDPOS
    1
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    FSKB
    SY-UCOMM
    SY-TITLE
    Enter G/L Account Document: Company Code TJ01
    SY-MSGTY
    S
    SY-MSGID
    B!
    SY-MSGNO
    015
    SY-MSGV1
    00001140
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20070730
    SY-UZEIT
    095806
    SY-XPROG
    SY-XFORM
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    5 METHOD       CL_EXITHANDLER================CP    CL_EXITHANDLER================CM001   145
    CL_EXITHANDLER=>GET_INSTANCE
    4 METHOD       CL_EXIT_MASTER================CP    CL_EXIT_MASTER================CM004     2
    CL_EXIT_MASTER=>CLASS_CONSTRUCTOR
    3 METHOD       CL_EX_FI_HEADER_SUB_1300======CP    CL_EX_FI_HEADER_SUB_1300======CM003    53
    CL_EX_FI_HEADER_SUB_1300=>IF_EX_FI_HEADER_SUB_1300~PUT_DATA_TO_SCREEN_PBO
    2 FORM         SAPMF05A                            MF05AF00_D0100_PRE_APPL_SUB_2          50
    D0100_PRE_APPL_SUB_PBO
    1 MODULE (PBO) SAPMF05A                            MF05AO00_D0100_PRE_APPL_SUB            10
    D0100_PRE_APPL_SUB
    Chosen variables
    Name
    Val.
    No.       5 Ty.          METHOD
    Name  CL_EXITHANDLER=>GET_INSTANCE
    EXIT_NAME
    BADI_LAYER
    44445445452222222222
    2149FC19520000000000
    00000000000000000000
    00000000000000000000
    NULL_INSTANCE_ACCEPTED
    2
    0
    0
    0
    ACT_IMP_EXISTING
    2
    0
    0
    0
    INSTANCE
    F0000000
    F0000000
    %_SPACE
    2
    0
    0
    0
    RSJOBINFO
    00000000000000                                  ##
    2222222222222222222222222222222233333333333333222222222222222222222222222222222200
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_DUMMY$$
    2222
    0000
    0000
    0000
    SEEX_TRUE
    X
    5
    8
    0
    0
    SYST-REPID
    CL_EXITHANDLER================CP
    4454545444444533333333333333334522222222
    3CF589481E4C52DDDDDDDDDDDDDDDD3000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    <%_TABLE_BADIISIMPLED>
    SY-REPID
    CL_EXITHANDLER================CP
    4454545444444533333333333333334522222222
    3CF589481E4C52DDDDDDDDDDDDDDDD3000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    SY-SUBRC
    1
    0000
    1000
    SY-XPROG
    2222222222222222222222222222222222222222
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    No.       4 Ty.          METHOD
    Name  CL_EXIT_MASTER=>CLASS_CONSTRUCTOR
    %_SPACE
    2
    0
    0
    0
    SYST-REPID
    CL_EXIT_MASTER================CP
    4454545544554533333333333333334522222222
    3CF5894FD13452DDDDDDDDDDDDDDDD3000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    SY-REPID
    CL_EXIT_MASTER================CP
    4454545544554533333333333333334522222222
    3CF5894FD13452DDDDDDDDDDDDDDDD3000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    CL_EXIT_MASTER=>LAYER_EXIT
    F0000000
    F0000000
    %_DUMMY$$
    2222
    0000
    0000
    0000
    No.       3 Ty.          METHOD
    Name  CL_EX_FI_HEADER_SUB_1300=>IF_EX_FI_HEADER_SUB_1300~PUT_DATA_TO_SCREEN_PBO
    IM_BKPF
    TJ01          2007SA00000000200707300400000000000000000000000000000000000000
    2225433222222222233335433333333333333333333333333333333333333333333333333333333222222222222222
    0004A01000000000020073100000000200707300400000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    IM_X_NO_INPUT
    2
    0
    0
    0
    FLT_VAL
    IN
    44
    9E
    00
    00
    <EXIT_OBJ>-IMP_CLASS
    <FLT_CACHE_LINE>-OBJ
    |
    | F0000000 |
    | F0000000 |
    | %_DUMMY$$ |
    |  |
    | 2222 |
    | 0000 |
    | 0000 |
    | 0000 |
    | ME->INSTANCE_BADI_TABLE |
    | Table[initial] |
    | <EXIT_OBJ> |
    | ??? |
    | ?????? |
    | ?????? |
    | <%_L001> |
    | ??? |
    | ?????? |
    | ?????? |
    | RSJOBINFO |
    | 00000000000000                                  ## |
    | 2222222222222222222222222222222233333333333333222222222222222222222222222222222200 |
    | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
    | SY-REPID |
    | CL_EX_FI_HEADER_SUB_1300======CP |
    | 4454554454444455554533333333334522222222 |
    | 3CF58F69F851452F352F1300DDDDDD3000000000 |
    | 0000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000 |
    | <%_L001>-METHOD_NAME |
    | ??? |
    | ?????? |
    | ?????? |
    | EXIT_OBJ_TAB |
    | Table[initial] |
    | SY-SUBRC |
    | 1 |
    | 0000 |
    | 1000 |
    | ME |
    |
    F0000000
    C0003000
    SXRT_TRUE
    X
    5
    8
    0
    0
    No.       2 Ty.          FORM
    Name  D0100_PRE_APPL_SUB_PBO
    *BSEG-STBUK
    2222
    0000
    0000
    0000
    %_DUMMY$$
    2222
    0000
    0000
    0000
    SY-REPID
    SAPMF05A
    5454433422222222222222222222222222222222
    310D605100000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    SYST-REPID
    SAPMF05A
    5454433422222222222222222222222222222222
    310D605100000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    KDBTAB-DMBTR
    0.0.0.0.0.0.1.
    0000000
    000000C
    %_SPACE
    2
    0
    0
    0
    KDPTAB-BELNR
    2222222222
    0000000000
    0000000000
    0000000000
    KDPTAB-GJAHR
    0000
    3333
    0000
    0000
    0000
    KDPTAB-BUZEI
    000
    333
    000
    000
    000
    KDBTAB-XRUND
    2
    0
    0
    0
    SPACE
    2
    0
    0
    0
    F05ACTRL
    2
    0
    0
    0
    SYST
    ######################################ð#######################################~######### C####
    00000000000000000000000000000000000000F0000000000000000000000000000000000000107000000050240000
    000000200000000000002010100010000000000000000010400000000000000000000000000080E000200080030100
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000
    00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C
    BSED
    0000000# ##############  0000000000000000
    2222222222222222233333330200000000000000223333333333333333222222222222222222222222222222222222
    00000000000000000000000000000C000000C000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    000000000000000000000000C0000000C000000C000000000000000000000000000000000000000000000000000000
    SY-SUBRC
    1
    0000
    1000
    G_APPL_SUB_ACTIVE
    X
    5
    8
    0
    0
    CHAR_X
    X
    5
    8
    0
    0
    %_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    BKPF-BUKRS
    TJ01
    5433
    4A01
    0000
    0000
    BKPF
    TJ01          2007SA00000000200707300400000000000000000000000000000000000000
    2225433222222222233335433333333333333333333333333333333333333333333333333333333222222222222222
    0004A01000000000020073100000000200707300400000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    G_APPL_SUB_DISABLE
    2
    0
    0
    0
    T005-INTCA
    IN
    44
    9E
    00
    00
    No.       1 Ty.          MODULE (PBO)
    Name  D0100_PRE_APPL_SUB
    C_FIELD_DIALOG_ALL
    BUTTON_DIALOG_ALL
    4555445444444544422222222222222222222222222222222222222222222222222222222222222222222222222222
    2544FEF491CF7F1CC00000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    Internal notes
    The termination was triggered in function "ab_jfune"
    of the SAP kernel, in line 2561 of the module
    "//bas/700_REL/src/krn/runt/abfunc.c#10".
    The internal operation just processed is "FUNE".
    Internal mode was started at 20070730095806.
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Callstack without Exception:
    App       : disp+work.EXE (pid=4436)
    When      : 7/30/2007 9:58:6.359
    Threads   : 2
    Computer Name       : SAPDEVP
    User Name           : SAPServiceTDV
    Number of Processors: 4
    Processor Type: x86 Family 6 Model 15 Stepping 6
    Windows Version     : 5.2 Current Build: 3790
    State Dump for Thread Id 250c
    eax=34d52300 ebx=000003f8 ecx=0001ccc0 edx=34d039e0 esi=000003f8 edi=00000000
    eip=7c82ed54 esp=053fceb4 ebp=053fcf24 iopl=0         nv up ei ng nz ac po cy
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00200297
    function : KiFastSystemCallRet
    7c82ed54 c3               ret
    7c82ed55 8da42400000000   lea     esp,[esp]              ss:053fceb4=7c822124
    7c82ed5c 8d642400         lea     esp,[esp]              ss:6627b4c7=00002100
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    053fcf24 77e6ba42 000003f8 0001d4c0 00000000 053fcf5c ntdll!KiFastSystemCallRet
    053fcf38 0100b3aa 000003f8 0001d4c0 00000001 7c38b5c8 kernel32!WaitForSingleObject
    053fcf5c 0055b4ac 0055b4e5 7c38b5c8 7c38b5c8 7c38b5c8 disp+work!NTDebugProcess
    053fcf60 0055b4e5 7c38b5c8 7c38b5c8 7c38b5c8 01d35ab0 disp+work!NTStack
    053fcf7c 0055b519 7c38b5c8 00000000 008536a8 7c38b5c8 disp+work!CTrcStack2
    053fcf88 008536a8 7c38b5c8 00000000 005f0059 00300030 disp+work!CTrcStack
    053fcfac 008569fa 6d1d037c 0000001b 00000000 01cfc168 disp+work!rabax_CStackSave [abrabax.c (6871)
    053fd084 006aaaf4 0134837c 0134835c 00000a01 235f1640 disp+work!ab_rabax
    053fd0c0 0067bb56 00000003 34cf5708 00000000 053fd128 disp+work!ab_jfune
    053fd128 007af183 00000000 34cf5708 053fd274 34cf8c26 disp+work!ab_extri
    053fd13c 00837a37 00000000 34cf7dd6 00596fa0 34cf68b4 disp+work!ab_xevent
    053fd148 00596fa0 34cf68b4 000003db 34cf7dd6 00000000 disp+work!ab_dstep
    053fd274 00597fa1 34cf5708 34cf5708 053ffd04 00597b13 disp+work!dynpmcal
    053fd284 00597b13 34cf5708 34cf5708 00000003 053ffd04 disp+work!dynppbo0
    053fd2a0 0056dcf1 34cf5708 0006e768 00000000 0000000c disp+work!dynprctl
    053ffd04 00471848 00000013 07de0048 00000001 00494960 disp+work!dynpen00
    053ffd14 00494960 0000000c 00000000 00000003 00000002 disp+work!Thdynpen00
    053ffee0 00494ee2 00000001 00000000 00000000 00430000 disp+work!TskhLoop
    053fff00 00421150 00000000 00000000 7ffd8000 053fff60 disp+work!ThStart
    053fff14 00401080 00000003 003f6850 00000001 00000000 disp+work!DpMain
    053fff60 011a94a0 00000003 003f6850 003f78f8 01bd5000 disp+work!nlsui_main
    053fffc0 77e523e5 00000000 00000000 7ffd8000 88602680 disp+work!wmainCRTStartup
    053ffff0 00000000 011a935d 00000000 00905a4d 00000003 kernel32!IsProcessorFeaturePresent
    State Dump for Thread Id 27bc
    eax=00000001 ebx=00000103 ecx=fffffffe edx=003f01f8 esi=00000000 edi=00000000
    eip=7c82ed54 esp=075dfec0 ebp=075dff04 iopl=0         nv up ei pl zr na po nc
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00000246
    function : KiFastSystemCallRet
    7c82ed54 c3               ret
    7c82ed55 8da42400000000   lea     esp,[esp]              ss:075dfec0=7c821514
    7c82ed5c 8d642400         lea     esp,[esp]              ss:6845e4d3=50004500
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    075dff04 010f7ffc 000006c0 00000000 00000000 003f77d0 ntdll!KiFastSystemCallRet
    075dff84 7c349565 00000000 00000000 00000000 0587ff08 disp+work!SigIMsgFunc
    075dffb8 77e6608b 0587ff08 00000000 00000000 0587ff08 MSVCR71!endthreadex
    075dffec 00000000 7c3494f6 0587ff08 00000000 00000000 kernel32!GetModuleFileNameA
    List of ABAP programs affected
    Index
    Typ
    Program
    Group
    Date
    Time
    Size
    Lang.
    0
    Prg
    SAPMF05A
    0
    22.05.2007
    11:37:49
    1563648
    E
    1
    Prg
    SAPMSSYD
    0
    10.01.2007
    12:33:28
    21504
    E
    2
    Prg
    SAPFSYSCALLS
    0
    09.09.2004
    14:18:32
    8192
    E
    3
    Typ
    TFDIR
    0
    13.02.2005
    17:31:57
    3072
    4
    Prg
    SAPLAPAR_EBPP_SERVICES
    4
    03.01.2007
    11:23:55
    114688
    E
    5
    Typ
    T042ZEBPP
    0
    08.01.2002
    14:42:24
    2048
    6
    Typ
    T020
    0
    24.02.1999
    03:17:19
    3072
    7
    Typ
    RFOPT2
    0
    11.12.2003
    15:00:17
    5120
    8
    Prg
    SAPFF001
    0
    22.05.2007
    11:37:49
    195584
    E
    9
    Typ
    SWOTOBJID
    0
    04.05.1995
    15:20:52
    2048
    10
    Prg
    SAPLSWOR
    10
    10.01.2007
    12:33:34
    292864
    E
    11
    Typ
    TFBUF
    0
    30.11.1998
    22:08:34
    3072
    12
    Typ
    ACC_KONTEXT
    0
    08.01.2003
    17:30:26
    3072
    13
    Typ
    BKPF
    0
    13.03.2006
    11:01:29
    18432
    14
    Prg
    SAPLFACSCORE
    14
    01.12.2006
    22:00:12
    13312
    E
    15
    Typ
    T001
    0
    25.08.2005
    22:03:13
    13312
    16
    Prg
    SAPLACHD
    16
    03.01.2007
    11:23:55
    51200
    E
    17
    Prg
    SAPFSPOR
    0
    09.09.2004
    14:18:32
    15360
    E
    18
    Prg
    SAPLSCNT
    18
    18.02.2005
    14:16:06
    30720
    E
    19
    Typ
    DYCBOX
    0
    20.08.1998
    11:16:53
    3072
    20
    Prg
    SAPLSVSM
    20
    18.02.2005
    14:16:06
    27648
    E
    21
    Prg
    SAPLSGUI
    21
    10.01.2007
    12:33:33
    82944
    E
    22
    Prg
    SAPLSTTM
    22
    05.07.2005
    13:10:18
    69632
    E
    23
    Prg
    SAPLSBDC
    23
    05.07.2005
    13:10:18
    44032
    E
    24
    Prg
    CL_DATAPROVIDER===============CP
    24
    28.02.2005
    21:00:46
    49152
    E
    25
    Prg
    %_CCNTL
    24
    18.02.2005
    14:15:08
    15360
    E
    26
    Typ
    OBJ_RECORD
    0
    14.02.1998
    08:30:43
    2048
    27
    Prg
    SAPLSTUP
    27
    08.03.2005
    19:04:31
    73728
    E
    28
    Prg
    SAPLCNDP
    28
    01.12.2006
    22:04:33
    193536
    E
    29
    Prg
    SAPSHDTV
    18
    05.01.2005
    16:26:16
    33792
    E
    30
    Typ
    SHDSTU
    0
    14.12.1998
    23:15:34
    2048
    31
    Typ
    SHDSTCIU
    0
    14.12.1998
    23:15:34
    2048
    32
    Prg
    SAPFGUICNTL
    0
    18.02.2005
    14:15:08
    24576
    E
    33
    Prg
    SAPLOLEA
    33
    05.07.2005
    13:10:18
    96256
    E
    34
    Prg
    SAPLSFES
    34
    10.01.2007
    13:26:20
    256000
    E
    35
    Prg
    SAPLSPLUGIN
    35
    09.09.2004
    14:18:36
    8192
    E
    36
    Typ
    ARFCRDATA
    0
    13.02.2005
    18:20:24
    7168
    37
    Prg
    SAPLGRFC
    37
    13.02.2005
    18:20:25
    16384
    E
    38
    Typ
    SWCBCONT
    0
    15.11.2000
    17:55:11
    3072
    39
    Typ
    OLE_VERBS
    0
    04.04.1995
    16:02:20
    2048
    40
    Typ
    OLE_PA
    0
    04.04.1995
    16:02:19
    2048
    41
    Typ
    ACGL_HEAD
    0
    11.12.2003
    14:59:21
    8192
    42
    Typ
    RF05A
    0
    11.04.2005
    11:50:21
    38912
    43
    Typ
    TCURC
    0
    01.12.1999
    12:14:40
    2048
    44
    Prg
    SAPLFAGL_ACTIVATION_SERVICES
    44
    30.04.2007
    17:00:55
    45056
    E
    45
    Prg
    SAPLSTR9
    45
    09.05.2006
    10:39:47
    39936
    E
    46
    Prg
    CONTEXT_X_TR_SYS_PARAMS
    45
    09.05.2006
    10:39:47
    40960
    E
    47
    Typ
    TCONT
    0
    09.09.2004
    14:18:43
    2048
    48
    Typ
    CONTEXTB
    0
    09.09.2004
    14:15:52
    6144
    49
    Typ
    FAGL_ACTIVEC
    0
    19.08.2004
    16:55:10
    5120
    50
    Typ
    FAGL_CHECK_SETUP
    0
    11.12.2003
    15:01:05
    2048
    51
    Prg
    SAPLSHD0
    51
    03.01.2007
    06:52:22
    232448
    E
    52
    Prg
    SAPLBFFM3
    52
    10.01.2007
    13:15:21
    169984
    E
    53
    Typ
    OFIWA
    0
    15.04.1998
    00:11:05
    2048
    54
    Typ
    FTEXTS
    0
    20.08.2001
    12:13:26
    3072
    55
    Prg
    SAPLITSR
    55
    10.01.2007
    14:23:52
    107520
    E
    56
    Typ
    FMRFC
    0
    13.08.1997
    12:32:59
    2048
    57
    Typ
    TBE01
    0
    20.01.2003
    16:41:38
    2048
    58
    Typ
    TBE31
    0
    03.09.1997
    03:01:11
    2048
    59
    Typ
    TBE31
    0
    03.09.1997
    03:01:11
    2048
    60
    Typ
    TBE11
    0
    03.09.1997
    03:01:06
    2048
    61
    Prg
    CONTEXT_X_SP_INFO
    55

    Hello Sowmya
    The BAdI BADI_LAYER is not defined for <b>Multiple-Use</b> (see checkbox on tabstrip <i>Attributes</i>).
    Apparently you have created <i>several </i>implementation of this BAdI and activated <i>several </i>(at least 2) of these implementations.
    If you inactivate all except a single implementation the BAdI (and all transactions using this BAdI) should work again.
    Regards
      Uwe

  • Events in FI-CA

    Experts can you help me with:
    How to debug a transaction activating an event in FI-CA?
    Do you have a how to guide? About debugging a transaction using of the events in FI-CA?
    Rgs,

    Hello,
    If you know your Function module, you go to SE37 and press F7.
    You press 'CtrlShiftF12'. Break points would be set in the Function module <FM>.
    Now when you test your program and if this FM is used by your program, it wud go into de-bugging mode...
    Also if you want to set break-point at particular line <only when it is allowable>, you double click on the line(s), your break point would be active...now you run u r program, it is run in debugging mode and stops at the break point...
    Also you use '/h' in the t-code menu, it would take you into debugging mode.
    Hope this helps
    Rgds
    Rajendra

  • ABAP/4 processor: UNCAUGHT_EXCEPTION while activation

    Hi All,
    I am getting this error "ABAP/4 processor: UNCAUGHT_EXCEPTION" while the activation of DSO. I am attaching the dump
    Runtime Errors         UNCAUGHT_EXCEPTION
    Exception              CX_SDB_ORA_PROGRAM_ERROR
    Date and Time          19.12.2008 03:02:53
    Short text
    An exception occurred that was not caught.
    What happened?
    The exception 'CX_SDB_ORA_PROGRAM_ERROR' was raised, but it was not caught
    anywhere along
    the call hierarchy.
    Since exceptions represent error situations and this error was not
    adequately responded to, the running ABAP program
    'CL_SDB_ORA_UPDATE_STATS=======CP' has to be
    terminated.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    An exception occurred which is explained in detail below.
    The exception, which is assigned to class 'CX_SDB_ORA_PROGRAM_ERROR', was not
    caught and
    therefore caused a runtime error.
    The reason for the exception is:
    An error occurred in the program:
    The occurrence of the exception is closely related to the occurrence of
    a previous exception "CX_SQL_EXCEPTION", which was raised in the program
    "CL_SQL_STATEMENT==============CP",
    specifically in line 31 of the (include) program
    "CL_SQL_STATEMENT==============CM002".
    The cause of the exception was:
    ORA-04031: unable to allocate 62208 bytes of shared memory ("shared
    pool","DBMS_STATS","PL/SQL MPCODE","BAMIMA: Bam Buffer")
    ORA-06508: PL/SQL:
    could not find program unit being called: "SYS.DBMS_STATS"
    ORA-06512: at line 1
    How to correct the error
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "UNCAUGHT_EXCEPTION" "CX_SDB_ORA_PROGRAM_ERROR"
    "CL_SDB_ORA_UPDATE_STATS=======CP" or "CL_SDB_ORA_UPDATE_STATS=======CM00I"
    "UPDATE_STATS"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    System environment
    SAP-Release 700
    Application server... "gwpsapci"
    Network address...... "10.220.136.60"
    Operating system..... "AIX"
    Release.............. "5.3"
    Hardware type........ "0005E935D600"
    Character length.... 8 Bits
    Pointer length....... 64 Bits
    Work process number.. 30
    Shortdump setting.... "full"
    Database server... "de08u1642"
    Database type..... "ORACLE"
    Database name..... "GWP"
    Database user ID.. "SAPR3"
    Char.set.... "en_US.ISO8859-1"
    SAP kernel....... 700
    created (date)... "Aug 24 2008 21:05:40"
    create on........ "AIX 2 5 005DD9CD4C00"
    Database version. "OCI_102 (10.2.0.2.0) "
    Patch level. 175
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
    SAP database version. 700
    Operating system..... "AIX 1 5, AIX 2 5, AIX 3 5, AIX 1 6"
    Memory consumption
    Roll.... 16128
    EM...... 25139520
    Heap.... 0
    Page.... 24576
    MM Used. 12500304
    MM Free. 4256248
    User and Transaction
    Client.............. 950
    User................ "ZZSUPPORT"
    Language key........ "E"
    Transaction......... " "
    Transactions ID..... "494AFB8FEB5A00D6E10080000ADC883C"
    Program............. "CL_SDB_ORA_UPDATE_STATS=======CP"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where terminated
    Termination occurred in the ABAP program "CL_SDB_ORA_UPDATE_STATS=======CP" -
    in "UPDATE_STATS".
    The main program was "RSPROCESS ".
    In the source code you have the termination point in line 40
    of the (Include) program "CL_SDB_ORA_UPDATE_STATS=======CM00I".
    The program "CL_SDB_ORA_UPDATE_STATS=======CP" was started as a background job.
    Job Name....... "BI_PROCESS_ODSACTIVAT"
    Job Initiator.. "E442207"
    Job Number..... 03030600
    Source Code Extract
    Line
    SourceCde
    10
    i_tablnm      = i_tablnm
    11
    i_signi       = i_signi
    12
    i_thresh_mod  = i_thresh_mod
    13
    i_degree      = i_degree
    14
    i_histo       = i_histo
    15
    i_granularity = i_granularity
    16
    i_cascade     = i_cascade
    17
    i_force       = i_force
    18
    i_flush       = i_flush
    19
    i_connection  = i_connection.
    20
    21
        Update Statistics
    22
    IF l_r_upd_stats->p_skip_upd IS initial.
    23
    CASE l_r_upd_stats->p_granularity.
    24
    WHEN 0. " DEFT
    25
    IF l_r_upd_stats->global_update_stats( ) = 'NO'.
    26
    l_r_upd_stats->part_update_stats( ).
    27
    ENDIF.
    28
    WHEN 1. " ALL
    29
    l_r_upd_stats->global_update_stats( ).
    30
    WHEN 2. " GLOBAL
    31
    l_r_upd_stats->global_update_stats( ).
    32
    WHEN 3. " PART
    33
    l_r_upd_stats->part_update_stats( ).
    34
    WHEN OTHERS. " AUTO
    35
    l_r_upd_stats->global_update_stats( ).
    36
    ENDCASE.
    37
    ENDIF.
    38
    39
    CATCH cx_sql_exception INTO l_r_exception.
    >>>>>
    RAISE EXCEPTION TYPE cx_sdb_ora_program_error
    41
    EXPORTING previous = l_r_exception.
    42
    CLEANUP.
    43
    TRY.
    44
    CATCH cx_sql_exception INTO l_r_exception.
    45
    RAISE EXCEPTION TYPE cx_sdb_ora_program_error
    46
    EXPORTING previous = l_r_exception.
    47
    ENDTRY.
    48
    ENDTRY.
    49
    50
    ENDMETHOD.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    0
    SY-DBCNT
    0
    SY-FDPOS
    0
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE
    Process Variant Run
    SY-MSGTY
    E
    SY-MSGID
    DA
    SY-MSGNO
    300
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20081219
    SY-UZEIT
    030252
    SY-XPROG
    SAPCNVE
    SY-XFORM
    CONVERSION_EXIT
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    6 METHOD       CL_SDB_ORA_UPDATE_STATS=======CP    CL_SDB_ORA_UPDATE_STATS=======CM00I    40
    CL_SDB_ORA_UPDATE_STATS=>UPDATE_STATS
    5 FUNCTION     SAPLRSDU_UTIL_ORA                   LRSDU_UTIL_ORAU01                      86
    RSDU_ANALYZE_TABLE_ORA
    4 FUNCTION     SAPLRSDU_UTIL                       LRSDU_UTILU01                          38
    RSDU_ANALYZE_TABLE
    3 FUNCTION     SAPLRSSM_PROCESS                    LRSSM_PROCESSU30                     1476
    RSSM_PROCESS_ODSACTIVATE
    2 METHOD       CL_RSSM_ODSACTIVATE===========CP    CL_RSSM_ODSACTIVATE===========CM007   117
    CL_RSSM_ODSACTIVATE=>IF_RSPC_EXECUTE~EXECUTE
    1 EVENT        RSPROCESS                           RSPROCESS                             144
    START-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.       6 Ty.          METHOD
    Name  CL_SDB_ORA_UPDATE_STATS=>UPDATE_STATS
    I_TABLNM
    /BIC/AOD13ITM340
    244424443345433322222222222222
    F293F1F41394D34000000000000000
    I_SIGNI
    5775488
    0
    0
    I_THRESH_MOD
    0
    0000
    0000
    I_DEGREE
    3
    0000
    0003
    I_HISTO
    2
    0
    I_GRANULARITY
    0
    0000
    0000
    I_CASCADE
    0
    0000
    0000
    I_FORCE
    2
    0
    I_FLUSH
    X
    5
    8
    I_CONNECTION
    222222222222222222222222222222
    000000000000000000000000000000
    SPACE
    2
    0
    L_R_UPD_STATS
    |
    | 0000000F |
    | 80000027 |
    | %_DUMMY$$ |
    |  |
    | 2222 |
    | 0000 |
    | SY-REPID |
    | CL_SDB_ORA_UPDATE_STATS=======CP |
    | 4455445454555445455545533333334522222222 |
    | 3CF342FF21F504145F34143DDDDDDD3000000000 |
    | SY-XFORM |
    | CONVERSION_EXIT |
    | 444545544454545222222222222222 |
    | 3FE65239FEF5894000000000000000 |
    | L_R_EXCEPTION |
    |
    E0000001
    80000037
    SYST
    #######################################################A#######ÿ###############(##############
    000000000000000000000000000000000000000000000000000000040000000F000000000000000200000000000000
    000000000000000100000000000000000000000000000000000100010001000F000000000000000800000000000000
    SY
    #######################################################A#######ÿ###############(##############
    000000000000000000000000000000000000000000000000000000040000000F000000000000000200000000000000
    000000000000000100000000000000000000000000000000000100010001000F000000000000000800000000000000
    %_EXCP
    E0000001
    70000038
    %_SPACE
    2
    0
    SYST-REPID
    CL_SDB_ORA_UPDATE_STATS=======CP
    4455445454555445455545533333334522222222
    3CF342FF21F504145F34143DDDDDDD3000000000
    No.       5 Ty.          FUNCTION
    Name  RSDU_ANALYZE_TABLE_ORA
    I_ALL_COLUMNS
    2
    0
    I_FORCE_ESTIMATE
    X
    5
    8
    I_FORCE_STATISTICS
    2
    0
    I_PERCENTAGE
    1
    0000
    0001
    I_PERCENTAGE_SPECIFIED
    X
    5
    8
    I_TABLNM
    /BIC/AOD13ITM340
    244424443345433322222222222222
    F293F1F41394D34000000000000000
    I_TEMP_TABLE
    2
    0
    I_T_TABLNM
    Table[initial]
    C_PROCESSED
    2
    0
    SY-REPID
    SAPLRSDU_UTIL_ORA
    5454554555544545422222222222222222222222
    310C2345F549CFF2100000000000000000000000
    <L_TABLNM>
    /BIC/AOD13ITM340
    244424443345433322222222222222
    F293F1F41394D34000000000000000
    SYST-REPID
    SAPLRSDU_UTIL_ORA
    5454554555544545422222222222222222222222
    310C2345F549CFF2100000000000000000000000
    %_SPACE
    2
    0
    SY
    #######################################################A#######ÿ###############(##############
    000000000000000000000000000000000000000000000000000000040000000F000000000000000200000000000000
    000000000000000100000000000000000000000000000000000100010001000F000000000000000800000000000000
    %_DUMMY$$
    2222
    0000
    L_SIGNI
    5775488
    0
    0
    L_PARALLEL_DEGREE
    3
    0000
    0003
    L_HISTO
    2
    0
    L_FLUSH
    X
    5
    8
    SY-ONCOM
    S
    5
    3
    No.       4 Ty.          FUNCTION
    Name  RSDU_ANALYZE_TABLE
    I_FORCE_ESTIMATE
    X
    5
    8
    I_FORCE_STATISTICS
    2
    0
    I_PERCENTAGE
    1
    0000
    0001
    I_TABLNM
    /BIC/AOD13ITM340
    244424443345433322222222222222
    F293F1F41394D34000000000000000
    I_TEMP_TABLE
    2
    0
    I_T_TABLNM
    Table[initial]
    SYST-REPID
    SAPLRSDU_UTIL
    5454554555544222222222222222222222222222
    310C2345F549C000000000000000000000000000
    RSDU_C_OBJTYPE-VIEW
    VIEW
    5445
    6957
    L_DBFUNC
    RSDU_ANALYZE_TABLE_ORA
    554554444554554444545422222222
    2345F1E1C9A5F412C5FF2100000000
    SY-XFORM
    CONVERSION_EXIT
    444545544454545222222222222222
    3FE65239FEF5894000000000000000
    L_PERCENTAGE_SPECIFIED
    X
    5
    8
    %_VIASELSCR
    0
    4
    %_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    L_PROCESSED
    2
    0
    RS_C_FALSE
    2
    0
    SY-SUBRC
    0
    0000
    0000
    SCREEN
    %_17NNS0000194530_%_%_%_%_%_%_
    2533445333333333352525252525252222222222222222222222222222222222222222222222222222222222222222
    5F17EE30000194530F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000
    SY-REPID
    SAPLRSDU_UTIL
    5454554555544222222222222222222222222222
    310C2345F549C000000000000000000000000000
    L_MESSAGE
    222222222222222222222222222222222222222222222222222222222222222222222222
    000000000000000000000000000000000000000000000000000000000000000000000000
    No.       3 Ty.          FUNCTION
    Name  RSSM_PROCESS_ODSACTIVATE
    I_CRT_ACTIVATION
    2
    0
    I_DROP_CREA_SEC_IND
    2
    0
    I_INSTANCE
    ODSA_4C7HUKHW8WV06KLJFFYZP95BW
    445453434544535533444445553345
    F431F43785B8787606BCA669A09527
    I_JOBNAME
    BI_PROCESS_ODSACTIVAT
    44555444555445445454522222222222
    29F02F3533FF43134961400000000000
    I_LOG_ID
    4C7HSJQKN58AR2DG5NSOGNB5O
    3434545443345344345444434
    43783A1BE58122475E3F7E25F
    I_NO_CONDENSE
    2
    0
    I_ODSOBJECT
    OD13ITM3
    443345432222222222222222222222
    F41394D30000000000000000000000
    I_PARENT_BATCH_ID
    222222222222222222222222222222
    000000000000000000000000000000
    I_SERIALIZE
    2
    0
    I_T_REQUEST_SEL
    Table[initial]
    I_VARIANT
    OD13ITM3_ACTIVATE
    443345435445454542222222222222
    F41394D3F134961450000000000000
    I_WITH_COMMIT
    X
    5
    8
    E_ERROR
    2
    0
    E_RNR
    ODSR_4C7HULKAVPVJRPAS8MAP3IYWS
    445553434544455545545344534555
    F432F43785CB1606A20138D1039973
    E_T_ACTIVATE_RNR
    Table[initial]
    E_T_ERROR_RNR
    Table[initial]
    E_T_MSG
    Table IT_18345[3x704]
    CLASS=CL_RSSM_ODSACTIVATEMETHOD=IF_RSPC_EXECUTE~EXECUTEDATA=L_T_MSG_PROC
    Table reference: 123
    TABH+  0(20) = 07000000A05FD4B0000000000000000000000000
    TABH+ 20(20) = 0000007B000047A900000003000002C0FFFFFFFF
    TABH+ 40(16) = 0400012500000D40001024C401800000
    store        = 0x07000000A05FD4B0
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 123   (0x0000007B)
    label        = 18345 (0x000047A9)
    fill         = 3     (0x00000003)
    leng         = 704   (0x000002C0)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000050
    occu         = 16    (0x00000010)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x07000000A05750F0
    pgHook       = 0x0000000000000000
    idxPtr       = 0x0000000000000000
    shmTabhSet   = 0x0000000000000000
    id           = 10517 (0x00002915)
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x00000010)
    lineAlloc    = 16    (0x00000010)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x00000001)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    collHook     = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    E_T_ODSR_RNR
    Table[initial]
    L_LINES
    0
    0000
    0000
    %_DUMMY$$
    2222
    0000
    SCREEN
    %_17NNS0000194530_%_%_%_%_%_%_
    2533445333333333352525252525252222222222222222222222222222222222222222222222222222222222222222
    5F17EE30000194530F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000
    SY-REPID
    SAPLRSSM_PROCESS
    5454555455544455222222222222222222222222
    310C233DF02F3533000000000000000000000000
    SY-MSGID
    DA
    44222222222222222222
    41000000000000000000
    G_CHANGED
    2
    0
    SPACE
    2
    0
    SY-MSGNO
    300
    333
    300
    SY-MSGV1
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    SY-MSGV2
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    SY-MSGV3
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    SY-MSGV4
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    L_PERFORMED_ANALYZE
    2
    0
    G_R_ALV_GRID
    F0000000
    F0000000
    RS_C_TRUE
    X
    5
    8
    L_S_ODSTABNAME-M_TAB
    /BIC/AOD13ITM340
    244424443345433322222222222222
    F293F1F41394D34000000000000000
    SYST
    #######################################################A#######ÿ###############(##############
    000000000000000000000000000000000000000000000000000000040000000F000000000000000200000000000000
    000000000000000100000000000000000000000000000000000100010001000F000000000000000800000000000000
    <%_TABLE_RSDS>
    RSAU_C_PROTCLASS
    1234
    3333
    1234
    SYST-REPID
    SAPLRSSM_PROCESS
    5454555455544455222222222222222222222222
    310C233DF02F3533000000000000000000000000
    G_BUTTON_REQUDEL
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_SPACE
    2
    0
    No.       2 Ty.          METHOD
    Name  CL_RSSM_ODSACTIVATE=>IF_RSPC_EXECUTE~EXECUTE
    I_VARIANT
    OD13ITM3_ACTIVATE
    443345435445454542222222222222
    F41394D3F134961450000000000000
    I_EVENT_START
    RSPROCESS
    55554445522222222222222222222222
    2302F353300000000000000000000000
    I_EVENTP_START
    4BO77YTX6F8UVLQ22AEHHYIPO
    3443355534355453344445454222222222222222222222222222222222222222
    42F7794866856C1221588990F000000000000000000000000000000000000000
    I_JOBCOUNT
    03030600
    33333333
    03030600
    I_BATCHDATE
    20081218
    33333333
    20081218
    I_BATCHTIME
    030306
    333333
    030306
    I_T_PROCESSLIST
    Table IT_123[18x528]
    PROGRAM=RSPROCESSDATA=G_T_PROCESSLIST
    Table reference: 37
    TABH+  0(20) = 07000000A02596D8000000000000000000000000
    TABH+ 20(20) = 000000250000007B0000001200000210FFFFFFFF
    TABH+ 40(16) = 040000740000116800102CC421800000
    store        = 0x07000000A02596D8
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 37    (0x00000025)
    label        = 123   (0x0000007B)
    fill         = 18    (0x00000012)
    leng         = 528   (0x00000210)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000069
    occu         = 16    (0x00000010)
    access       = 1     (ItAccessStandard)
    idxKind      = 1     (ItIndexLinear)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x07000000A0262CF0
    pgHook       = 0x07000000A0258600
    idxPtr       = 0x07000000A0259788
    shmTabhSet   = 0x0000000000000000
    id           = 93    (0x0000005D)
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 32    (0x00000020)
    lineAlloc    = 32    (0x00000020)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x00000001)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    collHook     = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    I_LOGID
    4C7HSJQKN58AR2DG5NSOGNB5O
    3434545443345344345444434
    43783A1BE58122475E3F7E25F
    I_T_VARIABLES
    Table[initial]
    I_SYNCHRONOUS
    2
    0
    I_SIMULATE
    2
    0
    I_REPAIR
    222222222222222222222222222222
    000000000000000000000000000000
    I_BATCHID
    222222222222222222222222222222
    000000000000000000000000000000
    E_INSTANCE
    ODSA_4C7HUKHW8WV06KLJFFYZP95BW
    445453434544535533444445553345
    F431F43785B8787606BCA669A09527
    E_STATE
    2
    0
    E_EVENTNO
    00
    33
    00
    E_HOLD
    2
    0
    SY-REPID
    CL_RSSM_ODSACTIVATE===========CP
    4455554544544545454333333333334522222222
    3CF233DFF4313496145DDDDDDDDDDD3000000000
    <%_L003>-RNR
    L_T_REQUESTS
    Table[initial]
    L_S_REQUESTS
    222222222222222222222222222222
    000000000000000000000000000000
    SY-SUBRC
    0
    0000
    0000
    SYST-REPID
    CL_RSSM_ODSACTIVATE===========CP
    4455554544544545454333333333334522222222
    3CF233DFF4313496145DDDDDDDDDDD3000000000
    ICON_GREEN_LIGHT
    @08@
    4334
    0080
    L_JOBNAME
    BI_PROCESS_ODSACTIVAT
    44555444555445445454522222222222
    29F02F3533FF43134961400000000000
    L_S_SELE-NO_CONDENSE
    2
    0
    L_S_ODS-OBJECT
    OD13ITM3
    443345432222222222222222222222
    F41394D30000000000000000000000
    L_S_SELE-ODSACTSERIAL
    2
    0
    L_ERROR_PROC
    2
    0
    L_T_MSG_PROC
    Table IT_18345[3x704]
    L_T_MSG
    Table[initial]
    No.       1 Ty.          EVENT
    Name  START-OF-SELECTION
    G_VARIANT
    OD13ITM3_ACTIVATE
    443345435445454542222222222222
    F41394D3F134961450000000000000
    G_TYPE
    ODSACTIVAT
    4454454545
    F431349614
    %_DUMMY$$
    2222
    0000
    %_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    G_OBJECT
    CL_RSSM_ODSACTIVATE
    445555454454454545422222222222
    3CF233DFF431349614500000000000
    G_INSTANCE
    222222222222222222222222222222
    000000000000000000000000000000
    SY
    #######################################################A#######ÿ###############(##############
    000000000000000000000000000000000000000000000000000000040000000F000000000000000200000000000000
    000000000000000100000000000000000000000000000000000100010001000F000000000000000800000000000000
    %_SPACE
    2
    0
    %_REPAIR_%_APP_%
    222222222222222222222222222222
    000000000000000000000000000000
    G_STATE
    2
    0
    G_EVENTID
    RSPROCESS
    55554445522222222222222222222222
    2302F353300000000000000000000000
    G_HOLD
    2
    0
    G_EVENTPARM
    4BO77YTX6F8UVLQ22AEHHYIPO
    3443355534355453344445454222222222222222222222222222222222222222
    42F7794866856C1221588990F000000000000000000000000000000000000000
    G_JOBCOUNT
    03030600
    33333333
    03030600
    G_BATCHDATE
    20081218
    33333333
    20081218
    G_EVENTNO
    00
    33
    00
    G_BATCHTIME
    030306
    333333
    030306
    G_T_VARIABLES
    Table[initial]
    G_T_PROCESSLIST
    Table IT_123[18x528]
    %F007017_1000
    Log ID (Internal Use Only)
    46624422467676662576246672222222222222222222222222222222222222222222222222222222222
    CF7094089E452E1C05350FEC99000000000000000000000000000000000000000000000000000000000
    G_LOGID
    4C7HSJQKN58AR2DG5NSOGNB5O
    3434545443345344345444434
    43783A1BE58122475E3F7E25F
    G_CHAIN
    ZLIS_13_VDITM
    5445533554454222222222222
    AC93F13F6494D000000000000
    G_REPAIR
    222222222222222222222222222222
    000000000000000000000000000000
    G_BATCHID
    INFO_4C7HUKA7PY9ANY239LWNF76M4
    444453434544355344533345443343
    9E6FF43785B170991E9239C7E676D4
    Internal notes
    The termination was triggered in function "raiseExcp"
    of the SAP kernel, in line 2099 of the module
    "//bas/700_REL/src/krn/runt/abexcp.c#7".
    The internal operation just processed is "EXCP".
    Internal mode was started at 20081219030246.
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    => 64 bit R/3 Kernel
    => 64 bit AIX Kernel
    => Heap limit      = unlimited
    => Stack limit     = unlimited
    => Core limit      = 1073741312
    => File size limit = unlimited
    => Heap address  = 0x1154fc6a0
    => Stack address = 0xfffffffffffb080
    => Stack low     =  0xfffffffffffb080
    => Stack high    =  0xffffffffffff880
    => Stack Trace:
         AixStack() at 0x1000a2474
         CTrcStack2() at 0x1000a256c
         rabax_CStackSave__Fv() at 0x1000d0e3c
         ab_rabax() at 0x1000cd81c
         raiseExcp__F6HeadId() at 0x100429ba0
         ab_jexcp__Fv() at 0x100428d30
         ab_extri__Fv() at 0x10038e6dc
         ab_xevent__FPCc() at 0x100ab5cc4
         ab_trigg__Fv() at 0x100ab59b0
         ab_run() at 0x1014d42dc
         N_ab_run() at 0x100ed3f4c
         dynpmcal() at 0x100ed2d40

    HI karthik..
    The Error Msg is due to insufficient memory while storing the Data in Database(i,e ODS) and this error UNCAUGH EXCEPTION will come due to " like there is an exception raised but no code to catch it(to activate the ODS)".
    so chk the problem with the Basis People... those guys can give clear info pertaining to this kind of  problems...
    Genereally in our case we raise ticket to Basis people..
    hope useful....
    cheers
    Sukhai..

  • Event handling in java

    Can we write a generic event listener which is activated on any event ?
    for example: instead of activating an event listener on clicking a butoon in should be activated on any mouse click...

    "Java" is too generic. I assume you mean Swing; you might as well be talking about JavaFX here. Your requirement is a bit odd and very much conflicting in any case. There is no such thing as a generic event listener, there are specific listeners for specific events.
    In stead of asking how to technically implement something, why don't you explain what you want to functionally achieve?

Maybe you are looking for

  • Displaying default value for a field in ALV table

    Hai all,      I am having an ALV table in which I want to display Requisition number by default using a value which i generated randomly and it is stored in a variable. While displaying ALV table my req number field should display that value by defau

  • How do I downgrade from Mavericks to Snow Leopard and save my new pages files?

    Unfortunately, the Mavericks system isn't working for me. It's way too slow, has issues with Finder and so on. Basically it's just a pain in my *** and my beloved Mac Book Unibody (2010) just can't handle it! After searching for hours online for a so

  • Searching for a specific Server

    When using Finder to find files that are on a mounted server I can't specify the exact server to look in. It just gives me "shared", "This Mac" and my hard drive. It takes too long to let it search thru all of the shared files. Can I specifically sel

  • Send for review - sub directory

    Is there any way to tell contribute not to create sub directories for draft reviews? I am using php includes and the "Send for Review" function isn't working very well. Basically, I include "includes/somefile.php". If Contribute creates {page name}_p

  • Trying to open nikon Df raw files, can't reach update server

    I can not seem to reach the update server to update the plugins for photoshop so that it can open Nikon Df raw files. Is there a way to manually download the update/plugins from some other server? Roger