How to edit the text of a certain column in SALV_WD_TABLE  in ESS layout

hi,expert.
i want to change the text of the column:appraisee name in ESS worklist.
     Application :HAP_START_PAGE_POWL_UI_ESS
    Web Dynpro Component: SALV_WD_TABLE
    Window Information: TABLE
    View Information: VIEW_TABLE
how can i achieve it? looking forward for your help.
yours ping.

check http://help.sap.com/erp2005_ehp_04/helpdata/EN/48/9968e67f020e27e10000000a421937/frameset.htm
check notes  1416756, 1408243.
Run SE80 and select the following:
PACKAGE                PAOC_HAP_DOCUMENT_WD_UI
Expand Node            Web Dynpro
Expand Node            Web Dynpro Applicat.
Expand Node            HAP_START_PAGE_POWL_UI_ESS    or
                       HAP_START_PAGE_POWL_UI_MSS
Expand Node            Applic. Configurations
Select Configuration   HAP_START_PG_POW_ESS_AC       or
                       HAP_START_PG_POW_ESS_AC
=> Test

Similar Messages

  • How to Edit the Text in Flash?

    Hi there,
    I want to know that how to change the text on the Flash
    (.Fla)
    I have .Fla and want to edit it with the step by step help.
    Currently, I want to edit the text on the home page.
    http://www.mtkinetics.com/ayc/index.html
    Any help will be highly appreciated.
    Regards
    bushib

    1. click on the text. in the properties panel it will say
    static text, dynamic text or input text.
    2. if it's static text, click on the text tool and click
    inside your text. then edit. if it's not static text, you can do
    the same thing, but the text will be changed by actionscript during
    run-time IF text was originally assigned by actionscript.

  • How to edit the text displayed in KM Upload link?

    Hi All,
            I want to edit the text displayed in KM Upload link ie "You can upload a file to the repository from your computer. Click "Show Properties" to assign another name or to change the settings".
    I tried searching for the resource bundle from which the above text is displayed but couldnt find it.
    Can anyone help?
    Thanks in advance.
    Regards,
    Pooja.

    Hi Pooja
    You can find the text in <b>ResourceEditControl**.properties</b> file, which is available under   <i>com.sap.km.cm.ui\lib\km.appl.ui.edit_api\com\sapportals\wcm\control\edit</i>..
    The text is represented by the key <b>txtUploadControl</b>..
    Regards,
    Sandip

  • Hi how to edit the text content in CSV

    Hi,
    I need to edit the text content in CSV using java script.
    The content goes like this..........
    "missing image No"
    need to replace "No" by "Yes"
    Thanks in advance

    > I need to edit the text content in CSV using java script.
    Something like this work. I haven't tested it but it pretty close :)
    var file = new File("~/somefile.csv");
    file.open("r");
    file.close();
    var str = file.read();
    var nstr = str.replace(/\bNo\b/g, 'Yes');
    file.open("w");
    file.write(nstr);
    file.close();
    -X

  • How to edit the text generated by OCR

    Using Arobat Pro 8 I have scanned in a booklet with text in it. The OCR function has made it searchable and Read Out Loud too but how do I edit this text as some pages have errors on them due to graphics on the page interfearing with them. I tried using Document > OCR Text Recognition > Fin all OCR Suspects but nothing comes up!
    Thx
    Kevin

    Since there are "Image Only", "Image and Hidden Text" and "Text" pdfs that can be created by OCRing, you can only edit the PDFs that have visible text.

  • How to edit the text in a trailer 'after' converting to a project?

    After converting my trailer to a project so I can add photographs and further music. I accidently deleted the last frame of the trailer credits.. and now need to add it back in. Your help is much appreciated! Nick

    Try Command-Z or Edit/Undo. (if you deleted the whole title page).
    You can edit text by clicking in the text.

  • How to edit the text in the attachment list in MM02 through Program

    Hi,
            I want to update the attachment list for the material.
    i.e, MM02 - > Services for object - > attachment list - > "I have 2 items".
    For the the first item, there will be some text is availble. Now my requirement is to update the text.
    For your reference,
    While creating material, the GOS is used to create the items in the attachment list, the code is
      *swc_create_object lv_message 'MESSAGE' lwa_message_key.*
    *** define container to pass the parameter values to the method call**
    *** in next step.**
                    *swc_container lt_message_container.*
    *** Populate container with parameters for method**
                    *swc_set_element lt_message_container 'DOCUMENTTITLE' 'Certification file path'.*
                    *swc_set_element lt_message_container 'DOCUMENTLANGU' 'E'.*
                    *swc_set_element lt_message_container 'NO_DIALOG'     'X'.*
                    *swc_set_element lt_message_container 'DOCUMENTNAME'  'MESSAGE'.*
                    *swc_set_element lt_message_container 'DOCUMENTTYPE'   'URL'.*
                    *CLEAR lv_url.*
                    *REFRESH lt_doc_content.*
                    *lv_url = lwa_data1-url.*
                    *CONCATENATE '&KEY&' lv_url INTO lv_url.*
    **---appneding URL contents to the table*
                    *lt_doc_content = lv_url.*
                    *APPEND lt_doc_content.*
                    *swc_set_element lt_message_container 'DocumentContent' lt_doc_content.*
                    *swc_call_method lv_message 'CREATE' lt_message_container.*
    **** Refresh to get the reference of create 'MESSAGE' object for attachment**
                    *swc_refresh_object lv_message.*
    **** Get Key of new object**
                    *swc_get_object_key lv_message lwa_message_key.*
    *** Now we have attachment as a business object instance. We can now**
    *** attach it to our main business object instance.**
                    *CLEAR: lv_is_object_a,*
                           *lv_is_object_b.*
                    *lv_is_object_a-instid = lwa_hdr_data-material.*
                    *lv_is_object_a-typeid = 'BUS1001006'.*
                    *lv_is_object_a-catid  = 'BO'.*
                    *lv_is_object_b-instid = lwa_message_key.*
                    *lv_is_object_b-typeid = 'MESSAGE'.*
                    *lv_is_object_b-catid  = 'BO'.*
                    *CLEAR lv_reltype.*
    ***      IF lwa_data-url IS NOT INITIAL.**
                    *lv_reltype = 'URL'.*
    **---creating URL for the Material.*
                    *TRY.*
                        *CALL METHOD cl_binary_relation=>create_link*
                          *EXPORTING*
                            *is_object_a            = lv_is_object_a*
    ***    IP_LOGSYS_A            =**
                            *is_object_b            = lv_is_object_b*
    ***    IP_LOGSYS_B            =**
                            *ip_reltype             = lv_reltype.*
                      *CATCH cx_obl_parameter_error .*
                      +**CATCH cx_obl_model_e

    Please close this thread.Open new thread in forum [SAP Community Network Forums » ABAP Development » ABAP, General |;

  • How to truncate the text in a table column

    Hi all,
    I have a text column in a table RN. the column length is varchar2(240). When the text is too long I want to only display 20 text and followed by '...'
    So I change the xmlfile of tableRN maximumLength="240" columns="80"
    but the text is still long and let the page very wide. I notice the standard page have this functionality while I don't find any control either in the xml file or in the CO class.
    Can anyone show me the method to implement this? I really don't want to modify the VO to decode the column to contain '...'
    Thanks & Regards,
    Scott
    Edited by: Typhoon on Aug 5, 2009 1:07 PM
    Edited by: Typhoon on Aug 5, 2009 1:25 PM

    I have resolve it, by adding these code in VOimpl.java
    super.executeQuery();
    oracle.jbo.RowSetIterator rowsetiterator = OIEUtil.getNoValIterator(this);
    Object obj = null;
    TrackExpenseReportsVORowImpl trackexpensereportsvorowimpl;
    for(; rowsetiterator.hasNext(); trackexpensereportsvorowimpl.setPurpose(OIEUtil.trimString(trackexpensereportsvorowimpl.getPurpose())))
    trackexpensereportsvorowimpl = (TrackExpenseReportsVORowImpl)rowsetiterator.next();
    ---------------------------------------------------------------OIEUtil.class-----------------------------------------------------------------------------------------
    public static RowSetIterator getNoValIterator(ViewObject viewobject)
    RowSetIterator rowsetiterator = viewobject.findRowSetIterator("noValidationIterator");
    if(rowsetiterator == null)
    rowsetiterator = viewobject.createRowSetIterator("noValidationIterator");
    rowsetiterator.setRangeSize(-1);
    rowsetiterator.setRowValidation(false);
    rowsetiterator.reset();
    return rowsetiterator;
    public static String trimString(String s)
    if(s == null)
    return s;
    if(s.length() < 20)
    return s;
    else
    return s.substring(0, 20) + "...";
    }

  • How to change the text color of certain word in dynamic text field

    i know in html css can done by this <td style="red">You
    are now at <span style="yellow">home</span></td>
    .... the "home" word can change to another color .... any one who
    know this can done in flash , please give some advice or example

    look in the help file for 'setTextFormat', which can be
    applied on a whole
    text field or only part of it.
    "adreny" <[email protected]> wrote in
    message
    news:fb0hon$38q$[email protected]..
    >i know in html css can done by this <td
    style="red">You are now at <span
    > style="yellow">home</span></td> .... the
    "home" word can change to another
    > color .... any one who know this can done in flash ,
    please give some
    > advice or
    > example
    >
    >
    >

  • How to add the quantities in a certain column?

    Hi All,
    I am extracting data from an SAP table. One of the columns in the output is 'Confirmed Quantities'. I would like to sum up these individual confirmation quantities and display the 'Total'. Could somebody tell me the best way and how to do it? Thanks.
    Regards,
    V M.

    V M,
    if you only want to know how to simply sum up the values of 'Confirmed Quantities' that are returned from your query you might use an XPATH expression. With this you can spare out the actionblock and use a very fast transformation instead.
    All you have to do is a expression like:
    YourDataSource.XmlContent{ sum( /Rowsets/Rowset/Row/ConfirmedQuantities ) }
    I hope this might help you out.
    Kind Regards
    Sebastian

  • Does anyone know how to simply edit the text in the spine of hard cover, 40 page book in the book mo

    Does anyone know how to simply edit the text in the spine of hard cover, 40 page book in the book module? I can click into any other text window and edit and change attributes but I am locked out of editing text when it comes to the spine of the book. I spoke to Blurb support and they referred me to Adobe. I spent 45 minutes with support here - no one knew. I am still waiting for a call back with an answer... not holding my breath as it's been a few hours now. HELP!!!

    Thanks for your reply John. I have experienced all the fiddly aspects you mentioned - these are attributes and although changing them requires the skill of a surgeon's hand - it's the actual editing of the text I can't seem to access anymore. The box just won't allow me to do anything except change attributes. Does that make sense? And it's only on the spine where I am having this issue. Puzzled! I have even rebooted the program and just now the computer - to no avail. 

  • How to export the text edit data to excel file without splitting the data in excel file?

    how to export the text edit data to excel file without splitting the data in excel file?
    I have a requirement in SAP HR where in the appraiser can add comments in the area given and can export that to excel file. Currently the file is getting exported but the comments getting split into deifferent rows.
    I want the entire comment to be fit in one row.
    Please help.
    Thank you

    Hi,
    if your text edit value is stored in 'lv_string' variable.
    then before exporting the value to excel you have to remove CL_ABAP_CHAR_UTILITIES=>NEWLINE
    that is '#' from the variable lv_string.
    for that use code some thing like this.
    REPLACE ALL OCCURRENCES OF CL_ABAP_CHAR_UTILITIES=>NEWLINE in lv_string WITH space.
    I think this will do the trick.

  • I downloaded a vector file from Shutterstock. How do I edit the text in Photoshop? If i enlarge the image- the pixels are awful and the image is distorted.

    i downloaded a vector file from Shutterstock. How do I edit the text in Photoshop? If i enlarge the image- the pixels are awful and the image is distorted.

    jessicae28493569 wrote:
    i downloaded a vector file from Shutterstock. How do I edit the text in Photoshop? If i enlarge the image- the pixels are awful and the image is distorted.
    What is the file format of the vector you downloaded?  Custom Shapes have a .PSP extension, and are placed according to this table.
    Preference filenames and locations in Photoshop CC
    They will then be loadable from the Custom Shapes drop down — click on the cog icon > Load shape > Find your downloaded vector.
    Once placed in the image, it will appear as a Shape layer, and can be edited with the Path, and Direct Selection tools (black and white arrows on the toolbar)

  • How do I edit the text in a pdf file that has been converted to a Word doc

    How do I edit the text in a pdf file that has been converted to a Word doc?

    Hi BridgetteJean,
    Please go through this video this explains how to edit text in a pdf document.
    http://tv.adobe.com/watch/acrobat-tips-and-tricks/editing-text-with-the-typewriter-tool/

  • I am using CS3 and want to save a file as a pdf where someone can then edit the text. How can I do this please? Thank you :)

    I am using CS3 and want to save a file as a pdf where someone can then edit the text. How can I do this please? Thank you

    You might be able to use the newest adobe reader program/application for that.
    You would have to save your pdf out of photoshop cs3 without any text and then add the text to the pdf in adobe reader.
    The text added in adobe reader can't be edited in photoshop, so the other people would have to adobe reader or acrobat to edit the text.
    https://helpx.adobe.com/reader.html

