SO_OBJECT_SEND in ECC 6

Hello,
Im working on an upgradre project and i have a problem with a customer program because in 4.6c send an email to outbox but in ecc 6 it don't send the mail.
Function used in customer program is SO_OBJECT_SEND
Anyones knows if this function should have some parameter flagged in order to send the mail?
best regards
Leandro

Try this one..
SAPCONNECT ALL SEND for sending mails from the server.
I hope you are talking about this.

Similar Messages

  • SO_OBJECT_SEND does not work after ECC upgrade

    Hi Gurus,
    I find a problem after ECC upgrade with SO_OBJECT_SEND.
    This was used in a zprog and was wroking fine in 4.6 C.
    When this prog is executed it sends mails to the users thru SOST/SCOT.
    But in ECC , upon execution I did not see the mails in SOST.
    The prog passes the User id (  type B) to the receivers table.The mail
    is sent to Business workplace but not to SOST/SCOT.
    Pls help gurus.

    Hi,
    Use type U instead of type B.
    Type of RECEIVER entry.
    The following values are permitted:
    'B' : SAP user name
    ' ' : SAPoffice name
    'C' : Shared distribution list
    'F' : Fax number
    'U' : Internet address
    'R ' : Remote SAP name
    'X' : X.400 address
    Regards
    Indu

  • Alternative for SO_NEW_DOCUMENT_SEND_API1 in ECC 5.0?

    Hi
    Would like to know what is the alternative method to implement the logic to send email in ECC 5.0 .  SO_NEW_DOCUMENT_SEND_API1  seems to be obsolete .
    Primarily I would like to know the difference between the following 2 function module.
    SO_OBJECT_SEND  and SO_NEW_DOCUMENT_SEND_API1 
    Appreciate your help.
    David

    Hi,
    Please use this FM UMC_NOTIF_SEND_EMAIL to send an email in ECC 5.0.
    Regards,
    Ferry Lianto

  • Getting Error Message "Error '9' when calling service 'SO_OBJECT_SEND'

    Hi All,
    We are working on SRM5.0(with servier 5.5 paching 14) and ECC (R/3) with SAP appl 600(16 th patch).but the workflow is giving the error   "Error '9' when calling service 'SO_OBJECT_SEND'  and PO is still in the awating approval status.
    Regards
    Channappa Sajjanar

    Hi,
    See  this related thread:
    Re: Workflow Error  --  Error' 9' when calling service ' SO_OBJECT_SEND'

  • Problem related to FM 'SO_OBJECT_SEND '

    Hi Experts ,
                       I have got a investigation related to  FM SO_OBJECT_SEND which is used to send a mail . There is a problem previously the code was using in the tables parameter RECEIVERS with the value of RECNAM was 'U' not the loginid but it was working fine.But for ECC 6.0 version it is not working. It doesn't give any exception but doesn't send any mail.Is there any changes of from lower version 4.5b to ECC6.0 .please reply soon.

    Hi,
    the note states that:
    <i>As of technology Release 6.10, the communication infrastructure uses the Persistence Service of the Object Services. The service does not work at the time of the PERFORM-ON-COMMIT.</i>
    So you have to do the <i>commit work</i> by yourself or, if you use FM SO_DOCUMENT_SEND_API1 set the import parameter COMMIT_WORK to 'X'.
    Check Re: Problem with SO_NEW_DOCUMENT_SEND_API1 too.
    Peter
    Points always appreciated

  • External Email error in SO_DOCUMENT_SEND_API1 from 4.6c to ECC

    Hi everyone,
    We are using SO_DOCUMENT_SEND_API1 Funtion module in a program to send to external emails in 4.6c,now if we use the same program in ECC 6.0 it shows document_not_send (exceptions no. 2)
    while debugging that Function module(SO_DOCUMENT_SEND_API1)  the bcs exception (CL_SEND_REQUEST_BCS) is occuring in Function Module SO_OBJECT_SEND 
    (Error type : DNS_SREQ)
    can anybody help to resolve this exception...
    i found that the Function module(SO_DOCUMENT_SEND_API1)  is different
    in both the systems (4.6c and ECC)

    Hi,
    Use this Code as-is.. this will work.. I am using in the Interface. logic. .now these are in PRD
    *Send Log as E-Mail Attachment
    *Get E-Mail ids from Table ZINT_PARAM
      SELECT intid
             parid1
             parid2
             pval1
             FROM zint_param
             INTO TABLE t_zint_param
             WHERE intid  = c_concur_empexp
             AND   parid1 = c_email.
    *Attachment Heading
      CLEAR v_cnt.
    *Get Week ending date
      CALL FUNCTION 'GET_WEEK_INFO_BASED_ON_DATE'
        EXPORTING
          date   = sy-datum
        IMPORTING
          sunday = v_lastdate.
      WRITE v_lastdate TO v_datum.
      CONCATENATE sy-uname text-010 v_datum INTO v_reportname SEPARATED BY space.
      v_name = sy-uname.
      CONDENSE v_name.
      LOOP AT t_log INTO s_log.
    Code Replace by balal
        CONCATENATE
          s_log-xref1
          s_log-ref
          s_log-lifnr
          s_log-textgl
          s_log-type
          INTO s_attach-line SEPARATED BY c_tab.
        CONCATENATE c_cret s_attach-line INTO s_attach-line.
        CONDENSE s_attach-line.
        APPEND s_attach TO t_attach.
        CLEAR s_attach-line.
        CONCATENATE c_tab s_log-log INTO s_log-log.
        CONCATENATE  s_log-log
                     s_log-belnr
                     s_log-amount
              INTO s_attach-line SEPARATED BY c_tab.
        CONDENSE s_attach-line.
        APPEND s_attach TO t_attach.
        CLEAR s_attach.
        CLEAR s_log.
      ENDLOOP.
      CONDENSE s_attach-line.
      CONCATENATE space c_cret INTO s_attach-line.
      APPEND s_attach TO t_attach.
      CLEAR s_attach.
    Body Message
      s_mailbody-line = space.
      APPEND s_mailbody TO t_mailbody.
      CLEAR s_mailbody.
      CLEAR v_datum.
      WRITE sy-datum TO v_datum.
      CONCATENATE  'Attached is the upload file for the Expense Reports Authorized on'(001) v_datum
      INTO s_mailbody-line SEPARATED BY space.
      CONCATENATE s_mailbody-line 'from Concur'(002) INTO s_mailbody-line SEPARATED BY space.
      APPEND s_mailbody TO t_mailbody.
      CLEAR s_mailbody.
    *Subject
      CONCATENATE 'Expense Reports Authorized on'(003) v_datum INTO  v_subj SEPARATED BY space.
      t_send_request  = cl_bcs=>create_persistent( ).
      t_document  = cl_document_bcs=>create_document(
                    i_type = c_raw
                    i_text = t_mailbody
                    i_importance = '1'
                    i_subject =  v_subj ).
    *Attachment
      CONCATENATE v_subj '.xls'(004) INTO v_subj.
      CALL METHOD t_document->add_attachment
        EXPORTING
          i_attachment_type    = 'XLS'
          i_attachment_subject = v_subj
          i_att_content_text   = t_attach.
    *Receivers
      t_send_request->set_document( t_document ).
    *Add Recipient E-mail Id's are available in this internal table
      LOOP AT t_zint_param INTO s_zint_param.
        v_mailid  = s_zint_param-pval1.
        t_recipient = cl_cam_address_bcs=>create_internet_address( v_mailid ).
        t_send_request->add_recipient(
          EXPORTING
            i_recipient = t_recipient
            i_express   = '' ).
        CLEAR : v_mailid ,s_zint_param.
      ENDLOOP.
    *Send Mail
      t_send_request->set_send_immediately( 'X' ).
      t_send_request->send( ).
      COMMIT WORK.

  • Error while deploying a PAR file from NWDS into an ECC.

    Hi all,
    I am getting this error while deploying a PAR file from NWDS into an ECC.
    Operation Failed: Please make sure the server is running or check the log (sap-plugin.log) for
    more detail.
    My server is running properly
    1 - Where is sap-plugin.log file? I don´t find it. 
    2 - Could there be another file with another name with information about the error?
    3 - Is there another way to deploy the file directly from the ECC?
    Regards,

    Hi,
    Just make sure you have maintained correct server setting to check the same open the NWDS and follow this path
    Windows/ Prefereces / SAP Enterprise Portal
    Check the following enteries
    Alias
    Host
    Port
    Login etc.
    Regards,

  • SSO to ECC (without java stack), BI (on NetWeaver), & Portal

    I have a client that wants to configure their SAP systems in such a way so that the users sign onto their Windows workstations, are authenticated by Windows Active Directory and from then on they can sign on directly to an ECC ABAP instance, a BI instance, and an SAP Portal without having to supply a user/password combination again. (We already have SSO setup for users access some BI reports through the Portal, but in this case we want to setup direct access to the ECC and BI systems without necessarily going through the Portal environment).
    The servers are running HP-UX, the clients Windows XP, and the AD system is running under Windows 2003.
    Is this possible without using a third-party tool and if so,can anyone point me to the appropriate documentation (I've done a lot of searching, but can't find anything).
    Thanks in advance!

    I am sure this has been done before and often discussed here?
    Take a look in the FAQ thread at the top of the forum for a general overview discussion of SSO. If you keep an eye out for the note numbers, terms used and those folks who contributed to it when searching, then I am sure will find plenty of infos to start with.
    Specific vendor evaluation details and comparisons (outside of the technical realm) are generally not provided, as the 3rd parties are generally competitors...
    Cheers,
    Julius

  • What is new in ECC 6.0

    can u please tell me what is new in ECC 6.0 .what is the difference between this and older version.
    a ppt or pdf  will be helpful

    Hi,
    ECC 5.0 is based on WAS 6.40 and ECC 6.0 is based on WAS 7.00.
    From functional point of view there are some minor differences, as the core functionalities are not changed a lot. However there is Industrial Solutions intergarated to ECC 6.0 by default.
    From ABAP point of view you have the following new elements/components:
    - New ABAP editor /meanwhile it's available via downport for lower releases as well/
    - ABAP WebDynpro
    - Enhancement framework
    - Regular experssion support
    Also check this link for functionality differences.
    http://solutionbrowser.erp.sap.fmpmedia.com/
    SAP R/3 is basic ERP that every one keeps talking about which has got different versions ike 3.1, 4.0, 4.6, 4.7. The latest one in this is the ECC which again has got two versions in the market - ECC 5.0 and ECC 6.0.
    NetWeaver is the techology stack which gives other solutions that work with R/3 and also provide a technology platform for the ERP to work.
    EP - Enterprise portal is a part of the NetWeaver stack and can be used to provide web interface for the user apart from the standard protal functionalities.
    You can find more details of NetWeaver here
    http://help.sap.com/content/documentation/netweaver/index.htm
    and also check these..
    Re: R/3 Enterprise v mySAP ERP 2003 v ECC 5.0 v mySAP ERP 2004
    Technical difference between 4.7 and ECC 5.0
    difference between sapr/3 4.7 and sapr/3 ecc 5.0
    Differences b/n 4.6c,4.7 and ECC 5.0
    http://help.sap.com/saphelp_47x200/helpdata/en/12/9d78d6d8f74043a32e82be87e433b7/frameset.htm
    Reward if it helps..
    Regards,
    Omkar.
    Message was edited by:
            Omkaram Yanamala

  • What is new in ECC 5.0 compared to R/3 4.7 version

    Hi
    what is new in ECC 5.0 compared to R/3 4.7 version
    Thanks in Advance
    Deepa

    Hi
    see these links
    Refer this link for ECC 5.0 & 6.0:
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/68805bb88f297ee10000000a422035/frameset.htm
    A similar post
    /message/1783778#1783778 [original link is broken]
    You can go through the Release Notes for each of the versions after 4.6B (4.6C, 4.7 , ECC 5.0 & ECC 6.0)
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/688055b88f297ee10000000a422035/content.htm
    For 4.7 SAP R/3 http://help.sap.com/saphelp_47x200/helpdata/en/12/9d78d6d8f74043a32e82be87e433b7/content.htm
    Release Notes on SAP Web Application Server 6.30
    http://help.sap.com/saphelp_47x200/helpdata/en/2b/64fc3e9d3b6927e10000000a114084/content.htm
    http://solutionbrowser.erp.sap.fmpmedia.com/
    Reward points if useful
    Regards
    Anji

  • Error while posting the parked document in ECC 6.0

    Hello ABAPers,
    After upgrade from R/3 4.6c to ECC 6.0, when we try to post the parked documents ,It calls FM :POSTING_INTERFACE_DOCUMENT".
    Inside it a call transaction is done using FBVB which throws error while posting for more than 4 withholding tax types.
    Error : Field WITH_DIALG-WT_BASE(5) does not exist in the screen SAPLFWTD 0100.
    On running BDC in foreground mode ,Error is happening when the withholding dialog opens and screen seems to be small to input all the tax codes i.e it shows only 4-5 rows and hence only 4 tax types passes to the screen and remaining is left out and error is thrown. This results in document not getting posted.
    But in 4.6 c a bigger screen pops up and no error is thrwon.
    We are not able to check FBVB directly, since it does'nt allow Direct call to this transaction.
    We have checked lots of thread and notes ,But nothing seems to be relevant or helpful in our case.
    Could you please help us in resolving this issue/ let us know if any configuration/ screen variant change is required?
    Thanks!
    Regards,
    M M Jaffer.

    Hello Nabheet ,
    It is a standard code. We are calling the FM  'PRELIMINIARY_POSTING_POST_ALL'  for posting the parked document. The FM calls internally another FM 'POSTING_INTERFACE_DOCUMENT'. This calls the transaction FBVB where we get the above error.
    Thanks.

  • ASN creation based on ECC inbound delivery

    Hi All,
    I have a scenario in which we are creating an inbound delivery in ECC and corresponding ASN should be created in supplier system.
    In order to achieve this functionality of ECC to supplier system is there any way to map this functionality through any custom development ?
    Kindly suggest
    Thanks
    Gaurav Gupta

    Hi,
    What I understand from the requirement is - The Supplier dispatches the material to Purchasing company & informs about the same via ASN. This ASN triggers inbound delivery in ECC. When the material reaches the Purchasing Company, GRN is posted with reference to the Inbound Delivery.
    Is this correct?
    If so, you can achieve this through RFC function, which can be called from vendor ERP system or through Vendor Portal by directly calling the RFC or by using Web Service.
    Regards,
    Prashant

  • Material confirmation in ECC based on service confirmation in CRM

    The scenario is Service order & confirmation is in SAP CRM & the billing is in ECC
    The Issue is about material ( spare parts) issue in ECC based on the service confirmation in CRM. In ECC the spare parts are batch managed.
    So to do an automatic goods issue in ECC, we need to enable a BAPI for batch determination.
    Now we are contemplating of doing the goods issue in ECC manually.
    Request you to see if the below scenario works or a better solution is possible
    Can we assign a normal sales order type instead of a debit memo so that delivery of spare parts & then billing can take place.
    The menu path I am talking about is  ( ECC- SPRO- Integration with other mySAP components-CRM-Settings for service processing-billing integration-map transaction types & item categories)

    Hi Madhu G
    I have defined the confirmation profile in Opk0. I know that I can assign a different profile with reference to user.
    I dont want confirmation profile based on Storage location
    I want the confirmation screen to be different for different materials -plant combination. Does anyone have any idea how this can be achieved?
    regards
    PK

  • Creation of service request based on an event in ECC

    Hello,
    I want to create service request based on an event in ECC HR. For e.g. events can be employee leaving, Absence for longer period etc.
    Is there a standard way of doing this ? If so could you please let me know the process/steps.
    Regards

    Adding a BOL entity and binding it with the main parent node entity will give access to the main BOL. Using which, we can traverse to the required object using GET_RELATED_ENTITY and change the respective attributes.

  • Creation of secondary indexes due to heavy flow of messages in ecc smq2

    Hi gurus,
    So we are facing smq2 issues from last 15 days in Ecc system due to some Time Limit Exceed and some times Object is Locked by the user xxxx
    So finally we decided to go for creating seconday indexes in Ecc side , So here my question is there any thing required from Pi side while creating
    Secondary indexes why i am asking this question is there is no issues From PI end after reaching to target(ECC) system only messages got stucking
    in smq2 and facing issues .Below is the interface details.
    ECC-FSCM
    SAP ECC 6.0
    FSCM
    CreditCommitment_In and CreditCommitment_Out
    CC_ProxySender_FSCM
    CC_ProxyReceiver_FSCM
    Plz reply back .
    Regards
    Madhu

    If you had gone through the replies in your previous post, Iñaki Vilaand myself already provided the report name which needs to be scheduled to clear the messages in queues.
    Plz provide the permanent fix for this issue

