Not able to display the desired view if button is pressed in POPup window

Hi Experts,
I have developed a web dynpro application.In this i have created a pop up window which consists of three buttons YES , NO and CANCEL.
I have developed three event handlers in the view VIEW_POPUP which is acting as view of the pop_up window.  When i click on any of these buttons no event handler is getting triggered.
Please give your suggestion as where the problem is.

Hi Ravi,
I think u created a  view and embedded it in another window and calling that window.,
If u want to display a popup window with action buttons., jus use create_popup_to_confirm() method.
refer this code,.
* Data declarations for Pop up window
  data: lt_text type string_table,
        lo_window_manager type ref to if_wd_window_manager,
        lo_api_component type ref to if_wd_component,
        lo_window type ref to if_wd_window,       
        l_api type ref to if_wd_view_controller.
   msgtext = 'Do u want to continue. ?'
    append msgtext to lt_text.
      clear: tmp_from , tmp_to .
      l_api = wd_this->wd_get_api( ).
      lo_api_component = wd_comp_controller->wd_get_api( ) .
      lo_window_manager  = lo_api_component->get_window_manager( ).
      lo_window1 =
      lo_window_manager->create_popup_to_confirm(
             text = lt_text
             button_kind = if_wd_window=>co_buttons_okcancel
             message_type = if_wd_window=>co_msg_type_information   " this is info msg u can give error message here
             close_button = 'X'
             window_title = 'Confirmation message box'
*       lo_window->subscribe_to_button_event
      lo_window1->subscribe_to_button_event(
        button = if_wd_window=>co_button_ok
        action_name = 'SUBMIT_REQUEST'                     " Submitting Request. " u have to create SUBMIT_REQUEST Action
        button_text = 'Yes'                                             " And Place the code in that action which u want to execute when yes
        action_view = l_api
        is_default_button = abap_false
*       lo_window->subscribe_to_button_event
      lo_window1->subscribe_to_button_event(
        button = if_wd_window=>co_button_cancel
        action_name = 'CANCEL_REQUEST'                     " Calling Action On clicking NO. "u have to create CANCEL_REQUEST
        button_text = 'NO'                                              "Action
        action_view = l_api
        is_default_button = abap_true
      lo_window1->open( ).
reply if u need some more clarifications.,
Thanks & Regards
Kiran

Similar Messages

  • OAF page is not able to display the custom error messages

    Hi,
    I have extended a seeded CO and trying to throw few custom error messages.
    It was working fine, but suddenly it is not able to display the error messages(but checked that the error messages are still present in application) and saying "Message not found. Application: PER, Message Name: ...."
    Is there any profile option which enables the custom messages?
    Thanks,
    Ranita

    Hi,
    There is no profile to enable the Custom error Messages, u will use the diagnostistics for showing the messages in the custom page
    use the following syntax for writing a msg in Jdeveloper
    pageContext.writeDiagnostics(strClassName, "Initializing the vo....", OAWebBeanConstants.STATEMENT);
    and enable the following profile option to yes
    Fnd:Diagnostics
    Regards
    Chanu

  • I am not able to display the text conditionally

    i am not able to display the text conditionally

    Please check the below formula.
    i am not able to print all the below text,the text is printing only one line and some is missing.
    Please do the needful.
    @(If(("@Endrdesc1."=="EWWC006"),"12 It is hereby understood and agreed that any work in connection with the delivery or cartage of goods other than by hand, handcart, cycle or bicycle is expressly excluded from the indemnity granted under this policy 97 It is hereby understood and agreed that any work away from shop or studio is expressly excluded from the indemnity granted under this policy.",""))

  • Not able to display the Installation Base of once it unassigned from upper level Installation IBase.

    Hi All
    I am working on IBase scenario for my client, I am new to the IBase scenario. Here we are creating installation base for two to five levels of product.
    Once we create IBase for lower level then this IBase is inserted in upper level IBase. Like this we assign all levels based on product.In some cases we need to unassign any of IBase from its upper level IBase. When it is unassigned we are not able to display the IBase which unassigned. When it is unassigned from upper level how come system not able to display this IBase. If we speak functionally the part (IBase) which is unassigned should be valid to assign in any other upper level IBase in feature.
    The error I am getting for above is
    Serial number XXXXXXX for material XXXXXXX does not exist in any IBase
    Message no. IQ122
    Diagnosis
    Serial number BMF3000106 for material S24-D5022-C100-6 does not exist in any installed base on 31.03.2015 at 10:22:09.
    System Response
    The system cancels processing.
    Hi experts please suggest.
    Regards
    Kesava

    Hello Kesava
    Can you please explain in detail what exactly you are trying to do while assigning and unassigning Ibase.
    Regards
    Naresh

  • Not able to display the image on the popup.

    hi,
    my requirement is: i have command link on the form.which on clicked should display a popup and with in that popup a image should be shown. I have stored that image in the form of byte array.
    On clicking the link i am able to show the popup.But,not able to display the image on the popup.
    thanks in advance.
    Srikanth.V

    Hi,
    how do you access the image? Put yourself in our shoes and look at your question and then add the missing information. E.g. does the image show if loaded on a page itself and not a popup ?
    Frank

  • Not able to display the Portal Contents

    Hi
    I created new user and assigned only one role called "Content Administrator"
    When i loggned using that user then i am not able to see the contents under the browse tab.
    Please let me know what to do if i want get the contents under the browser tab;
    Thanks
    mmukesh

    Is your laptop's Internet explorer version is IE 7.0? If thats the case then it might be the issue. Portal doesnt work well with IE 7.0 and you get some problems like these a lot of times. You can correct this to include IE 7.0 also but that you have to configure via the Visual Admin. For now to confirm this - just try checking IE version - and if its 7.0 try installing IE 6.0 to see whether you are still getting the error.
    You can see note number 991449 to find out how you can include IE 7.0 also to your portal setting to eradicate this error. Well - if at all thats the cause. Please verify that before doing anything.
    Regards,
    Shubhadip
    Message was edited by:
            Shubhadip Ghosh

  • Not able to display the values in the input fields of the view

    Hi All.
    I am facing an unique issue.
    My custom element created in my custom node getting a null value
    from a Get Vendor Details RFC written in RFC.
    The values are getting populated in the custom element but not coming in the
    input field of the corresponding view.
    Then, I wrote this code
    wdContext.nodeCustom.setLeadSelection(1);
    and all the output came in the input field.
    Now, after a build it is not coming in the input fields of the view.
    All my custom nodes are Singleton and values are coming in the custom elements
    as I can print them by wdComponentApi.getMessageManager.reportSuccess(""+customnode.getField());
    All my nodes are Singleton.
    Please give your valuable inputs.
    Regards
    Kaushik Banerjee

    Hi
    Check the node property
    initializeLeadSelection     true
    if not make it true , I would suggest to make a value node of the same structure as in RFC after execuation of the RFC populate the value manually.Dont bind it directly to the UI element.
    BR
    Satish Kumar

  • Report 6i/Webdb -Not able to display the report in the browser - rep- 3002 error.

    Would someone tell what I missed, I have set up the following:
    1) a report using report builder on NT
    2) my database is in Unix
    3) my report server is started in NT
    4) I run webdb listener for the following code: http://myweb.com/cgi/rwcgi60.exe?server=repserver+report=myreport+userid=usid/pw/connect_string+destype=cache+desformat=html. Then, I receive this message:
    Error: The requested URL was not found, or cannot be served at this time.
    Oracle Reports Server CGI - Report Job has terminated with error.
    Reports Server Replies:
    REP-3002: Error initializing printer. Please make sure a printer is installed.
    Why is it thinking I want to use the printer whereas I want to display the report in the browser?. Any help would be appreciated.
    null

    It sounds like that your Web CGI did not configure right. To test if your CGI configuration is correct, type:
    http://hostname:port/cgi-bin/rwcgi60exe?
    If you get a help screen, then you should be able to bring up your report.
    Regards,
    Xiaoling

  • Not able to find the Appraisal View in HAP_START_PAGE_POWL_UI program

    Hey gurus,
    Can I change the Status Tab of Appraisal Screen which uses HAP_START_PAGE_POWL_UI program.  There is one link on this page with name Appraisal Document Name which opens a new window but client wants that it uses the same window and then come back to original screen.
    Does anyone gone through this requirement before..??
    Thanks

    Hi All,
                 This issue is resolved. I have done the following steps to make the Z assignment block to be available in the Web Ui....
    1.I have created a Z Component and i have created a view with Z filelds in this Z component.
    2.I have added this in the overview view of the component PR00OV.
    3.I have adde this to the Overview in the view set in Runtime repository of the PRIOOV component
    4.Now the vew is avialble in the configuration and i have added this to the displayed list.
    5.Once this is done it should be displayed in the WEBUi but its not displaying in the WebUi. To resolve this I have made an entry in the table CRMC_PRIL_UIU by giving the
                Object Type       -
    >S
                Object ID            -
    >Obj Name
                BSP Application -
    > Zcomponent (Which i have created)
                View                  -
    >Zview         (Which i have created)
    6.Once i have made an entry in the above mentioned table, My Z assignment block is displayed in the Web UI. With this my problem is solved........
    Regards,
    Lakshman.P

  • Not able to display the 18 cloumns inthe alv output

    Hi Everybody,
    I am developing one report to the display the output in alv for the 18months report.
    basically my requirement is when ever i execute the program based on the current month it should calculate the next 18months and fetch the data and display in the alv.
    for eg: if we are executing in the month of mar 2012 then in the output it should display from march 2012 to next year aug 2013 and in the column heading also it should display from March to next year August.
    i have written the code and able to fetch tshould change he data for the 18 months and when i am sending the data into the internal table from row wise to column wise for the months the data is getting overwritten from the next year march 2013 to august 2013 and i am unable to add the new column after 12 months completed and the field catlog heading also should change based on when we are executing.
    please find the below code which i have written and please let me know how and where i can correct the code so that the 18 columns are displayed from the month of the execution and the data according to it.
    final internal table:
    TYPES : BEGIN OF ty_output,
             matnr  TYPE   matnr,       "Material
             maktx  TYPE   maktx,       "Material Description
             mjahr  TYPE   mjahr,       "Material Document Year
             jan    TYPE   menge_d,     "January Sales Qty
             mjan   TYPE   meins,       "January Unit of Measure
             feb    TYPE   menge_d,     "Febuary Sales Qty
             mfeb   TYPE   meins,       "Febuary Unit of Measure
             mar    TYPE   menge_d,     "March Sales Qty
             mmar   TYPE   meins,       "March Unit of Measure
             apr    TYPE   menge_d,     "April Sales Qty
             mapr   TYPE   meins,       "April Unit of Measure
             may    TYPE   menge_d,     "May Sales Qty
             mmay   TYPE   meins,       "May Unit of Measure
             jun    TYPE   menge_d,     "June Sales Qty
             mjun   TYPE   meins,       "June Unit of Measure
             jul    TYPE   menge_d,     "July Sales Qty
             mjul   TYPE   meins,       "July Unit of Measure
             aug    TYPE   menge_d,     "August Sales Qty
             maug   TYPE   meins,       "August Unit of Measure
             sep    TYPE   menge_d,     "September Sales Qty
             msep   TYPE   meins,       "September Unit of Measure
             oct    TYPE   menge_d,     "October Sales Qty
             moct   TYPE   meins,       "October Unit of Measure
             nov    TYPE   menge_d,     "November Sales Qty
             mnov   TYPE   meins,       "November Unit of Measure
             dec    TYPE   menge_d,     "December Sales Qty
             mdec   TYPE   meins,       "December Unit of Measure
             month  TYPE   char2,       "MONTH
             menge  TYPE   menge_d,     "Quantity
             meins  TYPE   meins,
            END OF ty_output.
    code to pass the data in the internal table:
    *Getting the Data into GT_OUTPUT Table
      LOOP AT gt_output1 INTO wa_output1.
        READ TABLE gt_output WITH KEY matnr = wa_output1-matnr ASSIGNING <out>.
        IF sy-subrc NE 0.
          APPEND INITIAL LINE TO gt_output ASSIGNING <out>.
          <out>-matnr = wa_output1-matnr.
          <out>-mjahr = wa_output1-mjahr.
        ENDIF.
        READ TABLE GT_MAKT INTO WA_MAKT WITH KEY MATNR = WA_OUTPUT1-MATNR.
        <out>-maktx = wa_makt-maktx.
        READ TABLE gt_final INTO wa_mseg WITH KEY matnr = wa_output1-matnr.
        CASE wa_output1-month.
    *    case wa_output1-mjahr.
          WHEN '01'.
            <out>-jan = wa_output1-menge.
            <out>-mjan = wa_mseg-meins.
          WHEN '02'.
            <out>-feb = wa_output1-menge.
            <out>-mfeb = wa_mseg-meins.
          WHEN '03'.
            <out>-mar = wa_output1-menge.
            <out>-mmar = wa_mseg-meins.
          WHEN '04'.
            <out>-apr = wa_output1-menge.
            <out>-mapr = wa_mseg-meins.
          WHEN '05'.
            <out>-may = wa_output1-menge.
            <out>-mmay = wa_mseg-meins.
          WHEN '06'.
            <out>-jun = wa_output1-menge.
            <out>-mjun = wa_mseg-meins.
          WHEN '07'.
            <out>-jul = wa_output1-menge.
            <out>-mjul = wa_mseg-meins.
          WHEN '08'.
            <out>-aug = wa_output1-menge.
            <out>-maug = wa_mseg-meins.
          WHEN '09'.
            <out>-sep = wa_output1-menge.
            <out>-msep = wa_mseg-meins.
          WHEN '10'.
            <out>-oct = wa_output1-menge.
            <out>-moct = wa_mseg-meins.
          WHEN '11'.
            <out>-nov = wa_output1-menge.
            <out>-mnov = wa_mseg-meins.
          WHEN '12'.
            <out>-dec = wa_output1-menge.
            <out>-mdec = wa_mseg-meins.
        ENDCASE.
    *    ENDCASE.
      ENDLOOP.
    Fieldcatalog
    FORM fieldcatlog .
      REFRESH gi_fcat.
      CLEAR gr_fcat.
      gr_fcat-fieldname     = 'MATNR'.
      gr_fcat-tabname       = 'GT_OUTPUT'.
      gr_fcat-ref_fieldname = 'MATNR'.
      gr_fcat-ref_tabname   = 'MSEG'.
      gr_fcat-outputlen     = 18.
      APPEND gr_fcat TO gi_fcat.
      CLEAR gr_fcat.
      gr_fcat-fieldname     = 'MAKTX'.
      gr_fcat-tabname       = 'GT_OUTPUT'.
      gr_fcat-ref_fieldname = 'MAKTX'.
      gr_fcat-ref_tabname   = 'MAKT'.
      gr_fcat-outputlen     = 40.
      APPEND gr_fcat TO gi_fcat.
      CLEAR gr_fcat.
      gr_fcat-fieldname     = 'MJAHR'.
      gr_fcat-tabname       = 'GT_OUTPUT'.
      gr_fcat-seltext_l     = text-mjh.
      gr_fcat-seltext_m     = text-mjh.
      gr_fcat-seltext_s     = 'Mat Doc Yr'.
      gr_fcat-outputlen     = 40.
      APPEND gr_fcat TO gi_fcat.
      CLEAR gr_fcat.
      gr_fcat-fieldname     = 'JAN'.
      gr_fcat-tabname       = 'GT_OUTPUT'.
      gr_fcat-seltext_l     = text-jan.
      gr_fcat-seltext_m     = text-jan.
      gr_fcat-seltext_s     = text-jan.
      gr_fcat-outputlen     = 17.
      APPEND gr_fcat TO gi_fcat.
      CLEAR gr_fcat.
      gr_fcat-fieldname     = 'MJAN'.
      gr_fcat-tabname       = 'GT_OUTPUT'.
      gr_fcat-seltext_l     = text-mja.
      gr_fcat-seltext_m     = text-mja.
      gr_fcat-seltext_s     = text-mja.
      gr_fcat-outputlen     = 20.
      APPEND gr_fcat TO gi_fcat.
    so on ...
      CLEAR gr_fcat.
      gr_fcat-fieldname  = 'DEC'.
      gr_fcat-tabname    = 'GT_OUTPUT'.
      gr_fcat-seltext_l  = text-dec.
      gr_fcat-seltext_m  = text-dec.
      gr_fcat-seltext_s  = text-dec.
      gr_fcat-outputlen  = 18.
      APPEND gr_fcat TO gi_fcat.
      CLEAR gr_fcat.
      gr_fcat-fieldname  = 'MDEC'.
      gr_fcat-tabname    = 'GT_OUTPUT'.
      gr_fcat-seltext_l  = text-mde.
      gr_fcat-seltext_m  = text-mde.
      gr_fcat-seltext_s  = text-mde.
      gr_fcat-outputlen  = 20.
      APPEND gr_fcat TO gi_fcat.
    can anyone help me out and recity this
    thanks in advance.....
    Moderator message : Not enough re-search before posting, post only relevant portion of source code, discussion locked.
    Message was edited by: Vinod Kumar

    Hi meer,
    I saw your code , here in type declaration ty_out it's having only 12( jan to dec ) months you need to add 6 more months at type declaration and field catalog level also.
    Thats the reason why next year's data is overwritng the prev year data.
    I think Coloumn heading  (month names)  you need to determine dynamically in field catalog beacause 18 months name will depends on current month.
    Regards,
    Rajeev Goswami

  • Not able to display the values on the alv report.

    Hi all,
      loop at it_stpo.
        indx = sy-tabix.
        select single bdmng from resb into it_resb-bdmng
                        where matnr = it_stpo-idnrk
                        and xloek ne 'X'.
    it_stpo-bdmng = it_resb-bdmng.
    modify it_stpo index indx.
      endloop.
    in the above code, m fetchin the values of bdmng and populating it in the it_stpo.
    the values get populated in the internal table.
    But the problem is only the first value of all the entries gets populated.
    For ex:
    it_stpo-idnrk = C0201AA0800N ** under this components der r three entries***
    i want to display all three values of these entries.
    1.A0201AD6750N                          990
    2.A0201AJ0960N                           1,578
    3.A0201AJ1140N                           2,996
    but the value 990 gets repeated thrice for the above three entries. n the value 1598 n 2996 is not gettin displayed.
    lll, for all other entries. only the first entry value gets displayed for their respective components.
    suggest modification in my code so dat i cn display all the values.
    thanks in advance.
    regards,
    purva.

    Hi all,
      select bdmng from resb into corresponding fields of table it_stpo2
                for all entries in it_stpo
                 where matnr = it_stpo-idnrk
                 and xloek ne 'X'.
      loop at it_stpo2.
        move-corresponding it_stpo2 to it_stpo.
        append it_stpo.
      endloop.
    In the above code, m able to fetch the records in the table it_stpo2. but the data is not gettin populated in the final internal table it_stpo. Both the internal tables it_stpo & it_stpo2 are same.
    The data is gettin moved from it_stpo2 to it_stpo but only upto the header level. its not gettin appended in the table it_stpo even after using append stmt.
    Plz help me to resolve this issue. its urgent.
    Rgds,
    Purva

  • Not able to display the Node context attributes to table

    Hi Friends,
    Issue: Currently i am reading the Node parameters and assigning the parameters to the Context of the mainView.
    Then displaying the attributes into table here i am using a iterator to fetch the attributes.
    But its reading only one record to the table not all the attributes.
    Here i am attaching the code:
    Node is EvaluationDimensions and attributes are Dimension and Selected_values.
    Line: -
    public void wdDoInit()
       //@@begin wdDoInit()
    try
    IBONodeElement test = null;
    test = (IBONodeElement)wdThis.wdGetDefinedimensiongafController().wdGetContext().nodeEvaluationDimensions().currentEvaluationDimensionsElement().model();
    IBONode testNode = test.getBONode();
    Iterator it = testNode.iterator();
    IBONodeElement itElement = null;
    while(it.hasNext())
    itElement = (IBONodeElement)it.next();
    //wdContext.nodeEvaluationDimensions().createAndAddEvaluationDimensionsElement();
    wdContext.createAndAddEvaluationDimensionsElement();
    wdContext.currentEvaluationDimensionsElement().setDimension(itElement.getAttributeValue("KPIParameterDefinitionName").toString());
    wdContext.currentEvaluationDimensionsElement().setSelected_Values(itElement.getAttributeValue("ParameterSelectedValuesText").toString());
    } catch (RuntimeException e) {
    e.printStackTrace();
    wdThis.wdGetDefinedimensiongafController().wdGetAPI().getComponent().getMessageManager().reportSuccess(e.toString());
        //@@end
    Line: -
    Could you suggest me some alternatives to show all records into table??
    Thanks & Best Regards, Prabhu(9886855725)
    Edited by: Armin Reichert on Apr 24, 2008 12:57 PM

    Hi Prabhu
    IBONodeElement test = null;
    test = (IBONodeElement)wdThis.wdGetDefinedimensiongafController().wdGetContext().nodeEvaluationDimensions().currentEvaluationDimensionsElement().model();
    What is this model() .
    You remove the try catch method once and test it to trace the error.Why cant you use typed AccessAPI to fetch the values from the node element.Is your node have more elements test it.By getting the size of the node.
    That too you are setting values to only current context element .Not for other elements.Everytime you are setting the values to current context element,thats why you are getting only one element values at a time.Iterate properly and try to set the values for each element
    wdContext.currentEvaluationDimensionsElement().setDimension(itElement.getAttributeValue("KPIParameterDefinitionName").toString());
    See the above code every time you are setting to currentNode lement notforother elements.
    Regards
    kalyan

  • Not able to display the simple Node Text

    Hi All,
    I am creating a simple tree. Even though I pass the node-text  , I am not not to see the node-text in the screen.
    Nevertheless, when I try to debug and analyse, I am able to see the node-text in the node table that is formed.
    The simple error is annoying me.
    Any help would be highly appreciated...
    Thanks a lot!
    Best Regards,
    Vignesh Ravikumar

    Hi Prabhu
    IBONodeElement test = null;
    test = (IBONodeElement)wdThis.wdGetDefinedimensiongafController().wdGetContext().nodeEvaluationDimensions().currentEvaluationDimensionsElement().model();
    What is this model() .
    You remove the try catch method once and test it to trace the error.Why cant you use typed AccessAPI to fetch the values from the node element.Is your node have more elements test it.By getting the size of the node.
    That too you are setting values to only current context element .Not for other elements.Everytime you are setting the values to current context element,thats why you are getting only one element values at a time.Iterate properly and try to set the values for each element
    wdContext.currentEvaluationDimensionsElement().setDimension(itElement.getAttributeValue("KPIParameterDefinitionName").toString());
    See the above code every time you are setting to currentNode lement notforother elements.
    Regards
    kalyan

  • Not able to get the Check and send buttons.

    Hi
    I am working on HCM Process n Form, It has integration of Webdynpro, Adobe and Process Forms.
    We can Create and Modify the position in this applications, There is also option for Saving it as Draft and then Opening it and sending it.
    But now when we save it as Draft and try to open it opens the component which has adobe integrated to it but the buttons "Check and Send" and close are not appearing.
    There is an dynamic table populated in a popup and by clicking that link it opens the adobe form in a WDA component window.
    I am not able to figure it out which component it is and how it is done.
    By click of link an action is written which finally fires a plug, The details of this plug i cant find in Windows.
    The main component which opens the pop up is POBJ_BROWSER There is no used Components in this Component apart from ALV Table and SELECT OPTIONS
    and the final code which we can see after click of link is
    methods Fire_pobj_click_overview_Evt
    importing
    ATTRIBUTES type Pobjt_Level_Attribute
    BROWSER_CONTEXT type String
    COLUMN_NAME type String
    LEVEL_GUID type Pobj_Level_Guid ."#EC NEEDED
    If there is any one who have worked on this or any helpfull documents regd this Please let me know
    Thanks & Regards,
    Deepak.B

    Supposed to post in HCM Forum.

  • Test.jsp not able to display the output from the java code.

    when i try to invoke http://localhost/papz/test.jsp
    I dont see anything. The page is blank. And there are no error messages in any log files. When i click on view source in IE i get to see the entire source code, including the jave code.
    <html>
    <head>
    <title>Test</title>
    <body>
    <%
    out.println("Hello World");
    %>
    asdfasdfasdf
    </body>
    </html>
    i added in the asdfasdf to see whehter it will be printed or not... It does print that stuff out.
    when i try to invoke the login.jsp page, i get the dialog box "save this file to disk"
    Any clues whats going on...?
    I followed the instructions...over and over again... but it doesnt seem to help.
    win nt 4.0
    apache 1.3.12
    jserv 1.1.1
    Pls help. Thanks

    Hi,
    Have you solved your problem?
    I4m trying to do the same, but I installed portal 30, then portal to go, and when I try to run test.jsp I get the following error:
    Request URI:/papz/test.jsp
    Exception:
    java.lang.NoSuchMethodError: oracle.jsp.util.JspUtil: method
    stripTarget(Ljava/lang/String;C)Ljava/lang/String; not found
    Thanks
    Pablo Lopera
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by NewBie:
    when i try to invoke http://localhost/papz/test.jsp
    I dont see anything. The page is blank. And there are no error messages in any log files. When i click on view source in IE i get to see the entire source code, including the jave code.
    <html>
    <head>
    <title>Test</title>
    <body>
    <%
    out.println("Hello World");
    %>
    asdfasdfasdf
    </body>
    </html>
    i added in the asdfasdf to see whehter it will be printed or not... It does print that stuff out.
    when i try to invoke the login.jsp page, i get the dialog box "save this file to disk"
    Any clues whats going on...?
    I followed the instructions...over and over again... but it doesnt seem to help.
    win nt 4.0
    apache 1.3.12
    jserv 1.1.1
    Pls help. Thanks<HR></BLOCKQUOTE>
    null

Maybe you are looking for

  • How to connect my mac book pro to network printer Canon IR 2010f?

    I'm desperate to know how to connect my Mac book Pro to network printer Canon IR 2010f. This printer has an independent system, therefore, no need a PC to be on, in order to print. But this printer is a network printer. Help me please.

  • How to create popup Windows in WebDynpro

    I am learning WebDynpro and have developed a sample application where i ask the user to login. In case of incorrect login I want to display a popup window which shows an error message and has an ok button on it. On click of the OK button i want to cl

  • I can't use RealPlayer with Firefox version 5. I must have the previous version back to do my work. How can I get it?

    I depend on RealPlayer for many things - work that I can only open files I need with it. There isn't a version that now works with the newest version of Firefox. How can I get the previous version of Firefox back so I can use my computer to do my bus

  • Kind of OT: Adobe Reader for iOS

    This topic has come up from time to time so I thought I'd point out that Adobe has released a version of Reader for iOS. It's free in the iTunes store http://itunes.apple.com/us/app/adobe-reader/id469337564?mt=8 Bob

  • R12.1 upgrade from 11.5.10CU2 with 11g

    Hi hsawwan, I have some doubts about R12.1 upgrade process. 1. If i have 11.5.10.2 with 9.2.0.8 as database then can i upgrade to R12.1 using RapidWiz and during database upgrade screen, directly upgrade from 9.2.0.8 to 11.1.0.6 or 11.1.0.7 database?