How to Update ECC when there is error in Receiver channel

Hello Experts,
I have a query like how to inform ECC when there is a error in Receiver channe.My interface is ABAP PROXY to JDBC in ECC moni message is through in PI moni also message is through but in Receiver JDBC Channel is in error saying for a particular column the data is not valid.
In this case directly PI should send the error in channel to ECC that payload has invalid data for this field will it be possible?
Please give your valuable suggestions.
Regards
Praveen Reddy

Hi,
implement logic in ABAP proxy to push data when validation check is correct, this is right approach to perform validation.
Even we can achieve this in PI Mapping.
Create ALERT rule for this interface and forward CC errors to ECC Team.
Regards,
Raj

Similar Messages

  • My iOS 6 AppStore app doesn't shown update badges when there are updates

    Hi guys~
    I am using iPhone5 with iOS 6.1.2 without jailbroken.
    My AppStore app doesn't show any badges when there are updates available.
    Anybody have the same problem?
    Thank you so much!

    Hi, i'm having the same problem, will shut down my iphone to see if this works and check it tomorrow. However my Bluetooth was still working but I couldnt skip tracks via the buttons on my dash or steering wheel, only on my iphone.
    Is there a option that allows you to skip tracks while the screen is locked, as I can't do this anymore??
    Cheers
    Keith

  • How to replace sky when there are trees in the photo

    I have several photos taken outdoors with a dull sky. I also have several sky shots to supply the blue sky; with or without clouds. I know a couple of ways to do  that --as long as the horizon line is clear, such as roofs, etc.  My preferred method is to use a tool; e.g., Magic Wand, to select the sky area and then copy/paste a blue sky image using Ctrl+Shift+V command. This makes the copied sky inserted into the original image and I'm happy with the results.
    But when there are trees or other bushes between the camera and the sky, problems begin.  No matter how carefully I try to include all the "holes" in those trees, the end result contains white spots where the selected section failed to follow the tree "holes".  Anybody know how to fix these types of problems?  I am somewhat familiar with layers-- which I have tried to use to solve this problem.
    Using PSE-12 on Windows 8.1
    TIA,
    Pete Grant

    Pete,
    There are several ways to do this. In my experience the Alibony technique works well. You will be able to use your "good" sky pictures:
    Watch Lesson 12: Quick Colorless Sky Replacement | Alibony Lessons for Photoshop Elements Episodes | How To Videos | Bli…
    As I pointed out to you on June 5, 2014, this is how I do it after watching the Alibony video.
    Open your picture (A) (File>open), and open the replacement sky picture (B)
    On the sky picture (B), go to Select>all from the menu, then Edit>copy to place it on the clipboard
    Go back to your picture (A), then Edit>paste. The new sky (B) should come in on a new layer
    With the move tool, use the corner handles to reduce the size of the sky (B) to cover the old sky on (A)
    In the layers palette, set the blending mode of (B) to darken
    Set the foreground color chip to white
    Get the Gradient tool out of the toolbox, and drag a foreground to transparent, linear gradient from below up to the top of the tree line, while holding down the shift key.
    With a soft white brush, at reduced opacity, gently paint the horizon a bit, as we want the horizon to be a tad lighter than the rest of the sky.
    If necessary, add a few clouds with the Return to Eden set.

  • How to improve performance when there are many TextBlocks in ItemsControl items?

       Hi,
       I'm trying to find a way to improve performance for a situation when there is an ItemsControl using UI and Data virtualization and each item on that control has 36 TextBlocks. Basically the item is a single string. There are so many TextBlocks
    to allow assigning different brushes to different parts of the string. Performance of this construction is terrible. I have 37 items visible on the screen and if I try to scroll up or down it scrolls into the black space and then it takes a second or two to
    show the items.
       I tried different things. For example, the most successful performance-wise was to replace TextBlocks with Borders and then draw bitmaps. In other words, I prepared 127 bitmaps for each character (I need ASCII only) and then I used those bitmaps
    to set Border.Backgrounds. It improved performance about 1.5 - 2 times but it consumed much more memory (which is not surprising, of course). Required amount of memory is so big that it throws OutOfMemoryException on 512MB emulator but works on 1GB. As a result
    I don't thing it is a good solution.
       Another thing that worked perfect is to replace 36 TextBlocks with only 6 TextBlocks. In this case the performance improvement is about 5 - 10 times but I lose the ability to set different colors to different parts of the string. It seems that
    the performance degrades dramatically with the increase of number of TextBlocks. Is there another technique to draw strings where literally each character can be of different color with decent performance?
    Thank you
    Alex

       Using Runs inside TextBlocks gives approximately the same improvement as using bitmaps 1.5 - 2 times faster but it is not even close to the case with just a couple of TextBlocks in the ItemsControl item. Any other ideas?
    Alex

  • How to update report when i update the table.......

    Hi, iam very new to this group, presently iam using XML Publisher, in that i have some doubts, that is, i created one report, immediatly i update the oracle table then how to update the report in XML Publisher,how to do that one pls tell me its use full for me please,
    another one how do we publish this Reports.
    please tell me any body,
    Thank you.
    Ramana.

    XML-Publisher can be called using an URL. This is described in the userguide.
    What you could to is to create a db trigger on your table which will make a url call like you would do calling the Oracle reports server from the database using the event driven API.
    Note that in order to have this work you will need to place the report you want to run in the guests folder of XML-Publisher

  • How to update DatraBase when Session Time out?

    I am trying to write a record into Databases when there is Session Time out and also notify the user of Session time out.. Please help?Thanks in advance.
              

    This requires using the session binding interfaces. See
              HttpSessionBindingListener.
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              http://www.tangosol.com
              +1.617.623.5782
              WebLogic Consulting Available
              "Shobhan" <[email protected]> wrote in message
              news:3a38ef31$[email protected]..
              > I am trying to write a record into Databases when there is Session Time
              out and also notify the user of Session time out.. Please help?Thanks in
              advance.
              

  • Howe can I tell when there are no references to an object?

    Hi all,
    Is there any way for me to know when there are no references to an object without using finalize()?
    I want to pool created objects when it is safe to do so.
    finalize() won't work since it is called only once for every object instance.
    Regards,
    Marcus

    If you are trying to establish an object pool by placing the objects back in the pool when there are no references to the object, then I am afraid you are out of luck.
    If there were no references, then you would not have a "handle" on the object to be able to manipulate it in any way (like putting it back in the pool).
    If you are talking about something else, then the classes in java.lang.ref.*, might be of use.
    If you are really trying to pool objects, then you should have some sort of "close" method in the objects that is called when they are no longer needed and can be returned to the pool.

  • 3D Axis System (bar type) doesn't work when there is only one z-channel

    Hello,
    I have a problem with a 3D Axis System, bar type.
    Everything works fine as long as the y-channel contains more than one value (meaning there is more than one z-channel too).
    But when my y-channel has only one value, and there is only one z-channel, the axis system goes blank (there is just an empty white field with a thin outline).
    I don't understand why it doesn't work that way. The length of my one z-channel is the same length as my x-channel, as it should be.

    HI, 
    could you describe your hardware and software setup?
    If this is possible please attache your project.
    Roman Rolnik
    Application Engineer
    NI Germany

  • How can I tell when a text message is  received and opened

    how can I tell when a txt message has been received and opened ?

    Correction: How will I know when a SMS or MMS text message has been received and opened when the person I'm texting has an Android phone ? My last phone was Android and had a setting that notified me when my sent texts were received by someone. Just got my iPhone about a week ago.  Totally different.                                                                                                                                                                                             
                     

  • How to stop the users from saving the PO when there is error message

    Hi Guru,
    The error message had appeared but the user still can choose to hold the PO even though there is an error.
    They do not want to let the user to have a choice to save the PO once there is an error.
    Please advice where i can out this checking in.

    Dear Sally,
    As per OSS: Note 606728 - Hold Functionality of the PR & PO - Gaps.
    The only way you can stop the hold functionality is by implementing the BADI: ME_PROCESS_PO_CUST.
    I am copying the OSS text for your reference.
    Summary
    Symptom
    It is possible in the system to create/hold a purchase order (PO) referencing a held purchase requisition (PR), but your business process requires that this not be possible in your installation.
    Other terms
    Hold, ME21N, ME52N, Parking, Save without Check, Held PR, PO referencing a held PR, Commitments, reduction of PR by a held PO
    Reason and Prerequisites
    Cause: The functionality is not provided in EA-PS 110.
    Prerequisites : You must be on EA-PS 110 to implement this note
    Solution
    You can implement some customer BAdI's provided by SAP to get this functionality. Note that customer implementations of the BAdI's provided by SAP are upwardly compatible. The text that follows gives details of how to implement the customer BAdI's to accomplish this functionality.
    This functionality might be provided in future releases. However, we cannot make any binding statements at this time in regard to the scope of this development and when it will become available.
    The following are the steps required to implement the customer BAdI to give an error message when a user tries to create a PO referencing a held PR.
    1. Go to transaction SE18. Enter the definition name as ME_PROCESS_PO_CUST. Select the push button display.
    a) Choose Implementation -> Create.
    b) Enter an implementation name. Choose Enter.
    c) Enter a short text to describe the purpose of the implementation, then save the implementation.
    d) Select the tab interface, then double-click the method "process_item".
    e) Create a message to issue a message that the PR is on hold.
    f) Enter the following code in the method:
                        DATA: LS_MEPOITEM TYPE MEPOITEM.
                        DATA : MEMORY     TYPE EBAN-MEMORY.
    get current data from business object
                        LS_MEPOITEM = IM_ITEM->GET_DATA( ).
    Check if the PO references a PR and check if the PR is not on hold
    If the PR is on hold give an error message
                          IF NOT LS_MEPOITEM-BANFN IS INITIAL.
                            SELECT SINGLE MEMORY INTO MEMORY
                            FROM EBAN WHERE BANFN = LS_MEPOITEM-BANFN
                                        AND BNFPO = LS_MEPOITEM-BNFPO.
                            IF MEMORY = 'X'.
                               MESSAGE E900(ZM). "The message that you have created in step 6
                            ENDIF.
                        ENDIF.
    g) Activate the implementation.
    2. If you do not want to let the user put the PO referencing a held PR on hold, you have to also implement the BAdI ME_HOLD_PO. The following are the steps to implement the BAdI.
    a) Go to transaction SE18.Enter the definition name as ME_HOLD_PO and click on the 'DISPLAY' button.
    b) Go to Implementation -> Create.
    c) Enter an implementation name, then choose Enter.
    d) Give some short text to describe the purpose of the implementation, then save the implementation.
    e) Select the tab interface. Double-click the method IS_ALLOWED.
    f) Enter the following code in the method:
                        DATA : IM_BEKPO_WA TYPE BEKPO.
                        DATA : MEMORY TYPE EBAN-MEMORY.
                        *-Look if the PO refers to a Held PR
                        LOOP AT IM_BEKPO INTO IM_BEKPO_WA
                               WHERE NOT BANFN IS INITIAL.
                                 SELECT SINGLE MEMORY INTO MEMORY
                                 FROM EBAN WHERE BANFN = IM_BEKPO_WA-BANFN
                                            AND BNFPO = IM_BEKPO_WA-BNFPO.
                                 IF MEMORY = 'X'.
                        *-Do not allow the PO to be kept on hold
                        *-if the PO is refering a held PR
                                   CH_ALLOWED = ' '.
                                  ENDIF.
                        ENDLOOP.
    g) Activate the implementation.
    I hope it helps.
    Kind Regards,
    Prakash

  • How do you get rid of App Store app update notice when there are no apps to be updated?

    As you can see below, I have the notification saying 8 updates yet there are no apps to update.
    Anyone know how I can fix this??

    Try this for now:
    Spotlight: How to re-index folders or volumes
              http://support.apple.com/kb/ht2409
    Mac App Store: Cannot update App Store purchases or updates do not seem available
              http://support.apple.com/kb/TS4236

  • How do you update software when there are multiple users with different (unknown) apple ID's?

    We are a college with different users borrowing 'loaner' Macbooks.
    several users with different ID's have installed software that is now tied to that Machines serial number, and cannot be updated or removed apparently. We are trying to update iPhoto for use with iBook author, but it was installed by an unknown user and cannot be removed.

    The only practical solution is to wipe and re-provision the units when they're returned.

  • How to update JTable when clicking outside the table?

    Hi
    (Sorry if this has been asked before but I can't seem to see exactly how to do this from previous posts.)
    I have a JTable which sits on a jPanel which itself is part of a frame.
    When I click anywhere outside the table when I'm editing a cell in the table, how do I end the edit mode of the table (so that the cell is updated with the new contents).Currently I can only update a cell's contents during edit when hitting 'enter' or by clicking on another cell within the table.
    It seems that the following code is used in the process but I'm sure that I'm still missing something:
    if(table1.getCellEditor()!=null)
    table1.getCellEditor().stopCellEditing();
    If anyone out there knows how to do this,I'd really appreciate hearing how.
    Thanks a lot
    LGS

    Thanks for your comments but I'm still having problems.
    When I add the following code:
    table1.addFocusListener(new java.awt.event.FocusAdapter()
    public void focusLost(java.awt.event.FocusEvent evt)
    if (table1.getCellEditor() != null)
    table1.getCellEditor().stopCellEditing();
    and then try to edit my table,as soon as I double click on any cell in the table,my setValueAt method in my Table Model is being called before I even edit the cells contents. The above code is in the same method in which I actaully create table1 i.e.createTable().
    Can anyone help?

  • HT201210 how to update iphone when message says firmware is not compatible

    How can I update my iphone to current software of ios5? I keep getting an error message that my firmware is not compatible for the update. My current ios is 4.0.2, please help. thanks.

    Blodwen wrote:
    ... I tried to update it by going to software and clicked update but it said 'iOs 5.1.1 is the most recent update' and same story when I plugged it into my computer and tried to update it on iTunes, it just said the same thing.
    Then it is an iPad 1...  which can only go as far as iOS 5.1.1

  • How to updates file when template is changed

    Hello fellow dw users..
    Is there somebody whocan help me. My problem is that I
    created my website by using a template,
    now I need to chagne the color and some background images on
    my template after updating the template
    how would I let all my web pages be affected and follow and
    use the updated the template instead of the old one? hope you can
    help me . thanks a lot!!

    When you save the changed template, all changes to
    NON-editable regions are
    automatically propagated to all local child pages of that
    template. Is that
    not happening for you?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "teamse1" <[email protected]> wrote in
    message
    news:eb7ljd$12b$[email protected]..
    > Hello fellow dw users..
    >
    > Is there somebody whocan help me. My problem is that I
    created my website
    > by
    > using a template,
    > now I need to chagne the color and some background
    images on my template
    > after
    > updating the template
    > how would I let all my web pages be affected and follow
    and use the
    > updated
    > the template instead of the old one? hope you can help
    me . thanks a lot!!
    >

Maybe you are looking for