Add message to iview

hi All,
could you please explain me...... how to add text to an iview(ESS iview) without touching code.
if it is possible let me know the steps to do .
thanks ,
Pavan.

Hi,
You should read the wiki, it contains some useful information : [ESS Personal Information UI enhancement without modification |http://wiki.sdn.sap.com/wiki/display/profile/ESSPersonalInformationUIenhancementwithoutmodification].
Regards,
Pierre

Similar Messages

  • Need to add Message variant field in BD87 selection option

    Hi Friends,
    We have a requirement to add "Message variant" field in BD87 selction screen. Our technical team is doing analysis from there end. Mean time we came to know that the field can be added through report variant in customiziting. If anyone know how to add the additonal field thorugh customization Please guide us also please pro.

    Hi Jaheer ,
                     If you talking Abuot heading in out put screen then use TOP-OF-PAGE
    or Else you use "Write:/ " Statement in you program...So that when first line is complete it will go to next line...
    What I understand from your Question....
    Souman

  • Improper message in iview when "Check in Now " fails in edit locally

    Hi
    We have implemented our own repository manager. I am facing a problem while Checking in a document after edit locally.
    Usually edit locally undergo followings set of activities.
    1.     Get the content of file using Content manager implementation and open that using appropriate application.(say a txt file in note pad)
    2.     Then user can edit the file and save it.(it goes to temp directory)
    3.     Three buttons appear in the iview (Check in now ,Check in later,Cancel editing)
    4.     If user choose “Check in now “option .It should  save the file in backend, which involves following steps
    i.     Lock the resource
    ii.     Set content and Save
    iii.     Unlock
    If any one of this 3 step fails while Check in Now it should display an appropriate message in iview stating the reason of failure.
    So when a user without having Lock permission tries to perform a “Check in Now”, the first step fails (i).and it throws a exception which is wrapped as a ResourceException. In fact the same error message is getting written to the log4j files  and it doesn’t proceed with any  backend operation.
    But I am getting a message “File "dmadmindoc.txt" has been checked in”.
    Where as file has not been checked in .Means application logic works fine, but error message wrapped doesn’t get reflected to end user.
    Can any body suggest overriding this message?
    Regards
    Arati

    Hi Siva,
    Please double-check the prerequisites at http://help.sap.com/saphelp_nw04s/helpdata/en/3b/cbf52dde472343a5b8941dd43cc479/frameset.htm - for example, that you are not in "Personal Documents". Also keep in mind that you might need to restart the server if you have switched on the application properties service at runtime.
    If all this doesn't help, open an OSS message.
    Hope it helps
    Detlev

  • How to add my own iview in Compliance Calibrator

    Hi Experts,
    can plaese tell me how to add my own iview in Compliance Calibrator 5.1.

    Anubha,
    If you are trying to add an iview or URL to Compliance Calibrator you have to login as an administrator go into the configuration tab, and go to Custom tabs toward the bottom of the left screen.  Here you can add custom URL links that will appear as tabs in Compliance Calibrator.
    Hope this helps
    Gabe

  • When to add message type to distribution model

    hi
    i am bit confused on when to add a custom/std message type to distribution model. what are the conditions. is that always necessary to add the message type to distribution model.
    thanks

    [http://sap.ittoolbox.com/groups/technical-functional/sap-interfaces/add-message-type-in-ale-distribution-model-1192885]
    [http://docs.sun.com/app/docs/doc/820-5014/ggcpd?a=view]
    [http://publib.boulder.ibm.com/infocenter/wtxdoc/v8r2m0/index.jsp?topic=/com.ibm.websphere.dtx.packsapxi.doc/tasks/t_pack_sapxi_Create_a_Destination_Model_BD64.htm]

  • How can i add message in "migo"  ( good receipt ) ?

    how can i add message in transction "migo"  ( good receipt ) ?
    i tried userexit MBCF0002
    but i can't see more then one
    line of the order and the user
    get 3 messages ( in case of order with 3 lines )
    the badi's
    MB_DOCUMENT_BADI
    MB_MIGO_ITEM_BADI
    don't give me the option
    to add message .
    i tried to add message in the check or befor the save .
    this is the message  :
      CALL FUNCTION 'POPUP_TO_DIS
    PLAY_TEXT'
          EXPORTING
            titel              = text-001
           textline1          = text-001
          TEXTLINE2          = ' '
           start_column       = 25
           start_row          = 6.
       message s000 with text-002.
    ENDIF.

    OK, I'm on ECC6.0 system that's why you can't find it in 4.7 version.
    I'll copy and paste the sample code for you below.
    Sample Method IF_EX_MB_MIGO_BADI~CHECK_HEADER
    method if_ex_mb_migo_badi~check_header .
      data: ls_bapiret type bapiret2.
    * Refresh return table
      refresh: et_bapiret2.
    * Check header data (W-/E-Messages are useful)
      if gs_exdata_header-badi_nummer is initial.
        ls_bapiret-type       = 'W'.
        ls_bapiret-id         = 'M7'.
        ls_bapiret-number     = '895'.
        ls_bapiret-message_v1 = 'Enter number on external screen'(001).
        append ls_bapiret to et_bapiret2.
      endif.
    endmethod.                    "IF_EX_MB_MIGO_BADI~CHECK_HEADER
    Sample Method IF_EX_MB_MIGO_BADI~CHECK_ITEM
    method if_ex_mb_migo_badi~check_item .
      data: ls_extdata type migo_badi_example_screen_field,
            ls_bapiret type bapiret2.
    * Refresh return table
      refresh: et_bapiret2.
    * Read external data
      read table gt_extdata into ls_extdata
           with table key line_id = i_line_id.
    * Check if all entries are done (W-/E-Messages are useful)
      if ls_extdata-badi_erfmg is initial.
        ls_bapiret-type       = 'E'.
        ls_bapiret-id         = 'M7'.
        ls_bapiret-number     = '895'.
        ls_bapiret-message_v1 = 'Enter quantity on external screen'(002).
        append ls_bapiret to et_bapiret2.
      endif.
      if ls_extdata-badi_erfme is initial.
        ls_bapiret-type       = 'E'.
        ls_bapiret-id         = 'M7'.
        ls_bapiret-number     = '895'.
        ls_bapiret-message_v1 =
           'Enter unit of measure on external screen'(003).
        append ls_bapiret to et_bapiret2.
      endif.
    endmethod.                    "IF_EX_MB_MIGO_BADI~CHECK_ITEM
    Implement your according to the examples above.
    Hope this solves your problem.
    Cheers,
    Sougata.
    P.S. You need to create a brand new Z implementation via SE19 using the BADI definition MB_MIGO_BADI
    Edited by: Sougata Chatterjee on Dec 31, 2007 1:05 AM

  • How to set/add message to the FacesMessage?

    My code looks as follow:
    <h:commandButton id="submit" value="Submit" action="#{myBean.doSearch}"/>
    <h:messages layout="table" showDetail="true"/>
    What I want is: I will do some check in the doSearch(). If something wrong, I will add message to the FacesMessage so it will be printed out by <h:messages.../>
    How shold I do in the doSearch()?

    Isn't this what you want in your doSearch()(???):
    FacesContext facesContext = FacesContext.getCurrentInstance();  
    FacesMessage facesMessage = new FacesMessage(errorMsg);
    facesContext.addMessage("nameOfForm", facesMessage);/Birna

  • SendMail -'Add Message to action log' on as default ?

    Hi
    Is it possible and how, to set the 'Add Message to action log' checkbox, checked, as default in the form?
    Thanks.
    /Peter

    Also, the Send Email source code can now be found at Codeplex for you to "play around" with if you would like to add new features or functionallity.
    https://scsmsendemail.codeplex.com/
    Regards
    //Anders
    Anders Asp | Lumagate | www.lumagate.com | Sweden | My blog: www.scsm.se

  • No longer able to add messages?

      I have two accounts to which I can no longer add messages via the Pay As You Go site, or through the GoPhone Support (800-) number. When I click the Features tab on the PAYG site, both say "No package is available for purchase," and have done this since I opened the accounts. That was okay as long as I could still renew and add messages via the 800-number. Now the automated system wants me to change my plan, and buy things I don't need.   The accounts are for MMS cameras, not phones. I can (and do) buy "minutes" on the PAYG site, but I don't need to call Canada or Mexico or anyplace else for $30/month, when the 10¢/minute plan with 1,000 messages works (or worked) just fine.   I just noticed that one account says "Smartphone 10¢/minute plan" on the PAYG site. The other says "10¢/minute" at the top of the page. The main balance for that one is now over $90, but I can't add any messages because of the "No package is available" problem.   The nearest AT&T store is a sixty-mile round trip from my home. I have five accounts with AT&T, but I'm pretty tired of this.

    I have a gophone and no they won't allow packages to be purchased unless you upgrade to a monthly plan. which sort of negates the idea of pay as you go. gophone users can no longer pay what they need when they need it. 

  • Add message

    Hello,
    I have a FORM.
    Based on sys.all_users table
    It has simple functionality as below:
    Its allow user to unlock any account.
    It does work.
    I want to add message to the form as below:
    When I clicks on unlock button,
    and its processed.
    it should bring the message as "Account is unlock".
    If it does not find user the message will appears as
    "Account not found"
    here is the code on when_button_pressed trigger of unlock button.
    unlock_account(:item_name);
    procedure unlock_account is as follows:
    Procedure is existed on database level.
    create or replace procedure unlock_account
    (p_username in all_users.username%type)is
    begin
    execute immediate 'alter user ' || p_username || ' account unlock';
    end;
    DN

    Capture the Exception and initialize an OUT variable with the appropriate message. And display it in the form.
    Or you can have the procedure in the form it self instead of database.
    Some what like this :
    v_ins_stm := 'alter user :username account unlock';
    FORMS_DDL('BEGIN EXECUTE IMMEDIATE '
         ||''''
         ||v_ins_stm
         ||''''
         ||' USING '
         ||''''
         ||p_username
         ||''''
         ||';End;');
         IF FORM_SUCCESS THEN
              message('Account is unlock');
         ELSE
              MESSAGE('Error while unlocking the Account :'||DBMS_ERROR_TEXT);
         END IF;
    thanks
    Pranati

  • How to ADD field in iview ?

    hi,
    in portal-iview i want to add a field.
    when i go to 'portal-content -> open the iview with right click -> preview' and then
    do ctrl-alt-right-mouse click i got to the customizing of the fields.
    i know how to HIDE fields there, but i don't know how to add fields ? in the list
    of the fields the necessary fields are available, BUT i only have to options:
    hide -> YES or NOT PERSONALIZED
    any ideas ?
    reg, Martin

    Gopal,
    the root element of this fields does NOT have the option 'decorate'.
    it is the quoata overview of ESS : sap.com/ess~quotas
    the top of the tree has option 'decorate', but this is above the necessary table where
    i select the data.
    my adrl is 
    martin.svik(at)denzel.at
    maybe we can 'change' some screenshots where you can send me yours and i can
    send you mine to explain it in a better way
    reg, Martin

  • Trapping on the "Add" message box

    Hi,
    I am trapping an event on the Add button of a document but before I add, I need to check something, but I need it to be after the following message box appears…
    You cannot change this document after you have added it – continue?
    and before the document is added to the database.
    Using pVal.Action_Success as not true is too early and when it is true is too late.
    Any help appreciated,
    Robin

    Hi Ad,
    Thanks for the reply.
    I suppose I was thinking that when you confirm the action, by clicking 'Add', SBO has not begun it's actions. It seems crazy that I cannot trap here, as if the user clicks cancel, I need to change something on document row level.
    Thanks,
    Robin

  • How to add a custom iview to the portal tool area

    Hello:
    We want to add some simple text like date,day and some
    more things to the portal tool area, where a KM search
    box, and collobaration link exists now.
    I tried to look up for the tool area iview par file, but
    only found, *.ept file only which doesn't contain any
    code.
    I hope atleast some of the clients might have tried this.
    If you will you please shed some light on how to achieve
    this task.
    Thank you very much in advance for the help,
    Prasad Nutalapati

    Hi Prasad,
    try to do this:
    1) download the par file of the standard toolbar. You can find it under:
    \usr\sap\P602\j2ee\j2ee_00\cluster\server\services\servlet_jsp\work\jspTemp\irj\root\WEB-INF\deployment\pcd
    its name is: com.sap.portal.navigation.toolarea.par.bak
    2)import it into eclipse with another name, i.e. com.customer.portal.navigation.toolarea
    3) modify as you need the jsp contained in it in order to satisfy your requirements.
    4) deploy the par into the portal and create a new iview based on it.
    5) put this iview into the framework page you want to use, hiding/deleting standard toolbar
    these steps are OK if you want simply modify the layout of the toolbar, you cannot modify the logic behind it.
    If you need to do that, for example add some buttons which perform some custom actions, you have to develop a new component from scratch using the portal development paradigms.
    I hope this could help you
    Cheers
    Roberto

  • Add message to iDoc status

    I created Z_ functional module for inbound Sales Order iDoc processing.
    I want to add my own warning message to iDoc status:
        CLEAR idoc_status.
        idoc_status-docnum = idoc_contrl-docnum.
        idoc_status-status = '64'.
        idoc_status-msgty  = 'W'.
        idoc_status-msgid  = 'ZMSERIES'.
        idoc_status-msgno  = '005'.
        APPEND idoc_status.
    When i test in Test Tool WE19 using button "Inbound functional module" message successfully added to iDoc (WE02).
    When i click "Standard inbound" - there is no my message in iDoc status.
    Maybe i should use another status number? Instead of '64'?

    I dont think you should change status number, but i ask you to check it once with proper configuration settings

  • Add message to Processing Log for an action

    Hello experts!
    I wanted to know, if it is possible to add a custom message to the Processing Log.
    Background:
    I have an action, which is defined as a method call. In this method, I send a mail to multiple recipients. Now I want to show these recipients in the log.
    Does anybody know how I can solve this problem?
    Greetings,
    littlesam

    CALL FUNCTION 'CRM_MESSAGE_COLLECT'
          EXPORTING
            iv_caller_name = gc_object_name-orderadm_i
            iv_ref_object  = is_orderadm_i_wrk-guid.
      ELSEIF ls_set_maintain-data-zz0010 EQ 'B'.
        MESSAGE ID 'ZMSG_CRM_ORDER' TYPE 'E' NUMBER '012' WITH
          is_orderadm_i_wrk-ordered_prod
          INTO lv_save_message.

