CODE CHANGE and DATA CHANGE while monitoring

Hi,
I have a scenario where I got one system error with restart possible.
The failure happened because of wrong data or code.
I want to know, whether we can change the data/code while monitoring and get it reflect while the next re-start of the same message. 
Thanks & Regards
Katta Mohan Reddy
Message was edited by: Katta Mohan Reddy

Hi Katta,
the only way (within the standard)
is I believe using the test tool (component monitoring) to send the message directly to Integration Engine
but... this does not always work (at least in my case)
you should try to validate the message before sending it or develop a way to resend it from the <b>sender system</b> with changed data - this is the best practice but I agree that tool for changing the data in XI would be very helpful
Regards,
Michal

Similar Messages

  • I turned off cellular data, and data roaming while traveling abroad.  I turned them back on upon arriving back home, but now only the wi-fi features works when trying to connect to the internet.   Texting works, no internet function works unless wi-fi???

    I turned off my cellula data and data roaming while abroad.  I turned them back on when returning home.  But now I can only access internet and mail functions when on wi-fi.  texting works.  The 3G access to the internet isn't working now.  3g is on.  What do I need to do to restore non-wi-fi internet function.  Roaming is on s well.  ?????

    Try to reset your iPhone:
    Settings>>General>>Reset>>Reset All Settings
    You will need to rejoin all wi-fi and/or bluetooth connections
    You will need to set up your settings of your choice.
    Information (such as contacts and Calendars) and meida (such as music, videos, apps) are NOT affected.

  • Missing Server and Datas in Workload Monitoring - ST03

    Hi,
    I tried to monitor workload using tcode ST03. But I am unable to see the server and datas for the same.
    Can anyone help me how to configure or assign server in ST03.
    thanks and regards
    Jaya Ganesh

    Hi Mike,
    Thanks for the reply.
    I have checked the BG job SAP_COLLECTOR_FOR_PERFMONITOR. its working fine in a hourly basis. and checked the reports concerned to the job. everything is fine.
    The problem is I am not able to see the server or instances in workload list. How do I assign it or add it.
    Help needed in this regard
    thanks and regard
    Jaya Ganesh

  • How to see a stream of a signal in the Data View while monitoring a signal.

    Hi!
    I'm migrating from an older data acquisition software for SignalExpress. With the DAQ old had a way to monitor the signal so that the software screen I saw on the timeline and as I increased or diminished the scale of the X axis (time), I saw more or less signal transitions in screen, respectively. For example, if the time scale (x axis) was set to 5 seconds and the signal that I was monitoring commute every 1 second, I would see on the screen of the software 5 sequential pulses.
    I am not able to configure my data acquisition that way. What I have noticed is that the scale of the X axis is limited to the value of the "Samples to read." With that, I see the sign on the software screen is instantaneous and not a sequence of pulses.
    I intend to monitor the signals are random signals originating from idependentes and switching relays.
    In summary, I believe that the solution to what I want to do is increase the scale of the axis X. How to do this?
    I use SignalExpress 2011, USB-6363 DAQ step and Digital Line Input.
    Thank you.

    OKors,
    First, sorry for the delay in responding to you. And second, thanks for your reply.
    I will try your suggestion: continuously scrolling "strip chart".
    To try to clarify, what I want is to merge than I can with Digital Graph - signs lined up vertically with the display type Chart, where it can act on the parameters of History Lengh, as you suggested, to achieve "curb" the transition graph .
    If using the first solution, Digital Graph, the screen transitions are very fast. On the other hand, if using the graph chart type for digital signals, they overlaps, since all have the same value - 0 or 1.
    The idea is that these two characteristics in a single graph (Data View). I believe something to be simple, but I'm having trouble mounting this setting.
    That's it. Any news ... I'll post here.

  • Releation between fields and data element

    Dear Abapers,
    What is the relation between the fields and data element,  while cretion of fields system will ask the data element, can we have one data element to more than one fields.  Can you plese explain me.
    Regards

    Hi,
    data elements are structures defined in SAP Dictionary. 
    Fields you meen in a table? or in programs? in both places you create in reference to SAP Dictionary. 
    data element char20.  TEXT20
    Programs  data:  l_text type char20.
    Tables  ... field   ZTEXT  type CHAR20...TEXT20

  • Number group not maintained for CO code section  and business place

    Hi Experts,
    I am Facing this error 'Number group not maintained for CO code section  and business place' while posting TDS entry ,
    I have maintained the number groups for internal challan numbers and i have also checked the table 'J_1IEWTNUMGR_1' , the entry exists, I am not able to track the problem.?
    the below mentioned are the example of the entry which is maintained inspite of which am facing the error.
    company code - 4001
    Business Place 4384
    Section  194I
    Thanks in Advance,

    Dear,
    Please check whether you have maintained entry in SPRO>IMG>Financial Accounting>****>Withholding Tax>Extended Withholding Tax>Posting>Certificate Numbering for Withholding Tax>Numbering Concenpt4 :Assign Numbering Group
    If not then please maintain the same.
    Regards.
    Vivek

  • Can the case be changed while uploading the data or after uploading ????

    hi all ,
    can u pls help me ???  can the case of the data in a itab be changed while running the program? the data is uploaded to an internal table and then based on loop at that itab the conditions will evaluate to give the result.... but the problem is like wen the data is given in small letters the worste(last)  condition is executing even the data satisfies the condtion which is not supposed to happen. this is due to case sensitive problem ...can u pls help me ....can the case be changed while uploading the data r after uploading ????

    this is the itab declaration ..
    data: begin of it_input occurs 0 ,
           tra          like tstc-tcode,
         end of it_input.
    and then from the uploaded data the prog should check wheather it is having any userexits or not ...
    here comes the code...
    sort it_input by tra.
    delete adjacent duplicates from it_input  .
    loop at it_input.
               it_itab-sno = sy-tabix.
      select single * from tstc where tcode eq it_input-tra.
    if sy-subrc eq 0.
        select single devclass from tadir into v_devclass
                 where pgmid = 'R3TR'
                        and object = 'PROG'
                        and obj_name = tstc-pgmna.
             if sy-subrc ne 0.
             select single * from trdir where name = tstc-pgmna.
             if trdir-subc eq 'F'.
                select single * from tfdir where pname = tstc-pgmna.
                select single * from enlfdir where funcname =
                tfdir-funcname.
                select single * from tadir where pgmid = 'R3TR'
                                   and object = 'FUGR'
                                   and obj_name eq enlfdir-area.
             move : tadir-devclass to v_devclass.
              endif.
           endif.
           select * from tadir into table jtab
                         where pgmid = 'R3TR'
                           and object = 'SMOD'
                           and devclass = v_devclass.
           if sy-subrc = 0.
            select single * from tstct where sprsl eq sy-langu and
                                            tcode eq it_input-tra.
                      if not jtab[] is initial.
               loop at jtab.
                    select single modtext from modsapt  into str
                         where sprsl = sy-langu and
                                name = jtab-obj_name.
                    it_itab-tra        = it_input-tra.
                    it_itab-i_obj_name = jtab-obj_name.
                    it_itab-i_modtext = str.
                    append it_itab.
                    str = ''.
               endloop.
              endif.
            else.
                    it_itab-tra        = it_input-tra .
                    it_itab-i_obj_name = ' '.
                    it_itab-i_modtext = 'No user Exit exists'.
                     append it_itab.
            endif.
          else.
                    it_itab-tra        = it_input-tra .
                    it_itab-i_obj_name = ' '.
                    it_itab-i_modtext = 'Transaction Code Does Not Exist'.
                     append it_itab.
          endif.
    endloop.

  • Changing master data record while loading Transaction data

    Hello All,
    We have a requirementt to change one of the master data field(FLAG) while loading on the transaction data.
    we get the material info in the Master data. and in the sales order item data also we get the material.
    While loading the Transaction data, I have to set a FLAG field has "s" in the Master data material based on the Key selection:
    Master data -  MAterial = Tramsaction - Data Material.
    I have written the code.. and implemented.. i get the correct records but i face huge performance issue. can any one guide me please
        DATA: itab1 TYPE STANDARD TABLE OF /bi0/pmaterial,
               wa_itab1 TYPE /bi0/pmaterial,
               w_tabix TYPE sy-tabix.
         IF itab1 IS INITIAL.
           SELECT * FROM /bi0/pmaterialINTO TABLE itab1.
         ENDIF.
         LOOP AT result_package ASSIGNING <result_fields>.
           READ TABLE itab1 INTO wa_itab1 WITH KEY
                              material =  <result_fields>-material.
           IF sy-subrc = 0.
             w_tabix = sy-tabix.
             IF <result_fields>-/bic/paa1c2033 IS NOT INITIAL.
               wa_itab1-FLAG = 'S'.
               MODIFY itab1 FROM wa_itab1 INDEX w_tabix TRANSPORTING FLAG .
             ENDIF.
           ENDIF.
         ENDLOOP.
         IF itab1 IS NOT INITIAL.
           MODIFY /bi0/pmaterial FROM TABLE itab1.
         ENDIF.

    Here are some performance tips:
    Add FOR ALL ENTRIES IN result_package WHERE material = result_package-material to your select statement
    After your select statement, add IF SY-SUBRC = 0.  SORT itab1 BY material. ENDIF.
    In your read statement, add BINARY SEARCH to the end of it
    At the end of your end routine, make sure to CLEAR itab1.
    You can also increase the number of parallel processes for your DTP, and DSO activation (assuming your target is DSO).

  • I have an IPad mini and I changed the Apple ID and the password almost one year ago and, for a while, a message asking me to sign in to iCloud pops- up constantly. My iCloud account is registered with an old email and password. I do not remember the

    I have an IPad mini and I changed the Apple ID and the password almost one year ago and, for a while, a message asking me to sign in to ICloud pops- up constantly. My ICloud account is registered with an old email address and password. I do not remember the password to my ICloud account, and ID address that my ICloud account is registered under is an old email adress which is deleted right now (the old mail account is deleted). I don’t have a rescue email adress and I don’t know the answers to the security questions, so I have no way of changing the ICloud password. A message asking me to sign in to ICloud pops up constantly, but I always just hit cancel. However, now I am unable to access Find My IPad. How do I get my ICloud account changed and registered to be under my current Apple ID (email) and password? It is possible to set the device as New Ipad?

    Welcome to the Apple community.
    If you are unable to remember your password, security questions, don’t have access to your rescue address or are unable to reset your password for whatever reason, your only option is to contact Apple ID Support, upon speaking to an operator you should explain that your problem is related to your Apple ID, this way you will not be charged for assistance, even if you don’t have an AppleCare plan.
    The operator will take you through some steps you may have already tried, however they need to be sure they have exhausted all usual approaches before trying to reset your account, so you should try to be helpful and show patience with the procedure.
    The operator will need to verify they are speaking to the account holder and may ask you some questions that only the account holder could know, and you will need to answer them if the process is to proceed.
    Once the operator has verified your identity they will send a message through to your device which contains an alpha numeric code, which you will need to read back to them.
    Once this has been completed they will send an email to your iCloud email address after a period of 24 hours, so you should check that mail is enabled in your devices iCloud settings.
    Upon receipt of the email, use the reset link provided to reset your password, after which you should be able to make the adjustments to iCloud that you wish to do.

  • Has anyone else had issues with changing how the time and date look on the status menu in Mavericks?

    I'm trying to make it so the year displays, but haven't been able to figure out how to change that. I have the Day of the Week, Month, Day and Time only and I haven't been able to figure out how to do that in the Date & Time or the Language & Region Settings.

    There is no option in System Preferences. However, it may be possible to set it with a "defaults write" command.
    This page shows how to set the time and date format in the Terminal, but doesn't show whether you can add the year.
    http://apple.stackexchange.com/questions/75116/i-want-to-change-clock-from-12h-t o-24h-mode-via-terminal
    If you can find a description of Apple's date format code that includes the year, then it may be possible. Or not.
    I'm guessing Apple thinks only Time Travellers need to ask what year it is...

  • [svn:osmf:] 17759: Code changes based on PARB review feedbacks and suggestions from the FMS team .

    Revision: 17759
    Revision: 17759
    Author:   [email protected]
    Date:     2010-09-17 16:26:32 -0700 (Fri, 17 Sep 2010)
    Log Message:
    Code changes based on PARB review feedbacks and suggestions from the FMS team.
    Modified Paths:
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/elements/f4mClasses/ManifestParser.as
        osmf/trunk/framework/OSMF/org/osmf/elements/f4mClasses/Media.as
        osmf/trunk/framework/OSMF/org/osmf/media/DefaultMediaFactory.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetNegotiator.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetStreamPlayTrait.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetStreamTimeTrait.as
        osmf/trunk/framework/OSMF/org/osmf/net/StreamingURLResource.as
        osmf/trunk/framework/OSMFTest/org/osmf/OSMFTests.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/f4mClasses/TestManifestParser.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestDefaultMediaFactory.as
    Added Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/MulticastNetLoader.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/TestMulticastNetLoader.as
    Removed Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/RTMFPNetLoader.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/TestRTMFPNetLoader.as

    A good solution. Liked it very much. Can you please make it a technet blog for others.
    [email protected]

  • Looking at FOCUS POINTS changes Time and Date

    When I select VIEW FOCUS POINTS it changes the Time and Date information in the Metadata. I have seen it happen twice now. The images were taken with a Nikon D90 while in Australia. The first time that I noticed this I was in Hawaii and just looking at the FOCUS POINTS changed the Date and Time to Hawaii time. It happened again in Maryland and the time zone was changed to Eastern Daylight Time. To put the images back in the proper place I have had to change the DATE and TIME.
    Has anyone seen this?
    Roger

    Thanks Tony,
    Did you try this:
    Shoot a photo with your camera set to your local time.
    Import into your Mac set to the same local time.
    Quit Aperture
    Restart
    Set the time on your Mac to another time zone.
    Open Aperture.
    Open the photo.
    View the Focus Points
    Then see if the time metadata is changed.
    Mine changes and the place of the photo in the line-up of my folder changes.
    It still does it after I updated to Aperture 3.0.3 from the 3.0
    I know this is a lot of steps in the test process, but this is how it happens for me.
    If this doesn't work I'll have to look into a new Nikon for you and a flight to Hawaii.
    Cheers,
    Roger

  • [svn:osmf:] 13966: 1. Integrate code changes from Matthew to remove timeBias and add support for subclip

    Revision: 13966
    Revision: 13966
    Author:   [email protected]
    Date:     2010-02-03 15:04:44 -0800 (Wed, 03 Feb 2010)
    Log Message:
    1. Integrate code changes from Matthew to remove timeBias and add support for subclip
    2. A minor bug fix with the index handler
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPNetStream.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPStreamingState.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/HTTPStreamingF4FIndexHandler.as

    Maybe you try posting in one of the Enterprise & Remote Computing forums:
    http://forum.java.sun.com/category.jspa?categoryID=14
    And please use the forum CODE tags for formatted readable display of your code on the board.
    http://forum.java.sun.com/post!reply.jspa?messageID=9989322#

  • [svn:fx-trunk] 5464: ASDoc updates for FxApplication and Application ( no code changes)

    Revision: 5464
    Author: [email protected]
    Date: 2009-03-20 11:52:50 -0700 (Fri, 20 Mar 2009)
    Log Message:
    ASDoc updates for FxApplication and Application (no code changes)
    * notes the pageTitle property is for use with the SDK HTML templates
    * update the default values for backgroundGradientColors
    QE Notes: None
    Doc Notes: Please review
    Bugs: SDK-16535, SDK-16693
    Reviewer:
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16535
    http://bugs.adobe.com/jira/browse/SDK-16693
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxApplication.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Application.as

  • [svn:osmf:] 12677: Code cleanup and changes after code review.

    Revision: 12677
    Revision: 12677
    Author:   [email protected]
    Date:     2009-12-08 16:11:31 -0800 (Tue, 08 Dec 2009)
    Log Message:
    Code cleanup and changes after code review.
    Modified Paths:
        osmf/trunk/plugins/CaptioningPlugin/org/osmf/captioning/CaptioningPluginInfo.as
        osmf/trunk/plugins/CaptioningPlugin/org/osmf/captioning/loader/CaptioningLoader.as
        osmf/trunk/plugins/CaptioningPlugin/org/osmf/captioning/media/CaptioningProxyElement.as
        osmf/trunk/plugins/CaptioningPlugin/org/osmf/captioning/model/Caption.as
        osmf/trunk/plugins/CaptioningPlugin/org/osmf/captioning/model/CaptionFormat.as
        osmf/trunk/plugins/CaptioningPlugin/org/osmf/captioning/model/CaptioningDocument.as
        osmf/trunk/plugins/CaptioningPlugin/org/osmf/captioning/parsers/DFXPParser.as

    Hi Zpittman,
    What is you said ‘Code Review Tool’?
    I assume that you meant the Code Review feature in TFS. I tried it in Visual Studio 2013 with update 4 and TFS 2013 with Update 4, the whitespace was detected and the code review see it as a difference.
    If you don’t get the same result with me using VS and TFS, please upgrade your VS and TFS to the latest update.
    If the issue still exists, please
    reset your VS settings through Tools->Import and Export settings->Reset all
    settings->…. and repair your VS.
    If code review tool is a third-party tool or a third-party VS/TFS add-in, the official support of this tool can be a better place to resolve your issue.
    If I misunderstood anything, please feel free to come back.
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • "missing return statement" error code

    well... i feel like such a n00b... I can't seem to figure out what the problem is with my code, if someone could help me, that would be great. I get an error saying 'missing return statement'. I know that I have some things in here that I don't need

  • Burning vhs straight to dvd

    I have some old family movies that I want to burn straight to dvd. I have a sony hc96 camcorder and am able to import through the camera into imovie but not straight to idvd. Any ideas

  • HT5682 JAVA for OS X 2013-003 1.0

    Will this update affect my SAP Java GUI? A previous update of Java cause my SAP Java GUI to stop working

  • Connecting airport extreme to macbook and windows 7 desktop

    Hello, I currently connect my macbook to the internet via airport extreme wifi.  I tried to also connect my windows 7 desktop to the airport via ethernet, but the PC is saying I have no internet connection.  Are there any configuration / settings  I

  • OracleAS 10.1.2 Patchset List

    Dear all, Is there any way I can find a list of all patchsets of Oracle Application Server 10.1.2? I know the newest is 10.1.2.3 but not sure if a newer one has been released. In addition, must I apply all the patchsets no matter I use the features o