Shows message of custom field in customized ESS?

I customized a ESS detail view by adding an additional field there. This field is mandatory. How do I show the message to say that this field is mandatory like other mandatory fields in standard view. Thanks!

Hi
To get Standard  Mandatory error message for your  cutom element you need to follow the below procedure as ESS standards. If you put required = true only "star" mark will come.
1) At webdynpro UI element (Telphone) if you change the property to required only "Star" mark will come.But it not it not acts mandatory.
2) To make mandatory go to backend acceess following table : "V_T588MFPROPC" using sm30. with infotype ="0006"
Make entry ; Version means "Coutry Group" , Subtypr for Emergency Contact "004" , struktur "P006"
Fileld Name : "TELNR" , check the first check box i.e "Musseingabe" to make mandatory.
Many cases it will work if not works same repeat in "V_T588MFPROPS' table.
Treat above as the example change your field name of your application (Bank ,Address...etc) and Country.
Regards
-SS

Similar Messages

  • Update Show Messages with customized warning message

    Hi Friends,
    We have a requirement, where if the PR line item value is 0.01, a warning message should be triggered while creating a PO with the corresponding PR number. 
    We are able to Trigger the Warning message, but it is not getting updated/ stored in the PO (Show messages) for further reference. once the user clicks OK or presses enter button, the message goes off as it is the process, but it needs to be updated, so that the user can get the warning message when trying to Test the PO.
    Hope the problem is clear, do let know if more details is required.
    Thanks in advance.
    Regards,
    Vasanth

    Hi,
    Do you issue message in exit EXIT_SAPMM06E_012. (include ZXM06U43)?
    We use this exti for PO  checks - all messages issued are then vissible in option 'show messages' next to PO date.
    Hope it helps.
    regards,
    wojciech

  • Show value in "customer" field of FAGLB03

    Hi Experts,
    we have a requirement to Show value in "customer" field of FAGLB03 for all sales related transactions.
    Your support is appreciated.
    Thanks

    solution has been implemented using badi FAGL_ITEMS_CH_DATA

  • Custom fields in ITS ESS

    Hi
    I have couple of custom ESS fields on certain infotypes that need to be displayed in ESS. How do I do this.
    For example my Previous employers IT has three additional fields in the back end, but hwen I try to get these fields to portals via PZ28 service, the custom fields do not appear. Do I need to do any thing specific to get the fields avialable on the ESS.
    Even the Function module 'HR_ESS_PREVEMPERDETAIL_13' that i sused to display these fields does not get the custom fields. I debugged this FM but to no use.
    Appreciate any guidance here
    regards
    Raj

    Hi,
    I assume you must have done Steps 1 - 4, and must have  missed out Step - 5
    Check List
    1) The FM HR_ESS_PREVEMPERDETAIL_13 is found in the Function group : EHA10
    Copy the same to ZEHA10.
    The corresponding function modules are copied to Zxxx.
    2) Add the required fields to the screen (200 for the Detailed; 100 for Overview)
       and the neccesary code handling it.
    You will find the point where you need to add your code while debugging the Std TCode
    Eg:- For save : You can add code to the include LZEHA10F01 Line 416
    ie; After
    if modus eq update_mode.
    perform call_change
                 using p0023      "BAPI call
                old_p0023
                return.
    if return-type ne space.
    3) Save and activate the Function group
    4) Take the TCode in se93. You will find it refering to the Pgm : SAPMPZ28
    Simply copy the TCode to ZPZ28; Keeping the rest of the parameters the same.
    5) Take the Customizing table T77WWW_SC. (In SM30)
    This keeps tracks of all services in ESS
    Select the records for PZ28 (Previous Employer) and Copy the records to ZPZ28 and
    make sure the corresponding Function modules are Zxxx (your FMs).
    This should take care of your Customised approach of handling Previous Employer Service.
    Cheers,
    Remi

  • How long does it take for the custom field created in SFDC to show up in the field mapping list?

    How long does it take for the custom field created in SFDC to show up in the field mapping list? I hit the refresh field button, but it is not showing up after 5 min. Do I just need to have patience? 

    Hi,
    What do you have to do to the field in SFDC to make it accessible so that it shows up in the Eloqua field mapping area as a field to be mapped?   

  • How to show a single error message for all fields

    Hi
    I have a JSF from containing around 10 controls(input, select etc.) .
    Now I need to display an error message in case any of the mandatory control has validation error.
    Message format would be like
    "*Please,Complete the fields marked with yellow!"* The message I need to show in a div tag with Yelow background.
    Currently, I am getting individual default error message in case validation fails and related field is bordered with Yellow.
    My code is below.
    *<h:panelGrid columns="3">*
    *<h:outputText value="#{msgProv.bi_firstname}" />*
    *<h:outputText>*
    *<rich:spacer width="100px"></rich:spacer>*
    *</h:outputText>*
    *<h:panelGroup>*
    *<h:inputText*
    *value="#{brokerInformationFields.firstName}"*
    *label="#{msgProv.bi_firstname}" id="firstName" required="true">*
    *<f:validateLength maximum="10" minimum="2" />*
    *<rich:ajaxValidator event="onblur" />*
    *</h:inputText>*
    *</h:panelGroup>*
    *<h:outputText value="#{msgProv.bi_lastname}" />*
    *<h:outputText>*
    *<rich:spacer width="100px"></rich:spacer>*
    *</h:outputText>*
    *<h:panelGroup>*
    *<h:inputText label="#{msgProv.bi_lastname}" id="lastName"*
    *value="#{brokerInformationFields.lastName}" required="true">*
    *<f:validateLength maximum="20" minimum="1"/>*
    *<rich:ajaxValidator event="onblur" />*
    *</h:inputText>*
    *</h:panelGroup>*
    *<h:commandLink action="#{brokerInformationActions.submit}">*
    *<h:graphicImage value="/images/axa/btn_submit_from.png" style="border:0px;"/>*
    *</h:commandLink>*
    I am using (JSF1.2,Rich Faces 3.3.0,Facelets.)
    And a Phase Listener from
    http://balusc.blogspot.com/2007/12/set-focus-in-jsf.html
    This Phase listener is to border the control with Yellow in case validation fail.
    Now my Query
    *1) How can I show a single message for all fields as I marked above in case of validation failure?*
    *2) Now, the control is becoming yellow borderd when user clicks the submit button and validation fails.*
    *User can move from one control to other using tab. That time proper validation message is appearing.*
    *but the border of the control is not changing to yellow.*
    *What's the correcion can be made to meet that requirement too.*
    regards
    Roy

    Hi Nabheet,
    Thanks for your response.
    The FM returns the error messages if they are standard ones. For example, if the posting period is closed - the FM will not allow the Workflow to proceed further.
    But in this case, I have a custom error - for a particular Profit center, Cost center and I/O fields are mandatory(not at time of parking, but should be filled before posting).
    Since this is not a standard error, this FM will not stop workflow from proceeding further. How can I have the custom error captured in this FM?
    Thanks.

  • Error message in customer exit

    HI ABAPer's,
    I am facing the one problem  while giving the error message in customer exit  ZXM06U43(POCustomer exit). The scenario is i am looping the  tekpo(PO line item) internal tables and doing some validations if any lineitem fail in the validation i need  give the error message .I dd the  but all ways it showing the error in last line item in the  PO.
    Thanks,
    Harinath

    Hi,
    You have to either leave the screen. Also you can try EXIT in place of LEAVE SCREEN as per suitable to your transaction.
    SAMPLE CODE:
      IF SY-SUBRC <> 0.
        MESSAGE E059(ZGO) WITH I_MSEG-MATNR I_MSEG-AUFNR.
        LEAVE SCREEN.
      ENDIF.
    Regds,
    Anil
    Edited by: Anil Katoch on Sep 3, 2009 7:37 AM

  • Need to send a private message to customer care

    Hello, !
    Thanks for posting. You should be able to click here to send us a private message! You won't have to input your username at all; just the message subject and body. See the screencaps below.
    Let me know if you have any other questions!
    -Mariana

    I can't send a private message to customer care because every time I put in my user name, rvrgs2, it says that it can't find my user name. Please let me know if there is another way to contact them. The problem I've been having has been going on for 7 months, and is too lengthy to post here.Thanks.

  • Can we modify the standard AOL Message with custom Message in Seeded Page?

    Hi,
    I have a requirement to change AOL Message with custom Message in Seeded Page.
    In a seeded OAF page when a user clicks on a submit button a standard AOL Processing Message is populated.
    I Need to change the Standard Message and call Custom Message.
    Did controller extension and found that both the messages are populating.
    called the code after super and tried to call before super also.
    Did any one face this issue and resolved it. Kindly provide the solution.
    Regards
    Chaitanya

    Hi Gyan,
    I have tried by extending a sample custom controller.
    Below is the code of TestCO calling create message
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
          OAApplicationModule am = pageContext.getApplicationModule(webBean);
          if (pageContext.getParameter("Test") != null)
              OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_CREATE_CONFIRM",    null,
              OAException.CONFIRMATION, null);
              pageContext.putDialogMessage(confirmMessage);
      }Then I extending the TestCO to XXTestCO and it is calling Update Message
        public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
          super.processFormRequest(pageContext, webBean);
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            if (pageContext.getParameter("Test") != null)
                OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_UPDATE_CONFIRM",    null,
                OAException.CONFIRMATION, null);
                pageContext.putDialogMessage(confirmMessage);
        }got below Confirmation
    Confirmation
    Employee &EMP_NAME with the number &EMP_NUMBER has been created.
    Employee (&EMP_NAME) has been updated.
    Tried below approach also calling the message before super class
        public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            if (pageContext.getParameter("Test") != null)
                OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_UPDATE_CONFIRM",    null,
                OAException.CONFIRMATION, null);
                pageContext.putDialogMessage(confirmMessage);
          super.processFormRequest(pageContext, webBean);
        }got below Confirmation
    Confirmation
    Employee (&EMP_NAME) has been updated.
    Employee &EMP_NAME with the number &EMP_NUMBER has been created.
    My requirement is to print only the message which I have kept in Extended controller i.e. Update message
    Regards,
    chaitanya

  • How to show $ sign alongwith the value in message styled text field.

    Hi,
    How to show $ sign alongwith the value in message styled text field.
    The value is coming from the table column in VO.
    I am working on OAF R12.

    Hi,
    Resolved.
    I used the below code in CO for the solution.
    Formatter currencyFormatter = new OADecimalValidater("$#,##0.00;($#,##0.00)",
    "$#,##0.00;($#,##0.00)");
    OAMessageStyledTextBean msrpField = (OAMessageStyledTextBean)webBean.findChildRecursive("MSRP11");
    msrpField.setAttributeValue(ON_SUBMIT_VALIDATER_ATTR, currencyFormatter);

  • Reg:Table for Custom Messages and custom Messaege Classes

    Hi ,
    My requirement is to find out all custom messages . so can any one tell in which tables all custom messages and custom message classes are stored .
    Thanks & Regards,
    Lakshmi.

    hi,
    You can checkthese tables listed below,
      T100                             Messages
      T100A                            Message IDs for T100
      T100C                            Message Control by User
      T100O                            Assignment of message to object
      T100S                            Configurable system messages
      T100SA                           Application Areas for Configurable Messages
      T100T                            Table T100A text
      T100U                            Last person to change messages
      T100V                            Assignment of messages to tables/views
      T100W                            Assign Messages to Workflow
      T100X                            Error Messages: Supplements
      T100ARBGB                    Application Area
    But The main table for storing all the message classes and their numbers are stored in table
    T100

  • Could anyone show me the customizing navigation for Manual Accruals?

    Hi All,
    Could anyone show me the customizing navigation for Manual Accruals?
    Thanks

    Hi,
    These tow links are very use full not only for manual accrual but also new ear of Accrual Engine.
    https://websmp110.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700006312672006E
    https://websmp110.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700000264642007E
    Regards
    Javed

  • Custom ESS/MSS iview question

    Hi all,
      The requirement is to create a custom ESS/MSS iview under one of the worksets in portal. For example I am creating a custom Beneifts iview under the Benefits workset.
    I have to get the user  personnel number to get the corresponding data in the WD application that i am creating. Where do i get this value from?
    My assumption: It is stored as a global variable in a different WD component and i have to reuse the component in my new application to get the corresponding variable
    I have tried my best to make the question clear. let me know if this needs to be more clear.
    Thanks in advance,
    Reddy

    Hi Reddy,
    There might be some portal events raised when a employee is selected. You should subscribe this event in your custom component and work on.
    I do not know if the following information useful for you.
    SAP note -- https://service.sap.com/sap/support/notes/1112733 -- with Portal Eventing code to subscribe:
    subscribe_to_event("urn:com.sap.mss.employeesearch",
    EVENT = "selection_changed".

  • T.code O7Z3: could anyone show me the custom. navigation on this t.code?

    Hi All,
    T.code O7Z3: could anyone show me the custom. navigation on the t.code O7Z3?
    I've SAP ECC 6.0
    Thanks
    Gandald

    Hi,
    SPRO --> IMG --> Financial Accounting(New) --> Account Receivables and Account Payables --> Vendor Accounts --> Line items --> Display Line items --> Display Line items without ALV --> Define Line Layout (O7Z3).
    Hope this helps..
    Regards,
    Praisty

  • I get unexpectedly logged out from my mail box and and recieve the following message: "The custom error module does not recognize this error."

    I am repeatedly and unexpectedly logged-out from my mail box when working on a document. It frequently happens when I choose Send or Save, but it could happen any time. The file that I worked on disappears completely. Before, the file could be found in the draft box or some other place categorized as Auto Recovery. Now, instead, I get the following message: "The custom error module does not recognize this error." I am working at home, connected to a university server. The same problem appears with both of my computers, which are connected by a router. I have a MacBook Pro and am working with Firefox 6.0.2. I have a wireless broadband connection with Internet. AirPort is connected to Lindstrom and has IP address 192.168.0.198. Router: D-Link Model DIR-635. Modem: ZyXEL Model No. 660H D Triple Play Modem.
    Best wishes,
    Lars Lindström, Professor
    <[email protected]>

    Hi Phil,
    Generally, when a user sends an incoming request to an Exchange 2010 Client Access server using Outlook Web App and the user’s mailbox is on an Exchange 2010 mailbox in a different Active Directory site,
    Exchange 2010 determines whether the Client Access server has the
    ExternalURL property set in that Active Directory site. If it is and the cross-site silent redirection has been enabled, the user will be automatically redirected to the specified URL.
    Thus, please make sure the External URL property is set properly in your environment. And also
    disable the WindowsAuthentication for OWA VD to have a try. If the issue persists, please try the following KB to reset the Outlook Web Access-related virtual directories:
    http://support.microsoft.com/kb/941201
    Thanks,
    Winnie Liang
    TechNet Community Support
    Sorry for the late reply.  Yes, the ExternalURL is set; otherwise, it wouldn't work at all.  98% of the time everything is fine.
    My issue described a problem that appears only during session timeouts.  I've pretty much verified that this is the case; Exchange 2010 does not appropriately handle the timeouts sometimes when using cross-site redirection.

Maybe you are looking for