How to remove the note text for column (portal)

Hi to All,
Just i wanted to know how to remove the note (text) which is coming infrond the column in the appraisal template in portal view.
My client doest want the text "note" (which i highlighted in the yellow) comming infrond the coulum. Pls can anyone tell me how can i remove only the  "note" text from the template?
Kind regards,
Saritha

Hi Saritha,
In SE80, Choose Web Dynpro Component HAP_DOCUMENT_BODY and you will find the component controller node, double click it and goto methods tab. Here you can find the method CONVERT_CONTEXT_TO_UI, this method will be triggered twice. Search for the code "CALL METHOD lo_nd_t_cells->get_static_attributes_table", this is the method which defaults the "Note" based on the row and column iid. You can overwrite the code by writing the implicit enhancement.
Hope it will help you and revert back in case of queries.
With Regards,
Giriesh M

Similar Messages

  • How to change the menu text for menu exit in Version 3.1i

    Hi,
    I am working on an enhancment in CJ02 transaction in 3.1i version. I have implimented menu exit for it , but I am unable to change the menu text for it.Please let me know how to change the menu text for that menu.
    Thanks
    Suman

    Hi Shree,
    Thanks for the response. Please find the Enhancement name here "CNEX0006".
    Thanks
    Suman

  • How to remove the copyright Text

    Hi,
    I wan to remove the copyright text(*Copyright (c) 2006, Oracle. All rights reserved.*) from the OAF page.
    How to do that?
    Any help would be highly appreciated..
    Thanks...

    Hi,
    If it is custom region then set "Autofooter" property in pagelayout to false.
    This removes the privacy statement and copyright information from the page.
    --Prasanna                                                                                                                                                                                                                                                                                                                                                               

  • How to retrieve the header texts for a contract

    HI,
      i think we need to use the FM read_text to get the header texts for a contract but dont know how to use the FM like what all the parameters are passed to that to get the header texts of a contract(va43).
    any help is appreciated with points.
    thanks
    prasad

    Hi,
      Pls refer this code,    
        CALL FUNCTION 'READ_TEXT'
                  EXPORTING
                    client                  = sy-mandt
                    id                      = '0001'
                    language                = sy-langu
                    name                    = v_textid
                    object                  = 'KNMT'
                  IMPORTING
                    header                  = t_header
                  TABLES
                    lines                   = t_lines
                  EXCEPTIONS
                    id                      = 1
                    language                = 2
                    name                    = 3
                    not_found               = 4
                    object                  = 5
                    reference_check         = 6
                    wrong_access_to_archive = 7
                    OTHERS                  = 8.
                IF sy-subrc EQ 0.
                  LOOP AT t_lines.
                    CONCATENATE w_arktx t_lines-tdline INTO w_arktx
                                       SEPARATED BY space.
                  ENDLOOP.
                ENDIF.
                IF w_arktx NE space.
                  MOVE w_arktx+1(1583) TO t_lips-arktx.
                ELSEIF w_arktx EQ space.
                  CLEAR w_text_name.
                  CLEAR v_textid.
                  wa_lips-matnr = t_lips-matnr.
                  wa_lips-vkorg = t_likp-vkorg.
                  wa_lips-vtweg = t_lips-vtweg.
                  w_text_name = wa_lips.
                  CLEAR w_arktx.
    Retrieval of Sales Text
                  CALL FUNCTION 'READ_TEXT'
                    EXPORTING
                      client                  = sy-mandt
                      id                      = '0001'
                      language                = sy-langu
                      name                    = w_text_name
                      object                  = 'MVKE'
                    IMPORTING
                      header                  = t_header
                    TABLES
                      lines                   = t_lines
                    EXCEPTIONS
                      id                      = 1
                      language                = 2
                      name                    = 3
                      not_found               = 4
                      object                  = 5
                      reference_check         = 6
                      wrong_access_to_archive = 7
                      OTHERS                  = 8.
                  IF sy-subrc EQ 0.
                    LOOP AT t_lines.
                      CONCATENATE w_arktx t_lines-tdline INTO w_arktx
                                         SEPARATED BY space.
                    ENDLOOP.
                  ENDIF.
                  IF w_arktx NE space.
                    MOVE w_arktx+1(1583) TO t_lips-arktx.
                  ELSE.
    REgards
    srinivas

  • How to Remove the default Block for payment in MIRO

    Hi,
    In MIRO after posting the document message is coming,
    "Document no. 5105600184 created (Blocked for payment)"
    But our requirement is to remove the default "Block for payment"
    What is the necessary setting to be done to remove it.
    Thanks
    Prasant

    Hi
    Thanks for your reply.
    But in vendor master "Payment Transaction Accounting View"
    I have selected the check box" free for payment".
    still the message is coming in MIRO
    Prasant

  • How to remove the page break for CSV report

    Hi,
    I'm working on a rdf report and have an issue with page break.
    As usual there exits a page break in the report output. how do I remove it.
    work around: set Page break before/after : NO
    worked on margin re-size, how ever could not resolve the issue.
    Can any one help me on this.
    Thanks in advance.
    Thanks,
    Santhosh

    There are two ways to do this:
    1) If you want to remove and individual dimension from a presentation, you can hide the dimension. This can be performed directly from within QueryBuilder. Within the first section of Query Builder that shows the selected measures selected and associated dimensions, simply remove the required dimensions from the right dialog panel.
    2) To hide all page items within a presentation, simply add the following the property, pagingControlVisible="False", to the presentation tag in your JSP. For example:
    <orabi:Presentation location="Local Computer Sales/Products/KPI Sales Prior Period and Prior Year" id="BIProductKPIs_pres2" pagingControlVisible="False"/>
    Hope this helps
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • How to show the message text for constraint violations

    Hi all,
    In a batch procedure a primary key is violated (ORA-00001). For the primary key, a message is recorded in the TAPI and the message table.
    How to show the enduser a proper message text instead of the ORA-00001.
    We are using Designer 6 with Headstart 2.1.2.
    Thanks in advance,
    Joep

    Joep,
    If you try to insert the record by calling the ins procedure of the Table API, you will see that it will result in an ORA-20998 message, which means that the error message details reside in the CG$ERRORS plsql message table. These messages can be extracted e.g. with the messages.sql script, shipped with headstart.
    If you do not want to rewrite your direct DML (insert into [table name] ...) in the complexer calls to the TAPI services, you might want to user VAPI's for it. In fact, this is one of the major advantages of using VAPI's.
    The CDM guidelines volume, chapter 6 states that:
    <I>The front end no longer needs to trap declarative constraint
    errors (Primary Key, Unique Key, Not Null and Check
    Constraint violations) and replace them with a user-friendly
    error. The View API issues DML statements through the TAPI
    and the TAPI traps all declarative constraint errors, and puts
    user-friendly message on the stack, in the preferred language of
    the user! Fore more information, see the section, Completeness
    of Rule Violations Reported in Front End, in this chapter.</I>
    So the only thing you need to do is generate VAPI's, and trap the ORA-20998 message (qms$errors.qms$exception) in an exception handler, where you retrieve the user friendly messages from the message stack!!
    Regards, Marc

  • How to mofidy the selection text for a report

    Dears,
    Do you know how to modify a selection text in the selection screen of a standard report, such as changing "Storage Location" in the selection screen of report MB5B to "storage Loc"?
    one of a way to realize it is to modify the text of relevant data element.
    except modifying the data element directly, It seems that use SE63 could do it, but I forgot how to use it.
    Thanks all for your reply.
    Zhongkai

    Hi Liu,
    Check this link for translations thru SE63:
    http://help.sap.com/saphelp_sm310/helpdata/en/b4/54601d77f38e429ffad9e3e11c1b25/content.htm
    Hope this helps you.
    Regards,
    Chandra Sekhar

  • HOW to remove the decimal points for particaular field

    hi friends,
    Iam printing the quntity in decimal mode like 2.000.
      but i want to print this as only 2.
      How can i remove the the decimal in smart form..
    Iam  printing  amount as 1234.00000.
    But i have to print two zeros after decimal point..how can i remove zeros .
    appricioate for u r answers..
    regards,
    sampath kumar

    You may use the option
    field(.0) for printing the quantity
    field(.2) for printing the amount..
    Go through SAP help given below..
    <b>Number of Decimal Places
    A program symbol of one of the data types DEC, QUAN, and FLTP can contain decimal place data. Use the option below to override the Dictionary definition for the number of decimal places for the formatting of this symbol value.
    Syntax
    &symbol(.N)&
    The EKPO-MENGE field contains the value 1234.56. The Dictionary definition specifies 3 decimal places and an output length of 17.
    &EKPO-MENGE& -> 1,234.560
    &EKPO-MENGE(.1) -> 1,234.6
    &EKPO-MENGE&(.4) -> 1,234.5600
    &EKPO-MENGE&(.0) -> 1,235</b>

  • How to create the embeded text for snippets?

    I would like to use a snippet do embed flash video into my website. I could manage to program a page with golive containing only the video. But where can I get the generated code to embed like I would get from youtube?
    Just to prevent questions: the video is so long that it is rejected by youtube. So I have to program a workaround.
    Thanks for any suggestions.

    i would actually not use golive to create a weirdo page - just use html to directly add the movie directly into iweb, using the snippet thing.
    if you already have your flash movie made, then just upload to your server or to your idisk (if you use .mac)
    then open iweb and add a html snippet. then paste the following text:
    +<object width="X" height="Y">+
    +<param name="movie" value="http://path/to/flash.swf">+
    +<embed src="http://path/to/flash.swf" width="X" height="X">+
    </embed>
    </object>
    replace X and Y with your width and height in pixels. then enter the path to your flash file.
    max

  • How to change the wortem text for Task TS00008267 in workflow

    Hi,
    Can you please help me in changing wortem text for Task TS00008267 in workflow.
    This is task is standard for User decision.I want to add my own text and insert my own variables.
    Thanks in advance.
    Chetan

    Hi
    PFTC - display
    PFT_CHG - change
    PFTC_INS - create task
    PFTC_COP - Copy the task
    Regards
    Muthu

  • How to decide the development platform for developing portal content?

    Dear Experts
    There are several platforms on which we can make
    portal contents for SAP Portal.
    1)Web Dynpro for Java
    2)Web Dynpro for ABAP
    3)PDK for .NET
    I am trying to find out which of them would be most
    efficient while developing system for the client.
    It may be that for one who knows Java, Web dynpro for
    Java would be efficient and so on.
    However, when there is a situation where the  developers
    need to be trained before the project, which of these
    platforms would be the most efficient.
    Beside the evaluation  based on language of development,
    are there some other evaluation based on criteria like the
    ease of development, deployment and debugging, cost for the
    softwares and hardwares needed for the projects, contents
    of the class library, templates provided and so on?
    Does anybody have some supporting document that describes
    on which circumstances which of these technologies would
    be efficient while making systems for the client?
    It would be of great help if you could share your insights.
    many thanks,
    Sudeep

    hi sudeep.....
             whatever technology, you work in , the output is going to be the same and he ecnd user cannot find out what technology you have used.... ABAP would be better because its growing up fast and many applications are being created using web dynpro abap.
    ---regards,
       alex b justin

  • How to change the lable text for a search parameter in af:query

    Hello.
    I have a db table with a column "Date Requested". I have created a search functionality using the ViewCriteria with bind variables to filter the results in a given date range based on the Date Requested Column. I have used it as the af:query with table as results on the screen.
    I want to change the label on the screen for that search attribute as "From Date" and "To Date". Right now I see the Date Requested as the label name in the af:query component
    Please let me know if you have any suggestions.
    Thanks,
    Vinay Polisetti

    Vinay,
    Not Sure. As per the below threads there is a bug (bug 12806987) raised for this sometime back. Not sure about the status of it.
    View Criteria: I can´t change the labels to bind variable
    Label of bind variables with Criteria inside ViewCriteria
    You could probably try the follow the below link and try to change it programatically.
    Binaries: Customizing the <af:query> component display by overriding CriteriaItemAttributeHints
    Cheers
    AJ

  • JTable - how to disable the drag / move  for column

    hi there, please give me a hand with this problem,
    i am trying to disable drag / move column in JTable.
    ie.
    ===============================================================
    JTable mainTable = new JTable();
    tableModel recordTable; //this extand AbstractTableModel
    this.mainTable.setModel(this.recordTable);
    ie.
    Product size quantity price
    Shoe 8 200 $120
    Shirt 9 100 $100
    Dress 12 50 $60
    the position of column Product,size,quantity,price, however, if i click on price and drag, i will be able to move the whole lot and place to different position ie. Product,price,size,quantity.
    =======================================================================
    please let me know how can i stop this happening....

    Try something like this:
    mainTable.getTableHeader().setReorderingAllowed(false);

  • How to remove white bounding text box

    Hi,
    I'm a multimedia student and need to create a portfolio in Director and would like to know how to remove the white text box when writing text content? I already have a background and would like to have plain black or white writing on the bakground, do not want the white bounding box. How do I remove that?
    Thanks

    It really depends upon what kind of text member you used, but in general, you would select the sprite on the stage, then go to the Sprite tab of the Property Inspector.  Find the Ink setting and change it to Matte or Background Transparent.

