Locate an entry in SXMB_MONI for a particular value(IDoc numbe) in payload

Hi,
     We have an R/3 – XI – Third party scenario. R/3 is sending tones of IDocs. In some cases some IDcos are not going beyond XI. In BD64 we get a status code 40(from XI).
We would like to locate the entry in SXMB_MONI for one particular IDoc. The only way now is to manually open all entries for the service/interface combination and see the IDoc number which is becoming very painful.
Since we are in testing phase, there are a lot of entries for the sender/receiver interface combination. We tried to narrow down the result in SXMB_MONI with all possible search criteria like service, interface, etc. Time is ruled out because, we have queues with a lot of messages and never know when a particular message is processed by XI  (so the time of sending from R/3 may not make sense in SXMB_MONI as a search criteria).
So my question is: it there a way to find an entry in SXMB_MONI for a particular IDoc number (which is present in the payload) ?
As a programmer, I could think about a program which does this ?! But don’t know in which tables the entries are saved or the relation between the tables ?!
Can someone please throw some light on it ?
Thanks in advance
Cheers
danus
null

There is a way actually.
Idoc Tracking is available from Sp18 ( I think ).
http://help.sap.com/saphelp_nw04/helpdata/en/c1/bab13bb3acd607e10000000a11402f/content.htm
Look into Idoc Tracking in this link.
Regards
Bhavesh

