Display Graphics is not working in ECC 6.0 EHP5 SAP System

Hello All,
We have an SAP system running  on ECC 6.0 with EHP5 installed in it.
In UDM_Supervisor when i click on ALV Display Graphics it is not opening it is throwing the below mention error.
When i click on the highlighted icon on the top it throws the below error.
When i click on there is no additional information available.
I could not locate any  Relevant SAP notes.
Could you please help me in fixing this error.
Thanks in advance!!!
Regards,
Vardhan.

Hi,
I don't have access to my ECC 6 system right now, I would check 2 things:
1) it is possible that the BAdI definition class (for classic BAdIs, it is usually CL_EX_BATCH_MASTER) has been changed manually by SAP, and they removed the LOOP, or have added an EXIT right before the ENDLOOP. I know they sometimes do it.
2) I would check if the BATCH_MASTER classic BAdI has been migrated to new BAdI, in that case I think you should migrate your BAdI implementations
3) Just to be sure: if an implementation raises an exception, that's normal that the other implementations are not executed.
BR
Sandra

Similar Messages

  • TS4317 graphics cards not work

    video file is not working graphics card not working is their is any software that i can update. or tell me why its not working

    If you can see an image on your screen then your graphics card (Intel HD Graphics 3000) integrated into your 13" machine is working just fine.
    I'm not sure what you mean when you say that a video file isn't working... how exactly isn't it 'working' and what file format is it in?
    Clinton

  • My mini i pad 2 retina display screen is not work correctly after two days of buying appear some gray line on screen un furtunately i live in iran and i havnot access to any i pad store please guide me

    My mini i pad 2 retina display screen is not work correctly after two days of buying appear some gray line on screen un furtunately i live in iran and i havnot access to any i pad store please guide me

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
     Cheers, Tom

  • Graphical editor not working

    Hi,
    SAP Graphical editor not working.  I am getting the following error.
    EU_SCRP_WN32 : timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'
    Last week its sucessfully working but suddenly happen this issue... This problem in development server only. In production server is sucessfully working.
    Please advise...
    Regards
    Rajesh.

    Hi Rajesh,
    It looks to be RFC connection issue.
    Refer to various solutions described in below SAP note
    101971 - 37527 Graphical full screen is not available (RFC)
    Alternative
    Workaround
    You can prevent the termination of the RFC connection by increasing the value of the timeout parameter for the relevant RFC destination. Call transaction SM59, choose the TCP/IP connection "EU_SCRP_WN32" and branch to the "Special Options" tab page. In the section "Keep-Alive-Timeout" select the option "Specify Timeout" and enter a longer wait time (for example, 300 seconds). Undo this change once you use the corrected program version.
    Hope this helps.
    Regards,
    Deepak Kori

  • Probook g1 450 4th generation Intel Graphics Driver Not working

    After Updating Baios my laptop , graphics driver not working . install successfully but when    click the graphics driver icon , it's show the  massage ,GfxUiEx has stopped working .
    i am worried about it . what can i do ??
    i uninastalled driver then again install but this massage show again ,,,i use windows 8.1.
    massage is :

    @Ariful11 
    Thank you for using HP support forum. I have sent you a private message. If you’re unsure how to check your private messages please click here.
    Thank you,
    Omar
    I Work for HP

  • Why weren't we told that display mirroring would not work with a Mac older than 12 months?

    Why weren't we told that display mirroring would not work with a Mac older than 12 months?

    You were, just not directly. If you go to apple's mountain lion webpage, you'll see this note at the bottom:
    1. AirPlay Mirroring requires a second-generation Apple TV or later, and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer).
    http://www.apple.com/osx/whats-new/features.html

  • Window 10 upgrade. Graphics driver not working even after re-install

    Notebook pavilion DV6 3280.  Just upgraded to Windows 10 and AMD graphics driver not working even after re-install.  What do I do?  Is there another driver not on the HP Website that I should try?

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Search criteria is not working in Responsible Group field in sap crm could you please help me this how to achieve.

    search criteria is not working in Responsible Group field in sap crm could you please help me this how to achieve.I have writen code on EH_ONSEARCH .as per below...what changess i need to do..and through partner function and adding the selection params please send the sample .
    code. partner funtction - ZRG DATA :
    DATA : lv_partner_fct type .
    types: begin of ty_resp,
           partner    type but000-partner,
           name_last  type but000-name_last,
           name_first type but000-name_first,
           mc_name1   type but000-mc_name1,
           mc_name2   type but000-mc_name2,
           end of ty_resp.
    DATA: lv_resp_bp type STANDARD TABLE OF ty_resp INITIAL SIZE 0,
           lw_resp_bp type ty_resp.
    IF lv_attr_name = 'Rgroup'.
    lr_entity->get_property_as_value( EXPORTING iv_attr_name = if_crm_srqm_uiu_const=>gc_attr_low
                                       IMPORTING ev_result = lv_low ).
    IF lv_low IS INITIAL.
    SELECT partner
           name_last
           name_first
           mc_name1
          mc_name2
    FROM but000 INTO table lv_resp_bp
    WHERE mc_name2 = lv_low and bu_group = '0010'.
    loop at lv_resp_bp into lw_resp_bp.
        lv_low = lw_resp_bp-mc_name2.
      lr_query_service2->add_selection_param( iv_attr_name = 'Rgroup'
                                                iv_sign = lv_sign
                                                iv_option = lv_option
                                                iv_low = lv_low
                                                iv_high = lv_high ).
      ENDLOOP.
    if lv_partner_fct = 'ZRG'.
      lr_entity = lr_iterator->get_next( ).
    CONTINUE.
    ENDIF.
    lv_attr_name = 'BU_PARTNER'.
    ENDIF.

    <b>You can acheive   this .... first by creating the search help exit    ... by  creating the maintaince  view   then   using it in the   Creation of the search help </b> ...
    see the link for attaching the view   to the serach help .
    <a href="http://">http://www.sapdevelopment.co.uk/dictionary/shelp/shelp_elementary.htm</a>
    reward  points if it is usefull...
    Girish

  • Touch zoom not working and I have it checked in systems preferences

    need help on Lion touch zoom, not working and I have it checked in systems preferances.

    Mine is even weirder, but maybe I can help.
    First, a number of people are reporting that the zoom feature seems to stop working after the computer goes to sleep.  You get it back if you reboot.  However, a simpler solution is that you can move the cursor to a screen corner - one you have set up to start a screen saver - and when you move the cursor away to stop the screen saver, the zoom works again.  Still a bug, but fairly easy to deal with until your computer goes to sleep again.
    Mine is really weird because, as I was working to try to get zoom to work before finding out this other stuff, somehow I ended up with a situation where if I turn on zoom, the screen instantly zooms and I can't get it to unzoom except by turning off zoom.  However, even though zoom is then turned off, I can zoom the screen as if it is on!
    So, besides trying the trick of activating the screen saver, you might try turning off zoom and see if it will still zoom.

  • Macbook Retina Display isight camera not working - graphics freeze

    I recently bought a base MBP-RD and can say that I am overall impressed with it, though I have found a couple issues already. One of them is related to the iSight camera which for some reason doesn't work. The camera appears in system profiler, but it shows as "camera not detected" when trying to launch application like iChat, Skype, FaceTime, etc. I already tried re-installing OSX Lion, and still not working.
    I have also found some weird issue with graphics where it freezes a series of frames when going to Mission Control or App Expose.
    I am returning this computer as there are other things I didn't like, but overall pretty impressive (no LED battery indicator, no Lock slot, no sleep light indicator...)
    Please reply if you have same issue.

    i think Macbook Pro is a good computer but plenty of issues, since day one.
    i received my computer with space bar cracked. i figured this out @ night when the keyboard backlight was.
    then my USB port ***** on it, it does not read all.
    even after the update no go the USB port does not  work all the time with the apple usb to ethernet adapter.
    while if i install vmware it does work on the windows in VMware environement.
    my Camera also is not being detected    how can i fix the camera.
    please do not tell me go to genius bar, they are all but not genius, if you have issue they ask you to format they do not know how to troubleshoot.
    Conclusion problem with macbok retina version:
    isight Camera wont detect
    USB port Does not work with all devices.
    Space Bar key broken from manufacture.

  • Sound & Graphics Drivers not working for Qosmio F15R

    I was granted this Laptop with nothing more than AC Adapter. I didn't need the information contained in it and didn't want to deal with its configuration issues either, so I started planning formatting it. Looking for model number label at the bottom found it says "Qosmio F15R". I couldn't found this model number at support website for drivers, closest model was F-15AV201, figured it out by watching its pictures in detailed specs documentation. Everything but Bluetooth seemed to be available, so I formatted and reinstalled Windows XP Pro SP3 and then downloaded all drivers. Touchpad, Ethernet, Wireless, Flash memory, TV-FM and DVD-RAM worked just fine. On the other hand Sound, Display and Modem didn't work at all.
    While installing Sound driver I got this error message:
    http://img21.imageshack.us/img21/5075/sounddriver.png
    (it says: "couldn't find driver, reboot and reinstall")
    After installing Display driver checked display adapter properties and found this:
    http://img402.imageshack.us/img402/5171/vga.png
    (no information available and even scrolling on web browser is crappy)
    After installing Modem driver realized it was not identified:
    http://img237.imageshack.us/img237/4613/devicemanager.png
    (Sound, Display, unknown device, Modem)
    I thought I was using drivers for wrong model, so I downloaded PC Wizard, a freeware that identifies hardware configuration:
    http://img262.imageshack.us/img262/6452/pcwizard.png
    wich gave me chipset, processor, video card and-
    http://img175.imageshack.us/img175/4121/soundr.png
    -sound card: 82801FB ICH6 AC'97.
    I couldn't find any proper driver nor for sound nor display, so I tried a shareware, Everest:
    http://img337.imageshack.us/img337/6199/everesth.png
    wich showed me the same chipset, video card and sound card model numbers than PC Wizard.
    I realized that chipset, and display model didn't match detailed specs documentation. I thought that hardware was not working properly, so I downloaded and installed a Linux distro (Kubuntu 9.10 RC i386), and fount out that display and sound were working just fine but I need it to work properly with Windows XP.
    Can anyone tell me where can I get sound and display drivers (and even Bluetooth if possible) for this laptop? Thanks in advance. Regards.

    I have the same problem with audio driver. I can send you the graphic driver that works with Qosmio F15R if you need. My email: [email protected] Toshiba is so bad in supporting with their products.

  • Graphics Adapter not working

    Hello HP support, I ran a game after a long time and it was lagging, so i check and find out that it was not using dedicated graphics that is Radeon HD 8670m so i check device manager and there was only one display adapter which was the integrated graphics Intel(R) HD Graphics 4000. I then click on show hidden device and there it(Radeon HD 8670m) was, but i wasn't working it said that Currently, this hardware device is not connected to the computer. (Code 45). I then uninstall the driver in a hope that this problem will fix after reinstalling the drivers, but it does not!.... now there is no trace of the Graphics card not in the device manager not even hidden... What should i do? 

    Been there tried that.
    I have done a full backup and restore... and the joys of Microsoft's "This software has already been registered" hops.
    If the drivers are not recognising after the first run through or second... what makes you think they will after the third on a fresh install?
    The DVD restore is Vista Home, I have upgraded to Business and then to Ultimate out of desperation... that will make the 6th install and seeing as the issue hasn't been resolved in any of others I just think I'll be wasting my time.
    I think there must be something more fundemental not working if the driver can't find resources.

  • Graphics card not working

    Hi,
    I have just installed a new GEFORCE GT 620 1GB graphics card into my H500s computer.  The card does not seem to be working.  I have changed the video setup to PEG and set secure boot to disabled and enabled CSM in the BIOS but with no luck.  According to the data sheet this card should work.  The onboard graphics is still working fine dispite the card being plugged in.
    Does anyone know as to why this card is not working.
    Many thanks in advance.

    There are a lot of MBP variants over the five years the model ahs been in production. Our knowing the exact model would help. Do  "About this Mac" from teh Apple menu, and in the resulting winodow, click the "More Info..." button. That launches System Profiler for you.
    In Profiler's  opening screen, Hardware Overview, copy and past that infor here, being sure th delete the serial number, That screen should look like this:
    That tells us the specific version. Now select "Graphics/Displays" from Profiler's "Contents" pane on the left and post that info. It looks something like this:
    This info is important because some MBP variants had defective video chipsets, one of which qualifies for a free logic board replacement.

  • ADC Studio Display 17" USB not working

    Hi,
    I hope someone can help.
    I have a 17" Apple Studio Display that connects via ADC left over from my old Powermac G4. I recently bought the new Mac Mini (Unibody) and an Apple DVI to ADC Display Adapter to use with the HDMI to DVI Adapter to connect with the Apple Display.
    This works perfectly however I have noticed the USB ports on the back of the display does not work. Could this be because the Apple DVI to ADC Display Adapter can not supply enough power via the connected HDMI to DVI Adapter to support the display and its USB ports? Is there a way too get them working again?
    Thanks.
    Chris

    Hi. Thanks for that. As you say there must be something wrong with my display's USB circuitry then.
    Just one more question, is the USB cable from the DVI to ADC adapter only for supplying power to the USBs on the display? Since the display's USBs are not working, will the adapter still work and power my display without using the USB connecter from this adapter? If so this will free up one of my USB2 ports on the mini.
    Thanks again.

  • WBS element field in transaction CS71-F4 help is not working in ECC 6.0

    Hii
    In SAP, while working in SAP 4.7, tcode cs71, WBS element is coming via F4 Help. But after upgradation to ECC 6.0 EHP 5, this F4 help is not working. I can enter value manually.but F4 help is not working.
    Please Help.

    Hi,
    You can do it manually too
    1.  Choose function group 'CSDI' via Transaction SE80.
    2.  Choose screen '0260'in the 'Screens' area and switch to change mode
    3.  Choose the 'Element list' tab index.
    4.  In this area, choose the 'Reference' tab index and enter the value
        'PRP' in the 'Search help' column in the line for field
        'RC29N-PSPNR'.
    5.  Save your change and regenerate the screen.
    6.  The correct input help for the WBS element is now available in the
        initial screen of Transaction CS71/72/73.
    I hope F4 helps works for "Existing WBS BOM's" in CS71 after this
    Refer to Note : 714824 as well , it has reverted back the changes done by note : 422265
    Regards
    Gaurav

