Sending an urging letter.

Hi,
what is the trx for sending an urging letter?
In ME91F I don't see nothing for doing this
Best regards

To send the urging letter you have to maintain the mateiral master for either purchase value key where the reminder is set on Purchasing screen or maintian in the inforecord
If you have specified reminder levels under the item details of a purchasing document, the system is able to generate reminders and urging letters (expediters) automatically.
You can enter up to three reminder levels. For example, the reminder levels 10-20-30 mean that urging letters are issued 10, 20, and 30 days after the due date for submission of a quotation or for the delivery of ordered goods. (Note: in the SAP System the term "reminders" is often used to denote such messages issued before the due date, whereas the term "urging letter" or "expediter" commonly stands for a perhaps more strongly worded admonitory message issued after the due date. However, this distinction is not consistent, and may not apply outside the SAP environment. The corresponding term for "urging letter" in the FI component is "dunning letter", and relates to overdue payments.)
A negative number means that a reminder is to be issued prior to the deadline for submission of quotations or the delivery date for ordered goods. For example, if you enter 5- as the reminder level, a reminder will be sent 5 days prior to the quotation submission date.
Prerequisites
The message determination facility has been set up in Customizing for Purchasing.
You can also work with the standard settings. For further information, see Tips for Fast Message Determination Set-Up in the Implementation Guide (IMG).
Message records must have been created through master data maintenance (Purchasing menu).
The purchasing document involved must have previously been transmitted to the vendor.

