WenDynpro练习出错

前几天好不容易安装完了SAP NW 7.01 ABAP TRIAL Version.今天在上面做一个WebDynpro的例子程序,开始都很顺利,就是到了最后IE浏览的时候出错了。
网页页面信息如下:
Service cannot be reached
What has happened?
URL http://sapnw:8000/sap/bc/webdynpro/sap/z_tutorial1 call was terminated because the corresponding service is not available.
Note
The termination occurred in system NSP with error code 403 and for the reason Forbidden.
The selected virtual host was 0 .
What can I do?
Please select a valid URL.
If you do not yet have a user ID, contact your system administrator.
ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:sapnw_NSP_00-v:0-s:403-r:Forbidden
HTTP 403 - Forbidden
Your SAP Internet Communication Framework Team
不知道怎么解决了,请大家帮忙!

谢谢上面的回答。我多刷新了几次。果然有反应了。不过显示的是一个logon画面,画面上有一些提示信息:
     No switch to HTTPS occurred, so it is not secure to send a password
     SSO logon not possible; logon tickets not activated on the server
     Choose "Logon" to continue A dialog box appears in which you can enter your user and password
     No switch to HTTPS occurred, so it is not secure to send a password
我点击logon按钮,弹出用户名和密码对话框,输入后页面发生迁移,如下:
Error when processing your request
What has happened?
The URL http://sapnw:8000/sap/bc/webdynpro/sap/z_tutorial1 was not called due to an error.
Note
The following error text was processed in the system NSP : Die URL enthält keine vollständige Domainangabe (sapnw statt sapnw.<domain>.<ext>).
The error occurred on the application server sapnw_NSP_00 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: STARTUP_CHECKS of program CL_WDR_CLIENT_ABSTRACT_HTTP===CP
      Method: HANDLE_REQUEST of program CL_WDR_CLIENT_ABSTRACT_HTTP===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 NSP 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 sapnw_NSP_00 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 sapnw_NSP_00 . 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: 001 -u: BCUSER -l: E -s: NSP -i: sapnw_NSP_00 -w: 0 -d: 20100723 -t: 104349 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION
HTTP 500 - Internal Server Error
Your SAP Internet Communication Framework Team
又出问题了,请大家继续帮忙!