Maybe you are looking for

  • How do I connect to a database on a different machine(URGENT PLEASE)

    Hello all I have a Web server which is on a Linux box but the database I wish to connect to is on Windows NT. How can I connect to the data source. Both Linux and Windows machines are on the same network at the moment but will change later on. Please

  • Correlation trouble in BPM

    HI everyone, We have a BPM scenario where 2 messages or files are picked and combined into a single message and passed onto the receiver system( Which is SAP ECC in this case). Though both the files get picked, the third message is not generated. Bot

  • I-Web 1.1.2

    I recently started posting on my blog again. The comments link no longer appears, although it shows up within the program. My .mac account is running out in January and I am thinking about dropping it. What is a blog without comments??? I am told thi

  • Cash Journal : Error "Inconsistent amounts" during a line items reversal

    Dear Experts, i have posted a line item in Cash Journal. now when i m trying to delete/reverse it, i m observing a error "Inconsistent amounts" that leads to a ABAP dumb "FMGL_CHECK_PERIODS_REV_REAL" i have dowloaded & applied a note from SAP 1247225

  • What is my username?

    my username that you can search is [Removed for privacy] my friends cant find it also not when they only use [Removed for privacy] pls help me!!  Subject/title edited; please, no profanity in posts. First things, first: for your safety and protection