Similar Messages

  • SSMTP send to dead.letter

    Hi,
    I use ssmtp and cron for send scheduled email to my email address
    seem that only sometimes the email is actually sent, the other times it goes to dead.letter
    checking in /var/log/mail.log
    Sep 12 00:36:55 localhost sSMTP[2306]: Creating SSL connection to host
    Sep 12 00:36:55 localhost sSMTP[2306]: SSL connection using ECDHE-RSA-RC4-SHA
    Sep 12 00:36:59 localhost sSMTP[2306]: Sent mail for [email protected] (221 2.0.0 closing connection cu1sm4772851wib.6) uid=0 username=root outbytes=3540
    Sep 12 02:00:26 localhost sSMTP[2843]: Creating SSL connection to host
    Sep 12 02:00:27 localhost sSMTP[2843]: SSL connection using ECDHE-RSA-RC4-SHA
    Sep 12 02:05:39 localhost sSMTP[2843]: killed: timeout on stdin while reading body -- message saved to dead.letter.
    Sep 12 02:05:39 localhost sSMTP[2843]: Timeout on stdin while reading body
    Sep 12 04:02:18 localhost sSMTP[3535]: Creating SSL connection to host
    Sep 12 04:02:19 localhost sSMTP[3535]: SSL connection using ECDHE-RSA-RC4-SHA
    Sep 12 04:07:21 localhost sSMTP[3535]: killed: timeout on stdin while reading body -- message saved to dead.letter.
    Sep 12 04:07:21 localhost sSMTP[3535]: Timeout on stdin while reading body
    Sep 12 14:32:27 localhost sSMTP[6982]: Creating SSL connection to host
    Sep 12 14:32:27 localhost sSMTP[6982]: SSL connection using ECDHE-RSA-RC4-SHA
    Sep 12 14:37:29 localhost sSMTP[6982]: killed: timeout on stdin while reading body -- message saved to dead.letter.
    Sep 12 14:37:29 localhost sSMTP[6982]: Timeout on stdin while reading body
    Sep 13 00:02:33 localhost sSMTP[10116]: Creating SSL connection to host
    Sep 13 00:02:33 localhost sSMTP[10116]: SSL connection using ECDHE-RSA-RC4-SHA
    Sep 13 00:02:38 localhost sSMTP[10116]: Sent mail for [email protected] (221 2.0.0 closing connection fb20sm15256872wid.1) uid=0 username=root outbytes$
    why is it going to time out? is there a way for set a longer timeout?

    Hello Serdar
    This error is probably due to a bug on the MQ side. There is a MQ fix, 6.0.2.0.9, which has resolved this error. I recommend you contact MQ support for further details on this (or try applying the above MQ fix).
    Regards
    Mark

  • Sending Body of letter Through mail along with PDF file.

    Dear friends,
          I want to write some text in the mail(Body) while sending the PDF file.
              Now I am sending PDF file , besides PDF file I have to write some text in the mail.
                     Please help me .
                                                                            Thanks ,
                                                                              Praveen.

    here is sample code.... Check the perform set_up_email_body.....
    FORM send_mail .
    Set up the header,body ,file attachment of the message.
      PERFORM set_up_email_hdr.
      PERFORM set_up_email_body.
      PERFORM set_up_att_file.
      CLEAR: wa_objtxt.
      SORT t_fieldcat BY no_out col_pos.
    Set up patcking list for attachment
      wa_objpack-body_start = w_tabln + 1.
    Loop at report and separate by semi-colons
      CLEAR: w_tabln.
      SORT t_fieldcat BY no_out col_pos.
    Loop at report and append header values
      LOOP AT t_fieldcat INTO fs_fieldcat WHERE no_out = space.
        IF wa_objtxt IS INITIAL.
          wa_objtxt = fs_fieldcat-seltext_l.
        ELSE.
          CONCATENATE wa_objtxt
                      fs_fieldcat-seltext_l
                 INTO wa_objtxt
         SEPARATED BY c_comma.
        ENDIF.                             " IF WA_OBJTXT ...
        CONDENSE wa_objtxt NO-GAPS.
      ENDLOOP.                             " LOOP AT T_FIELDCAT ...
      IF sy-subrc EQ 0.
        APPEND wa_objtxt TO t_objtxt.
      ENDIF.                               " IF SY-SUBRC ...
    Fill Email attachment
      PERFORM fill_email_report.
      DESCRIBE TABLE t_objtxt LINES w_tabln.
      CLEAR W_LINE.
      READ TABLE t_objtxt INTO w_line INDEX w_tabln.
      IF SY-SUBRC EQ 0.
        fs_docda-doc_size = ( w_tabln - c_1 ) * 255 + STRLEN( w_line ).
        wa_objpack-body_num = w_tabln.
        wa_objpack-doc_size = w_tabln * 255.
        APPEND wa_objpack TO t_objpack.
    Add receipients to the mail.
        PERFORM add_recipients.
    send the mail
        PERFORM call_send.
      ENDIF.                               " IF SY-SUBRC EQ 0.
    ENDFORM.                               " SEND_MAIL
    *&      Form  add_recipients
          This subroutine is used to add receipients to send mail.
          There are no parameters passed to this subroutine.
    FORM add_recipients .
      IF p_user IS NOT INITIAL.
        wa_receiver-receiver = p_user.
        wa_receiver-rec_type = c_u.
        APPEND wa_receiver TO t_receiver.
      ELSE.
        wa_receiver-receiver = p_dlist.
        wa_receiver-rec_type = c_c.
        APPEND wa_receiver TO t_receiver.
      ENDIF.                               " IF P_USER ...
    ENDFORM.                               " ADD_RECIPIENTS
    *&      Form  call_send
          This subroutine is used to send the mail.
          There are no parameters passed to this subroutine.
    FORM call_send .
      IF t_objtxt[] IS NOT INITIAL.
    Send the mail.
        CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
          EXPORTING
            document_data              = fs_docda
            put_in_outbox              = c_x
            commit_work                = c_x
          TABLES
            packing_list               = t_objpack
            object_header              = t_objhead
            contents_txt               = t_objtxt
            receivers                  = t_receiver
          EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            OTHERS                     = 8.
        IF sy-subrc NE 0.
          MESSAGE s100(ra) WITH text-e05.
          STOP.
        ELSE.
          MESSAGE s100(ra) WITH text-026.
        ENDIF.                             " IF SY-SUBRC ...
      ELSE.
        MESSAGE s100(ra) WITH text-029.
        STOP.
      ENDIF.                               " IF T_OBJTXT[] ...
    ENDFORM.                               " CALL_SEND
    *&      Form  set_up_email_hdr
          This subroutine is used to Setup the attributes of the Document
          There are no interface parameters to this subroutine.
    FORM set_up_email_hdr .
      MOVE text-i03 TO fs_docda-obj_name.
      IF sy-sysid+0(1) NE c_p.
        CONCATENATE text-i02 text-i03 INTO fs_docda-obj_descr.
      ELSE.
        MOVE text-i03 TO fs_docda-obj_descr.
      ENDIF.                               " IF SY-SYSID+0(1) ...
    ENDFORM.                               " SET_UP_EMAIL_HDR
    *&      Form  set_up_email_body
          This subroutine is used to set body of an email
          There are no interface parameters to this subroutine.
    FORM set_up_email_body .
    Setting the attributes of the document.
      IF P_ZCR3 EQ C_X.
        wa_objtxt-line = text-007.
      ELSEIF P_REL EQ C_X  AND P_CHECK NE C_X.
        wa_objtxt-line = text-008.
      ELSEIF P_REL EQ C_X AND P_CHECK EQ C_X.
        wa_objtxt-line = text-008.
      ELSE.
        wa_objtxt-line = text-009.
      ENDIF.                               " IF P_ZCR3 ...
      APPEND wa_objtxt TO t_objtxt.
      DESCRIBE TABLE t_objtxt LINES w_tabln.
      CLEAR W_LINE.
      READ TABLE t_objtxt INTO w_line INDEX w_tabln.
      IF SY-SUBRC EQ 0.
        fs_docda-doc_size = ( w_tabln - 1 ) * 255 + STRLEN( w_line ).
        wa_objpack-head_start = c_1.
        wa_objpack-head_num   = c_0.
        wa_objpack-body_start = c_1.
        wa_objpack-body_num   = w_tabln.
        wa_objpack-doc_type   = c_RAW.
        APPEND wa_objpack TO t_objpack.
      ENDIF.                               " IF SY-SUBRC EQ 0.
    ENDFORM.                               " SET_UP_EMAIL_BODY
    *&      Form  set_up_att_file
          This subroutine is used to set up an attachment file.
          There are no interface parameterst that need to be passed to
          this subroutine.
    FORM set_up_att_file .
    Attaching the file to the mail.
      wa_objhead-line = c_fname.
      APPEND wa_objhead TO t_objhead.
      wa_objpack-head_start = c_1.
      wa_objpack-head_num   = c_1.
      wa_objpack-body_start = w_tabln.
      wa_objpack-doc_type   = c_CSV.
      IF P_ZCR3 EQ C_X.
        wa_objpack-obj_name   = text-012.
        wa_objpack-obj_descr  = text-012.
      ELSEIF P_REL EQ C_X.
        wa_objpack-obj_name   = text-027.
        wa_objpack-obj_descr  = text-027.
      ELSE.
        wa_objpack-obj_name   = text-028.
        wa_objpack-obj_descr  = text-028.
      ENDIF.                               " IF P_ZCRE EQ....
    ENDFORM.                               " SET_UP_ATT_FILE

  • Office: sending  a standard letter to customers contacts ...

    Hi All,
    I wonder if Sap allow to create a standard letter for the whole range of customers, letter different for each custmer only for the address data in the header.
    Thanks
    Gandalf

    hello
    There is a standar functionality for correspondance
    Please refer to
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/01/a9cf0d455711d182b40000e829fbfe/content.htm
    Regards

  • How can I send Apple a letter of complaint from my iPad?

    I have some serious problems with a new app that I recently purchased and am not exactly sure why Apple felt it was appropriate for the app store.  I would like to communicate this to Apple, but I have only found instructions that require me to sign into iTunes from a computer. Surely there's a way to do it from my iPad. Anyone know how?

    The parent can set up restrictions on the app store, or not tell them your Apple ID password. Inappropriate content should also come up with a warning saying that the material is suggested for people over 17 years old as well. There are plenty of ways to control your children on the iPad.

  • Urging letters/reminders.

    Hi,
    where I set that an urging letter must be sent by mail?
    Where do I have to put the e-mail address in the vendor master?
    Best regards

    Hi,
    what kind of transmission medium must I put to send an urging letter by mail ?
    Best regards

  • Send Dunning letter (TCODE F150) by email

    Dear Friends,
    I need to send a dunning letter(which is generating from tcode F150) through email to all the customers.I did BTE for event 00001040.function module is   SAMPLE_PROCESS_00001040. I copies above FM and rename as Z_RSAMPLE_PROCESS_00001040. I just add a break point statement and ran a F150 tcode. But it will not stoped at the breakpoint.
    I did FIBF settings also to register the modifications.
    Thanks
    Rasika

    How can i replace existinf FM with ZFM.
    What i did was i copied the existing FM to ZFM and activated it.
    After that i went FIBF Settings.....> Products.....>Customer and created a new Z product .
    *Again i took FIBF Settings.....>P/S Module......>of a Customer and add my ZFM to slected(00001040) event.
    After that i ran the F150 but break point did not apper.

  • It doesn`t let me send text messages

    when I go into my imessages I can type but my send button doesnt let me send.HELP

    Try:
    iOS: Troubleshooting Messages
    Is the addressee of the Message a registered Messages address and do they have an iDevice with iOS 5?

  • IMessage;it lets me send it but then come up with message failure?

    iMessage is not letting me send message it lets me send it but then says message cannot deliver ?!

    Try:
    iOS: Troubleshooting Messages

  • Reminder letter against PO

    Hi ,
    How can I send reminder letter to vendor against PO . What are the settings and T.Code.
    Regards
    nandini

    HI,
    the T.code  is  ME91F .
    There are I4 purhasing value keys_
    1-reminder days
    2-Tolerance limits
    3-shipping instructions
    4-order acknowledgment requirement
    1-reminder days
    Number of days representing the time interval at which reminders or
    urging letters/messages are to be issued to the vendor.
    Example
    In the event of a delay in delivery, you can send messages urging
    the vendor to deliver ordered materials a total of three times,
    at intervals of 10 days:
    Reminder 1: 10 days (after delivery date)
    Reminder 2: 20 days (after delivery date)
    Reminder 3: 30 days (after delivery date).
    2-Tolerance limits
    Underdelivery tolerance limit ->
    Percentage (based on the order quantity) up to which an
    underdelivery of this item will be accepted.
    Overdelivery tolerance limit ->
    Percentage (based on the order quantity) up to which an overdelivery
    of this item will be accepted.
    3-shipping instructions
    Specifies the packaging and shipping instructions issued to the vendor.
    4-order acknowledgment requirement
    Determines whether the purchasing document ( purchase order, outline
    purchase agreement, etc.) is to be acknowledged by the vendor.
    This data appears as default data in purchasing documents and is
    taken from the material master record (unless a purchasing info record
    exists, in which case it is taken from the latter source).
    These messages are created using TA: ME91F using the defined reminder
    days defined in the detail screen of the item in the p.o.
    Messages of type MAHN are always created delivery date plus the reminder
    days. You can also use negative reminder days so that the vendor is
    reminded some days before the requested delivery date.
    I hope this information helps!.
    Best Regards,
    Arminda Jack

  • Which file fails in sender file adapter

    Hi.
    Is there a place in the monitoring landscape, that can tell me the filename of a file, that fails in a sender file adapter (lets say I receive files with filename *.txt).
    The file adapter uses content conversion.
    Right now, the RWB only tells me that something went wrong in the content conversion. The filename would be nice for people working in a CCC to forward to second level support!
    Regards...
    Peter

    Hi,
    In the sender file CC..
    Check the option filename and filetype under the adapter specific attribute so  that the payload will have the filename too...which make the life easy...
    Regards
    San
    Remember to set the thread to solved when you have received a solution there is a Way.

  • I bought a 27 inch iMac that I must constantly send to repairs. How do I get my money back?

    I bought this imac at the end of last year.
    After 3 months the screen started to get smudges all over the place, and since I work in video production, thats just something I cannot have.
    I sent my computer to get repaired, and they replaced the screen. It's been 2 months, the screen is getting burned again, and now it crashes constantly, I get the "white screen of death", it doesnt boot up, then the screen starts to flickr like a strobe light. I try again, and then the screen turns all blue, like a blue screen you get using a windows based PC. Now I luckly managed to boot it up, and came straight here, and if I manage to finish this post without it crashing again its a great deal of luck.
    I called the apple call centre, and they said that apple somehow managed to replace my screen with another defected one (yes, they actually told me that) AND that I probably also have a defected seagate hard drive that they are replacing in all the imacs bought from 2009 to 2012. They also said that its "weird" that they didnt replace it the first time it went to repairs.
    I do all my work on this computer, and I can't manage to constantly be without it to send it to repairs, and that is probably whats going to happen, till my warranty voids, then I will be the proud new owner of a 27 inch brick.
    Im extremely dissapointed at apple. I was willing to pay 2000 euros for a computer, because then I would "pay for quality" of the product, and get good service. Well the product obviously has severe problems, and the customer service is even worst. They told me all that ridiculous stuff that puts apple in a shameful position, and also shoved me aside to deal with my problem with someone else. They said the only way I could "try" and get my problem fixed, Is if I send an actual letter (because apparently people still do that) to the Apple Europe Headquarters in Ireland. I live in Portugal.
    Before the apple europe headquartes in Ireland ask me to send a pigeon to the United States, I would like to say that i'm probably never going to buy products from Apple ever again. I'm not the only person with this problem, and people close to me are having exactly the same problems and feelings twords apple. If I get my money back, maybe I will still buy my music from iTunes, that at least hasn't given me any problems...yet..

    I have some news on my situation, and some news on the problem of the screen itself.
    First, this still could be wrong, but here is a possible explanation for the screen problem:
    http://www.hardmac.com/news/2011/04/05/investigation-of-the-marks-on-the-imac-sc reen
    It seems that the mac is overly sensitive to dust, but the only dust that actually goes in, is a very thin kind that you have pretty much everywhere. Maybe the heat from the computer makes the dust stick or something, I don't know.
    Anyway, I wen't to the store where I purchased my 27'' imac, and asked to talk to the manager (it's one of those big chain stores, like best buy, but in this case its called "Fnac"). Apparently I was terrebly missinformed by pretty much everyone, including "Fnac" employees. It appears that I am in fact protected by portuguese law, and everytime I get a new component replaced, I get a new 2 year warranty for it (in Europe you always get 2 year warranty for everything, instead of 1). And, after the 3rd attempt to fix a recurring problem, I can in fact demand the money back, or a replacemement new product. There is still some glitchy stuff on that matter though. The manager said there is this problem in pretty much in every retailer everywhere - there are 2 kinds of stores that sell apple products: there are those stores that are just intermidiates between apple itself and the customer, witch means that for every product they sell, they only own a small percentage of it; and there are those who buy apple products, to resell them to their costumers. On this second kind of stores (like Fnac, and probably BestBuy and such), where they resell, they have to give you the money back because the law says so (since they own the products they sell). But Apple on the other hand doesn't allow it. So basicly, they have to give me the money back or a new product first, and then ask apple for permission and hope for the best, because if they dont give permission, the store will loose the money the product is worth.
    My problem is "kind of" solved though. Now I know that even in the worst case scenario, I can keep replacing the screens once or twice a year, witch is not really great because I'll not be able to work on it for around 2 months in every year. It's still bad for apple, and its sad that the ones who actually solved my problem was the europe consumer laws, the portuguese government, and the store. Apple, a company that at this moment makes more money then the united states, doesn't have a solution for me, and doesn't agree with the solutions the other ones gave me.
    Thanks for all your help and opinions. They gave me some perspective.
    I will still be on the lookout for more answers, and if anyone has the same problem I can use my experience to help them.

  • Dunning letter (email) PDF attachment or body of email

    Hi experts,
    What is the industry practice for dunning letters when sent via email? Attach them as a pdf to the email, or add all the content of the dunning letter to the body of the email to make it easier for the customer to receive the message?
    Thanks,
    Mario

    Hi Mario,
    It all depends on the functionality that and payment option that are provided.
    If the dunning letters contains and payment/remittance slip(through which customer can make payment in bank, outlet or post office) than the letter should go as PDF attached to mail with body saying that its the reminder for payment being missed,
    But if the payment option is not like as described above than you can send the the letter in html body mail.
    Regards

  • Sending Carbon Copy using SO_NEW_DOCUMENT_ATT_SEND_API1

    Hello,
    I am using SO_NEW_DOCUMENT_ATT_SEND_API1' to send out email letting people know a direct deposit has been posted to their bank.  My problem is that the Acct department wants a carbon copy sent to their email address for each email that is sent.  Looking at this function, there is a line called
    RECEIVERS = IT_RECLIST.  When I take this thru debug, I see IT_RECLIST  defined as TYPE TABLE OF SOMLRECI1.  When I see the fields in IT_RECLIST, there is a field called copy, I assume I set this flag = 'X' to let the function know I want a carbon copy, correct?  Also, I am confused as to where the carbon copy email address would go, because all I see is a field called RECEIVER that is holding the recipients email.  Can you guys set me straight here?

    u can't send a carbon copy...instead while sending the email, the same can be sent to 2 or more people at a time. Add the email address to the existing list and it will trigger same email to the department.

  • How do you setup a send to a track with multiple effects?

    I am just learning how to mix and master songs as well as using Adobe Audition and was wonder if it was possible to allow a track to have multiple sends on them, Lets say one send containing Reverb on one bus, then another send applied to the same track containg delay thus allwoing me to controll idependently how hard the two seperate affects will contribute to the mix.

    Audition allows you to have up to 16 sends on each track with a separate level control on each. And you can set up a bus track for each containing it's own effects rack. If you really want to you can use any one of the sixteen sends from a bus to another bus or to the master track.

Maybe you are looking for