Problems for displaying values

Hi,
Iam using struts and hibernate, am inserting values into database successfully. But am facing some problem for displaying values in VIEW page.. Am maintainig Session in action servlet..In jsp page only first row displayed numbertimes(depends on number rows in DB) ex i have 4 rows different values. But in View page only first row displayed 4 times. How can i displyed properly .plz help me its urgent?
in advance thanks?

Hi Amol,
in the iview property is the isolation method set to url or to embeded(it should be url)because this might cause the problems described here.
hope it helps,
Yoav

Similar Messages

  • Problem for displaying values

    Hi,
    Iam using struts and hibernate, am inserting values into database successfully. But am facing some problem for displaying values in VIEW page.. Am maintainig Session in action servlet..In jsp page only first row displayed numbertimes(depends on number rows in DB) ex i have 4 rows different values. But in View page only first row displayed 4 times. How can i displyed properly .plz help me its urgent?
    in advance thanks?

    Babu,
    This has been discussed in many old threads, try to find them. Also u can refer to article "Dependent Dynamic message choicelists ", at my blog
    http://www.mukx.blogspot.com/
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Problem for displaying oracle timestamp(6) or timestamp(9) on editor

    I am trying to display table contents on Data -> Edit. but the data on columns with timestamp(6) or timestamp(9) data type is not showing up correctly. It is showing up as '<error>'.
    Does anybody know any workaround or solution to this issue?
    Thanks.

    I created a simple test using following schema:
    CREATE TABLE ts_test (
    ts TIMESTAMP(9));
    INSERT INTO ts_test
    (ts)
    VALUES
    (timestamp'2009-08-08 09:00:00.123456789');
    The value DOES show up in editor. Did you format the value using timestamp function before inserting?
    Can you post your SQL statement for inserting values?
    BTW, even SELECT was OK for me, the updating seems broken - the SQL statement generated was wrong.
    I will log an internal bug and have this fixed in next release.
    For now, you may workaround by creating a SQL file and update using SQL statement.

  • A strange problem for Find Value Function

    Hi, Dear
    I have a strange problem for search Function, my SRM_SERVER is 550 and Package is SAPKIBKT11.
    SRM_PLUS is SAPKIBK011.
    When I use Find Value Function to find Cost Ctr, Such as:
    Account object values = * (it is possible), Search Result: 300 Entries. I have no find my foucs data(12000)
    But
    Account object values = 12000, Search Result: 1 Entries,(Maximum No. of Hits is 500) I can find it. It is very jocularity.....Faint.
    Please help me.
    Thanks a lot.

    This is due to security permissions.
    You can do one thing, edit C:\Jdk1.3(your java home)\jre\lib\security\java.policy and add the following line,
    permission java.net.SocketPermission "*.*.*.109:1521-" "connect,resolve"; or
    permission java.net.SocketPermission "shenpeng:1521-" "connect,resolve";
    Save the file and run the applet from the command prompt. If this is not working, copy the java.policy file to C:\jdk1.3 (your java home) and execute the applet.
    Hope this helps.
    PS:- It is not recommended to access the database from applets.

  • DropDownbyKey Problem with displayed values

    Hi all,
    I've got some strange behaviors with some dropDownbyKey. These DropDownbyKey are linked to enumerations.
    In our projects we use several DCs. 4 DCs have been developed separately.
    Since we refer in our master DCs to the 3 others DCs, dropdownbyKey of first DC displayed the key and not the description of the enumeration. It worked properly before.
    For the 3 others DCs there is no problem, description of the enumeration is displayed and not the key.
    This is really strange...moreover we made the following test: for a dropdown of master DC we refer to an enumeration included in one of the slave DC, this works properly. The description of the enumeration is displayed.
    May anobody helps me?
    Thanks a lot,
    Damien

    I also got this problem, one of my DC doesn't work with enumeration description.
    If you got something, please let me know.
    You can go to Regarding datatype, strange behavior
    for this problem.
    Thank you.
    William

  • MIGO problem for displaying field

    Dear friends,.
    I have following problem. When I create material document using MIGO I enter Line item text in "where" tab. I save it. But when I am trying to again view same document through MIGO I am not getting that field of line item text. How can I display it. Also this problem is for specific slocs only. If I make transaction with other sloc I could get this field in display.
    Thanks and Regards,
    APD

    When you got errors try to use SLG1 to check what happened.
    FYI.
    Line item texts can be used internally and externally. To be able to distinguish between these, you must begin texts for external use with "*". These texts can then be printed on all correspondence, dunning notices, payment advice notes, etc. The asterisk is removed when the text is printed.
    This function is only available in the FI component. It cannot be used in Materials Management.

  • Problems for display SAP Library on SAP Menu.

    Hi SAP Gurus, I have I problem with SAP Library:
    I take the following evaluation path:
    Menu SAP - Help - SAP Library
    and when a click on this option it appears the following msg:
    Error in SAP HTML-Help (SHH.EXE)
    Please install /update Microsoft HTML-Help. Using unsopported versions may cause problems in help display. For details please check the entries in the file SAPDOCCD.LOG in hw windows directory.
    Can Anybody help me with this issue?
    Best Regards to All.

    Hi,
    Same problem here since we upgraded to Sapgui 7.10.
    Any solution?
    Thanks,
    Jon

  • Problems for display services in the subarea personnel information

    Good Afternoon.
    I am configuring ESS for ECC 604.
    But the portal not is display the services of :
    Address, Bank, Family, Personal Data.
    Define Area Group Pages====>SAPDEFAULTESS_ERP2005
    Areas=================== >EMPLOYEE_PERSINFO_ERP2005
    Subareas================>EMPLOYEE_PERSINFO_SUBPERSINFO_2005
    Services=================>EMPLOYEE_PERSINFO_ADDRESS05
    And in the SM30==>(V_T7XSSSERSRVCGC)
    Ag.     Service                                                =   Resource
    PA      EMPLOYEE_PERSINFO_ADDRESS05 = Z_EMPLOYEE_ADDRESS_CO_SERVICE05.
    What is the reason for that the system not display this service in this Subaereas?
    Kind Regards

    Hi Diana. I not have created a service Z. I have created a resource Z. We are implementing ESS for Colombia. For this reason  i have created a resource that link the PCD for this new service.
    And i have link the resource wth the service and the service with the subarea and the subarea with the area.
    Kind Regards

  • Problem for displaying image in jsp

    I like to retrieve and display image from database in jsp file. Now, image has been retrieved and store in session. But it cannot be displayed in jsp. Who can help me? Thanks a lot!
    Codes like below:
    <%
    byte[] b = (byte[])session.getAttribute("sessionName");
    System.out.println(b.length); //the length can be printed at console successfully
    if(b != null) {
    response.setContentType("image/*");
    OutputStream toClient=response.getOutputStream();
    toClient.write(b);
    toClient.flush();
    toClient.close();
    %>

    JSP is designed to return text/html documents.
    As such it automatically calls getWriter() to return a character stream. (places it in the implicit variable "out"
    Seeing as you want to return bytes, instead of character data, the JSP technology is not applicable
    Calling getOutputStream after getWriter has been called results in an IllegalStateException
    So calling getOutputStream in a JSP will ALWAYS throw an exception.
    Cheers,
    evnafets

  • Reg: problem in displaying as key and text

    Hi Friends,
    I have a problem while displaying values for 0profit_ctr.
    In Development box report working fine. In production it giving problem.
    ISSUE:
    I want to display the 0Profit_ctr as key and text format. In development box it showing correct. I cross verified the properties of 0proft_ctr charcaterstic in report of  development and production box. In both it is defined as dispaly key and text.
    Also cross verified the infoobject (0Profit_ctr) details, In both Business Explorer general settings defined as Display as Key and Text.
    Everything is same in production and development box for this. Even though in production it showing as text and key. we need to display it as key and text.
    any suggestion on this.
    Regards
    Mrk.

    It could be that the infoObject has been disturbed, have you tried just re-activating the object in Production.
    Also check the following link :
    I am able to search only by text and not by Key in filter.

  • Clearing the displayed value for a SELECT-OPTION

    How do I clear the displayed value of a SELECT-OPTION? 
    I have 2 SELECT-OPTIONs on my screen (standard basic report program screen).  I use code like this to populate the drop-down boxes for each one. 
    =====
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_prgrp-low.
      PERFORM fill_prgrp_values.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_prctr-low.
      PERFORM fill_prctr_values.
    =====
    The value the user picks for the first SELECT-OPTION will affect what values I put in the drop-down list for the second SELECT-OPTION. 
    If a user enters a value for the second SELECT-OPTION, and then goes back and changes the value of the first SELECT-OPTION, then I want to do two things:
    1.  Create a new set of values for the drop-down list for the second SELECT-OPTION (no problem; working fine);
    2.  Clear the displayed value from the second SELECT-OPTION that the user entered previously.  That value became invalid when the user picked a new value for the first SELECT-OPTION. 
    How do I clear that second displayed value? 
    I have tried CLEAR and REFRESH for the second variable using the formats s_prctr, s_prctr[], and s_prctr-low.  They will erase the values of the internal table or part(s) of it, but the displayed value stays on the screen. 
    I need to clear out the displayed value so the user will either leave it blank or enter or select a new value. 
    I am using F4IF_INT_TABLE_VALUE_REQUEST to build the drop-down lists, and it works fine, but I do not see any function module to clear the displayed value off the screen. 
    Thanks for your help.

    Sorry, but calling DYNP_VALUES_UPDATE did not work.  This is how I coded it. 
    fld_reset_rcd-fieldname  = 'S_PRCTR'.
      fld_reset_rcd-stepl      = sy-stepl.
      CLEAR fld_reset_rcd-fieldvalue.      "  re-initialize s_prctr
      CLEAR fld_reset_rcd-fieldinp.        "  what goes in here?
      APPEND fld_reset_rcd TO fld_reset_tbl.
      CALL FUNCTION 'DYNP_VALUES_UPDATE'
        EXPORTING
          dyname = 'ZFI_GL_BALANCE_NGL'
          dynumb = '1000'
        TABLES
          dynpfields = fld_reset_tbl
    <Added code tags>
    I have discovered that CLEAR and REFRESH of s_prctr will clear it somewhat.  If I enter multiple values, ranges, etc., they will all be cleared, EXCEPT for the one single value that is displayed on the main screen.  It is not cleared and it remains if you push the button to display the pop-up to enter ranges, etc. 
    To devrath.sampat  --  Thanks for your example for building the drop-down list, but that is not the problem I am having.  I am already able to build it just fine. 
    To repeat my problem, if I: 
    1.  first enter / select a value for the first SELECT-OPTION s_prgrp
    2.  then enter / select a value for the second SELECT-OPTION s_prctr
    3.  And finally go back and select a new value of the first SELECT-OPTION s_prgrp from its drop-down list,
         when I do, the program needs to clear the value displayed on the main screen for the second SELECT-OPTION s_prctr (any additional values, ranges, etc., are cleared by CLEAR and REFRESH, if I go look; but not the value shown on the main screen).
    Edited by: Scott Crosby on Feb 14, 2012 4:20 PM
    Edited by: Suhas Saha on Feb 15, 2012 12:03 PM

  • Display values for logical columns with several physical sources

    Hi all,
    I'm enocuntering some strange behaviour with the values displayed for a column (when we want to add it a as a filter, and in the dialogue box select 'Show All' values).
    Basically the logical column is mapped against several physical columns as the base fact table is aggregated to different levels. Additionally, one column in the fact tables has an attribute value, and these vary between the aggregated and non-aggregated table. This is not a problem.
    In the production environment, when we display the all values in the filters prompt for this column we are seeing the values being taken from one fact table. Naturally this means that not all the values possible for this column are being shown (i.e. values from the aggregated fact tables are missing). Now in one of our test environment where those fact tabels have additional data loaded, the values are being taken from one of the other fact tables. Unfortunately it is not necessarily the fact table with less data.
    My questions are:
    a) What dictates which fact table the server will use when the query in Answers doesnt use any dimensions (i.e. we are selecting just this attribute and selecting all the possible values by which it can be filtered)?
    b) Is there a way of obtaining all the values from the differente physical columns? I.e. that the display values shows the values of that logical column across all the physical fact tables? Maybe we would need to model that attribute as a logical dimension just for that attribute? Im not really sure this would work, as at the physical level the join between the dimension and fact would still have to go to only one particular fact table.
    Any info or help is much appreciated.

    Hi,
    Aggregate tables exist at physical level and are created by ETL procedures. Although i am aware that the dimension come into play when the application needs to decide which source aggregate table to use, it is not an issue here as in our query we are not involving dimensions. We are selecting just this one columen, and then the filter option on this column, then in the dialogue box we select 'All Choices', only the values from one of the source tables is being shown.
    This is not a probelm within reports, i think it is a product limitation in that in that option to list all values a user can filter by, it is not possible to display all the values from the different fact tables to which that column is mapped.
    Has anyone else encountered this behaviour?

  • Performance point Filter error : " There was a problem preparing the WebPart for display"

    I’m going to create a performance point filter .I chose “Custom Table” type to select Project Name for my reports. I have some reports which have Project Name (ProjectUID as value) as parameter .So I’m going to create a filter based on Project Name (ProjectUID
    as value) to use for all report. these are my settings:
    Table: MSP_EpmProject_Userview
    Key :ProjectUID
    Parentkey: (none)
    Display Value: ProjectName
    Is default: (none)
    But when I add these web part to my page I see this error:
    “There was a problem preparing the WebPart for display.
    Column 'ProjectName' does not allow nulls.”
    I don’t know what should I do
    is there any other wy to do this?

    Hi, 
    I have a similar issue, did you manage to find a solution?

  • Error in parsing value for display

    Hi
    I'll try to access a website http://sinaica2.ine.gob.mx/magic/rmart but Firefox 8.X and 9.X dont show me a frame inside the middle of the new window, but any other browser also an older version of Firefox does well.
    Firebug reports me a warning "Expected end of value but found ':'. Error in parsing value for display. Declaration dropped.
    Any clue for solving this issue?
    kind regards,

    Yes, I can confirm that it works with Firefox 7 and not with later Firefox versions including the current Nightly build.
    That CSS error isn't related to that problem AFAICT.<br />
    Looks that Firefox doesn't run the JavaScript in that frame to replace it with that content frame.
    *http://sinaica2.ine.gob.mx/magic/rmart/null/_framework
    *http://sinaica2.ine.gob.mx/GJresources/gjframework.js
    *http://sinaica2.ine.gob.mx/magic/rmart/0a6ccd1903653aa55f092fa48e1ec6ce/main

  • LOV problem ... returning display-value and not key-value

    Hi. Sorry for my broken English.
    I have a problem with pop-up dynamic LOV.
    I have a simple form called Form A containing item_code and item_name. Users can create, update and delete new item by using this form.
    Another form called Form B has a field called item_code, and the item_code field is a dynamic pop-up LOV field and a query for this LOV is like this;
    select item_name d, item_code r from item_master order by item_code;
    When i create the new record in Form B and use LOV to find and get the item code, LOV works fine
    and it returns key-value to the item_code field.
    But when i try to update the record (I have a link from report page to Form B), value of the item_code field is not the key-value from LOV, but is a
    display-value from LOV.
    Any ideas?
    Thank you.

    Well, from what you have described, this is working exactly as it should. Form B's LOV is intended to retrun the key value but should show the dispaly value. When you go from the report to the form, the key value is being passed (or should be depending on your code) and Form B ought to show the display value.
    So, in short, I would say that Apex is doing what it should. Unless I misunderstand something.
    Bruce

Maybe you are looking for

  • Help with Re-Installing Itunes on Windows XP

    Somehow my Itunes was removed from my computer. I tried re-installing it by going on apple.com and downloading it. It starts to guide me through the re-installation process but a series of error messages come up disrupting the installation process: "

  • Reformating external hard drive for use with new MacBook Pro

    I'm trying to figure out how to use an existing external hard drive (formatted for a Powermac G4) with my new MacBook Pro. I understand that the file formats are different and that I need to erase the hard drive and reformat it with a GUID partition,

  • Combine putaway for goods reciept in WM

    For material A, the LE palletization QTY is 300 in material material data/WM2 view,for material B,the LE palletization QTY is 200 in material material data/WM2 view. There are one delivery No. like below delivery No.   delivery item     material    Q

  • Copy table from one database to another database

    Hi, I am new to SQL and I have a question on copying a table. QUE: copy one table with huge data(around 60millions of rows) from one database to another database(have to create a new table) in the same server. 

  • Help with external hdd

    I just got a mac mini(intel) 2.0 and i want to add an external hdd. i also want to load windows xp. is there a way to load windows on the external and if so what is the best drive to use.