Maybe you are looking for

  • Sharepoint (Public facing site) Project Guidance

    Hi friends , This is my first sharepoint project (SP 2013) for which I have been asked to develop a public facing internet site. I do have a basic idea about certain concepts of sharepoint but still I'm looking for a guidance to how to go about with

  • File with flashing question mark on startup?

    So my MacBook Air just recently started this, with the white screen and grey box with a flashing question mark in it upon starting it up. Safe Boot did nothing, the question mark file continued to appear. Holding down the Alt button seems to be the o

  • Running OS 10.9. When I open Microsoft Word, all my previous Word documents open at once and crashes the program.

    I open a document and all my documents open one after another. i cannot access anything in Microsoft Word. After about 30 seconds of opening documents, Word crashes. This behavior only occurs in Word.

  • Where do I find my "Signing Key?"

    I am new to the Developer Forum. Recently, I paid my year's registration fee. With that I promptly received an ACTIVATION CODE, a PART NUMBER, and my INDIVIDUAL ID. Where do I find my Apple iOS SIGNING KEY? In Dreamweaver CC, when I go to "Phone Gap

  • Trouble with database path (DSC)

    Hello, I use DSC and LabVIEW 2009 in my application, and I created programmatically Shared variables, which have to be logged in Citadel database. For that, I create a database with Create Database VI with a specified path , and afterwards I use Conf