Similar Messages

  • Query not executing for one particular value

    Hi
    I have query on multi provider. and this multi provider is combination of Info objects only but not any ODS or cubes. I have one key figure in this multi provider.while executing the query i need to give input for variabl which has 7 different values. Query is executing fine for 6 values but not for one particular value.
    query executed in listcube transaction and it is executed fine here for the same selection. then what might be the reason?
    Please advise as soon as possible.
    Thanks

    Hi Kiran,
    are you maintaining any filters in the query? or is there any logic in the exit for this variable.
    regards.

  • Stop a dimensional drill for a particular value of a column in obiee 11g

    Hi,
    I have dimensional drill been setup for Supervisor Hierarchy Table.I need to stop the dimensional drill for a particular value of the column in obiee 11g.
    Example: I have two columns
    1.Supervisor Level 1 Name
    2.Supervisor Level 2 Name
    Supervisor Level 1 Name Columns have these values.(Ram,Higher,Sam)
    Supervisor Level 2 Name Columns have these values.(Ravi,Higher,Raghul).
    If we pull Supervisor Level 1 Name Column in report which has a dimensional drill(It will navigate to Supervisor Level 2 Name).It will show
    1.Ram
    2.Higher
    3.Sam
    I should not drill on Higher value but the rest of the values(Sam and Ram will drill to Supervisor Level 2 Name) should be drillable.The same should happen for Supervisor Level 2 Name.
    Please Suggest.
    Thanks,
    Azim

    Azim,
    Don't think you can actually get this working

  • How do i search a textfile for a particular value?

    How do i search a textfile for a particular value?
    I have made the records etc, six fields per record, i would like to find a value which is typed into the search textbox, find the record in the textfile and display the record in the boxes used to enter the data.
    SO HOW WOULD I SEARCH A TEXTFILE?
    Thanks very much for your help, Antony (UK)...

    If it were me, I'd use Lucene. Each line could be a separate document, and each field would be a field in Lucene. That would provide you one of the fastest and most flexible ways to do what you want.
    Or did you mean you want someone to complete your homework assignment? :-)

  • Hashtable- how to retrieve key for a particular value?

    I fetched few values from the database and stored all them using hashtable. Then i check for the value entered by the user in a textbox using contains() method of hashtable. Now i want to fetch the key associated to this particular value so that i can pass it to my rest of the program?
    Pls help me....

    The obvious question is what are you using as your key when you store the value into your hashtable?? The idea behind the key/value system is that you use the key to get the value you want, not the other way around. In your current situation, the contains() method might return true, but that could you mean you have 1, or 1000 instances of that value in your hashtable. Which key do you want? You could, I suppose, parse through the output of Hashtable.toString()... but that still wouldn't resolve the possibility of duplicate values in the hash.
    Another possible solution to your problem, depending on how your application works, is to wait until you get that user input before running your database query. Simply append the added info onto your SQL SELECT statement to accurate retrieve only those entries from the database that you will need.

  • Entrysheet quantity ,entry sheet price for a given outline agreement number

    Hello all,
    in which table entry sheet quantity and entry sheet price are stored, how do i use them in my report for a given outline agreement number...
    thanq...

    Hi,
    Pass EBELN to table ESSR and get the PACKNO.
    Pass PACKNO to table ESLL and get the quantity and price.
    Arivazhagan S

  • Search help for a particular value

    Hi ABAP gurus,
    Suppose i have 2 fields in Selection-screen i.e Plant and Material, Plant have 3 values say 1000,2000,3000.Whenever user enter 1000 and Press f4 in Material field then all the material values related to plant 1000 should be displayed,Similarly with value 2000 & 3000.
    Thanks in advance
    Sumit Kumar Sharma

    hi sumit.
    in report if you want search help based on another selection screen field value then you need to one function module to capture selection screen field value. i.e DYNP_VALUES_READ.
    the following is the example program please go though for this no need of enter.
    *Structure declaration
    TYPES: BEGIN OF ty_posnr,
           vbeln TYPE vbeln,
           posnr TYPE vbap-posnr,
           END OF ty_posnr.
    *internal table creatioin
    DATA:t_posnr TYPE STANDARD TABLE OF ty_posnr INITIAL SIZE 0.
    DATA: t_dyn TYPE TABLE OF dynpread,
          w_dyn TYPE dynpread.
    DATA: g_vbeln TYPE likp-vbeln,
          g_posnr LIKE vbap-posnr.
    *Selection screen
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECT-OPTIONS: s_vbeln FOR g_vbeln NO INTERVALS NO-EXTENSION ,
    s_posnr FOR g_posnr NO INTERVALS NO-EXTENSION .
    SELECTION-SCREEN END OF BLOCK b1.
    *At selection screen on event
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_posnr-low.
      PERFORM f4_help.
    *&      Form  f4_help
    *       text
    FORM f4_help .
      w_dyn-fieldname = 'S_VBELN-LOW'.
      APPEND w_dyn TO t_dyn.
      CALL FUNCTION 'DYNP_VALUES_READ'
         EXPORTING
           dyname                               = sy-repid
           dynumb                               = '1000'
    *   translate_to_upper                   = 'X'
    *   REQUEST                              = ' '
    *   PERFORM_CONVERSION_EXITS             = 'X'
    *   PERFORM_INPUT_CONVERSION             = 'X'
    *   DETERMINE_LOOP_INDEX                 = ' '
    *   START_SEARCH_IN_CURRENT_SCREEN       = ' '
    *   START_SEARCH_IN_MAIN_SCREEN          = ' '
    *   START_SEARCH_IN_STACKED_SCREEN       = ' '
    *   START_SEARCH_ON_SCR_STACKPOS         = ' '
    *   SEARCH_OWN_SUBSCREENS_FIRST          = ' '
    *   SEARCHPATH_OF_SUBSCREEN_AREAS        = ' '
         TABLES
           dynpfields                           = t_dyn
    EXCEPTIONS
       invalid_abapworkarea                 = 1
       invalid_dynprofield                  = 2
       invalid_dynproname                   = 3
       invalid_dynpronummer                 = 4
       invalid_request                      = 5
       no_fielddescription                  = 6
       invalid_parameter                    = 7
       undefind_error                       = 8
       double_conversion                    = 9
       stepl_not_found                      = 10
       OTHERS                               = 11
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CLEAR w_dyn.
      READ TABLE t_dyn INTO w_dyn WITH KEY fieldname = 'S_VBELN-LOW' .
      IF sy-subrc = 0.
        SELECT vbeln
               posnr
               FROM vbap
               INTO TABLE t_posnr
               WHERE vbeln = w_dyn-fieldvalue.
      ENDIF.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
    *            DDIC_STRUCTURE         = ' '
                retfield               = 'POSNR'
    *            pvalkey                = ''
                dynpprog               = sy-repid
                dynpnr                 = '1000'
                dynprofield            = 'S_POSNR-LOW'
    *            STEPL                  = 0
    *            WINDOW_TITLE           =
    *            VALUE                  = ' '
                value_org              = 'S'
    *            MULTIPLE_CHOICE        = ' '
    *            DISPLAY                = ' '
    *            CALLBACK_PROGRAM       = ' '
    *            CALLBACK_FORM          = ' '
    *            MARK_TAB               =
    *          IMPORTING
    *            USER_RESET             =
        TABLES
          value_tab              = t_posnr
    *            FIELD_TAB              =
    *            RETURN_TAB             =
    *            DYNPFLD_MAPPING        =
    *          EXCEPTIONS
    *            PARAMETER_ERROR        = 1
    *            NO_VALUES_FOUND        = 2
    *            OTHERS                 = 3
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                                                    " f4_help
    It will work fine. If you satisfied give points.
    regards.
    laxman

  • How to keep track of changes made for a particular Inq Doc number.

    hi all,
    my senario is as follows :
    the requirement is to send mail every time we take print for a sapscript for inquiry ..however the header and the body of the mail will change depending whether the user created a new inquiry doc or changes an existing doc. how to keep track of the changes.
    please give me some suggestion.
    thanks in advance
    Srinivas

    its time cosuming process :
    check table CDHRD/CDPOS tables to keep track of changes.
    Regards
    Prabhu

  • Graphs in WAD for a particular value of infoobject which is the dataprovide

    Hi,
    I am using a query as the dataprovider, in that i have one characteristic infoobject reigon. This region has different values like central, emea, america, northeast etc.
    I want three charts to be displayed without any user intervention (drop down, filter, check box).
    The charts would display:
    1. Chart for Region = emea and america
    2. Chart for Region = Northeast and central
    3. Chart for Region = All region values
    Chart 3 can be easily acheived by assigning dataprovider to the chart, but without using filter, dopdown and anyother user intervention how can i restrict the chart which is using the same dataprovider to different region values.
    Thanks
    Rani

    hi rani
    create different views based upon ur query
    and attach each view to ur chart and u can assign drop down box or filters web items to any of the chart..make it sure that data provider assigned differently otherwise it will reflect other graph
    hope this helps
    shalini

  • "Missing signed entry in resource" for only some users

    Hi,
    I have recently updated my .jnlp file and .jar file and added some extra jar resources in the new jnlp.
    Since this new version, some users receive an error saying
    "Missing signed entry in resource:" for one particular resource.
    While for other users it works fine.
    I have signed the jar with jarsigner.
    Does anyone have an idea what could be the problem here?
    Thanks very much in advance,
    Best regards,
    Stein Aerts,
    University of Leuven, Belgium

    I remember hearing something like this, and had to do with :
    1.) what version of jarsigner was used to sign the jar, and
    2.) what version of JRE was used to validate the signed jar file on the client.
    (including US only vs. International version of JRE)
    For the jar that gets this error:
    Does it have any empty directories in it., or does it have entries with non-english characters in the resource names ?
    What version of the JDK was used to run jarsigner to sign this jar, and what jre is the application running on ?

  • Looking for a particular set of features

    Does anyone know what Abode product will allow me to write with a stylus (on a Sony tablet) on a PDF and at the same time redord audio.  And then allow it to be played back.  I am math a teacher and I would like to upload an example question (PDF) for my students into a program.  then i would like to be able to complete the example by writing with my touch screen and i would like some audio to acompany it.  Then i want to save this and post on my class web page.   
    Are there and porduct out there that do that?

    Hi,
    Check for the fiscal year variant value for that  fisal period 003/2007in the cube is it same as that of othertwo values of the fiscal period.
    May be at the report level or at the cube level you have restricted the values of the fisacl variant for a particular value and for that variant value there is no fiscal period of 003/2007.
    Also it may be possible that your report key figures are restrcited year to date... that is till current fiscal period only through some other way.. and thats why you can only see data till current fiscal.
    Hope it helps
    Thanks

  • Bex Error for a particular set of data

    Hi Gurus,
        I have strange problem going on with my report, i have report which has variable
        for fiscal period (we can enter like 001/2007), the reports runs fine for 001/2207
        and 002/2007 but fails to run for 003/2007. i have data in the cube for that
        fiscal period.
        Please suggest a solution for this.
    Thanks a ton..

    Hi,
    Check for the fiscal year variant value for that  fisal period 003/2007in the cube is it same as that of othertwo values of the fiscal period.
    May be at the report level or at the cube level you have restricted the values of the fisacl variant for a particular value and for that variant value there is no fiscal period of 003/2007.
    Also it may be possible that your report key figures are restrcited year to date... that is till current fiscal period only through some other way.. and thats why you can only see data till current fiscal.
    Hope it helps
    Thanks

  • How to avoid report running for all the values in roll up of guided naviga

    Hi
    Thanks in Advance
    I have 3 reports on three different pages of a dashboard. (Implemented guided navigation on one column of each report).When I click on value of guided navigation column it guides me to report 2 for that particular value (is prompted), same way for 3 report also till here it works fine.
    However when I return from report 3 to report 2 and 2 to 1, the reports are running for all the values instead for the value which was passed by guided navigation of previous report earlier (Value on which I clicked to pass to the next report).
    Edited by: 808623 on Nov 9, 2010 2:10 AM

    Yes
    Example : If i click on values 'X' in report 1
    Report 2 shows results for 'X' only. And if i click on Value say 'Y' in 2 then report 3 shows for only 'Y'. But when i rollup from 3 to 2, Report 2 is showing for all values rather than showing 'x'.
    I'm using Link or Image Dashboard Object > Destination>Request or Dashboard (path of previous report)
    Edited by: 808623 on Nov 9, 2010 2:37 AM

  • Display Non-zero values of keyfigures based on a particular value of a cha

    Hi Gurus,
    I would like to display only Non-zero values for keyfigures but only for a particular value of a characteristic. For Ex: We have material Group. For a particular value of material group, i do not want to display the zero stock. But for other material groups it should display zero stock.
    I tried to use conditions, but the problem is it suppresses all the zero values for the keyfigure for material group in general and not for a particular value of the material group.
    Is there is any way that i can go about for this scenario. Pls help.
    thanks & regards,
    PS

    Hi,
    You can very much restrict your KF on particular values of said material group. For example you material group contains the values like "Blades", "Personal Cares", "Disposables" etc... and you want to restrict your KF on "Blades" only, you can do that.
    Just restrict your KF on Material Group and include the values which you want for restrictions. You can also exclude values from restrictions.
    Hope it help you.
    Yogesh.

  • Display Non-zero values of keyfigures based on a particular value of a char

    Hi Gurus,
    I would like to display only Non-zero values for keyfigures but only for a particular value of a characteristic. For Ex: We have material Group. For a particular value of material group, i do not want to display the zero stock. But for other material groups it should display zero stock.
    I tried to use conditions, but the problem is it suppresses all the zero values for the keyfigure for material group in general and not for a particular value of the material group.
    Is there is any way that i can go about for this scenario. Pls help.
    thanks & regards,
    PS

    Hi
    Create a structure in the rows based on selections on material group. Eg.
    Structure
       Mat grp 1 (restricted to material during selection)
       Mat grp 2
    then add a formula in columns using boolean argument
    e.g (exisisting KF >= 1)*1+0
    Then you can use conditions to elimanate zeros on the new KF.
    Hope it helps
    Edited by: Karin van der Merwe on Feb 29, 2008 8:52 AM