Maybe you are looking for

  • Program using class "cl_salv_table"

    Hi Experts, I am new to this class (cl_salv_table). I wrote a program with general ABAP code. But, according to my standard I should use standard ALV factory class i.e., 'CL_SALV_TABLE'.  I wouls appreciate if anybody could send me the code using thi

  • How do I remove all traces of Pocket Cloud from my iMac

    iMac (mid 2007) 3gb RAM, recent installation of Mavericks.  Now runs extremely slow and Activity Monitor indicates that "PocketCloudServices is using huge percentages of CPU and memory. I need to remove the program, but cannot do so. Any ideas?

  • IStat Menus freezes in Mountain Lion

    Is anyone else having trouble with iStat Menus in Mountain Lion? Ever since I upgraded, my iStat has been freezing randomly. It will sometimes freeze for hours and then unfreeze briefly and then freeze up again. I can tell because my clock has second

  • Moving array between classes

    Hello there. Right, i have 3 classes with which i am having a bit of trouble with. The first class, "Drawing," creates an array called componentList. Then, in another class called "DrawingCanvas" i have an instance of "Drawing" created. In this secon

  • What is the name of the CD drive?

    I'm taking an online graduate course, and they have sent me a CD-ROM with a audio lecture and accompanying slide presentations. The preferences part of the online BlackBoard class environment prompts you to identify the cd drive on the computer to ma