Maybe you are looking for

  • I can no longer read DRM protected books

    I have had ADE and Sony Reader for PC for some years without any major problems. Recently I have been having some issues downloading a particular book - the acsm would not download the file. In trying to fix this I seem to have created a far worse pr

  • Zen Touch Software Problem!!

    Hi! I've still got this old problem with my zen touch. I did some backup of my own files and copied them on my zen touch. Now that I need this backup I can't get any access to my data files on my Zen Touch. I have no problems accessing the music file

  • Failure while unmarshalling message: Failed to transform MFL content

    hi , I am performing Flat to XML message transformation using OSB. I have made a MFL using format builder and imported that MFL into my proxy service (Request Message type). now when i am trying to run my proxy service.its Showing error "Failure whil

  • MSSCONCHECK.SQL query

    We are in the process of running the SAP R/3 Upgrade from 4.0B to ECC 5.0. Current environment is: - Windows 2003 Std - MSSQL server 2000 We are receiving an error when the PREPARE program reaches the point of running the MSSCONCHECK.SQL query. The f

  • Visual Beans in JSP

    Hi All, Has anyone experimented with Visual beans in JSP? We are failing to represent visual beans in a JSP page. Someone suggested to use applets to bring in Swing thru JSP. But, the applets are pretty slow, specially for big UI. By putting it in JS