Added custom date fields at contract;need to trigger mail using those dates

Hi,
II have added 14 custom fields in the service order quotation for handling waranty start date and end dates capturing for the maximum of 7 years contract.
Then its usual yearly action of the waranty team to put the dates in those fields.
The first set of 2 input fields will be filled at the quotation creation itself; rest the set of 12 fields will be updated in this 7 years time.
My requirement is such that to the capture all the waranty end dates filled in the input fields and trigger a mail 30 days prior to that days.
Example : I have contract from 01/08/2004 to 31/07/2010.
Then my waranty startdate / end date can be filled by waranty team as 01/08/2004 to 31/07/2005 in the waranty first year.the i need to trigger a mail to waranty team on 01/07/2005.
For the second year if we have dates filled as 01/08/2005 to 31/07/2006; then to trigger mail on 01/07/2006.
I have tried using ACTIONS but couldn't get much help.
As a work around thinking for a report to fetch the contract for that Trans.type and check the dates with the present date + 30 and collect those to perfrom the respective actions.This is workaround.
Tried using the DATE TYPES creating 7 different DATE TYPES and assigning the ( end dates - 30 ) to that manually upon save.
and using this DATE TYPE along with the action definition can we acheive ?  but it too will be work around.
How to acheive this one. It became critical now in the project. 
Thanks and Regards,
Satish Akkina

Hi,
In your scenario, you don't need synchronous email facility.
Probably you can create a z table and maintain all required dates in this table (before saving your transaction somewhere you would have to read your custom fields and save them in this table along with object ID/GUID). Then create a report that would read dates from z table and then send emails to your warranty team. Schedule this report in background with frequency of once day.
Hope that helps.
Regards,
BJ

