ROS Email to vendor not created

Hello experts,
We are facing some issue while configuring ROS.
We are using SRM 5.0. We are using two client strategy one for EBP and another for SUS. We are configuring ROS on the SUS client.
We are able to launch the self registration link and the vendors are able to submit their registration. These vendors are available in the purchase admin (on SUS client itself) in the preselect vendor transation.
We are able to see the questionnaires selected (based the category selected by the vendor) in the tab Catagories and Questionnaires.
When we select the questionnaire and click the send survery for selected categories message is displayed  "Sending questionnaires by e-mail has begun successfully"
However no mail is triggeres. We cant see any mail generated in SOST (we have not configure the mail server yet).
Please do let me know if I am missing any thing in config.
Any tips and tricks are welcome.
Thanks and best regards, Jith.

Hello Experts,
The problem got resolved.
I had not maintained the mail id of the sender. So the application was not triggering the mail.
Thanks for your inputs. Let us see the next level.
Regards,
Jith

Similar Messages

  • I have problem sending a email ..spool not created using custom FM

    Hi experts,
    i have problem sending a email ..spool not created using custom FM...this the custom FM
    * Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
    Source code
    this is the source code for this FM
    IF sy-batch EQ 'X'.
        PERFORM get_job_details.
        PERFORM obtain_spool_id.
        PERFORM convert_spool_to_pdf.
        IF sy-subrc IS NOT INITIAL.
          MESSAGE e040(zhrcd) RAISING spool_not_created.
        ENDIF.
        PERFORM process_email USING email1
                                    email2
                                    email3
                                    subject
                                    attachment_name.
        WAIT UP TO 5 SECONDS.
        SUBMIT rsconn01 WITH mode   = 'INT'
                        WITH output = 'X'
                        AND RETURN.
      ENDIF.....
    Please let me know
    Edited by: Thomas Zloch on Nov 16, 2010 5:53 PM - please use code tags

    Hi srinivas ,
    Could you please Check
    FORM summary_report .
      DATA: lv_success TYPE i,
              lv_error TYPE i,
              lv_total TYPE i.
      DESCRIBE TABLE gt_data LINES lv_success.
    DESCRIBE TABLE gt_error LINES lv_error.
      DESCRIBE TABLE gt_message LINES lv_error.
    lv_total = lv_success + lv_error.
      lv_total = lv_success.
      gwa_summary-record = text-008."Number of Successful records.
      gwa_summary-number = lv_success.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-009."Number of error records'.
      gwa_summary-number = lv_error.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-010."Total number of records processed.
      gwa_summary-number =  lv_total.
      APPEND gwa_summary TO gt_summary.
    CLEAR gt_fieldcat.
      gwa_fieldcat_summ-col_pos = 1 .
      gwa_fieldcat_summ-fieldname  = 'RECORD'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-011."Records
      gwa_fieldcat_summ-outputlen = '70'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
      gwa_fieldcat_summ-col_pos = 2 .
      gwa_fieldcat_summ-fieldname  = 'NUMBER'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-012."Number
      gwa_fieldcat_summ-outputlen = '10'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
    ENDFORM.                    " SUMMARY_REPORT
    *&      Form  ERROR_REPORT
    FORM error_report .
    gt_fieldcat_err[] = gt_fieldcat[].
      gv_fieldcat_err-col_pos = 1.
      gv_fieldcat_err-fieldname  = 'PERNR'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-070."Employee Number
      gv_fieldcat_err-outputlen = '20'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
      gv_fieldcat_err-col_pos = 2.
      gv_fieldcat_err-fieldname  = 'MESSAGE'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-071."Error Message
      gv_fieldcat_err-outputlen = '80'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
    ENDFORM.                    " ERROR_REPORT
    *&      Form  FINAL_REPORT
    FORM final_report .
      DATA:lv_layout TYPE slis_layout_alv,
             lt_events_summ TYPE slis_t_event,
             lv_events_summ LIKE LINE OF lt_events_summ,
             lt_events_det TYPE slis_t_event,
             lv_events_det LIKE LINE OF lt_events_det,
             lt_events_err TYPE slis_t_event,
             lv_events_err LIKE LINE OF lt_events_det,
             lt_events_msg TYPE slis_t_event,
             lv_events_msg LIKE LINE OF lt_events_det.
      lv_events_summ-name = 'TOP_OF_PAGE'.
      lv_events_summ-form = 'TOP_OF_PAGE1'.
      APPEND lv_events_summ TO lt_events_summ.
      lv_events_det-name = 'TOP_OF_PAGE'.
      lv_events_det-form = 'TOP_OF_PAGE2'.
      APPEND lv_events_det TO lt_events_det.
      lv_events_err-name = 'TOP_OF_PAGE'.
      lv_events_err-form = 'TOP_OF_PAGE3'.
      APPEND lv_events_err TO lt_events_err.
      lv_events_msg-name = 'TOP_OF_PAGE'.
      lv_events_msg-form = 'TOP_OF_PAGE4'.
      APPEND lv_events_msg TO lt_events_msg.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          i_callback_program = sy-repid.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat_summ
          i_tabname                        = 'IT_SUMMARY'
          it_events                        = lt_events_summ
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_summary
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    IF CHK_DTL IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat
          i_tabname                        = 'gt_data'
          it_events                        = lt_events_det
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_data
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_err
         i_tabname   = 'gt_error'
         it_events   = lt_events_err
       TABLES
         t_outtab    = gt_error.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_msg
         i_tabname   = 'gt_message'
         it_events   = lt_events_msg
       TABLES
         t_outtab    = gt_error.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_err
          i_tabname   = 'gt_message'
          it_events   = lt_events_err
        TABLES
          t_outtab    = gt_message.
    IF GT_MESSAGE[] IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_msg
          i_tabname   = 'gt_message'
          it_events   = lt_events_msg
        TABLES
          t_outtab    = gt_message.
    ENDIF.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
       i_interface_check             = ' '
      IS_PRINT                      =
       i_screen_start_column         = 0
       i_screen_start_line           = 0
       i_screen_end_column           = 0
       i_screen_end_line             = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER       =
      ES_EXIT_CAUSED_BY_USER        =
    EXCEPTIONS
      PROGRAM_ERROR                 = 1
      OTHERS                        = 2
    ENDFORM.                    " FINAL_REPORT
    *&      Form  top_of_page
          text
    FORM top_of_page1.                                          "#EC CALLED
      WRITE text-013."SUMMARY REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page2
          text
    FORM top_of_page2.                                          "#EC CALLED
      WRITE text-014."DETAIL REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page3
          text
    FORM top_of_page3.                                          "#EC CALLED
      WRITE text-015."ERROR REPORT
    ENDFORM.                    "top_of_page
    *&      Form  EMAIL_NOTIFICATION
    FORM email_notification .
      DATA: lv_email1  TYPE somlreci1-receiver,
           lv_email2  TYPE somlreci1-receiver,
           lv_email3  TYPE somlreci1-receiver,
           lv_subject TYPE char200,
           c_flag     TYPE c           VALUE 'X',
           lv_attachment TYPE char50.
      CLEAR: lv_email1,
             lv_email2,
             lv_email3,
             lv_subject,
             lv_attachment.
      SELECT SINGLE email1
                    email2
                    email3
        FROM zhr_interface_pr
        INTO (lv_email1,lv_email2,lv_email3)
        WHERE zinterfaceid EQ gc_objectid.
      IF sy-subrc EQ 0.
        IF sy-batch EQ 'X'.
    Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
          IF sy-subrc <> 0.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.                    "
    Edited by: katewinslate@SAP on Nov 17, 2010 12:50 PM

  • PO on vendor not created for a company code

    Hi,
    When the vendor master is not created for a pur.org., I am getting errror message when I try to create a PO on that vendor/pur.org. combination.  But, when the vendor master is not created for a company code, system is allowing me without any error for creating PO on that company code.
    I want to set error message for creating PO on a company code for which vendor master is not maintainted.  Please let me know the settings required for this.
    Thanks.

    Hi
    Normally it will allow to create PO.
    If u r not maintaining the company code settings u can not proceed with the MIRO.
    U might have created PO through MK01.... But FI team has to enter the Compnay code related details in XK01
    Regards,
    Raman
    Edited by: Raman S on Mar 13, 2009 11:58 AM

  • I updated my reader to version 10.1.6 and now my javascript email button does not create an email???

    Our business has updated Adobe reader to 10.1.6.  I have a BUTTON that I use to send an email using Javascript but now it will not work and sometimes it freezes up.  When I open the same file in Acrobat Pro X it works fine.  I need it to work in Adobe reader since my coworkers do not have Pro on their computers.
    I do have a computer that has an older version of Adobe reader on it and it has the repair option in the help section and when I click repair the file starts to work but with the update to 10.1.6 the repair option is gone.  I cannot uninstall or revert back to the older version because our IT department will not allow it so that option is not available to me.
    Can anyone help please?

    I'm experiencing a similar issue in Reader 11.0.06 and the latest Acrobat XI as well. Anyone using 11.0.05 is fine. What changed in the latest update?
    Update: I've been playing around with the Javascript settings in the preferences panel and I'm not sure what combination of the checkboxes makes the difference, but it seems to be working properly now. I'll update this post when I have the time to figure it out. (I had a feeling it was a security thing — the update notes for 11.0.06 weren't very enlightening, but they did say "security".)
    Message was edited by: schelling

  • SUS: Vendor not created in SRM with partner function 19

    Hi,
    I am using SRM 5.0 MM-SUS scenario. The issue is related to vendor migration from ERP and updation in SRM.
    When i migrate a vendor with account group VEND from ERP then in SRM the vendor is properly created and a corresponding entry is updated in table CRMD_PARTNER. The vendor is alotted partner function 19.
    However when i migrate a vendor with acount group VEIN from ERP the in SRM vendor is getting created and is updated in vendor organisation but its entry in table CRMD_PARTNER is missing.
    Does this mean that only account group VEND is considered as vendor in SRM and thus assigned partner function 19 and gets a entry in mentioned table.
    Request your inputs.
    Regards,
    Ashish

    Vendor data is maintained in table CRMD_PARTNER only when transactional documents exist for the vendor.

  • Iphoto 8 on Mac Pro email button will not create "Larger" images!?

    When I use the email function (from sharing menu or "email" icon) iPhoto generates the same (small) size file no matter which size I choose in the menu. This happens for all originals regardless of the raw size. This is not an issue for me on my laptop w/iPhoto 6. Anybody??? -Thanks.

    Chris
    What version of the OS are you using? iPhoto 08 won't run on 10.3 and you're list refers to 10.3.
    Later versions of Mail have a setting for sizing pics in the New Message Window:
    Uploaded with plasq's Skitch!
    That's the usual cause of this problem (but not on 10.3).
    Regards
    TD

  • Submit Form Via Webmail Is Not Creating Email In Drafts Folder

    Bottom Line Up Front: PDF's Submit via Email (Webmail) is not creating the email in the Webmail account.
    What I am using:
    =============
    * Adobe Acrobat Pro XI; however, I have a lot of users using Adobe Reader.
    * Yahoo! email
    What I am trying to do:
    ==================
    Send the data from a completed pdf to an email address via webmail.
    What Works:
    ===========
    Using the default application - Microsoft Outlook, the form's data is placed into an XML attachment and an email is created for review and transmission.
    What Isn't Working:
    ===============
    Sending the same form via the Webmail feature. Acrobat first provided the Yahoo account name and password handshake screen, and then I authorized Acrobat to use my Yahoo account. The form provided a status bar that indicated the email was being created and the attachment being added to the email; however, no email was ever created (and placed in my draft folder) and no email was sent (checked there too.)
    What I've Confirmed:
    ================
    I've gone to my Yahoo account's "Manage Apps and Website Connections" and confirmed that Acrobat is permitted to create emails (among other things). I've tested the non-webmail (default) email. I've confirmed in my Acrobat Pro XI preferences that the email account is there.
    All help is greatly appreciated.

    Yes. However, if I receive that 500th back I have violated the License. Though I believe you need to go back and read it again It seems to say you can only send out 500 copies.
    Either way would be breaking the intent of the license agreement.
    WE have fought hard just to get this little change made (for benefit of very small Business or even non-profits). So we don't want to cause Adobe to pull this out of the next version because of misuse.

  • To send Payment advice note as Email to vendor

    Hi
    I like to know how can we send the payment advice note created after F110 run to be send as email to the vendor?
    your help would be appreciated a lot
    regards
    auro

    Hi Arvind,
    Check out the following link
    Re: f110 payment advice
    Assign points if useful
    Regards
    Genie

  • TS4002 I'm trying to create a new apple-id but when typing the email adress I want to use I'm told that the particular email adress is not allowed but when searching I can't find same being used. How do I find out where that particular email adress is use

    I'm trying to create a new apple-id but when typing the email adress I want to use I'm told that the particular email adress is not allowed When searching I can't find same being used anywhere. How do I find out where that particular email adress is used so I can delete it there and use it for my new apple-id?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    Also
    If you have Find My iPhone enabled, you can use Remote Wipe to erase the contents of your device. If you have been using iCloud to back up, you may be able to restore the most recent backup to reset the passcode after the device has been erased.

  • Mail does not create new emails based on the highlighted mailbox, but rather the receiving mailbox of whatever individual email happens to be highlighted. This was not the case prior to Lion. Is this a bug or an error on my part?

    Mail does not create new emails based on the highlighted mailbox, but rather according the receiving mailbox of whatever individual email happens to be highlighted. This was not the case prior to Lion. Is this a bug or an error on my part? (I do have the setting for creating new emails from the highlighted mailbox checked.)

    The questions about time was not only because of thinking about the Time Machine, but also possible impact on recognizing which messages remaining on a POP server (doesn't apply to IMAP) have been already downloaded. In the Mail folder, at its root level, in Mail 3.x there is a file named MessageUidsAlreadyDownloaded3 that should prevent duplicate downloading -- some servers may not communicate the best with respect to that, and the universal index must certainly be involved in updating that index file. If it corrupts, it can inhibit proper downloading. However, setting the account up in a New User Account and having the same problem does not point that way, unless your POP3 server is very different from most.
    That universal index is also typically involved when messages are meant to be moved from the Inbox to another mailbox -- in Mail 3.x the message does not move, but rather is copied, and then erased from the origin mailbox. That requires updating the Envelope Index to keep track of where the message is, and should keep track of where it is supposed to have been removed after the "Move".
    Ernie

  • PO created instead posting block set & vendor not extended to company code!

    Dear friends,
    I have a vendor created for a purchasing organisation in  a company code. there are two problems that i am facing.
    1) I have  blocked  a particular vendor completely. Even then system is allowing to create the PO using this vendor.
    2) This vendor has been created for a particular company code & has not been extended to another company code. Even then it is allowing to create the PO using the vendor centrally blocked for creating purchase order in another company code.
    There is a service PR specifying this vendor as desired vendor & the vendor is ticked for auto PO. Could this be a problem? but i think even then it should not allow to create PO that too for a different company code.
    Thanks & Regards
    Tasleem Arif

    1) I have blocked a particular vendor completely. Even then system is allowing to create the PO using this vendor.
    Answer:  While creation Purchase order, purchase orgnization mandatory for vendor,  if vendor blocked at company code level means system will not check Company code at the time of PO creation. here in PO creation use of company code is to recognise Currency of the company code.
    2) This vendor has been created for a particular company code & has not been extended to another company code. Even then it is allowing to create the PO using the vendor centrally blocked for creating purchase order in another company code.
    Answer: While creation of Purchase order, Comapny code is used for only currency recognisation , system will not check vendor is created for comapny code or not? but vendor should at Purchase org level.
    If vendor is not defined at company code , then it will give an error at the time of invoice only. not at PO level.
    At  PO level Purchase orgnisation is very important
    Regards
    Mahesh Naik.

  • Is there any way to edit and save an existing spreadsheet file that was not created from my iPad? I get excel spreadsheets emailed to me and would love to edit them on my iPad and not ever use my PC.

    Is there any way to edit and save an existing spreadsheet file that was not created from my iPad? I get excel spreadsheets emailed to me and would love to edit them on my iPad and not ever use my PC.

    Thanks. I tried an app called Office2HD and it does exactly what I need. I can even email my edited file from this app.

  • Vendor not intended when create SC using create limit item

    Hi All,
    This is a challenging issue for all of us...
    SRM : 5.0
    ECC : 6.0
    I am facing the problem when creating the Shopping cart..
    When i click on Centralized purchasing -- > Shop -- > Create Limit item
    and give the Desc, Product category, Value limit, Expected value, Date between, Supplier and Follow-up actions as Confirmation and Invoice and account assignment as Known and click add to shopping cart..
    It is giving a message vendor not intended for purchaing org.. in the Item under Good/Service field value LIMIT is getting created automatically.. I dont understand how it is getting created..
    If i try to create one more item and specify the Good/service as our custom field value  , for this item there are no error and
    no message saying Vendor not intended for Purchasing organization..
    Please help me in finding out the issue.So that will be greatful to you..
    Advanced thanks
    Points will be rewarded..
    Regards
    Raju

    Hi Teja,
    I agree with you answer..
    When i tryo to create SC using the Product which are repliacted from ECC to SRM.. I am able to create SC successfully. That means vendor is properly intended to the Porg and Pgrp right...
    When i click on Centralized purchasing -- > Shop -- > Create Limit item
    and give the Desc, Product category, Value limit, Expected value, Date between, Supplier and Follow-up actions as Confirmation and Invoice and account assignment as Known and click add to shopping cart..
    It is giving a message vendor not intended for purchaing org.. in the Item under Good/Service field value LIMIT is getting created automatically.. I dont understand how it is getting created and Product type is neither a Material nor service.. The product type field vale is blank....
    Please help me in finding out the issue.So that will be greatful to you..
    REgards
    Kumar

  • MS Outlook 2010 Add in Create pdf - does not create pdf of draft emails- Adobe Acrobat Pro X

    In MS Outlook 2010 Add in Create pdf- does not create pdf of draft emails- this maybe the case, but just wanted to make sure this is normal for the program- though I guess one can print as an Adobe pdf but it does not maintain the hyperlinks of email addresses etc. the functionality is compromised in a print vs create a pdf.

    Here's a workaround by the team:
    Right click on the message from Explorer list view or folder view and chose the option to convert to PDF.

  • From knowledge Art to email error Reference Link not created

    Just upgraded to Solman 7.1 SP10
    When I have created a knowledge article I use "MORE - > Create follow up", select email to send the knowledge article to a user, then I get this message : "Reference Link not created as this Object Reference is not customized"
    if I use and incident and I use "Create follow up", select email, I do not get this message and you can see a reference document is pulling through
    What customising need to be done to get rid of the message "Reference Link not created as this Object Reference is not customized"
    Any help will be appreciated
    Regards
    johan

    Hi,
    The message "Reference Link not created as this Object Reference is not
    customized" is an information message. This is normal
    since the reference field in activities will only contain crm
    documents as objects references.
    Regards,
    Aidan

Maybe you are looking for

  • Can't open sequences or import clips - File format not supported

    We have an iMac workstation here running Premiere that will not open projects or import clips.  Here's the sequence of events that led to this: 1.  Premiere was locking up on the splash screen whenever it got to "ImporterQuicktime.bundle".  I tried t

  • I need a suggestion - Object to XML, XML to object

    Hi everyone, I've made a tool that stores objects into an XML document. It's a serialization process, I guess. It works well, but I have a problem, that may be impossible to solve: When I restore an object from the XML document, I need to instantiate

  • How to connect directly to FMS server

    Hi, Is it possible to connect directly to FMS server with NetConnection and connect to video with NetStream ? I see that in debug mode can see the RTMPS connection of FMS server, So I try successfully connect to this RTMPS connection, But I don't kno

  • Create a css file and use it

    Hi i use jdev 11.1.1.7 I have several items on the page . for example panelFormLayout . i want declare several property (background-color ,...) and assing it to all of panelFormLayout . so whenever i change color of background ,  background color of

  • What ever changes i have done in vendor details those only i want to displa

    i want to dispaly by plsql query .......it is urgent........plssssssss