Customized message for Input Date

Hi All,
I am using af:inputDate component and i am disabling Sat , Sun ,Min Date and Max Date .When I enter wrong date manually in component that time it is showing "Enter a date that is on one of the following days: sun"
But i want to customize this message ,how can we do that .Please help me.
Thanks,
Sreedhar

Hi Lalit,
Thanks for your replay , I don`t have any problem with my format error, I have problem in updating error message given by inputDate component .
Per suppose , this month 25th is Saturday ,if i type date in InputDate component as 05/25/2013 then it is showing error as "Enter a date that is on one of the following days: sun" but i want to modify this message to
"Please enter a valid date. Date cannot be on a Saturday or Sunday" .
Thanks,
Sreedhar

Similar Messages

  • OBIEE 11g - Customized Message for No result On all Reports

    Hi,
    The default messages displayed is getting displayed when a report returns no data in OBIEE 11g. I am aware of that, we can overide the default message with our Custom message at "Analysis" level. but it is very painful to do.
    I am looking for a file where we can override the default messages with our custom message at one place.
    Also, I have gone through the below link for this but it has change at the language level. I tried to change it at language "l_en" level but it did not work.
    can anyone suggest for 11g?
    http://obiee10grevisited.blogspot.com/2012/02/customized-message-for-no-result-on-all.html
    Edited by: Nagen on May 6, 2013 4:36 PM

    Hi Nagen,
    Using a custom message should also work in 11g. Refer to this link for setting up custom messages in 11g.
    http://www.rittmanmead.com/2010/12/oracle-bi-ee-11g-styles-skins-custom-xml-messages/
    Thanks,
    Gaurav

  • Custom Control for 2D data

    Hi,
    I want to develop a new Control/Indicator for 2D data, i.e. 2D points. My idea is to
    display a canvas with the current point and let the user drag it. Somehow it would
    thus be analogous to the common slider for 1D data.
    I'm quite new to Labview, so I don't really know how to address this question best.
    Should I customizing an existing control? I found some examples on that, but could
    not find a way how to link two inputs to the visual state, in other words, how to move
    the point on the canvas depending on the two input data.
    Or do I need to use an XControl?
    Sorry if this question is trivial or has been asked before, but I could not find a satisfying
    answer.
    Best wishes,
    Bene

    I bet this is somewhat the same as you need. try the link.
    How to create 2d slider?
    Ivel R. | CLAD

  • How to Generate a Custom Message for A Custom Code.

    Hello,
    Can anyone guide me on this -
    Application : 11.5.10.2
    We have a cutom Trigger through which we want to display a custom message.
    We have re-generated the .msb, but it seems that something is missing.
    Following are the Steps We have followed to generate a custom message.
    1. Responsibility "Application Developer"
    2. Go to Applications
    3. Select Message
    4. Define a new custom message.
    5. Save
    6. Run Request " Generate Message"
    Now when the trigger gets fired , we are not able to see our Custom message.
    How do we call this messge in the custom code.
    Pl. help on this , also can i get some reference note id's on this.
    Thanks in advance.
    Regards,
    Jenny

    CREATE OR REPLACE TRIGGER KPC_RCV_TRANSACTIONS_INTERFACE
         AFTER INSERT OR UPDATE ON APPS.RCV_TRANSACTIONS_INTERFACE
         REFERENCING NEW AS NEW OLD AS OLD
         FOR EACH ROW
    ---     This Trigger Validates following things
    ---     1.     Creation date is not modified and is greater than system date.
    ---     2.     RTV should not be possible before ERS is generated.
    ---     3.     Inspection should not be possible through Deliver Transactions Responsibility
    ---     4.     Delivery of Material should not be possible through Inspection Responsibility
    ---     5.     Item is Excisable and Excise Invoice No Or Excise Invoice Date is Missing
    ---     6.     Only Inspected and Accepted material is Delivered to Subinventory
    ---     7.     Check for Existance of 57F4 for Subcon Job Receipts
    ---     8.     Check Taxes are not Missing
    ---     9.     Check Taxes are Correct
    ---     Declaring The Variables
    DECLARE
         v_grade                    number          :=     0;
         v_employee_id               number          :=     0;
         v_responsibility          varchar2(100)     :=     'Z';
         v_closed_taxes_count          number          :=     0;
         v_taxes_count               number          :=     0;
         v_invoiced_status_code          varchar2(01)     :=     'N';
         v_57f4_id               number          :=     0;
         l_date_ok               varchar2(01)     :=     'N';
         l_gate_date_ok               varchar2(01)     :=     'N';
         l_cenvatable_flag          varchar2(01)     :=     'N';
         l_excise_ok               varchar2(01)     :=     'N';
         l_rtv_ok               varchar2(01)     :=     'N';
         l_inspection_ok               varchar2(01)     :=     'N';
         l_delivery_ok               varchar2(01)     :=     'N';
         l_rej_delivery_ok          varchar2(01)     :=     'N';
    BEGIN     
    --      Get Looged in Responsibility Name
         begin
              SELECT      upper(responsibility_name)
                   INTO v_responsibility
              FROM      apps.fnd_responsibility_vl
              WHERE      responsibility_id = apps.fnd_global.resp_id;
         EXCEPTION
              WHEN      NO_DATA_FOUND THEN
                   v_responsibility := 'Z';
              WHEN      OTHERS THEN
                   v_responsibility := 'Z';
         END;
    ---     Modifications Done by SMT to Bypass checking for following Users
         if     (apps.fnd_global.user_id     <     1091)     then
              return;
         end     if;
    ---     if     (apps.fnd_global.user_id     in     (1090,1111,1112,1126,1540,1591,1570,1881))     then
    ---          return;
    ---     end     if;
    ----     Collect the Information Required from Other Tables
    ---     Check whether item is cenvatable
         l_cenvatable_flag     :=     'N';
         begin
              select     'Y'
              into     l_cenvatable_flag
              from     apps.ja_in_po_line_location_taxes     jipll
              where     upper(jipll.tax_type)          in     ('EXCISE','CVD')
              and     jipll.po_header_id          =     :new.po_header_id
              and     jipll.po_line_id          =     :new.po_line_id
              and     jipll.line_location_id          =     :New.po_line_location_id;
         EXCEPTION
              WHEN      NO_DATA_FOUND THEN
                   l_cenvatable_flag     :=     'N';
              WHEN      OTHERS THEN
                   l_cenvatable_flag     :=     'N';
         end;
    ---     Check whether Taxes are closed
         v_closed_taxes_count     :=     0;
         begin
              select     count(distinct jit.tax_id)
              into     v_closed_taxes_count
              from     apps.ja_in_tax_codes               jit,
                   apps.ja_in_po_line_location_taxes     jipl     
              where     nvl(jit.end_date,sysdate)<     sysdate               
              and     jit.tax_id          =     jipl.tax_id
              and     po_header_id          =     :new.po_header_id
              and     po_line_id          =     :new.po_line_id
              and     line_location_id     =     :new.po_line_location_id;
         EXCEPTION
              WHEN      NO_DATA_FOUND THEN
                   v_closed_taxes_count     :=     0;
              WHEN      OTHERS THEN
                   v_closed_taxes_count     :=     0;
         end;
    ---     Check Existance of Taxes
         v_closed_taxes_count     :=     0;
         begin
              select     count(distinct jit.tax_id)
              into     v_taxes_count
              from     apps.ja_in_tax_codes               jit,
                   apps.ja_in_po_line_location_taxes     jipl     
              where     nvl(jit.end_date,sysdate)<     sysdate               
              and     jit.tax_id          =     jipl.tax_id
              and     po_header_id          =     :new.po_header_id
              and     po_line_id          =     :new.po_line_id
              and     line_location_id     =     :new.po_line_location_id;
         EXCEPTION
              WHEN      NO_DATA_FOUND THEN
                   v_taxes_count     :=     0;
              WHEN      OTHERS THEN
                   v_taxes_count     :=     0;
         end;
    ---     Modifications Done by SMT to Get Invoice Status Code of the Original Transaction
         v_invoiced_status_code     :=     'N';
         BEGIN
              SELECT      'Y'
              INTO      v_invoiced_status_code
              FROM      apps.ap_invoices_all          ap,
                   apps.rcv_shipment_headers     rcv
              WHERE      ap.invoice_num               like     '%'||rcv.receipt_num||'%'
              AND     ap.org_id               =     rcv.ship_to_org_id
              AND     rcv.shipment_header_id          =     :NEW.shipment_header_id;
         EXCEPTION
              WHEN      NO_DATA_FOUND THEN
                   v_invoiced_status_code          :=     'N';
              WHEN      OTHERS THEN
                   v_invoiced_status_code          :=     'N';
         END;
    ---     RAISE_APPLICATION_ERROR(-200151,'Incorrect Transaction Date...');     
    ---     Check the transaction_date is correct or not
         l_gate_date_ok          :=     'Y';
         IF     ((:new.ship_head_attribute6     is     null)                                        or
              (to_date(:new.ship_head_attribute7,'DD-MON-YYYY')     <     (sysdate-3))                    or
              (to_date(:new.ship_head_attribute7,'DD-MON-YYYY')     >     sysdate))                    then
              l_gate_date_ok     :=     'N';
         END      IF;
    ---     Check the transaction_date is correct or not
         l_date_ok          :=     'Y';
         IF     (to_date(:new.transaction_date,'DD-MON-YYYY')     <     to_char(sysdate,'DD-MON-YYYY'))     then
              l_date_ok     :=     'N';
         END      IF;
    ---     Check whether Excise Invoice No and Excise Date is present
         l_excise_ok          :=     'Y';     
         if     (l_cenvatable_flag               =     'Y'               and
              :new.ship_head_attribute1          is     null               and
              upper(:new.destination_type_code)     =     'RECEIVING')          then
              l_excise_ok          :=     'N';
         end     if;
         if     (l_cenvatable_flag               =     'Y'               and
              :new.ship_head_attribute2          is     null               and
              upper(:new.destination_type_code)     =     'RECEIVING')          then
              l_excise_ok          :=     'N';
         end     if;
    ---     Check whether Inspection transaction is being made in correct Responsibility
         l_inspection_ok               :=     'Y';
         if     (upper(:new.destination_type_code) = 'RECEIVING')               then
              if     (v_responsibility like '%RECEIPT%QA%')                    then
                   l_inspection_ok     :=     'Y';
              else
                   l_inspection_ok     :=     'N';
              end     if;
         else     l_inspection_ok          :=     'Y';
         end     if;
    ---     Check whether Delivery transaction is being made in correct Responsibility
         l_delivery_ok               :=     'Y';
         if     (upper(:new.destination_type_code) in ('INVENTORY','SHOP FLOOR'))          then
              if     (v_responsibility not like ('%RECEIPT%QA%'))     then
                   l_delivery_ok     :=     'Y';
              else
                   l_delivery_ok     :=     'N';
              end     if;
         else     l_delivery_ok          :=     'Y';
         end     if;
    ---     Check whether RTV is made prior to generating the ERS Invoice
         l_rtv_ok               :=     'Y';
         if     (upper(:new.transaction_type) in ('REJECT','RETURN TO VENDOR'))          then
              if     (v_invoiced_status_code = 'INVOICED')                    then
                   l_rtv_ok     :=     'Y';
              else
                   l_rtv_ok     :=     'N';
              end     if;
         else     l_rtv_ok          :=     'Y';
         end     if;
    ---     Check Error and Display Proper error message
    ---     Transaction Date Error
         if     (nvl(l_date_ok,'N') != 'Y')          then
              apps.fnd_message.set_name('FND','Wrong GRR Date');
              apps.fnd_message.raise_error;
         end     if;
    ---     Gate Entry Date Error
         if     (nvl(l_gate_date_ok,'N') != 'Y')          then
              apps.fnd_message.set_name('FND','KPC_RCV_CHEK:Wrong Gate Entry Date');
              apps.fnd_message.raise_error;
         end     if;
    ---     Return CENVAT Error
         if     (nvl(l_excise_ok,'N') != 'Y')          then
              apps.fnd_message.set_name('FND','KPC_RCV_CHEK:Enter Excise Invoice No');
              apps.fnd_message.raise_error;
         end     if;
    ---     Return Closed Taxex Error
         if     (nvl(v_closed_taxes_count,1) != 0)     then
              apps.fnd_message.set_name('FND','KPC_RCV_CHEK:Taxes Wrong');
              apps.fnd_message.raise_error;
         end     if;
    ---     Return Taxes Missing Error
         if     (nvl(v_taxes_count,0) = 0)     then
              apps.fnd_message.set_name('FND','KPC_RCV_CHEK:Taxes Missing');
              apps.fnd_message.raise_error;
         end     if;
    ---     Return from trigger, if Transaction Type = 'RECEIVE'
         if     (upper(:new.transaction_type) = 'RECEIVE')     then
              return;
         end     if;
    ---     Return Inspection Error
         if     (nvl(l_inspection_ok,'N') != 'Y')     then
              apps.fnd_message.set_name('FND','KPC_RCV_CHEK:Inspection Not Allowed');
              apps.fnd_message.raise_error;
         end     if;
    ---     Return Material Delivery Error
         if     (nvl(l_delivery_ok,'N') != 'Y')          then
              apps.fnd_message.set_name('FND','KPC_RCV_CHEK:Delivery not Allowed');
              apps.fnd_message.raise_error;
         end     if;
         return;
    END KPC_RCV_TRANSACTIONS_INTERFACE;

  • Customized Message for No result On all Reports

    Hi all,
    I need to change the custom message that we get for No Result.Instead "the specified criteria dint result in any data"..i have put in my different message for all the reports.Any Idea how I get it done.???Any setting ???
    Regards

    Got it guys
    can be done by the below steps:
    The default messages displayed when a report returns no data are in:
    BI_HOME\web\msgdb\<language>\messages\viewme ssages.xml
    You can override these messages in by creating a custommessages.xml file in BI_HOME\web\mesdb\customMessages
    For example, the following changes the default 'No Results' message:
    <?xml version="1.0" encoding="utf-8"?>
    <WebMessageTables>
    <WebMessageTable system="Custom Messages">
    <!-- Change No Results message -->
    <WebMessage name="kmsgEVCNoRowsTitle"><HTML> ;No Data Found!</HTML></WebMessage>
    </WebMessageTable>
    </WebMessageTables>
    You will need to restart your Presentation services to make the changes effective.

  • Customized messages for Dashboad prompt

    Hi, Can we put some customized messages in the dashboard prompt[Edit box]?–
    like when the user enter the characters – alert (“Please enter numeric values only”).

    hi..
    check this...
    http://shivabizint.wordpress.com/2009/04/13/date-validation-for-dash-board-prompt-calendar-control/
    http://shivabizint.wordpress.com/2009/04/21/date-between-validation-for-dashboard-prompt/

  • WUI Specification - How to Define Custom Subview for General Data?

    SAP System Component Ver.: EHP6 FOR SAP ERP 6.0
    In relation to Customizing activity "Define Subviews for General Data" under Logistics - General > Product Lifecycle Management (PLM) > PLM Web User Interface > Recipe Development > Specification Management > Specification > Specification Master
    General Data - Specification Management - SAP Library
    If possible, what is the best approach to add a Custom Subview?
    So far, I've done the ff.:
    1. Create Custom Subview ZWDC (Implemented interface = IF_FPM_UI_BUILDING_BLOCK) and its Z config
    2. Append a fixed value to standard SAP Domain /PLMB/SPC_TAB_HEAD (ex. ZSUBVIEW)
    3. Specify subview ZSUBVIEW to be displayed according to the specification type in the Customizing activity (above)
    4. Create enhancement implementation in standard SAP Component Configuration /PLMU/WDC_SPC_OIF_CFG (in /PLMU/WDA_SPC_OIF: /PLMU/WDA_SPC_OIF_CFG)
    5. Add Subview ZSUBVIEW under Main View General Data.
    After saving the step 5 above, the system automatically renamed the Subview ID entered.
    Ex. ZSUBVIEW became ZSUBVIEW_0050568F00051EE480A96E03E55B9E5E
    When I ran Display Specification in WUI for the Spec Type where subview ZSUBVIEW has been defined, the ZSUBVIEW does not appear.
    My hunch is that it is caused by /PLMU/WDC_SPC_OIF_CFG Subview ID (i.e. system-generated ZSUBVIEW_0050568F00051EE480A96E03E55B9E5E) not matching the "Define Subviews for General Data" setting in Customizing (i.e. ZSUBVIEW).
    As Alternative solution, I changed step 4 above by creating Z copies of the std app config /PLMU/WDA_SPC_OIF_CFG and comp config /PLMU/WDC_SPC_OIF_CFG, before doing step 5. In step 5, the system did not automatically rename the Subview ID entered. An additional step (6) is to change settings via transaction LPD_CUST, for app /PLMU/WDA_SPC_OIF config from /PLMU/WDA_SPC_OIF_CFG to the Z copy. With this, the ZSUBVIEW appears.
    I would still prefer the enhancement implementation but I couldn't make it work and don't know what I'm missing. Any expert thoughts/inputs out there?
    Thanks in advance.

    Yes its something on the similar lines but looks like this comparator needs to be at some specific place.
    I tried to implement comparator interface in the custom domain data type class but it still throws the same exception.
    Looks like RowComparator needs to be defined somewhere. any idea where?
    The complete exception is below:
    Caused by: oracle.jbo.JboException: Cannot find compare routines for test.MyString
         at oracle.jbo.RowComparator.compareValues(RowComparator.java:108)
         at oracle.jbo.RowComparator.compareRows(RowComparator.java:146)
         at oracle.jbo.RowComparator.compare(RowComparator.java:158)
         at java.util.Arrays.mergeSort(Arrays.java:1270)
         at java.util.Arrays.mergeSort(Arrays.java:1281)
         at java.util.Arrays.mergeSort(Arrays.java:1281)
         at java.util.Arrays.sort(Arrays.java:1210)
         at oracle.jbo.server.ViewObjectImpl.sortRows(ViewObjectImpl.java:6752)
         at oracle.jbo.server.QueryCollection.sortRows(QueryCollection.java:995)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1177)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:1331)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:1249)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:1243)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:6715)
         at org.calwin.view.bean.Table.tableSorting(Table.java:46)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)

  • Storing custom Palette for graph Data

    Post Author: lkane
    CA Forum: WebIntelligence Reporting
    Is there a place to set up and store a custom color Palette for graph data so that it is quickly accessible for all WebBI reports? We use a specific palette for all our charts and with > 60 reports to build that utilize it, it gets pretty old to set this in every report.

    Post Author: lkane
    CA Forum: WebIntelligence Reporting
    Is there a place to set up and store a custom color Palette for graph data so that it is quickly accessible for all WebBI reports? We use a specific palette for all our charts and with > 60 reports to build that utilize it, it gets pretty old to set this in every report.

  • "printf" asking for input data

    Hi, my cuestion is why when I ask the user to input data in the test bench with "printf" for my TOP.c not run?
    NOTE: I am a new user HLS :)
    Regards
     

    welcome
    Also besides Gabor's answer, please note that the testbench execution is wrapped into other scripts, so user input would not work because it's not interactive (if i remember correctly) so you can't do cin , gets , scanf etc
    From the GUI, when performing csim there is the ability to enter input arguments to the executable - ie the ones passed to argv.
    If you want to do user interactions, then you need to go to a command line and navigate to YOURPROJ/YUORSOLUTION/csim/build and run the executatble from there : it's call csim.exe.
    As such I would recommend to avoid using user inputs in your testbenchs - but you can use loops or text files with 1000s of test values.
    I hope this helps.

  • Customizing message for 500 Internal Server Error

    Hi,
    I want to customize the error message for 500 Internal Server Error. I added the following code in the web.xml file
                  -<error-page>
              <error-code>500<error-code>
                         <location>/Error_Pages/500.html</location>
                  </error-page>
    After adding this code i restarted the server but still i am not getting the customized error message. Please tell me what am i missing.
    Thanks,
    Khushboo

    Hi,
    you may check the following help pages:
    [http://help.sap.com/saphelp_nw70/helpdata/en/f8/66e8f313b2457daba4c4fe49d88a75/frameset.htm|http://help.sap.com/saphelp_nw70/helpdata/en/f8/66e8f313b2457daba4c4fe49d88a75/frameset.htm]
    [http://help.sap.com/saphelp_nw70/helpdata/EN/9a/e74d426332bd30e10000000a155106/frameset.htm|http://help.sap.com/saphelp_nw70/helpdata/EN/9a/e74d426332bd30e10000000a155106/frameset.htm]
    Cheers,
    Anja

  • ECATT - How use external file/new variant for input data

    Good day,
    I want to use an eCATT created by someone else for another request. I want to be able to specify my new input data based on the new request WITHOUT generating a new Transport. Same thing as I'm doing for the CATT ... the CATT is transported but only the input data change depending on the request without generating any transport.
    How I build my new input file and how to use it? I tried to download my variant but the only possible format is XML and it's very hard to build a new file based on my request.
    Thanks for your help.
    Simon

    Hi,
    Can you tell me how you are generating the xml file. My guess is you are downloading the Test Script/ Test Configuration. In that case it creates an xml file.
    As mentioned by Ajay, In Test Configurator / Test Data -  you can create the internal variant first, i.e assuming you have already created parameters.. On the top, you have a download button "Download Variant". This creates a .txt file. You can open the file in excell and edit it.
    For the next test, you can select external variant and give the modified file path name.
    Let me know if this helps.
    Regards
    Phanidhar

  • Custom Filename for Export Data from a Query

    Hi,
    Would like to define a custom filename for the file to be download as a csv from the web query, Is it possible?
    Regards
    Chocks

    This is not possible, it will be system generated.

  • Custom error message for invalid date format

    Hi,
    I am using af:selectInputDate component for date. When i enter wrong date format it comes up follwoing pop up error message:
    The value "12/13/2009" is not a valid date. Valid example ""29/11/2005".
    However i dont want to show this standard message but a customised error message like "the value is not in correct format...".
    Can anyone help me how can i show customised message.

    Hi Kiran
    Try these options
    1) Change your <b>Internet Explorer</b> [The Browser which you are using] language
    2) In Application Level, ie in Webdynpro
    a)Go to <b><Your project name>>Webdynpro>Applications--><Your Application>
    Double click on your Application name</b>b) Go to Application Properties TAB, Add a New Application Property
    c) Click on "<b>Browse</b>" and Select <b>DefaultLocale</b> and mention the Value as
    <b>en_US</b> [If you didnt mention any thing here by default it will take browser's language]
    3)In your Portal check the language setting of particular user in identity management
    Warm Regards
    Chaitanya.A

  • Waring messages for PO Date in the contract creation?

    Hi Friends,
    Expecting answers with some functional knowledge,
    I am developing one webservice to create value contract from dotnet front end,
    So user can enter inputs from that front end and he will get SAP generated value contract id.
    Here I did validations for all the fields and giving error messages to restrict user to dont give incorrect values.
    Now coming to my issue..,
    While entering the PO Date in the initial screen of contract creation,
    If I enter future date,
    The purchase order date lies in the future. Please check
    If I enter the past date.,
    The purchase order date is in the past. Please check
    I will get warning messages like this, so what should i do, I can enter, today's date to avoid these messages,
    And I can neglect these two messages to proceed, as they are warings only.
    But in my case , Can i process these messages to front end, Is it mandatory.
    I want to know the intention of these messages, then i will take good decision on this...,
    Thanks,
    Naveen.I

    Hi..,
       Thanks for your attention..,
    After consulting some people on this issue, I got that..,
    Mostly PO Date is current date, but in the case of purchage receiving process is late then the date may be in past..,
    Similerly, because of some business reason we can create contract before receiving of purchage order, where order should
    must get, in this case user can enter future date.
    So as if it is not special case user creates contrat with po date as current date, system gives some warning!!
    Better to pass this messages to front end if we are using webservices or some thing like other technolgies.
    welcome to other comments on this..
    Thanks,
    Naveen.I

  • How to change the   Success Message  for Personal Data Screen in ESS

    Hi,
           While saving the Personal Data in the ESS  I want to chage the Success message.When I check the DC , Message Class  i am not able to find the  the particular string.Can any  one please  guide how to find the Success Message String   for this Personal Data Screen or Which BAPI  I  have to check .
    Regards
    Alexi

    Hi  iidhya ,
      Please find the code below
        public boolean onEvent( )
        //@@begin onEvent()
        String event = fpm.getEventData().getEventName();
              if (event.equals(IFPM.EVENT_ADD)){
                   wdThis.wdGetFcPersInfoInterface().setModeForCreate(selectedSubtype);
              }else if(event.equals(IFPM.EVENT_EDIT)){
                   wdThis.wdGetFcPersInfoInterface().setModeForEdit(wdThis.wdGetFcPersInfoInterface().getSubtypevalue(selectedRecord));                              
              }else if(event.equals(IFPM.EVENT_REMOVE)){
                   wdThis.wdGetFcPersInfoInterface().setModeForDelete(wdThis.wdGetFcPersInfoInterface().getSubtypevalue(selectedRecord));                              
              return true;
        //@@end
    Regards
    Alexi

Maybe you are looking for

  • Error while transporting request to Produc

    Hi Experts, m getting an error while i transport my request to production system.request successfully got transported into quality but in production its givind following message.. "Temporary log sapbi\sapmnt\trans\tmp\RBDR903024.RBP not found" let me

  • Sending mail to internal mailadres to external smtp

    Hi, I must have 1 email address from my email-domain (intern and external) that always send the mails to the external smtp-server. example: mail domain is novellrocks.com email address create is [email protected] So when we send internal our external

  • Which is better partition or index??

    Hi, i have a table with approximately 2 billion records and there are 2.5 mil records inserted every day. the table has a field called (Originatetime Date) which has an avg of 35-40 row per second. most of the queries of this table use this field but

  • What is the contact email for customer complaints?

    I have an issue I doubt mac can or would be willing to resolve, therefore going into the shop, I believe, would be unproductive. My charger recently failed, and it was replaced in store (and for the hassle-free experience, I am rather appreciative of

  • Disappearing List BG problem in IE - white block instead of transparent

    Hi all, I have a frustrating Disappearing List Background issue... only in IE, all other browsers fine... PROBLEM: the drop down item 'Three Lounge' bar under 'Bars' should have a transparent background, but instead appears with a white block with th