Problems Display WebDynpro (Abap)

Hi,
my browser version für IE and firefox changed to IE 8.0.7601.17514 64bit and Firexfox to 24.1.
Now our wd application will not be displayed in IE and not correctly display in firefox (see attached jpeg), here the table design can't be displayed correct.
Any ideas?

Hi,
Those are known browser limitations of WDA. you may have to upgrade your NW! Alternately, try to switch compatibility on and then check. you may refer this doc: Resolve "Sorry, your browser/program is not supported by Web Dynpro" for IE 9/10/11permanently or temporarily
hope this helps,
Regards,
Kiran

Similar Messages

  • NWBC problem displaying SAP ABAP transactions

    Hi,
    I was trying to configure NWBC and I was able to connect to the system and see the transaction available on the role assigned to the user, under that role I assigned SAP standard transactions, BSP applications, WebDynpro applications and Web pages (URL's). I can execute all except the SAP standard transaction that uses the Windows SAPGUI, basically the transaction is never displayed and I only see the "Webdynpro loading icon" I do not see any session created on the backend by the user using the NWBC and I also do not see any instance of the SAPGUI created on local PC where I am testing the NWBC.
    We tested in two computers one using SAPGUI 7.0 patch 3 and the other patch 2, the scripting is enable on the sapgui with the other two options (Notify when a script attaches.... and Notify When a script Opens...) set in both, I also know that the parameter sapgui/user_scripting is set to TRUE and sapgui/user_scripting_set_readonly and sapgui/user_scripting_disable_recording as well. Parameter CONDENSE_MENU is set to NO and ADD_MENU_DETAILS is set to YES.
    As I mentioned before, we can see the menu, subfolders and transaction assigned to subfoldes, everything that is related with Web like BSP, webdynpro or regular HTML is displayed but the problem is with transaction that requires Windows SAP GUI.
    On the NWBC log I could not find too much only the following entry:
    24.08.2007 13:20:16
    INFO <NWBC::CSessionContext> | setDirty(sessionID 0000000005, connectionName WDA Testsuite)
    On the NWBC trace file I could find the following but nothing else that give a clue of the reason why is not starting the windows sapgui:
    24.08.2007 13:03:09
    DEBUG <NWBC::CBCMainDialog> | OnOK: action start_change
    INFO <NWBC::CCanvasArea> | Show loading page
    DEBUG <NWBC::CCanvasArea> | HideAllViews
    DEBUG <NWBC::CBCMainDialog> | OnOK: done
    DEBUG <NWBC::CBCMainDialog> | OnOK: action image_folder
    DEBUG <NWBC::CBCMainDialog> | OnOK: done
    DEBUG <NWBC::CBCMainDialog> | OnOK: action canvas
    DEBUG <NWBC::CBCMainDialog> | OnOK: done
    DEBUG <NWBC::CBCMainDialog> | OnOK: action session
    DEBUG <NWBC::CBCMainDialog> | CSapguiViewFactory::Get
    DEBUG <NWBC::CSessionManager> | CreateSession(sessionID 0000000006, connectionName WDA Testsuite)
    DEBUG <NWBC::CSessionContext> | initialize(sessionID 0000000006, connectionName WDA Testsuite)
    DEBUG <NWBC::CSessionEPCM> | initialize(sessionID 0000000006, connectionName WDA Testsuite)
    INFO <NWBC::CCanvasArea> | Show loading page
    24.08.2007 13:03:10
    DEBUG <NWBC::CCanvasArea> | HideAllViews
    DEBUG <NWBC::CSAPGUIView> | CSAPGUIView::WindowCreate
    DEBUG <NWBC::CSAPGUIView> | CSAPGUIView::SetCookieString
    DEBUG <NWBC::CSAPGUIView> | ISapguiScriptingInternal::OpenNewConnection
    24.08.2007 13:03:12
    DEBUG <NWBC::CSAPGUIView> | m_nSessionsCreations= 1
    DEBUG <NWBC::CSAPGUIView> | } CSapguiSessionManager::CreateNewSession
    DEBUG <NWBC::CSAPGUIView> | } CSAPGUIView::InternalCreateSession
    DEBUG <NWBC::CSAPGUIView> | } CSAPGUIView::CreateSession
    DEBUG <NWBC::CSessionContext> | setDirty(sessionID 0000000006, connectionName WDA Testsuite)
    DEBUG <NWBC::CCanvasArea> | SetActiveView(id 0000000006)
    DEBUG <NWBC::CCanvasArea> | View is still loading => can't make it active yet => remember ID
    DEBUG <NWBC::CCanvasArea> | } CCanvasArea::Start
    DEBUG <NWBC::CBCMainDialog> | } CBCMainDialog::CanvasManagerCreate
    DEBUG <NWBC::CCanvasArea> | SetActiveView(id 0000000006)
    DEBUG <NWBC::CCanvasArea> | View is still loading => can't make it active yet => remember ID
    DEBUG <NWBC::CBCMainDialog> | OnOK: done
    Hopefully somebody can give me a hand with this,
    Thanks in advance,
    Zareh Vazquez

    The problem is solved ... The routing-string was not correctly configured...

  • Problem in Webdynpro-ABAP

    Hi,
    i am creating a new webdynpro but i have issue when i create the view in the layout, it is not showing the layout button option (create element --> Type) and  showing page cannot be displayed.
    2. How to  a look into a Notes ? I don't have access to Notes.
    Thanks,
    Anshul Walia

    Hi Anshul,
    Define the IP address of your WAS server (with FQDN) in your system's HOSTS file.
    Regards,
    Alka.

  • Radio button problem in webdynpro abap

    Hi Guys,
    In the selection screen i have 2 radio buttons PO and RP.
    user is allowed to select either of the one so i have created 1 radio button group.
    scenario 1:
    when user clicks on radio button 1 and then click the submit button.
    now he wants to change his selection so he again enter and click the radio button 2 and click on subnit button.
    if he goes again he can see the radio button 2 selected.so it is working fine.
    Scenario 2:
    when user clicks on radio button 2 and then click the submit button.
    now he wants to change his selection so he again enter and click the radio button 1 and click on subnit button.
    if he goes again he can see the radio button 2 selected.so it is not working fine.
    The coding is as follows:
    on action submit i have writtent the following code
    IF ls_iohncust_values-repplanonly IS NOT INITIAL.
                 IF ls_iohncust_values-repplanonly EQ 'PO'.
                   ls_profgen_custval-cust_attr      = 'REPONLY'.
                   ls_profgen_custval-cust_value     = 'X'.
                 ELSEIF ls_iohncust_values-repplanonly EQ 'RP'.
                   ls_profgen_custval-cust_attr      = 'REPPLAN'.
                   ls_profgen_custval-cust_value     = 'X'.
                 ENDIF.
               ENDIF.
    Kindly let me know why scenario 2 is not working.

    Hi Vijay,
    IF ls_iohncust_values-repplanonly IS NOT INITIAL.
                 IF ls_iohncust_values-repplanonly EQ 'PO'.
                   ls_profgen_custval-cust_attr      = 'REPONLY'.
                   ls_profgen_custval-cust_value     = 'X'.
                 ELSEIF ls_iohncust_values-repplanonly EQ 'RP'.
                   ls_profgen_custval-cust_attr      = 'REPPLAN'.
                   ls_profgen_custval-cust_value     = 'X'.
                 ENDIF.
        ENDIF.
    As I can see there is no such issue in selecting data in secord scenario. It might be the case that it's not getting cleared so you can just clear your node ls_iohncust_values-repplanonly after your endif on submit action.

  • Trouble with FUNCTIONAL LOCATION - locking! With WEBDYNPRO ABAP

    Hi all,
        i have a lock object problem via webdynpro ABAP.
    My web-dynpro get a FUNCTIONAL LOCATION (FL)  and could modify it information, the problem is that until the web-dynpro browser is active into ECC system the FL result LOCKED! And also from the web-dynpro i cannot modify it again, i have to reload/refresh the webpage
    I used after the updating the TRANSACTION_COMMIT and soon after the DEQUEUE_EIFLOT frunction module.
    Anyone has some suggestion on it?
    Thanks in advance Roberto.

    Hi Jorge,
    Are you able to download the ICONs from alv table? try to use some icon source '~Icon/Add' and check out if you can download it to excel successfully.
    FYR:
    Regards,
    Rama

  • Webdynpro abap ALV export to excel with images problem

    Hello experts,
    I'm having problems with standard excel export functionality in webdynpro abap ALV.
    In my table i have images taken from content server (employee photos) linked with URL to a table_cell Image, when i export the table to excel using standard function the images is showed as a broken picture with the following text:
    "The linked image cannot displayed. The file may have been moved, or deleted. Verify that the link points to the correct file and location."
    I'm running on sap basis 7.02 SP13 and implemented the notes 1975765 and 1985288 but not resolved this issue.
    Do you have any ideas?
    Thank you.

    Hi Jorge,
    Are you able to download the ICONs from alv table? try to use some icon source '~Icon/Add' and check out if you can download it to excel successfully.
    FYR:
    Regards,
    Rama

  • How to display summation of a field in table displayed in Webdynpro ABAP

    Hi,
    I am displaying a table in Webdynpro ABAP. This consists of data for different PERNRs.
    I need to display the sum of a particular column for each PERNR, after the end of each PERNR data. (table sorted by PERNR).
    Is there any way to display this in the table? If so then please let me know.
    Regards
    Moderator message: wrong forum, please have a look in the "Web Dynpro ABAP" forum.
    Edited by: Thomas Zloch on Mar 7, 2011 9:20 AM

    Hello,
    I believe you have created the query in SQ00.
    Go to SQ00.
    Select your Query.
    Click on Change
    On the Top Left Hand Corner, you will find "BASIS MODE"
    Click on the Basis Mode Button
    Once you click on Basis Mode Button, you will get "Title"
    Change the title what you are intended to change.
    SAVE the entries.
    Execute the Query.
    You will be able to see new Heading on the Query.
    Hope this helps you.
    Regards,
    Ravi

  • How can we display photo of particular person on webdynpro abap view

    hello gurus,
                     i am very new to webdynpro abap.i have one requirement.could any one can suggest me to overcome my requirement.
    in my requirement i have one view.in that view i need to display one photo image which ever saved on my desktoop.if i click on save button i should generate one doc number and update what ever the photo image i have displayed in the view against this doc number.after some time if give the doc number in to docnumber field and click on display button it should display what ever the photo we have saved previously against this doc number.this is my exact requirement.i think for this we need to maintain one Z table to stroe the photo and respective doc.number.for this how can we stroe photo against doc number in ztables.what is the type i supposed to give for photo image field.
    could you please any one suggest me on this and could any one send me the sample code if possible.
    regards,
    babu.

    Hello Babu,
    I doubt whether you can directly display the image from your desktop into the webdynpro application using Image UI Element. Only solution what I can think of is to load the image into the MIME folder and then bind the path of image in the Source property of the image UI element. But if you ask me this is not a good solution. Let me propose my solution. If no one get back to issue with better approach then you can follow the same
    1. whenever the image the is uploaded from the desktop, create this image in the MIME folder ( you search in SDN for creating objects in MIME folder )
    2. then bind the path of the image in Mime folder to the Source property of the Image UI Element
    3. Once the image is persisted in the DDIC table, delete the image from the MIME folder.
    4. to persist the image in DDIC table, create an attribute of type RAWSTRING.
    5. Whenever you want to display image from DDIC table into the UI, then again create the image in MIME folder and delete the image from MIME folder when you are existing from the application.
    Alternative would be to use the Mime repository for storing the image and in the DDIC table just maintain the Mime folder path for the document number.
    Hope this helps you.
    BR, Saravanan

  • Display pdf file using webdynpro abap

    Hi Friends,
    My requirement is to display pdf file in the second page with the input  text  entered in the fisrt page when clicked on action
    button( in the first page) using webdynpro abap.
    Can anybody explain the step by step procedure as I am new to this area.
    Thanks in advance.
    Reagrds,
    Nagaraju

    Hi,
    Check this.,
    Creating a PDF file in webdynpro abap.
    Web Dynpro ABAP display pdf
    hope this helps u.,
    Thanks & Regards
    Kiran

  • Standard program to display which tables are used by Webdynpro ABAP program

    Hi Gurus,
    I am working on a couple of enhancements in SAP Promotion Management for Retail (SAP PMR) which works on the principle of Floor Plan Management.
    I was wondering if anyone would know of a standard program to display the tables used by Webdynpro ABAP?
    (or)
    Where can I get info of SAP Tables associated to SAP PMR?

    Hi,
    I am not aware of any standard reports that displays the tables.
    If I have to view the tables, I would go to se80, give the package and view all the tables in the package.
    Regards,
    Daz.

  • Regarding Tree structure display in Webdynpro ABAP

    Hi Experts,
    I am very new to webdynpro ABAP , I was asked to implement some functionalities of RWBE transaction in webdynpro , in RWBE transaction list can be displayed as Tree structure , in webdynpro how i can implement this ? using ALV UI element is it possible . Please help .
    Regards,
    Ratheesh BS

    Hi ,
    I need an output like the below
    <material number                 a1           a2        a3
              < plant                       b1          b2        b3
                 . org                        c1          c2        c3
    <material number                 A1          A2       A3
    is it possible to show the output as in this format using ALV ?.
    I have tried with the help provided by SDN , but not succeed .
    also i need to capture double click event and show the currosponding result in a seperate view.
    here material number is the parent node , plant and org were child nodes
    Regards,
    Ratheesh BS
    Edited by: Ratheesh Bhaskaran on Oct 7, 2008 4:22 PM
    Edited by: Ratheesh Bhaskaran on Oct 7, 2008 4:26 PM
    Edited by: Ratheesh Bhaskaran on Oct 7, 2008 4:29 PM

  • Display RSS flows in WebDynpro ABAP

    Hi,
    I was surprised that my search in this topic on "RSS" did not return any result.
    I need for a customer to develop a couple of WebDynpro ABAP screens (without any portal) and to display information coming from a RSS flow inside these WD4A screens.
    Any idea how to achieve this, standard solution preferred or via custom coding?
    Thanks
    Yann

    Your question isn't really Web Dynpro ABAP centric.  The process to consume and parse the RSS is indepent of the use of classic dynpro, BSP, or Web Dynpro ABAP as the UI.  You are probably just going to use the CL_HTTP_CLIENT class to make the HTTP call from ABAP and then parse the RSS with XML or an XSLT.  Brian McKellar wrote a nice blog on this some time ago.
    /people/brian.mckellar/blog/2004/06/25/bsp-programming-rss-httpclient-xml-xslt
    He does his output in BSP, but that part can easily be adapted to Web Dynpro.

  • Webdynpro ABAP Caching Problem in Portal

    Hi All,
    We have developed custom applications using Webdynpro - ABAP, using FPM and accessing those applications through SAP Netweaver Portal 7.0. I have deactivated all the caching techniquies in Portal @ iview level and Page level, Portal Runtime and ContentFetch side, But still causing the same problem.
    I have a doubt, wether this is happening because of SAP Logon Caching @ SAP WAS system level. I have checked the SSO parameter settings in RZ10 Profile parameters. Our basis people have set both accept and create parameter value = 1. Is this causing issue?
    Or Is there any other settings which is required to do in Portal or SAP system level. Please let us know , really appreciate your value suggestions and help.
    Please find the below links, which im referring to...
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/d2/91553b4d53273de10000000a114084/frameset.htm
    http://help.sap.com/SAPHELP_NWPI71/helpdata/EN/48/69eb40e8a607d6e10000000a42189c/content.htm
    Thanks in Advance
    PRadeep
    Edited by: Pradeep on Jan 28, 2009 9:10 AM

    The delete icon will not show up in the line of the favorite/templates, if no hours are recorded on it. There is no transfer to the backend either, unless hours are recorded on these working time attributes. also ensure note 1986356 is implemented for details column check CAC2 for the CATS profile attached to the user in CVR in Su3

  • Webdynpro ABAP - ALV how can i display Total of Column

    Hi friends,
    Webdynpro ABAP - ALV how can i display Total of Columns.
    Please tell me any metod is there or any solution.
    Thanks,
    Kumar.

    Hi
    You can take help of following code snippet to create totals for a particular column
    Data: lr_function_settings TYPE REF TO CL_SALV_WD_CONFIG_TABLE.
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings,
            lr_column          TYPE REF TO cl_salv_wd_column,
            lt_column type salv_wd_t_column_ref,
            ls_column type salv_wd_s_column_ref.
    Data:  lr_field_amnt type REF TO CL_SALV_WD_FIELD.
    * get reference of ALV component
      lr_salv_wd_table = wd_this->wd_cpifc_OVERVIEW_EARNED_ALV( ).
      wd_this->alv_config_table = lr_salv_wd_table->get_model( ).
    *  get function settings
      lr_function_settings ?= wd_this->alv_config_table.
    * display columns in correct order
      lr_column_settings ?= wd_this->alv_config_table.
      lt_column = lr_column_settings->get_columns( ).
      loop at lt_column into ls_column.
    CASE ls_column-id.
    when 'AMOUNT'
    * aggregate field
            CALL METHOD LR_FUNCTION_SETTINGS->IF_SALV_WD_FIELD_SETTINGS~GET_FIELD
              EXPORTING
                FIELDNAME = 'AMOUNT'
              RECEIVING
                VALUE     = lr_field_amnt.
    * create aggregate rule as total
            CALL METHOD LR_FIELD_AMNT->IF_SALV_WD_AGGR~CREATE_AGGR_RULE
              EXPORTING
                AGGREGATION_TYPE = IF_SALV_WD_C_AGGREGATION=>AGGRTYPE_TOTAL
              RECEIVING
                VALUE            = lv_aggr_rule.
    endcase.
    Regards
    Manas DUa

  • Problem in developing webdynpro ABAP ?

    Hi all,
    I have a problem in execution of my first webdynpro ABAP application.
    I did my program based on the instructions given in the given link.
    http://www.octavia.de/fileadmin/octavia_files/content_bilder/Hauptnavigation/SAP_NetWeaver/WebDynpro/Web_Dynpro_Part_I.pdf
    In doing that program i didn't get any errors,
    but while executing its giving error that http:500 internal error.
    If any body know how to resolve this issue .
    Plz help me in this issue.
    Thanks

    Error when processing your request
    What has happened?
    The URL http://sapserver:8001/sap/bc/webdynpro/sap/zwd_hellosr was not called due to an error.
    Note
         The following error text was processed in the system DM0 : Die URL enthält keine vollständige Domainangabe (sapserver statt sapserver.).
         The error occurred on the application server sapserver_DM0_01 and in the work process 0 .
         The termination type was: RABAX_STATE
         The ABAP call stack was:
    Method: CHECK of program CX_FQDN=======================CP
    Method: LATE_CONSTRUCTOR of program CL_WDR_UCF====================CP
    Method: HANDLE_REQUEST of program CL_WDR_UCF====================CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP
    What can I do?
         If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system DM0 in transaction ST22.
         If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server sapserver_DM0_01 in transaction SM21.
         If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server sapserver_DM0_01 . In some situations, you may also need to analyze the trace files of other work processes.
         If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 800 -u: NEELIMAK -l: E -s: DM0 -i: sapserver_DM0_01 -w: 0 -d: 20101207 -t: 130320 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team