Similar Messages

  • What is the path in the filesystem for the deployed Wendynpro application .

    What is the path in the filesystem for the deployed Wendynpro application in the WAB AS
    We have a different version of webdynpro application running in production and non production , what is the process for overwriting the deployed application from one enviorment to another.
    Please help..

    Hi,
    What is the path in the filesystem for the deployed Wendynpro application in the WAB AS
    If you search for your component under the /usr/<SID> folder
    We have a different version of webdynpro application running in production and non production , what is the process for overwriting the deployed application from one enviorment to another.
    If you have NWDI in place CTS would help in this, else you can deploy your application using sdm.
    in CE you can deploy the application from NWDS.
    Regards
    Ayyapparaj

  • How to set a default value in dropdown list in Wendynpro ABAP? Help!

    Hi Experts,
           I have Webdynpro for ABAP application that shows a DropdownwithKey UI element.
    1. I am able to populate the dropdown list. But by default the list is not showing any value. Only when I select a value from the list then it shows it.
    So how to set the default value to the first value in the list? Any code sample will be really helpfull.
    I have written the following code:
    method WDDOINIT .
      DATA:
        node_category TYPE REF TO if_wd_context_node_info.
      node_category = WD_CONTEXT->GET_NODE_INFO( ).
      node_category = node_category->GET_CHILD_NODE( 'CATEGORY' ).
      data:    LT_VALUESET type WDR_CONTEXT_ATTR_VALUE_LIST,
               L_VALUE type WDR_CONTEXT_ATTR_VALUE.
    L_VALUE-VALUE      = 'V1'.
    L_VALUE-TEXT    = 'yesterday'.
    INSERT L_VALUE into table LT_VALUESET.
    L_VALUE-VALUE      = 'V2'.
    L_VALUE-TEXT    = 'today'.
    INSERT L_VALUE into table LT_VALUESET.
    L_VALUE-VALUE      = 'V3'.
    L_VALUE-TEXT    = 'tomorrow'.
    INSERT L_VALUE into table LT_VALUESET.
    node_category->SET_ATTRIBUTE_VALUE_SET(
                 NAME = 'CAT_VALUE'
                 VALUE_SET = LT_VALUESET ).
    endmethod.
    Note that: I am using webdynpro for ABAP.
    Thanks
    Gopal

    I am not sure how it works in Web Dynpro for ABAP, but in Web Dynpro for Java to set default drop down value you will have to set the value for particular attribute (which is linked to the dropdown element)  in the context
    like
    wdContext.currentContext<nodeName>Element.set<FieldName>(<defalut value>)
    This generally done in Initialization method of the controller.

  • Popup window in Wendynpro for ABAP

    Hai,
    How to create popup window with some texts and close button.
    Once user click a table cell (link to action), the popup window shoud give information about the cell information.
    Please this is urgent.
    Thanks in advance,
    Tamil

    Hi,
    This can be achieved in the following manner,
    Firstly, As you want to have a pop up , you need to create a new window in the application. now as you wrote that you need some texts and a button. create a view having both the things, i.e create texts and a button on the view.
    Now as this view cant be displayed alone on screen, this view has to be embeded in the window you created for the popup.
    now the pop up creation is done and code the below on the link to action.
    data lo_window_manager type ref to if_wd_window_manager.
      data lo_api_component  type ref to if_wd_component.
      data lo_window         type ref to if_wd_window.
      data lo_view_controller type ref to if_wd_view_controller.
      data :  lt_text TYPE string_table,
              ls_text TYPE string.
    lo_api_component = wd_comp_controller->wd_get_api( ).
    lo_window_manager = lo_api_component->get_window_manager( ).
    lo_window = lo_window_manager->create_window(
    window_name =  write window name here please note all should be in caps
    title =  title here
    message_display_mode = if_wd_window=>co_msg_display_mode_selected
    close_button = abap_true
    button_kind = if_wd_window=>co_buttons_ok
    message_type = if_wd_window=>co_msg_type_none
    default_button = if_wd_window=>co_button_ok
    lo_window->open( ).
    Let me know in case of any issues!!
    Thanks and Regards,
    Shitanshu Sahai
    Kavita Rathore  Please provide the required code, I guess you implemented it in your program

  • Excel attachment using Wendynpro application gives error

    Hi All,
    We have implemented the WebDynpro application which uses the Excel attachment from local PC. This application can attach new Excel attachments & read the existing Excel attachments. 
    This functionality works fine in our Development Environment.
    But the same application gives the following error in our TEST / PRODUCTION environments when we open an Excel attachment.
    <b>'SAP_[1].XLS' cannot be accessed. The file may be read-only, or you may be trying to access a read-only location. Or, the server the document is stored on may not be responding.</b>
    We are not able to figure it out if it is a local problem / WebDynpro error / some SAP set-up for EXCEL in Visual Admin / IMG settings for Excel attachment.
    If any one knows about this, kindly reply.
    Thanks & regards
    Abhay Alatkar, DCX BASIS

    Hi,
    It could be problem in logical file settings .. and at the same time check OS level permissions..
    please check Tcode -- File
    Regards
    Ben

  • In wendynpro,  i need to delete unwanted columns in ALV..

    Hi experts,
       In Webdynpro, I have selected some fields in context node through dictionary structure and to display those fields in ALV . Im getting the values for corresponding fields which i have selected but im  also getting other fields of the database dictionary structure in ALV.. Can anyone help me to delete  other fileds in it..
    Thanks in advance..
    Edited by: sivaprasath sekar on May 28, 2009 11:22 AM

    Hi,
    Use following code to delete the column from ALV.
    Here we are using config. model of ALV to delete the column.
    DATA lo_interfacecontroller TYPE REF TO iwci_salv_wd_table .
    lo_interfacecontroller =   wd_this->wd_cpifc_alv( ).
      DATA lv_value TYPE REF TO cl_salv_wd_config_table.
      lv_value = lo_interfacecontroller->get_model(
    CALL METHOD lv_value->if_salv_wd_column_settings~delete_column
      EXPORTING
        id     = 'CARRID'
    Instead of carrid you can pass your cotext_attribute which needs to be deleted.
    Thanks,
    Rahul
    Edited by: Rahul Yadav on May 28, 2009 11:30 AM

  • Change Tracking method of Wendynpro

    Hi All,
    As we know that the change log works in MDM 7.1 also for qualified flat tables.
    We detected, that it works for changes with the Data Manager and Import Manager, but not for changes, which we do in our Web dynpros end.
    Is there a chance to adjust the coding of the Webdynpros so that we can track the changes from webdynpro end too ?
    Regards,
    Abhishek

    Hi Limbo35,
    Three months ago you shared your problem with the tracking speed bar on your iPhone being grayed out and frozen.  Mine is that way too.  How did you solve the issue?  Can anyone help me out?  (My corollary problem is that I can hardly get the "slide to unlock" arrow over to the right any more!)
    Thanks very much.

  • How to call method from  IF_SALV_WD_TABLE_SETTINGS in Wendynpro ABAP? Help!

    Hi Experts,
           I have Webdynpro for ABAP application that shows a ALV table using SALV_WD_TABLE.
    In the help doc I got the following snippet:
    "To define the selection type, use the methods of the interface class IF_SALV_WD_TABLE_SETTINGS (implementing class CL_SALV_WD_CONFIG_TABLE)."
    Selection Type Methods
    Set selection type
    SET_SELECTION_MODE
    Get selection type
    GET_SELECTION_MODE
    Can somebody tell me how to implement the above?
    I mean how to code the above so that I can make a call to the method SET_SELECTION_MODE?
    In other words how to use the above interface?
    Please provide some code snippet.
    Note that: I am using webdynpro for ABAP.
    Thanks
    Gopal
    Message was edited by: gopalkrishna baliga

    Hi GopalKrishna,
    In the WDDOINIT method of your view, use the following code:
    data: l_ref_cmp_usage type ref to if_wd_component_usage.
    l_ref_cmp_usage =   wd_This->wd_CpUse_Alv( ).
    if l_ref_cmp_usage->has_active_component( ) is initial.
      l_ref_cmp_usage->create_component( ).
    endif.
    DATA: l_ref_INTERFACECONTROLLER TYPE REF TO IWCI_SALV_WD_TABLE .
    l_ref_INTERFACECONTROLLER =   wd_This->wd_CpIfc_Alv( ).
      data:
        l_VALUE type ref to Cl_Salv_Wd_Config_Table.
      l_VALUE = l_ref_INTERFACECONTROLLER->Get_Model( ).
    l_value->if_salv_wd_table_settings~set_visible_row_count( '-1' ).
    Here I have used set_visible_row_count, you could use which ever method you desire.
    Hint: Use code wizard(Ctrl+F7)To understand better read the ALV tutorial:
    /people/sap.user72/blog/2006/01/09/wda--user-defined-functions-in-alv
    Regards,
    Srini.
    Regards,
    Srini.

  • Problem with portal theme for WD Application

    Hi Experts,
    We have enhanced our ECC with EHP4 and SP18 in our existing portal.And now i am getting some theme problem.
    I have few Wendynpro ABAP application in the portal which was coming with correct theme earlier bur after
    enhancement all the other application in the portal are coming with the proper theme except all the
    Webdynpro abap application.
    All the WDApplicatio are coming as blue same like its coming in the backend system.I tried with many option
    but i am not able to correct it since i have very little knowledge about the portal.
    Thanks,
    Satya

    The problem is probably due to the fact that ERP Enhp4 contains NetWeaver 7.0 Enhancement Package 1 in which SAP delivers the Lightspeed rendering and the new Signature theme SAP_TRADSHOW_PLUS.  The Portal at the 7.0 SP18 release level would not have the correct mimes for Tradeshow Plug or for Lightspeed. If the UR rendering of the backend is higher than that of the portal, it has to fallback to using the local stylesheet of the ABAP AS to protect that hte rendering is done correctly (see OSS Note 1267950 and 1033496).  You can try the option WDFORCEEXTERNALSTYLESHEET, but because of the drastic differences in the 7.01 and 7.0 rendering this will very likely lead to rendering errors (visual errors or more serious - JavaScript errors).

  • ABAP Webdynpro Development - Script Error when Accessing Visual Elements

    I am encountering a strange error at my client .  I can't use the Abap Webdynpro visual elements to build views .
    To reproduce the error :
    - T-code SE80
    - Open up any ABAP webdynpro component .
    - Open up one of the view  and go on Tab Layout .
    Normal Screen : You would see many WYSIWYG items ( buttons, radiobutton , text elements etcu2026. ) at the left side u2026 these elements are used to build the view .
    Here : No elements displayed and when we click on that area we get an error   . 
    Instead of the elements to get displayed .. lines are displayed and when you try to open up ( click ) the lines , an internet explorer script error stating the following occurs ( although the abap wendynpro is edited in SAP Gui ) :
    An Error has occured in the script on this page .
    Line : 1
    Char : 25
    Error : Object Required
    Code: 0
    URL : http://hdrerpdev05.bchydro.bc.ca:8100/sap/bc/wdvd/toolbar.html?_vdrespkey=4KE8FGJO3P88DO8K5XCEYHTEA&_vdframe=toolbar&usedynp=&usepat=&sap-client=100
    Anybody had had the same kind of error before ^^????
    Thanks and Best Regards !

    Hi,
    we are getting the some what related errors in SE80 -> Web Dynpro Layout
    An Error has occured in the script on this page .
    Line : 1
    Char : 1
    Error : Object Expected
    Code: 0
    URL : http://<FQDN>:8000/sap/bc/wdvd/painting.html?_vdrespkey=4KZ4LYLFQA2I7X53H3CRICKFC&_vdframe=painting&sap-client=230
    An Error has occured in the script on this page .
    Line : 110
    Char : 2
    Error : Could not complete the operation due to error 80020101
    Code: 0
    URL : http://<FQDN>:8000/sap/bc/wdvd?_vdrespkey=4KZ4LYLFQA2I7X53H3CRICKFC&_vdframe=no_add_ui_lib&sap-client=230
    Recently, we have upgraded our ERP system (SAP ECC 6.0 SPS17) with EHP4 SPS8. SAP_BASIS and SAP_ABA patch level same on 701_0008.
    FQDN is mantianed at icm/host_name_full parameter in system as well as in /etc/hosts file with associated system IP address.
    As suggested by  Ted Dinh,  we do not find any duplicate MIME files in our MIME Repository (SE80) and we cleared/invalidated  ICM cache many times in problem analysis.
    As suggested by  Thierno Diarra , in our affected system domain WDY_MD_UI_ELEMENT_CATEGORY is well maintained in value ranges.
    We have raised SAP OSS Message for the same, they told us to check dns server connectivity/settings with the affected system. we did the suggested DNS settings in affected system. But  still the same error message is occuring. They have suggested same sap notes like #979039 and #1009930 & #1483210 , but all the corrections/suggections/SICF service status as mentioned, are found OK in our system.
    Regards,
    Bhavik G. Shroff

  • How to process Line Selection on ALV Table in ABAP WebDynpro

    Hi there,
    I have a view with an ALV table whose context node retrieves its data from a Service Call for a method.
    The method provides certain data of a database table which the ALV displays.
    Now I would like to be able to select one row of that ALV table and after pressing a button or doubleclicking on the row or whatever a different view (as for me it is also ok on the same view) should appear to display the details of that selection.
    I only need to know how to retrieve the selected data.
    Or its index within the internal table.
    I am already looking for hours for a useful thread and actually there is one which obviously is about a similar issue apart from the multiple selection part: 
    How to process multiple row selection in ALV table in Wendynpro ABAP? Help!
    but i am afraid that i don't understand it. Or at least I misunderstand it since it does not work with me.
    The system example mentioned in the thread does not help me either because it somehow does not correspond to my needs, does it?
    It would be GREAT if somebody could help me with that. Please keep it simple for I am not an expert in webdynpro yet (obviously ^^) and also please explain in detail what I have to do with the context nodes since I am not sure whether the selection is stored in my already existing node or whether I need a special one for that.
    Thanks!!
    christina

    Hi Christina,
    If you just want to get one column data of the line that user clicked, use the Web Dynpro Code Wizard to Read Context of attibute you needed, then you will get code as follow:
    * Define data for read attribute
        node_alv TYPE REF TO if_wd_context_node,
        elem_alv TYPE REF TO if_wd_context_element,
        stru_alv TYPE if_view_display=>element_alv ,
        item_column_name  LIKE stru_alv-column_name.
    * navigate from <CONTEXT> to <ALV> via lead selection
      node_alv = wd_context->get_child_node( name = if_view_display=>wdctx_alv ).
    * get element via lead selection
      elem_alv = node_alv->get_element(  ).
    * get single attribute
      elem_alv->get_attribute(
        EXPORTING
          name =  `COLUMN_NAME'
        IMPORTING
          value = item_column_name ).
    The value of column_name is stored in item_column_name.
    If you need the index that the user clicked, try this:
    * Definition of field symbol for index
      FIELD-SYMBOLS : <fs_index> TYPE data.
    * Get the selected index
      ASSIGN r_param->index->* TO <fs_index>.
    The index of clicked line is stored in field symbol <fs_index>.
    Hope it will help.
    Best Regards,
    Stephanie

  • ABAP Webdynpro as callable object to connect MDM Server

    Hi All
    if we want create MDM workflows in portal thru GP then we need to create the callable object initially which will integrate the MDM system thru MDM Apis
    suppose if we choose the option of taking the ABAP webdynpro as callable object then what is the development efforts/Steps to involve for creating the callable objects.
    i hope that we can use the ABAP wendynpro thru MDM ABAP APIs where we can integrate MDM data in ABAP webdynpro application.
    can you please list out what is the Aims from enduser level  and development level.
    Please more details on this??
    Regards
    Suresh babu

    Hi All
    if we want create MDM workflows in portal thru GP then we need to create the callable object initially which will integrate the MDM system thru MDM Apis
    suppose if we choose the option of taking the ABAP webdynpro as callable object then what is the development efforts/Steps to involve for creating the callable objects.
    i hope that we can use the ABAP wendynpro thru MDM ABAP APIs where we can integrate MDM data in ABAP webdynpro application.
    can you please list out what is the Aims from enduser level  and development level.
    Please more details on this??
    Regards
    Suresh babu

  • Webdynpro abap cv

    Dear Experts,
    I am very new into Webdynpro abap.I want Webdynpro abap CV. Can you please help me some one...
    Previously i was worked on Wendynpro Java.
    Thanks&Regards
    Kalyan

    Hi,
    are you looking what to mention in the CV about WDA skills? I will suggest first you learn WDA as per below topics
    Web Dynpro component architecture
    Create and use Web Dynpro controllers
    Navigation
    Definition of the Web Dynpro user interface (UI)
    Input help and semantic help
    Component reuse
    Sending popups
    Configuration and personalization
    Changing context and UI at runtime
    Enhancements
    Integration the SAP List Viewer for Web Dynpro ABAP
    Portal integration
    then based on your expertise and applications developed on real scenarios, you can put the info in CV as most of us do it for ABAP.
    Thanks,
    Chandra

  • Question on differences in development of webdynpro in ce 71 to nw04s

    Hi All
    A webdynpro developed in NWDS 7.0 SP15 which runs on NW04S SP15 ,will this be able to run in CE 7.1 without any changes.Can I import the project file (of webdynpro developed in NWDS 7.0 sp15 )to CE7.1 SR5 and deploy it and run in CE7.1 without any changes.If not what are the changes needed to run it on CE71.
    Thanks,
    pkv

    There are changes in Netweaver 7.1
    1. Interface controller is abstract and component controller implements interface controller
    2  also there is addition on window controller implementing interfaceview which is also abstract
    when you import application from NW04S to NWDS CE 7.1 . Repair application first , then you have to migrate it using cheat sheet too . Right click on wendynpro component and select migrate , cheat sheet window will open and u can follow the instructuions there.
    Regards
    Kavita

  • Popup from the popup

    Hi Experts,
    I'mcreating a popup in a standard way from a normal View called 'MAIN':
    lr_popup = lr_window_manager->create_window(
        modal               = abap_true
        window_name         = 'WND_POPUPMAIN'
        title               = lv_text
        close_button        = abap_true
        button_kind         = if_wd_window=>co_buttons_yesno
        message_type        = if_wd_window=>CO_MSG_TYPE_NONE
        close_in_any_case   = abap_false
    lr_popup->subscribe_to_button_event(
                       button            = if_wd_window=>co_button_yes
                       button_text       = lv_text
                       action_name       = 'CPY'
                       action_view       = lr_view_controller
                       is_default_button = abap_true ).
    In the Action handler of the YES button (It is in the MAIN View),  I made some operations, then I'd like to close this popup then open a new one, which shows the errors  (if there are errors) in another popup.
      lr_nd_errors->bind_table( lt_errors ).
        lr_api_comp_controller = wd_comp_controller->wd_get_api( ).
        lr_window_manager = lr_api_comp_controller->get_window_manager( ).
        lr_popup = lr_window_manager->create_window(
          modal               = abap_true
          window_name         = 'WND_ERROR'
          title               = lv_text
          close_button        = abap_true
          button_kind         = if_wd_window=>CO_BUTTONS_CLOSE
          message_type        = if_wd_window=>CO_MSG_TYPE_ERROR
          close_in_any_case   = abap_true
    The problem is: that this second popup doesn't open. 
    My question is: IS this possible in WenDynpro? (open poopup from another one) If no then what do you think, how can I show the error table?
    Thanks
    N.

    It seems, WDA can't open a popup from a popup

Maybe you are looking for

  • How much to replace a broken screen

    How much to replace a broken screen

  • How to use a method in sequence diagram from a class diagram

    Hello, can someone tell me how to use the method from class diagram in sequence diagram? so far i only can add a classifier to the object lifeline but i still cannot add the method from the class... thx

  • Can any one please send me sample programs using java mapping..

    <b>Can any one please send me sample programs using java mapping with input and output?</b> please let me know how to get started with java mapping? Prerequisites for java mapping ? What are the jars need to be deployed for SAX,DOM.  And how to do it

  • Error On Starting POP3 Backend service

    I install Exchange server 2013 CAS and Mailbox on same server and try to start pop3 on it. i start pop3 service successfully but when i try to start pop3 backend service i recieve the following warning: "The Microsoft Exchange POP3 Backend service on

  • Cant install After Effects

    I downloaded a trial of After Effects CS3 and really never user it much. It expired and so without reading the readme file, I trashed it like most OS X applications. My boss has bought a legit version of CS3 and am trying to install it. The problem i