Changing a name of attributes

When I use bean ViewCurrentRecord (from JDeveloper), how can I change a name of some attributes (eg. I dont want to see Emp, I want to see Employee)
null

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by APC ([email protected]):
this is what the properties in the ViewObject are for. You can type in textt for the label e.g. EMP_LABEL Employee
Note that there is a bug in previous versions of JD whereby this only works for columns without underscores e.g. EMPNO but not EMP_NO. This is because the attribute names are rendered without underscores i.e. EMP_NO becomes EmpNo; the labels are formatted using column name e.g. EMP_NO by the field renderer uses attribute name i.e. EmpNo.
You can fix this bug yourself but I'm hoping it's fixed in JD3.2.3
APC<HR></BLOCKQUOTE>
Hello Andrew I also tried to modify the view properties but I could not see my alias name.
Is there somthing other to do?
null

Similar Messages

  • Change the name of Attribute

    Hi BW Experts
    i need to change the name one of the attribute . right  now this name is dispalying like sort name i need to change to old employee id in query level . can any one suggest how to change  the attribute name .
    Regards
    Sivaraju

    Hi,
    Thank you very much for your replies . i already done same what you suggested.
    Regards
    Sivaraju

  • Not able to change the name of the attribute of the Table operator.

    We are trying to create OMB scripts to automate certain tasks. As a part of this, there is a requirement to change the attribute name of table operators (which by default gets the name of the column). It is possible to change the attribute name from the GUI. But I was not able to do the same using OMB Scripting. Here is the script I used.
    OMBALTER MAPPING 'TEST' \
    MODIFY ATTRIBUTE 'GEOGRAPHY_ID' OF GROUP 'INOUTGRP1' OF OPERATOR 'TEST' \
    SET PROPERTIES(BUSINESS_NAME,PRECISION,DESCRIPTION) \
    VALUES('MEMBER_ID',2,'MEMBER')
    This script was to change the name of the attribute - GEOGRAPHY_ID of the table operator TEST.
    From what I can make out from the Scripting reference, changing BUSINESS_NAME of the attribute should do the trick but it is not happening. The syntax looks correct as the precision of the column changes.
    Am I missing something? Or is it a limitation or a bug?
    I use OWB client 10.2.0.1.25 and OWB repository 10.2.0.1.0.

    Hi!
    I'm using successfully
    OMBALTER MAPPING '$mapName' MODIFY ATTRIBUTE '$attrName' OF GROUP '$groupName' OF OPERATOR '$joinName' RENAME TO '$newName'
    Regards,
    Carsten.

  • Hi all,   need to change include name  in FM  attribute

    hi all
    i have modified standard function module, but in attribute wronge name of Include is displaying.  I need to change the Include name in the attribute of FM. 
    Could anyone tell me how to change the attribute of FM and change the name of Include.
    thanking you in advance.
    raj

    Hi raj,
    1. The include name which u are seeing in Attribute
       is SAP Defined (based upon naming convention
       from the name of function group).
    2. We cannot change it.
    3. If are concerned about your abap code
       in your own include (which u might have used
      in the abap coding of fm),
       then no need to worry .
    4. This include is a different include.
      (It serves as a container for the source codes
       of all the FM under the function group)
    regards,
    amit m.

  • How to change display name of the attachment item attribute.

    Hello Experts
    I have a requirement to send a notification with attachment but attachment name should be attachment name,
    Is there any way to change the display name of the Attachment
    Please advise;
    Thanks
    Rajesh.

    Azmathulla,
    It is not possible to change the name of the server, but you can add a label to it (see attached screenshot).  And yes, it can be done during production hours, this doesn't affect the production data.
    Please let me know if this answers your question.

  • How to create a new workspace and change the name of the existing

    Hi,
    can any one help me how to create a new workspace in application express 3.1 on XE DB and how to change the name of a existing workspace.
    thanks
    Jana

    Jana,
    This is discussed at length in the User's Guide. See the section "Creating Workspaces".
    To rename a workspace using the admin application, edit the workspace attributes and type a new name in the field where the old name appears, then Apply Changes.
    Scott

  • AD - 'Change First Name' process task is rejected by default - OIM 11.1.2

    Hi All,
    I wanted modification to be auto provisioned to AD account when user attribute is changed.
    For this created 'Change First Name' process task and made entry in "Lookup.USR_PROCESS_TRIGGERS" lookup def.
    I followed the link Enabling update for provisioned user in OIM11g
    When I changed first name of a user from identity console, 'Change First Name' process task is assigned to XELSYSADM. But the status of the process task is Rejected. Also, the changed 'First Name' value is not updated in the process form of the user. Hence the change is not reflected into AD.
    Please tell me why the status is Rejected and changes are not reflecting.
    Also, Please provide the solution to auto provision the modifications into AD.
    Thanks in Advance.

    Thanks much kevin,
    One more query.....
    In my case when 'city' attribute is changed its invoking 'Change city' which inturn invokes 'City updated' process. Now when city is updated I need to updated 'Organization Name' in AD process form and make it reflect in AD.
    For this, I created 'Change Org Unit' process task which will populate 'Organization Name' field in process form, so inturn it will invoke 'Organization name updated' process task.
    I made 'Change Org Unit' process task as dependent task for 'Change city', so once the 'Change City' process task status is 'C', it will invoke 'Change Org unit' process task.
    But, 'Change Org unit' process task is not being invoked.
    Could you pls provide me solution.
    Thanks in advance...

  • How can I change column name in ALV table in WebDynpro ABAP?

    Hi Everyone,
    I have created an ALV table in WebDynpro ABAP. I have created a context node and added the required attributes there - for the ALV display.
    Now I want to change one columnn name of the ALV table.... Currently it is showing the description of the data element, which I don't want to show. I cannot create a new DE only for this purpose.
    Please let me know how can I change the name of the column.
    Regards

    Hi,
    This may help you to define your own column text in the ALV Table of webdynpro.
    see the below code.
    Here 'STATUS_ICON' is the column of the the output display of the ALV Table of webdynpro.
    "change the label of the report.
    DATA: lr_weeknum TYPE REF TO cl_salv_wd_column.
    CALL METHOD l_value->if_salv_wd_column_settings~get_column
    EXPORTING
    id = 'STATUS_ICON'
    RECEIVING
    value = lr_weeknum.
    SET THE LABEL OF THE COLUMN
    DATA: hr_weeknum TYPE REF TO cl_salv_wd_column_header.
    CALL METHOD lr_weeknum->get_header
    RECEIVING
    value = hr_weeknum.
    CALL METHOD lr_weeknum->set_resizable
    EXPORTING
    value = abap_false.
    hr_weeknum->set_prop_ddic_binding_field(
    property = if_salv_wd_c_ddic_binding=>bind_prop_text
    value = if_salv_wd_c_ddic_binding=>ddic_bind_none ).
    set the text of the column
    CALL METHOD hr_weeknum->set_text
    EXPORTING
    value = 'C Form'.
    regarads,
    balu

  • Change column name in Gridcontrol?

    Greetings:
    Could not figure out how to change displayed name of columns
    in gridcontrol. They always match attributes in the underlying view.
    But that view wizard does not let me specify meaningful names
    (e.g. blanks are not accepted).
    TIA,
    V.

    If it is DAC
    use setLabel on corresponding AttributeInfo
    Assuming you are using JClient, You can set the label using the UI Hint on the corresponding attribute.
    Select the view object, then select the attribute in structure pane and then invoke the attribute editor. Specify 'Label text' control hint.
    Greetings:
    Could not figure out how to change displayed name of columns
    in gridcontrol. They always match attributes in the underlying view.
    But that view wizard does not let me specify meaningful names
    (e.g. blanks are not accepted).
    TIA,
    V.

  • Regarding change history of marketing attributes

    Hi Experts,
    Currently I am using CRM 7.0 , here in ORG business Partner I have updated marketing attributes in Marketing attributes tab
    but when I check in change history TAB for the changes happend for marketing attributes I am unable to see the changes in change history please help me how I can see the change history for those attributes and please tell me the TABLE name otherwise.
    Regards,
    Rajasekhar.

    Hi ,
    I have checked that table  in SE16 I am getting the results but when I am populating the results into excel the value is showing in different format.Below is the example.
    1,320000000000000E+03.Let me where to change the settings.
    Regards,
    VR

  • Content Servcies: Changing menu names in OCS

    Hi All,
    Is it possible to change menu names in OCS. For example: once you login to OCS and select a particular file/folder and right click, a menu list(Copy, Submit Workflow etc..) appears.
    1. Is it possible to change the name of these items? For instance can Copy be renamed as collect? If it can be done I would appreciate if you could please let me know how to go about it.
    I did look into the file menuList.jspx, which lists all the menu items and is action. However when I changed webStrings.COPY to webStrings.COLLECT as shown below, the changes were not reflected:-
    <uix:commandMenuItem text="#{webStrings.COLLECT}"
    shortDesc="#{webStrings.COPY_DESC}"
    immediate="true"
    action="#{actions.copy}"
    returnListener="#{listeners.refreshTable}"
    windowHeight="#{dimensions.mediumDialogHeight}"
    windowWidth="#{dimensions.mediumDialogWidth}"
    rendered="#{data.explorerViews.foldersView ||
    data.explorerViews.searchView ||
    (data.explorerViews.reportsView and
    (data.explorerViews.detailPane eq 'recentFilesTable' ||
    data.explorerViews.detailPane eq 'lockedFilesTable' ||
    data.explorerViews.detailPane eq 'checkedOutFilesTable' ))}"/>
    Thanks!
    Hetal

    If you change the value of the text attribute to "Collect" instead of "{#webStrings.COLLECT}" that will change the label of the menu.
    Couple of caveats:
    - there will be no translations it will say "Collect" in all languages
    - this is not officially supported and any patches will overwrite your changes.
    regards,
    -sancho

  • Change the name of TargetGroup label

    hi experts,
    In component Seged_tg/eltargetgrouplitem I need to change the name of the label "TargetGroup" which comes right above the table view of targetgroup list.
    But I am unable to trace the place ,where it is wriiten,since there is no overview page as such.
    pls help
    Regards
    Anu

    Hi Anu,
    since this is no overview page, the label is directly set in the configTable tag in the html page
    Its the attribute CL_SEGED_TG_ELTARGETGROU2_IMPL->HEADER_TEXT.
    Its set in CL_SEGED_TG_ELTARGETGROU2_IMPL->DO_PREPARE_OUTPUT.
    There it is read as OTR text CRM_UIU_MKTSEG_TG/TGED_TITLE_ITEMLIST..
    I'm not sure if you can change OTR texts without modification.
    Hope that helps
    --klaus

  • Changing group names (5.x)

    We are using ADAWS in a version 5 portal. We need to change the names of some groups in Active Directory (AD). To test this, I changed one group name in AD and ran the AWS and PWS synchronizations. It appears that the group is still synchronized; however, the name of the group in the portal did not get changed. It still has the old name.
    Will I have to manually change the group names in the portal to match the new AD names? It appears that after creation, Active Directory and the portal deal with groups only on the basis of objectGUID/AUTHUNIQUENAME and memberships, not the Active Directory "CN", "name", or "sAMAccountName" entries. (We have set "Group Name Attribute" to "CN" in the PWS Agent Configuration.) ---Ken

    I doubt this will help you in the short term, but I would encourage anyone developing portlets to use portal "Activity Rights" to check for whether a user should be allowed to do things rather than just checking for a specific group name. Activity Rights are exactly what they sound like: the right to do something, but basically, they are just a named key that is attached to a group (or several groups). The EDK provides a simple call to check if a person has any specific Activity Right.
    The advantages of Activity Rights are that: they can be managed in the portal; they can be assigned to multiple groups, and removed from all groups; the portlet doesn't need to hard code a Group name, just the Activity Right key value; Activity Rights are migratable objects, which means that (unlike object ids) they can be migrated and checked by the same code in Dev, Test, and Prod systems.

  • Change file name with oreilly servlet

    I am using oreilly servlet package and I want to change the file name to the file I am uploading, is this possible ?
    How ?
    Thanks.
    here I post the servlet code:
    package com.reducativa.sitio.servlets;
    * DemoParserUploadServlet.java
    * Example servlet to handle file uploads using MultipartParser for
    * decoding the incoming multipart/form-data stream
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import com.oreilly.servlet.multipart.*;
    public class DemoParserUploadServlet extends HttpServlet {
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    PrintWriter out = response.getWriter();
    response.setContentType("text/plain");
    out.println("Demo Parser Upload Servlet");
    File dir = new File("f:/");
    if (! dir.isDirectory()) {
    throw new ServletException("Supplied uploadDir " + "f:/ " +
    " is invalid");
    try {
    MultipartParser mp = new MultipartParser(request, 10*1024*1024); // 10MB
    Part part;
    while ((part = mp.readNextPart()) != null) {
    String name = part.getName();
    if (part.isParam()) {
    // it's a parameter part
    ParamPart paramPart = (ParamPart) part;
    String value = paramPart.getStringValue();
    out.println("param; name=" + name + ", value=" + value);
    else if (part.isFile()) {
    // it's a file part
    FilePart filePart = (FilePart) part;
    String fileName = filePart.getFileName();
    if (fileName != null) {
    // the part actually contained a file
    long size = filePart.writeTo(dir);
    out.println("file; name=" + name + "; filename=" + fileName +
    ", filePath=" + filePart.getFilePath() +
    ", content type=" + filePart.getContentType() +
    ", size=" + size);
    else {
    // the field did not contain a file
    out.println("file; name=" + name + "; EMPTY");
    out.flush();
    catch (IOException lEx) {
    this.getServletContext().log("error reading or saving file");
    }

    Hi there,
    I am facing the same problem that you have stated in your Feb 26, 2002 10:28 AM message regarding "change file name with oreilly servlet", I would like to change the file name to include a unique identifier upon upload, did you ever find a solution to your problem?
    Thanks!
    Todd
    [email protected]

  • How can i delete my  music from itunes it dont let me also how to change the name of the ipod shuffle it dont let me

    i need help please help me on itunes i try to change my name for the ipod shuffle and it dont let me it dont do anything also when i try to delete the music on it it dont show me if i want to delete or not the font is just gray and dont show any opitions also when i go on my iphone it lets me do all the stuff that it dont let me do i connect my iphone and it lets me delete music and change the name but the shuffle doesnt

    What happens when you try to change the Shuffle's name from under the Devices section in the left hand pane of iTunes?
    Is your iPod set up to manually manage its contents.  For more information, see your iPod's User Guide.
    http://support.apple.com/manuals/#ipodshuffle
    B-rock

Maybe you are looking for

  • Problem in BADI - CRM_ORDER_STATUS

    Hi, My requirement goes like this: When the Service Request status is set to "CLOSED", I have to do some validation. So, for this I have create BADI Implementation for CRM_ORDER_STATUS and using the method - BEFORE_CHANGE. with filter E0008ZSVR. (E00

  • FI Settings before calculating Pre-investment analysis

    Dear Experts, In my project , we are going to implement Pre Investment Analysis. I have done the settings required for pre-investment analysis calculation in IM, can anyone throw some light on FI/CO settings related to preinvestment analysis calculat

  • How to edit the version like 4 beta 11 from title bar

    is there is any version file in omni.jar or what ever

  • Alerts for Receiver Adapter and Synchronous Messaging

    Hi experts, I am working on XI 3.0 SP 17. I am doing alert configuration in XI . In below 2 cases we didn't receive alerts for errors. 1) In case of errors in   receiver adapters. 2) If an error  occurs in synchronous message processing. What would b

  • PAX Audigy Se to Xtreme Audio Project V1.00

    PAX Audigy Se to Xtreme Audio Project V.00 http://dl.technewshw.com/drivers//PA...ject%20V.00.7z Just a preview I want see if would installed from Audigy Se on xtreme Audio drivers please report any missing files thankyou. If your brave enough. No Fl