Maybe you are looking for

  • Bat File execution Problem in Win Server 2k3

    I have a jar that is calling a .bat file. It executes the bat file in Windows XP, and Windows 2000 But when I run it in Win Server 2k3 it can't execute. I get Exit Value 1 Does anyone know any differences between the Operating Systems that could caus

  • Photoshop Elements 12 crashes almost every time while I am using it. I have already uninstalled and reinstalled it and it has not helped. I have a Mac.

    How can I correct the problem of my Photoshop Elements 12 program crashing every time while I am using it? I have already uninstalled and reinstalled the program once and it keeps on doing this. I have a Mac computer.

  • Questionable Legality: HyperlinkListener without URLs

    Hey guys, My goal is to have website-style links in a JEditorPane that cause certain behaviors in my GUI when the user clicks them. The SSCCE below works exactly how I'd want it to. The only problem is, I feel a bit dirty using a HyperlinkListener in

  • Since the last update...

    Since iOS 7.1.1. update, sound effects don't play on apps, within apps (like videos on Facebook), nor just notification sounds on the actual device. Anyone else experiencing this problem and has anyone found a solution? I know this can't be alright.

  • Play Animation

    I want to play the animation from the stage. I used this -> sym.play("complete"); to call the animation. "complete" refers to the label which I put in the timeline. I do not know why this does not work. The animation will not play. Usually the animat