Add attributes and rename the attributes according to the need

I am a new developer to jdev, I need more help.
I design a salary db, the attributes are employee_id,employee_name,pay_type1,
pay_type2,pay_type3,pay_type4,pay_type5,...
Now salary kind is only pay_type1, so in view we only select emplyee_id,
employee_name and pay_type1 from entity.
After some time, company decide to add new salary kind, for example travelling allowance. After adding this new attribute name: trave_allowance, pay_type2 is selected form entity and renamed trave_allowance . From then on
in browse.jsp employee_id, employee_name,pay_type1 and trave_allowance should
been show.
I think the new attribute names can be received from name_adding.jsp
then according to the number of new name, we can select attributes from entity in view and replace attributes which are selected by new names.
But I do not know how to pragramme.
Please do give the detail or other design ideas.
Thanks in advance!

You can edit your VO and add additional attributes to it.
If you have designed your JSP page to iterate over the attributes of the VO in a generic way, your page should immediately show the new attributes.
If you have a JSP page that hard-codes references to your VO attributes, you'll need to add a few new tags to the page to see your new attributes.

Similar Messages

  • Page Attributes and Application Class Attributes

    Hi, everyone,
    I am quite new to BSP.
    I have a question here:
    what is the difference between page attributes and application class attributes of a bsp application? As they are both global attributes, there seems to be no big difference when we use them.
    thanks a lot.
    Fan

    Hi Fan,
    a BSP application can be made up of many pages.
    A page attribute is visible only in the page it is associated with.
    Attributes of the application class are visible from every page in that application.
    Cheers
    Graham Robbo

  • I have upgraded Apple Aperture from version 2 to version 3 and I'm having a problem with the "Highlights and Shadows" adjustment. According to the user's manual, I should have access to an advanced disclosure triangle which would allow me to adjust mid co

    I have upgraded Apple Aperture from version 2 to version 3 and I'm having a problem with the "Highlights and Shadows" adjustment. According to the user's manual, I should have access to an advanced disclosure triangle which would allow me to adjust mid contrast, colour, radius, high tonal width and low tonal width.
    If anyone has any suggestions as to how to access this advanced section, I'd be most grateful.

    Hi David-
    The advanced adjustments in the Highlights & Shadows tool were combined into the "Mid Contrast" slider in Aperture 3.3 and later. If you have any images in your library that were processed in a version of Aperture before 3.3, there will be an Upgrade button in the Highlights & Shadows tool in the upper right, and the controls you asked about under the Advanced section. Clicking the Upgrade button will re-render the photo using the new version of Highlights & Shadows, and the Advanced section will be replaced with the new Mid Contrast slider. With the new version from 3.3 you probably don't need the Advanced slider, but if you want to use the older version you can download it from this page:
    http://www.apertureexpert.com/tips/2012/6/12/reclaim-the-legacy-highlights-shado ws-adjustment-in-aperture.html

  • I have downloades Logic Pro 9 onto my older modfel Mac Book Pro 1,1 with OS 10.6.8 and 2 GB RAM, according to the rquirements for Logic 9. the program should run, but it won't open. Is my configutation too slow?

    I have downloades Logic Pro 9 onto my older modfel Mac Book Pro 1,1 with OS 10.6.8 and 2 GB RAM, according to the rquirements for Logic 9. the program should run on OS 10.6.8. with 2 GB RAM, 4 GB better, but it won't open. Is my configutation too slow?

    Looks as if you're just at the minimum specs - http://www.apple.com/logicpro/specs/. Says 2GB minimum, 4GB recommended. And 2GB of RAM is all the RAM the 1,1 can handle. If I were you I would call Apple's App Store service center - you have the minimum requirements, as I read it, but perhaps you need a faster processor?
    I had a 1,1 but sold it when I bought my late 2011 in March of this year - maybe it's time to look at a new machine?
    Clinton

  • [svn:bz-trunk] 19769: Add destination and two streaming endpoints to test the invalidate-messageclient-on-streaming-close setting .

    Revision: 19769
    Revision: 19769
    Author:   [email protected]
    Date:     2011-01-14 12:05:23 -0800 (Fri, 14 Jan 2011)
    Log Message:
    Add destination and two streaming endpoints to test the invalidate-messageclient-on-streaming-close setting.
    Modified Paths:
        blazeds/trunk/qa/apps/qa-manual/WEB-INF/flex/messaging-config.mods.xml
        blazeds/trunk/qa/apps/qa-manual/WEB-INF/flex/services-config.mods.xml

    Originally Posted by namal
    Hello,
    can you please reupload the file again? The link doesn't work. I really need this driver pack for the Audigy 2 NX. I had Windows 7 and i don't want to buy a new external Sound Card for my notebook. Much thanks for the great work.
    In case you still require your driver and Alchemy, here are the links for the Audigy 2 NX
    Downloads Page
    http://support.creative.com/Products...05&prodID=9103
    Driver
    http://support.creative.com/download...wnloadId=11994
    Alchemy
    http://support.creative.com/download...wnloadId=12579

  • Show the Datetime according to the region

    I've gotten a table cell value from a datetime type Mysql filed with the following date & time format:
                   yyyy-mm-ddT00:00:00.000Z
    What do I need to do to get the time according to the user region and make it shows in the following format  using openUI5 ?
                   yyyy-mm-dd 00:00:00.00
              The column I added to the table now likes this:
              if(columnName === 'operateDate'){
                        oTable2.addColumn(new sap.ui.table.Column({
                            label: new sap.ui.commons.Label({text: columnName}),
                            template: new sap.ui.commons.TextView().bindProperty("text", columnName),
                            sortProperty: columnName,
                            filterProperty: columnName,
                            width: "150px"
    Thank you for your help!!
    Message was edited by: Margot Wollny

    Thank you, but after I changed the format of the textview in table column, it shows empty
    the code is changed to :
                   if(columnName === 'operateDate'){
                        jQuery.sap.require("sap.ui.core.format.DateFormat");
                        var oDateFormat = sap.ui.core.format.DateFormat.getDateTimeInstance({pattern: "dd/MM/yyyy HH:mm"});
                        oTable2.addColumn(new sap.ui.table.Column({
                            label: new sap.ui.commons.Label({text: columnName}),
                            // template: new sap.ui.commons.TextView().bindProperty("text", columnName),
                            template: new sap.ui.commons.TextView().bindProperty("text", oDateFormat.format(new Date(columnName))),
                            sortProperty: columnName,
                            filterProperty: columnName,
                            width: "150px"
    Is it something wrong in the table column. Why it shows empty after I change the format of the datetime type column?
    anyway, your replay is very enlightening and useful.
    Thank you again.

  • How to display the data according to the search criteria

    Hi ,
    I want to display the order data in my application.
    I have certain search criteria in my application like
    ordernumber , date etc.
    If I click the submit button without giving any criteria , all the data is getting displayed properly in the table.
    But,If I want to display the data according to the order number, all the orders present are getting displayed , but actually it should display the order only for that particular order number.
    The code is  like : onActionSearch()
    wdThis.wdComponentController().executeGetlist_Input();
    Can any one tell me how to display the orders depending upon the search criteria.
    Ideas & suggestions are truely welcome.
    Thanks & Regards
    Neha Mahanty

    Hi Neha,
    Design ur RFC in such a way that it should display the result according to your search criteria.
    If you are making a search on "Order Number" pass some input(search criteria along with some parameter, if order number is not null then pass "X" as parameter) to RFC so that it will return the result accordingly. And same with date also.
    Thanks n Regards,
    Jhansi Miryala

  • Change the functionality of the keyevents  according to the scene that it i

    I am a student and I am doing my tesis about authoring tools.
    I have obtained to give the same functionality to a keyevent for all the scenes, however, I am trying to change the functionality of the keyevents according to the scene that it is at the moment but I dont know how to do this.
    can anybody help me???

    Thanks for your help.
    Could you help us in a specific issue? We have three scenes. Hscene_1, Hscene_2, Hscene_3. Pressing the green button we want that; if I am in the Hscene_1 it passes to Hscene _2 and if I am in Hscene_2 it happens to me to Hscene_3
    we are waiting your answer.
    Thanks

  • How to add 52 and 53 raduis attributes

    please, I am configuring a 10000 and I need to add "Acct-Input-Gigawords" and "Acct-Output-Gigawords" in the accounting register. How can I configure that ?
    Thanks in advance !
    Cleber

    Hi,
    The RADIUS Attribute 52 and 53 Gigaword Support feature introduces support for attribute 52 (Acct-Input-Gigawords) and attribute 53 (Acct-Output-Gigawords). Attribute 52 keeps track of the number of times that the Acct-Input-Octets counter has rolled over the 32-bit integer throughout the course of the provided service; attribute 53 keeps track
    of the number of times the Acct-Output-Octets counter has rolled over the 32-bit integer throughout the delivery of service. Both attributes
    can be present only in Accounting-Request records where the Acct-Status-Type is set to "Stop" or "Interim-Update." These attributes can be used to accurately account for and bill for usage.
    This should be available in the release they are running. Cisco IOS Software, 10000 Software (C10K3-P11-M), Version 12.2(31)SB13, RELEASE SOFTWARE (fc1)
    I see there is a command that needs to be on but should be on by default. aaa accounting gigaword.
    You may refer the COMMAND REFERENCE GUIDE for more info:
    http://www.cisco.com/en/US/docs/ios/12_3/security/command/reference/sec_a1g.html#wp1085560
    IMPORTANT # USAGE GUIDELINES #
    The AAA high-capacity counter process takes approximately 8 percent CPU memory for 24,000 (24 K) sessions running under steady state.
    If you have entered the no form of this command to turn off the 64-bit counters and you want to re-enable them, you will need to enter the aaa accounting gigawords command. Also, once you have entered the no form of the command, it takes a reload of the router to actually disable the use of the 64-bit counters.
    HTH
    JK
    Plz rate helpful posts-

  • CR Reports 2008: Space Between HTML Attribute and Value Causes Attribute To Be Ignored

    I have a field in a report with its Text interpretation set to "HTML Text".  When content is rendered in that field that was sourced from a Microsoft Word document, some of the attributes seem to be ignored by Crystal. 
    For example, I have observed with "style" attributes that if there is a space between the attribute and the value, e.g. "FONT-FAMILY: SimSun" then Crystal will not render the Asian characters, replacing them with squares.  However, if I manually remove the space so that the attribute appears as "FONT-FAMILY:SimSun", then the characters properly render as expected.  I have observed the same issue with at least one other attribute as well, "FONT-SIZE".
    This html does render properly in various browsers, so it seems to be an issue with Crystal Reports.  Can you provide me with information about this and if there is a fix for it in subsequent versions.  The version I tested with is 2008 - 12.5.0.1190.
    Thanks for any assistance that you can provide.

    hi Ethan,
    here are the list of supported html tags in text interpretation...font family is indeed a supported tag.
    does the html appear properly in the designer?...you mentioned various browsers and am wondering if you mean the crystal web viewers?
    if the issue is in your cr designer, you may wish to patch it to the latest level.
    also, ensure that you do not have any unsupported tags in your html that may be causing an issue.
    -jamie
    html
    body
    div (causes a paragraph break)
    tr (causes only a paragraph break; does not preserve column structure of a table)
    span
    font
    p (causes a paragraph break)
    br (causes a paragraph break)
    h1 (causes a paragraph break, makes the font bold & twice default size)
    h2 (causes a paragraph break, makes the font bold & 1.5 times default size)
    h3 (causes a paragraph break, makes the font bold & 9/8 default size)
    h4 (causes a paragraph break, makes the font bold)
    h5 (causes a paragraph break, makes the font bold & 5/6 default size)
    h6 (causes a paragraph break, makes the font bold & 5/8 default size)
    center
    big (increases font size by 2 points)
    small (decreases font size by 2 points if it's 8 points or larger)
    b
    i
    s
    strike
    u
    The supported HTML attributes are:
    align
    face
    size
    color
    style
    font-family
    font-size
    font-style
    font-weight
    In Crystal Reports 2008 Service Pack 2 and above, the following additional HTML tags and attributes have been added to the supported list:
    The supported HTML tags are:
    ul  ( bulleted list )
    ol  ( ordered list )
    li   ( tag defining a list item used for both list type: ul and ol. )
    Important Note: The bullet will not show up as a regular size bullet, but as a small dot.
    The supported HTML attributes are:
    strong ( bold )

  • Component attributes and render specific attributes

    What should be considered as component's attributes while what should be considered as renderer specific attributes.
    Is it correct to think that behavioural properties of a components have been abstracted out as components properties?
    Is there any example or a link which points to this?
    Thanks,
    Chris

    Yes, that's basically it. Note also that a custom subclass of a component can define JavaBean accessors for renderer-specific attributes, and that the Renderer can still safely use the getAttributes() Map to retrieve the attributes, because bean properties are automatically available as well in this Map. You might want to read:
    http://forum.java.sun.com/thread.jsp?forum=427&thread=532578&tstart=15&trange=15
    for more info on that.
    -- Adam Winer (EG member)

  • Unable to Align the fields according to the Pre-Printed Cheque format

    Hi,
    I am having a requirement where I need to align the report output according to the Pr-printed Chekc Format which is loaded in the printer.
    In detail we have a pre-printed format of the cheque which will be loaded into the printer which includes the logo and the amount fields with the symbol of currency,date etc.
    I need to print the output which is runned by formating the payment batch.I am getting the output printed but not in the exact palces where I need.I tried to modify the report fields by increasing the length and width of the main section but of no use.Can any one help me out at the earliest.
    I am getting the output either out of the symbol of currency and even the date as well.
    Thanks for your help in advance.
    With Regards,
    Sunil.

    Can you explain briefly the below point which you have mentioned.
    "Also set the increase the size of fields upon the size of pre-printed area and set the horizontal Elasticity to FIXED. Then align and print."I meant that increase the size of fields according to the size of pre-printed document and set the horizontal elasticity to FIXED so it will not go out from the desired space.
    Well, this is what i said you will have to set the alignment and will have to check by printing again. There is no specified format of pre-printed document type reports.
    -Ammad

  • CProjects severity status can't chang the icon according to the formula

    HI,
    I defined severity in cprojects. If I used the “created evaluation” function, the severity status displayed correct. As shown in figure 1, the severity status changed  the icon’s color according to the formula I defined. But in the dashboard and the project, the severity status only displayed the green icon for all projects, as shown in figure 2.
    I checked the message, only If I have not created evaluations, the system cannot determine which status to display, it automatically displays the status assigned to the severity level 1. I assigned the green icon to the severity level 1.But I did defined the evaluations and used for threshold, as shown in figure 3.
    I want the severity status in the dashboard and the project also changed according to the formula I defined liking in the evaluations. How can I do this.

    Hi July,
    Have you set the customizing for evaluations for the project types? You can do this manually by starting an extraction (like you did) or let the system do the checking for threshold value violations on saving (or with a batch-job).
    Try the following settings for the project type
    You have to assign an evaluation layout to the extraction layout 0_DASHBOARD. Else you won't see the threshold values in the dashboard.
    regards,
    Peter

  • Directing to the application according to the browser

    Hi,
    I have two applications deployed in Oracle AS wireless 10g under oc4j_wireless container. One deployed application is for PDA browser and another for Web browser. My question is whether Oracle AS wireless is smart enough in direct it to the appropriate application according to the browser? if yes, than how to do it.
    If no, than what peace of code in my application i have to write to achieve this.
    I am using XHTML MP as a markup language and simple java classes in writing business logic.
    Pls help me.
    Shrikant

    That's "Nope, I don't know how", rather than "Nope, I'm not telling you" by the way. If I knew how, I'd be happy to tell you
    By the way, you've got a few unrelated questions live here at the same time. Can I give you some advice? Concentrate on getting one thing working before trying something else. You'll save yourself an enormous amount of time

  • How to switch the process according to the lookup field change event

     As the topic says. how can i  use the javascript to switch the process 

    Hello,
    In case you use CRM 2015 - that is possible without any tricks -
    http://msdn.microsoft.com/en-us/library/dn817878.aspx#BKMK_setActiveProcess
    In case you use CRM 2013 you will have to convert code provided in following article from C# to JS -
    https://deepakexploring.wordpress.com/tag/updating-process-id-in-crm-2013/
    Dynamics CRM MVP/ Technical Evangelist at
    SlickData LLC
    My blog

Maybe you are looking for

  • How to change default alerts in iCal?

    Hello. Every time you add a new event in iCal, the Info panel of the event contains a series of default alerts that you may want to add to it. However, all of them are useless to me (e.g.: "Send email to <my address> 4 days after), so I need to manua

  • Branch Office implementation

    where can I find a good white paper on 'Branch Office' arch. and implementation of Lite?

  • Managed Settings missing in Profile Manager after upgrade to Server 3 bis

    Hi all, I have alsmot the same issue than the one which is described into this discussion: https://discussions.apple.com/message/23468341#23468341 However, I have different logs: —————————— [0m 2:: [13358] [2013/11/07 11:20:49.999] Updating PGModel '

  • JTable Height Relative to JScrollPane's Height?

    Is there a way to set the height of the JTable equal to the height of the JScrollPane? And as the JScrollPane resizes in height, I also want the JTable to resize relative to the height of the JScrollPane. I am putting the JScrollPane to a JPanel with

  • How do i reset or change the ichat info ...

    how do i reset my ichat my brother set it up for me and neither him nor i remember the login info i would just like to reset it and start a new account?