Similar Messages

  • I need to pass value for Actual GI date field in VL01N t code, I am using BAPI_DELIVERYPROCESSING_EXEC. can any one tell me how can i pass vaule ?

    I need to pass value for Actual GI date field in VL01N t code, I am using BAPI_DELIVERYPROCESSING_EXEC. can any one tell me how can i pass vaule ?

    Hi Abdul,
    Sorry for my unprecise answer, but you talk about a tcode, but you're using a BAPI Call. Maybe you want to call the transaction in batch mode?
    http://help.sap.com/saphelp_erp60_sp/helpdata/de/fa/09715a543b11d1898e0000e8322d00/content.htm
    Regards,
    Franz

  • Adding custom time field in service order

    Hi Gurus,
    Our customer wants us to add product date and time. I use transaction EEWB to add this date and time filed. In EEWB field types are only BOOL,CHAR,DATS and NUMC. I can add my date by selecting DATS. But how can I create my time field that after cerating I will see it in the table cRMD_ORDERADM_H with data type TIMS?? 
    Do I have to use defined date profile entries to take my time value??? Can't we use custom time field in service??? if yes how??

    Hi,
    You can make date fields available at item nivel without create custom fields.
    All you have to do is create a date profile and assign it to your item category.
    To create a date profile:
    transaction SPRO->Customer Relationship Management->Basic Functions->Date Management->Define Date Profile
    To assign to an item category:
    transaction SPRO->Customer Relationship Management->Transactions->Basic Settings->Define Item Categories
    I hope it helps!
    Kind Regards,
    Gabriel Santana

  • Adding custom (z) fields to assignment blocks...

    We are running SAP CRM 7.0. We are using the opportunity module as well as "Create Follow Up" (Sales Order / Quotation) so that you have a one to many relationship (1 opportunity may contain many sales orders). I have 2 custom fields inside the Sales Cycle (Quotation) module "Actual Sales Order Value" and "Current Points".
    What I am trying to do is take these 2 custom fields and add them to the assignment block called "Linked Transactions" in the Opportunities module. But when I look at all the available fields for this assignment block these 2 custom fields are nt available.
    I do not see any way of adding these 2 fields to this assignment block. The only thing I see is "Create NEw Field". But I do not want to create a new field I just want to reference 2 fields from the Sales Cycle module inside of this assignment block.
    Does anyone knowif it is possible to add 2 custom created fields that are i the Sales cycle module to add them to the opportunities assignment block that is called linked transactions ?
    Thanks,
    Jon

    Duplicate thread.
    Re: Add custom fields to assignment block
    Please close.
    Rg,
    Harshit

  • Default date field to today but still allow user to change date if needed.

    This is for a log that is usually accessed daily

    Hi Joey...,
    If you are looking for a formula that will automatically insert today's date in a cell, I don't think there is one tahat will do what you hope. TODAY() inserts todays date alright but it does that every time the cell updates. It would always be today's date.
    If you are entering your data using a form in iOS then after you tap the day button you are offered the choice of "Today" on the number pad. It always seemed to me that this should be the default screen for a date entry.
    This past week I finally discovered that if you choose a month on the date entry screen an go to the next field, the date field will populate with that month, the number of today and the year of today. So to enter today I only need to choose the month.
    I am sure you moved on with this, but I had to let someone know.
    quinn

  • Creating a date field that autogenerates when form is opened but the date is fixed upon signing.

    Hi,
    I have been creating a series of PDF forms on Adobe XI Pro that are designed to be filled in using Adobe Reader (hence are saved as Adobe Reader Extended). Once the form is complete there are signature fields that the user digitally signs which then deactivates specific form fields from further editing. Alongside the signature field I have got a date field which, at the moment, is using JavaScript to auto-generate the current date upon opening. However, the issue I am having is that I want this date field to be fixed when the form is signed, rather than updating again when the form is next opened. Is this possible?
    The document JavaScript that I am currently using to generate the date is as follows:
    this.getField("PR_Date1").value = util.printd("dd/mmm/yyyy", new Date());
    But obviously this is independent of the date field.
    I am very new to Adobe in general so I don't have much of an idea about how to go about doing this. Could somebody please help me to do this if it is possible?
    Thank you
    KC

    Hélène-
    Thanks for the detail regarding validation script, but I still am having a problem with it.
    I have tried what you told me (remove reset the value) the popup no longer appears when the form is opened. But the validation does not seen to be working. It is not working either in the validate or exit event. This is what I have now on that text field.
    ----- form1.#subform[0].Y::exit - (JavaScript, client) ---------------------------------------------
    //Verify year is current or year+1
    var today = new Date();
    var year = today.getFullYear();
    if (this.rawValue == year || this.rawValue == year+1)
    app.alert("Year is invalid.\n\nOnly current or next year is valid.");
    ----- form1.#subform[0].Y::validate - (JavaScript, client) -----------------------------------------
    //Final verification
    ScriptObject.ValidateField(event.target, this);
    This final verification script I have taken from the samples on the
    LiveCycle Developer Center (Validating field content in a form hosted in Adobe Acrobat).
    The alert only displays when 2007 or 2008 is entered. I am really confused now. I thought I had a handle on this with your explanation.
    I do not know where to go now. The Object Pallet is setup as:
    Field Tab
    Allow Plain Text Only and Limit Length are checked with a Max Chars: 4. Edit Pattern: 99999
    Value Tab
    Type: User Entered - Required
    Validation Pattern: 9999
    Validation Script Message is checked - in Message box Invalid Year.
    Binding Tab
    Default Binding: Normal
    Data Format: Plain Text
    I am hoping that you can explain what I have wrong.
    Thanks so much,
    Confused Nancy

  • Need to send mail using apex

    Hi,
    I am using apex 4.2 and oracle 11g XE. I need to send mail so I used the following code:
    HTMLDB_MAIL.SEND(
          P_TO       =>  '[email protected]',
          P_FROM     =>   [email protected]
          P_SUBJ     =>  'Data in TECHNICAL_DETAIL edited' ,
          P_BODY     =>  'Please click link below for affirmation/rejection of changes' ,
          P_BODY_HTML=>   '<p><a href="http://localhost:8080/apex/f?p=109:25:12079147455079">link</a></p>'
    It is going t apex_mail_queue successfully. Then I used the following code:
    which one i should use:
    1.
         wwv_flow_mail.push_queue(
            P_SMTP_HOSTNAME => xxx
            P_SMTP_PORTNO => 'yyy
    or
    2.
         APEX_MAIL.PUSH_QUEUE(
            P_SMTP_HOSTNAME => xxx
            P_SMTP_PORTNO => yyy
    Also what else I need to send mail and what should i  ask DBA to provide me so that mail can be sent successfully.
    Please give some idea.
    Thanks,
    Chandra Bhanu

    Hi,
    You should use APEX_MAIL.PUSH_QUEUE witch is documented
    APEX_MAIL
    Parameters
    Description
    p_smtp_hostname
    SMTP gateway host name
    p_smtp_portno
    SMTP gateway port number
    Note that these parameter values are provided for backward compatibility, but their respective values are ignored. The SMTP gateway hostname and SMTP gateway port number are exclusively derived from values entered on the Manage Environment Settings when sending email.
    Regards,
    Jari

  • Does Pushed e-mail use 3G data?

    If an iPad is set to push email, does it use 3G data when screen is off and iPad is idle? Or does it only use the 3G data when I am actually using it?

    Agree with "A macuser" but... mail will get pushed to your ipad even in idle mode. If you happen to be on a 3g network the traffic will be on your 3g account. If you're on WiFi, then it doesn't go on your account, as AMACUSER said. I've had my ipad for 3 weeks now and I'll probably get a larger 3g data plan. For now, I put mine in airplane mode to avoid 3g traffic when I don't need it.
    Message was edited by: JMBoivin

  • Create new iCal event from contents of mail uses wrong date

    I received an email today with an appointment using the date "6/3/2010 at 4PM". Being from the US, it is obvious to me that this meeting should occur on June 3, 2010, but when I attempt to create a new iCal event with this date it creates the event on March 6, 2010. Even more confusing is that when I choose "Show this date in iCal" it highlights March 7, 2010!
    My question is:
    Shouldn't the system default to a month/day/year date preference everywhere when I've selected US English in the internationalization preferences pane?

    have a very similar question: is there somewhere an application where I can, when receiving an email, put it into iCal so that I am reminded about it in a week or something?

  • Need to trigger mail to requestor along with creator in SRM 7.0

    Hi Experts,
    We are using SRM 7.0 Extended classic scenario with process controlled Workflow in our system.
    As I am very much new to the workflow concept need your help in this regard.
    We have a requirement where we need to trigger a rejection email when Shooping cart got rejected by the approver to the requestor along with creator.
    As per our current design rejection mail is going only to creator but not requestor.
    Can somebody help me in this regard how to get this functionality.
    Thanks.
    Regards,
    Kalyani

    Hi Konstantin,
    We tried with suggested badi BBP_ALERTING BADI. But when I set the break-point in the enhancement of this badi and tried to trigger by rejecting the Shopping cart, i dont see any entries in the structure CT_RECEPIENTS[].
    Some entries should be there in CT_RECEPIENTS[] by the time this badi triggers or how to figure this out?
    Small change in my requirement is rejection mail is going successfully to requestor and we are expecting same mail to creator.
    Thanks in advance.
    Regards,
    Kalyani

  • Adding Customer-specific Fields: Master Data Objects

    Hi,
    Somebody already obtain to include new fields in SAP MIC( Management Internal Controls) version 2.0?
    Att.
    Anderson Almeida

    You need to study the PCUI (People Centric User Interface).
    MIC software use this engine to control the web interface.
    Very complete guide:
    https://websmp209.sap-ag.de/~sapidb/011000358700001093962006E/PCUIBook50_06.pdf
    a quick intro by weblog:
    /people/vijaya.kumar/blog/2005/06/10/people-centric-user-interface-pcui--getting-started
    Regards,
    Sergio

  • Adding custom MARC fields to MASS for updating

    We have a requirement to add custom fields to MARC which was done easily.  Now we'd like to be able to update these fields via MM17 (MASS) but the fields don't appear.  What do we need to do to allow custom fields to be updated via MASS?
    Thanks,
    -=Rob=-

    Dear Customer,
    you should check note 576160 for furher information.
    You have to implement a BAdI (from mass maintenance) and a Customer Exit (from Material)
    mit freundlichen Grüßen/ yours sincerely
    Marcus Wagler
    SAP AG
    Installed Maintenance Support Germany

  • New G/L and adding customer specific fields

    Hi all,
    does anyone have any experience about adding additional fields in New G/L? I would like to add an additional field that would be filled every time a document is posted. It would be best if it could be in the document header but in line items is ok also.
    Thanks!
    Dusko

    Good morning. I have this same exact question. I have found 1000 documents telling me this is possible and that it is a new feature of the new G/L, but I haven't found any documentation explaining how to implement this feature.
    Does anyone have a link to implementation details, or a document that they could send to [email protected]
    Thank you in advance for your time,
    Andy

  • Adding customer Z field at reservation header level

    Hi experts!!
    I have created an append in table RKPF in which I have created field ZELPEP.
    I have created an implementation of badi MB_RESEVATION_BADI to manage value that user will enter from the screen in field ZELPEP.
    Which is the way to paint ZELPEP field in transaction mb21? I would not like to modify standard dynpro ( SAPMM07R - 0521).
    Thanks in advance.

    Dear Jaione,
    U have change or modify standard dynpro ( SAPMM07R - 0521) through acces key( SSCR) https://websmp105.sap-ag.de/sscr only.
    Regards,
    Abbas.

  • Need help migrating Mail/iCal/Address data from 10.3 to 10.7

    Hi, I'm helping a relative migrate from an 8-year old iMac (10.3.9) to a new one running Lion. Mostly it's going to be a clean sweep app-wise, but we need to move iCal, Mail and Address Book data across. Of course, these apps have changed a fair bit in across the last 4 'full' versions of OS X, and the folder structures within the user library no longer match between machines. Can anyone advise me what to copy and what to junk? I appreciate this is a bit of a vague question, but that's the situation. Any help much appreciated. Thanks.

    The webtogo was dropped in 11.x.    so the URL has changed.  This is one of those situations which needs to be handled by support.   Have you filed a request with support yet?
    thanks
    mike

Maybe you are looking for