Maybe you are looking for

  • Grey out of MDM managed fields in R/3 4.7 (Interface between R/3 & SRM)

    Hi All, We have requirement for Creation/extension/changing of MMR (MM01/MM02/MM12). Current Process: Creation of MMR for certain material types carried out by MDM team from SRM side.In this case these materials replicated from SRM-MDM to R/3 4.7. In

  • Seeing traffic on both standby and primary servers in a serverfarm

    Hi, Is it normal to see traffic on the secondary server in a serverfarm like the below output. If its secondary it shouldnt be recieving any traffic until the primary goes down or offline. rserver: 192.168.10.40 192.168.10.40:8000 8 OPERATIONAL 3 118

  • NEVER delete your "originals" folder and ALWAYS back up--now I need advice!

    Don't even ask. Well, actually, I'll just quickly explain. I was following some directions in a recent-ish copy of MacAddict magazine, and I might have deleted some of what is in iphoto's "Originals" folder. I was trying to delete original photos (un

  • Safe senders list

    we started to notice that our safe senders list was getting filled up, we would remove everything and then in a couple days we would see new ones getting added. Yes we do have company group policies that do add some but these are not those, and we do

  • Photoshop Elements 12 trial version

    My photos in photoshop elements 12 trial version can't be reconnected,. How do I delete them?