Maybe you are looking for

  • Unable to check in without dDocName even though IsAutoNumber=true

    I ran into a strange situation. In my 10g content server I have "Automatically assign a content ID on check in" set to true (verified this in config.cfg) I am able to check in through the Content Check in Form while leaving the Content ID blank. Howe

  • Unable to open maps in Photo Downloader

    Good afternoon, I'm using Adobe Bridge 4.0.5.11. When a camera is connected Adobe Bridge CS5 - Photo Downloader is opened. As one of the save options I can change the map. When I want to change the map, I'm not able to select any maps and have to "fo

  • Is it possible to get logs from a 3850 Cisco member switch in a stack?

    %STACKMGR-1-STACK_LINK_CHANGE: MEMBER: 4 stack-mgr:  Stack port 2 on switch 4 is down %STACKMGR-1-STACK_LINK_CHANGE: STANDBY:2 stack-mgr:  Stack port 1 on switch 2 is down  (OC-SWTCH) %STACKMGR-6-SWITCH_REMOVED: STANDBY:2 stack-mgr:  Switch 3 has bee

  • How to share videos to iTunes???

    What's the best workflow to share videos from iPhoto to iTunes? It seems QuickTime is the best way as it has the Share to iTunes button right in its toolbar. However, with iPhoto '11, it looks like I have to Reveal the file in Finder in order to open

  • Printer Share Migrations when SCCM DP is replaced with new name

    we are inprocess of replacing the remaining office servers which are SCCM 2012 SP1 DPs with replacement servers that are Svr 2012.  in the past when we did this for the 2003 server we were able to use printmig to create a script that the user only ha