Is this a bug? createdBy populated with value "1"

I have a field in entity object mapped as historical column "createdBy". once I create a new record, this field populated as login user name. -- this works fine.
However, after I specify this field "refresh after inserted/updated". this field populated with value "1" automatically once new record created. -- Is this a bug?
BTW, the historical column "modifiedBy" does not have this problem.
Thanks

at javax.swing.JInternalFrame.setMaximum(JInternalFrame.java:890)
at TestInterface.initComponents(TestInterface.java:48)What you posted there cannot be the entire contents of the method. According to the stack trace, your initComponents method, at line 48, calls the setMaximum method of some JInternalFrame object. However, the problem remains: Why a NullPointerException? It's possible there is a bug in the JVM, but that theory doesn't get your problem solved if it's true. And it's more likely (MUCH more likely for most of us) that it's a bug in your program. But what could that be? I looked at the API documentation for JInternalFrame.setMaximum and noticed this:
"A maximized frame is resized to fully fit the JDesktopPane area associated with the JInternalFrame."
I don't know how you would "associate" a JDesktopPane with a JInternalFrame, but possibly if you failed to do that, then references to the JDesktopPane would fail with a NullPointerException.

Similar Messages

  • Display bugs for wmode with value "opaque"

    We are on an flex project, as the requirement we need build a context menu for right click of mouse, so we use "opaque" as the value of "wmode", but we found that the display of contains (Canvas, HBox) will overlap if there are a scrollbar (only in IE).
    It looks like:
    It should like this in normal (Captured in FF3):

    Hi there,
    And idea would be to either post some code so we can take a look at it or try to reproduce the problem in a smaller example and post it ( so we can take  a look at it ). I'm not sure if this has something to do with transparency or with component positioning. It is true that IE can be quite a pain the butt, still, I don't remember running into this problem before.
    Some code or something would definitely help ( at least, try to somehow describe the structure of the project, did you change some additional settings or something? ).
    With best regards,
    Barna Biro

  • How do I store the values in the @D array in the below mentioned VI? Only the last row in the Array is populated with values from the image.

    Hello Guys,
    I am trying to build a sinogram from 180 projection images and I am not able to store the summed values into the array as it is moving the values and then populating all the rows except for the last with ZERO.
    Thanks in advance.
    Attachments:
    sinogram.vi ‏53 KB

    Your loop runs only three times, so all you can possibly populate is 3 rows.
    Typically, you would initialize a shift register with the initialized array, then use replace array subset, feeding the modified array back into the shift register. However, in this case you could just autoindex the 1D array at the output tunnel to build the resulting 2D array.
    Sorry, I am not familiar with sinograms. Do you have a link describing the algorithm?
    LabVIEW Champion . Do more with less code and in less time .

  • Is this a bug? master rowid value lost when saving on a master/detail form

    master/detail forms seem to lose the rowid after saving, if the unique identifier is set to ROWID
    to reproduce the problem:
    1) create a master detail form on DEPT/EMP
    -- choose 'Managed by Database (ROWID)' on the 'Define Primary Key' page.
    -- do not include master row navigation (but i don't think this matters)
    -- choose 'Edit detail as tabular form on same page' on the 'Choose Layout' page
    -- include the master report
    2) on the master/detail page, change the conditional branch that returns to the master report page
    -- the normal condition for this branch is request in SAVE,DELETE,CREATE
    -- change it to request in DELETE,CREATE
    3) run the form and save a change
    -- saves fine, session shows the ROWID value is still set
    4) save a second change
    -- change does not save, form reverts to Create mode
    this problem does not occur when using the primary key columns instead of rowid
    see http://apex.oracle.com/pls/apex/f?p=60813:7 for the ROWID version
    see http://apex.oracle.com/pls/apex/f?p=60813:11 for the PK column version

    Hi Saverio,
    Bug *13563808* has been logged to track the reported issue, and a fix will be made available in a future release. Just to clarify, this issue is only arising when the APEX-generated Master-Detail is modified post-generation, so for users who have not modified their Master-Details using ROWID to manage their DML processes, they should not experience this issue.
    In relation to my workaround, my suggestion works in my test environment, which I verified before posting the initial suggestion. Please note that the 'Reset Page' process is, by default, conditional on the "Delete" button being pressed. If you have made further modifications to your Master-Detail page, then this might explain why you're seeing different behaviour to me. You might using the "Debug" option on the Developer Toolbar useful. Viewing the debug information should help you to decipher what's going on/wrong on your page. If you still can't resolve the issue, then the safest option might be to revert the page back to it's original state, meaning the user navigates back to the Report page upon submitting changes to the Master-Detail Form page.
    Regards,
    Hilary

  • Error while populating drop down list with values from a database

    Hi all,
    I have a JSP page with a drop down list that is to be populated with values from a database.
    This is the code in my JSP file:
         <!-- Form for picking the floor -->
             <!-- Get the available floors -->
             <% ArrayList<Integer> floornumbers = dataManager.getAllFloorNumbers();
                Iterator<Integer> iterator = floornumbers.iterator(); %>
             <!-- Create the form for users to select the floor -->
             <form id="floorselectionform">
                  <input type="hidden" name="action" value="floorselected"/> <!-- Guides the servlet to redirect to the appropriate page -->
                  Select floor | <select name="floorselector" id="floorselector">
                       <% while (iterator.hasNext()) { %>
                       <option value="<%=iterator.next().intValue()%>"> <%=iterator.next().intValue()%> </option>
                       <% } %>
                  </select>
                  <input type="submit" value="Go!"/>
             </form>   The DataManager.java class simply forwards this to its respective Peer class, which has the code shown below:
          package seatplanner.model;
        import java.sql.Connection;
        import java.sql.ResultSet;
        import java.sql.SQLException;
        import java.sql.Statement;
        import java.util.ArrayList;
        /* This class handles all floor operations */
         public class FloorPeer
         /* This method returns all the floor numbers */
         public static ArrayList<Integer> getAllFloorNumbers(DataManager dataManager) {
            ArrayList<Integer> floornumbers = new ArrayList<Integer>();
            Connection connection = dataManager.getConnection();
            if (connection != null) {
              try {
                Statement s = connection.createStatement();
                String sql = "select ID from floor order by ID asc";
                try {
                  ResultSet rs = s.executeQuery(sql);
                  try {
                    while (rs.next()) {
                      floornumbers.add(rs.getInt(1));
                  finally { rs.close(); }
                finally {s.close(); }
              catch (SQLException e) {
                System.out.println("Could not get floor numbers: " + e.getMessage());
              finally {
                dataManager.putConnection(connection);
            return floornumbers;
         }  The classes compile properly, but when I load this page up in Tomcat it just freezes and does not load the form. I tested the DB connection and it works fine.
    What am I doing wrong in the JSP code?
    Thanks for the help in advance.
    UPDATE: I commented out the form, and added <%=floornumbers.size()%> right above the commented code to check if the ArrayList is indeed getting populated with the values from the database (the values are of type integer in the database). The page still freezes like before. I'm puzzled now :confused: .

    Wrong usage of Iterator.
    <!-- Form for picking the floor -->
             <!-- Get the available floors -->
             <% ArrayList<Integer> floornumbers = dataManager.getAllFloorNumbers();
                Iterator<Integer> iterator = floornumbers.iterator(); %>
             <!-- Create the form for users to select the floor -->
             <form id="floorselectionform">
                  <input type="hidden" name="action" value="floorselected"/> <!-- Guides the servlet to redirect to the appropriate page -->
                  Select floor | <select name="floorselector" id="floorselector">
                       <% while (iterator.hasNext()) {
                                    Integer inte = iterator.next();
                            %>
                       <option value="<%=inte.intValue()%>"><%=inte.intValue()%></option>
                       <% } %>
                  </select>
                  <input type="submit" value="Go!"/>
             </form>or make use of enhanced loop as you are already using J2SE 5.0+ for avoiding confusions.
    <!-- Form for picking the floor -->
             <!-- Get the available floors -->
             <% ArrayList<Integer> floornumbers = dataManager.getAllFloorNumbers(); %>
             <!-- Create the form for users to select the floor -->
             <form id="floorselectionform">
                  <input type="hidden" name="action" value="floorselected"/> <!-- Guides the servlet to redirect to the appropriate page -->
                  Select floor | <select name="floorselector" id="floorselector">
                       <% for(Integer inte:floornumbers) {%>
                       <option value="<%=inte.intValue()%>"><%=inte.intValue()%></option>
                       <%}%>
                  </select>
                  <input type="submit" value="Go!"/>
             </form>and a lot better thing would be making usage of basic Taglib provided with JSTL spec or struts spec which make life easier and simple.
    something like usage of <c:forEach/> or <logic:iterate/> would be lot better without writing a single scriptlet code.
    Hope that might help :)
    REGARDS,
    RaHuL

  • HIGHEST DEGREE is populated with no source values in HR Analytics for PSFT

    Hi Gurus.
    I'm implementing BI Apps 7.9.6.3 with Peoplesoft 9.0 as source. Reviewing some reports in HR Analytics I found that the dimension called "Employee Education and Languages.Employee Highest Education Degree Description" is being populated with values that not belong to the source system.
    I found the following query in mplt_SIL_EmployeeDemographicAggregation_Load.LKP_CODES_HIGHEST_DEGREE:
    SELECT
    W_CODE_D.MASTER_CODE as MASTER_CODE,
    W_CODE_D.MASTER_VALUE as MASTER_VALUE,
    W_CODE_D.SOURCE_CODE as SOURCE_CODE,
    W_CODE_D.DATASOURCE_NUM_ID as DATASOURCE_NUM_ID
    FROM
    W_CODE_D
    WHERE
    W_CODE_D.CATEGORY = 'HIGHEST_DEGREE' AND
    W_CODE_D.LANGUAGE_CODE = 'E';
    When this query is execute it returned values like these in the W_CODE_D.MASTER_VALUE field:
    No Formal Education, Elementary Scholl Completed, Some High School, High School Graduate, Terminal Occupation Pgm DNC, Terminal Occupation Pgm Cmp,
    Some College - Less than 1 Yr, One Year College, Two Years College, Associate Degree, Three Years College, Four Years College, Bachelor Degree, Post Bachelors
    First Professional, Post-First Professional, Masters Degree, Post Masters, Sixth Year Degree, Post Sxth Year, Doctorate Degree, Post Doctorate, Not Indicated, Less Than HS Graduate
    HS Graduate or Equivalent, Some College, Technical School, 2-Year College Degree, Bachelor's Level Degree, Some Graduate School, Master's Level Degree, Doctorate (Academic)
    Doctorate (Professional), Post-Doctorate
    The customer said that those values are not form his Peoplesoft source system.
    I tried to follow the mapping of W_CODE_D but it is related with a lot of task.
    Somebody could tell me where those values came from? is there a harcode or csv file?
    Can I configure those values? -- I do not find anything about that for PSFT in the Configuration guide--
    Thanks in Advance

    Thanks for your quick response Ahsan , but the part of the guide that you mentioned is for eBS source. In my case the source is Peoplesoft and can't find a similar configuration.
    Thanks again.

  • Grid Value in Delivery Schedule isn't populating with BAPI_PO_CREATE1

    Hi Gurus, hope you are doing well.
    I have a problem on my end.
    I am trying to create a Purchase Order using BAPI_PO_CREATE1. The special thing here is that I am using AFS Data.
    Everything is working fine, but the problem is that in Delivery Schedule tab in ME23N, there is a field called Grid Value. This field is not populating with the value that I specified into the ABAP code.
    Does any of you guys had this problem before?, Could you help me to solve it?
    Hope you gays can help me.
    Regards
    Jesus Martinez
    Mexico

    This is the ABAP Code that I am using for testing:
    REPORT  zme51n.
    DATA : t_return LIKE bapiret2 OCCURS 0 WITH HEADER LINE .
    DATA: it_po_header LIKE bapimepoheader OCCURS 0 WITH HEADER LINE,
          it_po_headerx LIKE bapimepoheaderx OCCURS 0 WITH HEADER LINE,
          it_po_items LIKE bapimepoitem OCCURS 0 WITH HEADER LINE,
          it_po_itemsx LIKE bapimepoitemx OCCURS 0 WITH HEADER LINE,
          it_po_item_schedules LIKE bapimeposchedule OCCURS 0 WITH HEADER LINE,
          it_po_item_schedulesx LIKE bapimeposchedulx OCCURS 0 WITH HEADER LINE,
          it_afs_po_items LIKE /afs/bapimepoitem OCCURS 0 WITH HEADER LINE,
          it_afs_po_itemsx LIKE /afs/bapimepoitemx OCCURS 0 WITH HEADER LINE,
          it_afs_po_item_schedules LIKE /afs/bapimeposchedule OCCURS 0 WITH HEADER LINE,
          it_afs_po_item_schedulesx LIKE /afs/bapimeposchedulx OCCURS 0 WITH HEADER LINE.
    CLEAR it_po_header.
    it_po_header-doc_type = 'ZNB'.
    it_po_header-vendor = '0000001093'.
    it_po_header-doc_date = '20110221'.
    it_po_header-purch_org = '0201'.
    it_po_header-pur_group = '010'.
    it_po_header-comp_code = '0020'.
    it_po_header-suppl_plnt = ''.
    APPEND it_po_header.
    CLEAR it_po_headerx.
    it_po_headerx-doc_type = 'X'.
    it_po_headerx-vendor = 'X'.
    it_po_headerx-doc_date = 'X'.
    it_po_headerx-purch_org = 'X'.
    it_po_headerx-pur_group = 'X'.
    it_po_headerx-comp_code = 'X'.
    it_po_headerx-suppl_plnt = 'X'.
    APPEND it_po_headerx.
    CLEAR it_po_items.
    it_po_items-po_item = 10.
    it_po_items-material = '000000109206000052'.
    it_po_items-net_price = '212'.
    it_po_items-plant = '0220'.
    it_po_items-stge_loc = '0201'.
    it_po_items-trackingno = ''.
    it_po_items-item_cat = ''.
    it_po_items-preq_name =  'JMARTINEZ'.
    APPEND it_po_items.
    CLEAR it_po_itemsx.
    it_po_itemsx-po_item = 10.
    it_po_itemsx-material = 'X'.
    it_po_itemsx-net_price = 'X'.
    it_po_itemsx-plant = 'X'.
    it_po_itemsx-stge_loc = 'X'.
    it_po_itemsx-trackingno = 'X'.
    it_po_itemsx-item_cat = 'X'.
    it_po_itemsx-preq_name =  'X'.
    APPEND it_po_itemsx.
    CLEAR it_po_item_schedules.
    it_po_item_schedules-po_item = 10.
    it_po_item_schedules-sched_line = 1.
    it_po_item_schedules-del_datcat_ext = '1'.
    it_po_item_schedules-delivery_date = '20110221'.
    it_po_item_schedules-quantity = '636'.
    APPEND it_po_item_schedules.
    CLEAR it_po_item_schedulesx.
    it_po_item_schedulesx-po_item = 10.
    it_po_item_schedulesx-sched_line = 1.
    it_po_item_schedulesx-del_datcat_ext = 'X'.
    it_po_item_schedulesx-delivery_date = 'X'.
    it_po_item_schedulesx-quantity = 'X'.
    APPEND it_po_item_schedulesx.
    CLEAR it_afs_po_items.
    it_afs_po_items-po_item = 10.
    it_afs_po_items-afs_flag = 'X'.
    APPEND it_afs_po_items.
    CLEAR it_afs_po_itemsx.
    it_afs_po_itemsx-po_item = 10.
    it_afs_po_itemsx-po_itemx = 'X'.
    APPEND it_afs_po_itemsx.
    CLEAR it_afs_po_item_schedules.
    it_afs_po_item_schedules-po_item = 10.
    it_afs_po_item_schedules-sched_line = 1.
    it_afs_po_item_schedules-sch_size = '00W9'.
    it_afs_po_item_schedules-ordered_qty = '636'.
    it_afs_po_item_schedules-quantity_s = '636'.
    APPEND it_afs_po_item_schedules.
    CLEAR it_afs_po_item_schedulesx.
    it_afs_po_item_schedulesx-po_item = 10.
    it_afs_po_item_schedulesx-sched_line = 1.
    it_afs_po_item_schedulesx-sch_size = 'X'.
    it_afs_po_item_schedulesx-po_itemx = 'X'.
    it_afs_po_item_schedulesx-sched_linex = 'X'.
    it_afs_po_item_schedulesx-quantity_s = 'X'.
    APPEND it_afs_po_item_schedulesx.
    CALL FUNCTION 'BAPI_PO_CREATE1'
      EXPORTING
        poheader                     = it_po_header
        poheaderx                    = it_po_headerx
    TABLES
       return                       = t_return
       poitem                       = it_po_items
       poitemx                      = it_po_itemsx
       poschedule                   = it_po_item_schedules
       poschedulex                  = it_po_item_schedulesx
      POCONDHEADER                 =
      POCONDHEADERX                =
      POCOND                       =
      POCONDX                      =
       afs_poitem                   = it_afs_po_items
       afs_poitemx                  = it_afs_po_itemsx
       afs_poschedule               = it_afs_po_item_schedules
       afs_poschedulex              = it_afs_po_item_schedulesx
      AFS_POCOND                   =
      AFS_POCONDX                  =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        wait = 'X'.
    LOOP AT t_return.
      WRITE t_return-message.
    ENDLOOP.

  • Set a default value for a radio button populated with a List of value

    Hi,
    I am using jdeveloper 11.1.1.3.0. I need to set a default value for a radio button populated with a List of value(Yes/No). Here's the selectonechoice code.
    <af:selectOneRadio value="#{bindings.Code.inputValue}"
    label="#{bindings.Code.label}"
    required="#{bindings.Code.hints.mandatory}"
    shortDesc="#{bindings.Code.hints.tooltip}"
    id="sor1" autoSubmit="true"
    valuePassThru="true" layout="horizontal">
    <f:selectItems value="#{bindings.Code.items}" id="si1"/>
    </af:selectOneRadio>
    I want to have the selectonechoice set to No by default. In the previous versions, I set the default value in the base attribute VO. But it is not working in the new version.
    Thanks

    Hi,
    this should work in JDeveloper 11.1.1.3 the same as in 11.1.1.2. If it doesn't then it is better to file a bug than to work around it
    Frank

  • Is this a bug? Resizing content box problems with opacity.

    I was wondering if this is a bug? I've been trying to get a box set behind a text box to resize depending on the amount of content that's within a textbox above it. It works fine when the box underneath the text box is set to 100% opacity. However when I adjust the box below to less than 100% opacity the box stops resizing with the text box. My questions are is this a bug or intended and if it is a bug is there a work-around or will it be fixed soon?

    Hello,
    Thank you for bringing this up. We were able to reproduce the issue and it has been logged as a Bug.
    It seems to be an issue when opacity is reduced from the toolbar at the top.
    However, as a workaround, I would like to suggest you to use the opacity option under the Fill Panel.
    For this you need to select the rectangle in the background and then click on Fill Panel which comes up on the right hand side. And you can change the value of opacity from there.
    Please have a look at the screenshot below which might help :
    When the value of opacity is changed from this Fill Panel, the property of rectangle to resize with text is kept.
    We have logged a bug for the issue and hopefully it will be fixed in future releases of Adobe Muse.
    Apologies for the inconvenience.
    Regards,
    Sachin

  • [svn] 3246: Fix fasttrack bug SDK-16910 - Simple List populated with strings throws RTE .

    Revision: 3246
    Author: [email protected]
    Date: 2008-09-17 15:31:25 -0700 (Wed, 17 Sep 2008)
    Log Message:
    Fix fasttrack bug SDK-16910 - Simple List populated with strings throws RTE. This is fallout from the Group/DataGroup split. DefaultItemRenderer now uses a TextBox instead of a Group to show the list data.
    QE: Any List tests that depended on the default item renderer to support anything other than text must be updated.
    Bugs: SDK-16910
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16910
    http://bugs.adobe.com/jira/browse/SDK-16910
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/skin/DefaultItemRenderer.mxml

    BTW, I do not experience the bug you had mentioned at
    http://www.cs.rit.edu/~cxb0025/flex/TreeControlBugs.html
    Can submit a video of my actions recorded

  • User or group column is populated with incorrect values when adding data from CSOM

    Hi All,
    I am working on a console application that updates list items using managed CSOM. I have a user or group column in this list that can contain multiple values. Now, I am using below code to update the value of this column:
    User newUser = web.EnsureUser("LoginName");
    context.Load(newUser);
    context.ExecuteQuery();
    FieldUserValue userValue = new FieldUserValue();
    userValue.LookupId = newUser.Id;
    listItem["User"] = userValue;
    The issue is if i assign the value of user1 to this column, the value that I see after the column is updated is another user; like user2. I don't know why it is populating this code with some other user? 
    Any idea on this issue? Thanks in advance.

    try these links:
    http://blogs.msdn.com/b/kaevans/archive/2013/11/30/setting-a-sharepoint-person-or-group-field-value-with-csom.aspx
    http://stackoverflow.com/questions/637859/sharepoint-group-by-is-broken-when-using-allow-multiple-values-for-a-column
    http://stackoverflow.com/questions/26815640/caml-person-or-group-field-with-multiple-values
    Please mark answer as correct if it is correct else vote for it if you find it useful

  • Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Same problem here (no graphics in header or footer) and the problem has been reported months ago. It is another bug/feature lost when Apple moves from 09 to the iCloud-compatible versions.  Complain to Apple, you may have better chance than me and they may finally listen to their users....

  • Populating the table with values in a jsp

    need help...
    i have a jsp with 2 textboxes lastname and firstname and a button submit.
    wen i click on submit i should get a table on the same jsp below the submit button and it should be populated with the values entered in the textboxes.
    Can you pl help me out the the functionality of populating the textboxes?

    add a onclick function to button...on that onclick u hav e to populate a div with fname and lname
    in tat new div giv bean :write so tat u can get wat u have entered in above text boxes

  • Trying to d/l Kindle ap to new iPad w/retina display.  User ID is pre-populated with incorrect email address. How can I change this to my Apple User ID?

    Trying to d/l Kindle and Amazon aps to new iPad w/Retina Display.  User ID is pre-populated with the incorrect email address for my Apple account.  How can I change this to my correct Apple User ID?

    You should setup as new.
    Settings>General>Reset>Erase all content and settings

  • Is this a bug with BoEdge3.1?

    Can anyone help me on the issue which my customer is facing for BoEdge3.1
    Concerning  Error Message: You do not have enough Named User Licenses to make this user a named user. You have 55 Named User Licenses. (FWB 00013)
    This is the error message she was receiving when trying to change an
    existing user from Concurrent to Named under the Connection Type on the
    Properties panel.
    The current workaround was to delete the existing Concurrent user, then re-add the same user as Named.
    She have been going through this process of deleting existing users, and then
    re-adding them as Named and it was working okay. Then, it stopped
    working and she started getting the same FWB 00013 error message again.
    She was not able to create any Named users now. Basically, the workaround
    worked for a while - then stopped working.
    She currently has a total of 88 users. 21 of them are named. 67 of them
    are Concurrent. She is licensed for 55 Named.
    Once again, the system thinks she has 55 users marked as Named. But
    there are only 21 marked as Named.
    She did notice that as she was going through all of her existing list of
    users, in alphabetical order, she was opening the Properties tab and
    checking the Named/Concurrent status - as she got to the 55th user in the
    list that is when she started getting the error message again.
    Is this a bug with BoEdge3.1?
    And I got an ADAPT01194692.
    I am not sure that Is the ADAPT related to this issue.
    Please help me its very critical.

    Hi Salena,
    If you are an SAP Employee, request you to post this question at
    https://cw.sdn.sap.com/community/bobjtc
    Cheers,
    Subhodeep

Maybe you are looking for