Alert for HR module

Hi all,
I want to set alert for following scenario.
we have employees who are outsourced to third party on contract basis.
Let say Emp A has contract from 1st Jan 2009 to 31 Oct 2009.
Now the HR manager must alert message before the contract ends lets say before 10 days ie on 21st Oct that the contract for Emp A will be over.
How to manage this in alert ....?
Regards
Harish

Write a query based alert like this
SELECT 1 from OHEM T0 where DATEDIFF(day,getDate(),T0.U_ConEnd)=10
Here I assumed that there is an UDF created in  Employee Master called U_ConEnd which holds the End date of contract of the employee.
Replace this with appropriate field in your context.

Similar Messages

  • Alerts for Projects

    The Vision Instance shows 6 Alerts for Projects Modules.
    However, my Development Instance doesn't show any alert for projects .
    we are implementing costing , billing & Prj Contracts.
    Pls help.

    Hi dina,
    First of all ..thanks for your prompt replies..
    In my question i am refering to Seeded Alerts(triggered to mails) provided by Oracle for each module.
    Run the following query to view Oracle seeded Alerts for projects in Vision Instance:
    SELECT DISTINCT fef.APPLICATION_NAME,
    aa.ALERT_NAME,
    aa.DESCRIPTION
    FROM
    FND_EXECUTABLES_FORM_V fef,
    ALR_ALERTS aa
    WHERE
    aa.APPLICATION_ID=fef.APPLICATION_ID
    and fef.application_name IN('Projects')
    AND aa.ALERT_NAME NOT IN '%'
    ORDER BY
    fef.APPLICATION_NAME,
    aa.ALERT_NAME
    this query returns 6 alerts for vision instance
    But none for my development Instance !!

  • Alerts for certificate expiry?

    Hello everyone, I have a quick question: is there any way to get alerts for certificate expiry before a threshold number of days? If so, can the alert be for certificates that are required for the PI environment, SAP Portal or infrastructure ones that are in the VIP.
    We are on PI 7.1, Solution Manager 7.01, Netweaver 7.0
    Thanks for any pointers.
    Regards.
    Ravi,

    Hi dina,
    First of all ..thanks for your prompt replies..
    In my question i am refering to Seeded Alerts(triggered to mails) provided by Oracle for each module.
    Run the following query to view Oracle seeded Alerts for projects in Vision Instance:
    SELECT DISTINCT fef.APPLICATION_NAME,
    aa.ALERT_NAME,
    aa.DESCRIPTION
    FROM
    FND_EXECUTABLES_FORM_V fef,
    ALR_ALERTS aa
    WHERE
    aa.APPLICATION_ID=fef.APPLICATION_ID
    and fef.application_name IN('Projects')
    AND aa.ALERT_NAME NOT IN '%'
    ORDER BY
    fef.APPLICATION_NAME,
    aa.ALERT_NAME
    this query returns 6 alerts for vision instance
    But none for my development Instance !!

  • Alerts for conc managers

    Hi,
    We installed apps pack for our R12 env. Now it's sending alerts for ICM only. How to setup for other managers like Standarad manager? Please help
    Regards

    Hi dina,
    First of all ..thanks for your prompt replies..
    In my question i am refering to Seeded Alerts(triggered to mails) provided by Oracle for each module.
    Run the following query to view Oracle seeded Alerts for projects in Vision Instance:
    SELECT DISTINCT fef.APPLICATION_NAME,
    aa.ALERT_NAME,
    aa.DESCRIPTION
    FROM
    FND_EXECUTABLES_FORM_V fef,
    ALR_ALERTS aa
    WHERE
    aa.APPLICATION_ID=fef.APPLICATION_ID
    and fef.application_name IN('Projects')
    AND aa.ALERT_NAME NOT IN '%'
    ORDER BY
    fef.APPLICATION_NAME,
    aa.ALERT_NAME
    this query returns 6 alerts for vision instance
    But none for my development Instance !!

  • How to disable an alert for specific time period in SCOM 2012 R2

    Hello,
    Is there any option to disable an alert for specific time period in SCOM 2012 R2
    Regards,
    angs

    No. But you can use the scheduler module in your rule or monitor, which will dictate when the workflow will actively run on the agent - hence disabling alerting for that time period.
    http://msdn.microsoft.com/en-us/library/ff453828.aspx
    Jonathan Almquist | SCOMskills, LLC (http://scomskills.com)

  • Why is ical creating unwanted alerts for all-day events?

    If anyone can point to what might be going wrong here I'd be grateful. This is becoming a daily irritant. I have a number of all-day events listed for most week days in my diary which help me to know what is happening that day with childcare for my son. I don't need alerts to be reminded of these - they are just notes I put to myself in adavnce that let me know how my day is configured. Now, I sync my ical from my home imac to my work imac, my macbook, my iphone and my ipad. On none of these devices do I have default alerts set. I never set any alerts for any of these 'events'. But then, at 9am the day before each one I get an alert. In fact, I get a 9am alert for any all-day event, regardless of whether I set an alert for then, or at all. As I say, I've checked all devices and the default alert a=on all is set to 'none'. Does anyone know why this is happening and how I stop it?

    Thanks Malcolm.I'm afraid this issue started for me after updating to iOS6!

  • How to log input parameters for Function Modules?

    Hi,
    I need to create a Logging system to trace input parameters for function modules.
    The log functionality could be done by developing a class method or a function module (For example 'write_log'), and calling it within each function module that I want to log. The 'write_log' code should be independent from the interface of the Function Module that I want to log.
    For example, I'd like to write a function/class method that can log both these functions modules:
    Function DummyA
       Input parameters: A1 type char10, A2 type char10.
    Function DummyB
       Input parameters: B1 type char20, B2 type char20, B3 type char20, B4 type Z_MYSTRUCTURE
    Now the questions...
    - Is there a "standard SAP" function that provide this functionality?
    - If not, is there a system variable in which I can access runtime all parameters name, type and value for a particular function module?
    - If not, how can I loop at Input parameters in a way that is independent from the function module interface?
    Thank you in advance for helping!

    check this sample code. here i am capturing only parameters (import) values. you can extend this to capture tables, changin, etc.
    FUNCTION y_test_fm.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(PARAM1) TYPE  CHAR10
    *"     REFERENCE(PARAM2) TYPE  CHAR10
    *"     REFERENCE(PARAM3) TYPE  CHAR10
      DATA: ep TYPE STANDARD TABLE OF rsexp ,
            ip TYPE STANDARD TABLE OF rsimp ,
            tp TYPE STANDARD TABLE OF rstbl ,
            el TYPE STANDARD TABLE OF rsexc ,
            vals TYPE tihttpnvp ,
            wa_vals TYPE ihttpnvp ,
            wa_ip TYPE rsimp .
      FIELD-SYMBOLS: <temp> TYPE ANY .
      CALL FUNCTION 'FUNCTION_IMPORT_INTERFACE'
        EXPORTING
          funcname                 = 'Y_TEST_FM'
    *   INACTIVE_VERSION         = ' '
    *   WITH_ENHANCEMENTS        = 'X'
    *   IGNORE_SWITCHES          = ' '
    * IMPORTING
    *   GLOBAL_FLAG              =
    *   REMOTE_CALL              =
    *   UPDATE_TASK              =
    *   EXCEPTION_CLASSES        =
        TABLES
          exception_list           = el
          export_parameter         = ep
          import_parameter         = ip
    *   CHANGING_PARAMETER       =
          tables_parameter         = tp
    *   P_DOCU                   =
    *   ENHA_EXP_PARAMETER       =
    *   ENHA_IMP_PARAMETER       =
    *   ENHA_CHA_PARAMETER       =
    *   ENHA_TBL_PARAMETER       =
    *   ENHA_DOCU                =
       EXCEPTIONS
         error_message            = 1
         function_not_found       = 2
         invalid_name             = 3
         OTHERS                   = 4
      IF sy-subrc = 0.
        LOOP AT ip INTO wa_ip .
          MOVE: wa_ip-parameter TO wa_vals-name .
          ASSIGN (wa_vals-name) TO <temp> .
          IF <temp> IS ASSIGNED .
            wa_vals-value = <temp> .
          ENDIF .
          APPEND wa_vals TO vals .
        ENDLOOP .
      ENDIF.
    ENDFUNCTION.

  • BODS 3.1 : How to trigger an email alert for the jobs on BODS server ?

    Hi All.
    I have this request.
    BODS 3.1 : How to trigger an email alert for the jobs on BODS server ?
    We have jobs scheduled on BODS running smoothly and absolutely fine.
    But to check, i am logging into the admin console and check for the jobs status.
    I would like to have an email to be received from BODS after each job is finished.
    It could succuessful. Or it could fail.
    Whatsoever, i wish to receive an email alert as soon as a job is finished.
    Can anyone advise me as to whether this could be made possible.
    And if yes, how this could be done.
    Thanks for your help in advance.
    In BOE CMC / for webi / schedule / we find an option to send email for a job success or a job failure.
    Is there any option similar to that in BODS ?
    Also would like to know :
    how to use the smtp_to or mail_to functions ?
    how to set up the smtp server for this ?
    thanks
    REgards
    indu
    Edited by: Indumathy Narayanan on May 31, 2011 3:47 PM

    Hi.
    Since am new to this BODS. I need some help.
    I already have many jobs which are running absolutely fine.
    And when a job runs, and finishes, am able to see the trace saying
    e.g. :
    Job_abc is completed successfully.
    We got the smtp service activated for our test server.
    and we hae a group email id.
    I have put the details of the smtp server / ip address / and said apply restarted.
    The i created a simple test script as below :
    print (' Before email ' );
    smtp_to('abc@company_name.com', 'Job ' || job_name() ||' on ' || host_name() || ' has FAILED',
    ' the job has failed', 0, 0);
    print('After Email ');
    It does send a email to as per smtp_to whatever email is specified.
    But how to differentiate between a job success
    And a job which has failed.
    I wish to have a mail which says on the subject :
    'Job ' || job_name() ||' on ' || host_name() || ' has completed successfully'
    ==> IF it is a success
    OR
    'Job ' || job_name() ||' on ' || host_name() || ' has failed'
    ==> if it has failed
    How to make the system identify, whether
    to send a success message or a error message whatever
    Could anyone advise.
    thanks
    indu

  • Have problem setting Email alerts for Calendar events. Warning message says I need to set up a card in Contacts with my email. I do but it doesn't recognize it. How do I indicate the email I want alerts sent to?

    The system of setting up email alerts for Calendar events worked fine in Snow Leopard but since I upgraded to Mt. Lion Calendar won't let me set email alerts. When I try, I get an error message saying I need to set up a card in Contacts for my email. I have a card set up in Contacts for both of my email addresses but it doesn't recognize them. Perhaps the name I have on the card doesn't match a name that Calendar is looking for. Calendar doesn't seem to have a way in Preferences or elsewhere to indicate the email I want alerts sent to. Any ideas how I can get this system working again? Thanks for your help.

    You might want to consider starting a new discussion. Since this one is marked solved, less people are likely to look at it. You can link to this one.
    See if another contact is marked as this is my card.

  • I am having a issue with getting data useage alerts for my iphone 4s

    I am having a issue with getting data useage alerts for my iphone 4s from AT&T.  I do not download anything huge at all.
    I looked into it and figured out that the phone dials out nightly at 12:29am every night.   I went into my settings and went to general..about..diagnostics and useage..then diagnostics and useage data to see this.  I then clicked don't send...but I am still getting useage alerts.  Can anyone help me please...
    Thanks

    Honestly, from reading the thread linked, they all come off as a bunch of whiney people that cannot be bothered to help themselves.
    Little to nothing in that thread indicates an issue beyond inept consumers.  Yes, I read several pages on the incessant gripes.  Very few made any actual attempts to troubleshoot issues before whining about the "Apple issue" and those that did actual troubleshooting got their issues resolved.
    So no, Apple has nothing to fix beyond a few specific devices that are experiencing hardware issues.
    If you have actually put forth effort and done the basic troubleshooting, take the device to Apple for evaluation and possible replacement.  Whining will get nothing accomplished.

  • Can we open and close Posting period for HR module

    Dear All ,
    Can someone please tell me is there any option available to open and close Posting period for HR Module.We have In Finance and MM.
    Cheers
    Balaji Dhanavel

    check
    the report RPCIPE00 useing SE38
    can u be some wht clear of ur query once

  • Actual vs target report for sd module

    if any having actual vs target report for sd module pls forward me..
    my requirement is i would like to find the monthwise core and monthwise actual sales totals and rebate for the particular product ..

    How are you doing the data entry for target (or budget) ? Is it thru CO module ? Have you activated CO-PA ?

  • How do I stop receiving two alerts for a text??

    When I receive a text if I do not view or clear the message within 60 seconds I receive another ding or alert for the same text 60 seconds later. How do I edit my messages so I only receive 1 alert per text??
    Thanks

    Go into Settings - Noitifcation Center - Messages - Repeat Alerts set to Never

  • Formula to calculate SUM of multiple sheets of excel and the result to be stored in another excel sheet and pop up alerts for multiple rows

    I have a excel with multiple
         sheets with data as shown below
    SHEET 1
    A 1
    B 2
    C 3
    SHEET 2
    B 1
    C 2
    A 3
    SHEET 3
    C 1
    A 2
    B 3
    My
    query is splitted into 3 categories
    I want to have a formula to do math calculation such that data of "A" of SHEET 1 is  calculated with "A" of SHEET2 irrespective of the location of "A".
    When I include SHEET3, the formula should automatically identify the location of "A" or "B" or "C" and give the result corresponding to A, B or C. Since I want to bifurcate daily report and output printed. I want to use another
    excel for output. How to link multiple sheets of one excel and print the output of above in
         another excel?
    Assume, I have 4 SHEETS,  "SHEET 1", "SHEET 2", "SHEET 3" and "SHEET 4". Math calculation need to be done using all 4 sheets. If
    I include "SHEET 5", the formula should ignore SHEET 1  automatically and give the results of SHEETS 2 to 5. Similarly, if I include SHEET 6, SHEET 1 and 2 need to be ignored for further calculation and SHEET 3-6 need to be used. How to write
    such formula?
    How to get pop up alert for multiple rows, if a specific condition is hit?

    Maybe VBA Code should be a good option for you. I suggest you post you issue to
    Excel for Developers forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks for your understanding.
    Best Regards,
    Wind

  • How to set up alerts for mobile email on Samsung Reality?

    Hi,
    I was wondering how we could set up to receive automatic alerts for new incoming emails on a Samsung Reality?

    Here is how to enable your alerts.
    1. From the Mobile Email application, select the desired email account then press the center of the 5-way navigation pad to choose Select.
    If prompted enter the username and password,  then press the center of the 5-way navigation pad to choose Sign In.
    2. Press the right soft key to choose Options.
    3. Select Settings then press the center of the 5-way navigation pad to choose Select.
     For AOL / AIM select Preferences.
    4. Select the desired setting then press the right soft key to choose Save.
    To disable the email alerts:
    Select Disable or Never.
    To enable email alerts:
    Select Enable or Always.
    To receive email during a desired time interval:
    Select Only During then enter the desired time interval.
    This setting may not be available on all handsets or accounts. Hope this helps

Maybe you are looking for