Communication Strategy CS01 is missing

Hi All,
As per SAP note# 191470, As a default, the the Communication strategy CS01 is delivered under below path. .
SAP Customizing Implementation Guide=>SAP NetWeaver=>Application Server=>Basis Services=>Message Control=>Determine Communication Strategy
But in our upgraded system [from 4.0B to ECC6.0], we don't find the Communication Strategy "CS01" by default as below image. This page is totally empty as below.
Please let us know 1) Why Communication Strategy CS01 is missing.
We need to send "Purchase Order" as an email.
2) How to create a Communication strategy CS01 with depended elements in Communication strategy overview window? 
    Or is there any to obtain the CS01 by default?
Thanks & Regards
Thiru

Hi Thiru
Could you refer the SAP KBA implement the SAP note
2147913 - Communication strategy disappears from purchase order output
BR
SS

Similar Messages

  • Communication Strategy Message no. TK455

    Hi Guru,
    I'm creating the Communication Strategy for PO to send out via Email.
    I get the following error message. Please help. Thanks.
    Message no. TK455
    Diagnosis
    The value " " was entered in the field "POS".
    This is not possible because it is a numeric field where only numbers may be entered.
    The length of the field is 000002.
    System Response
    The entry was not accepted.
    Procedure
    Enter only numeric values in this field.

    Visit following path -
    SPRO -> IMG -> SAP Web Application Server -> Basic Services -> Message Control -> Define Communication Strategy.
    Here communication strategy CS01 should be available. You may check the settings. This should include Medium 5 (external sending).
    Use the standard SAP environment (program 'SAPFM06P', FORM routine 'ENTRY_NEU' and form 'MEDRUCK') as the processing routines.
    Maintain email address in vendor master data.
    Regards
    Rajesh

  • Communication strategy missing for external send

    Dear all,
    I want to send O/Cs via mail, therefore I configured the transmission medium of the output type to "external send". As well I set the communication strategy for mail to the output type. Nevertheless I receive an error, when I want to save the O/C with a new message. Please be so kind and take a look at the attached screenshot. Do you have any idea why the error occurs?
    Best regards,
    Benjamin

    Hi Susan,
    Please be so kind and take a look at the SAP-note 2017440 - Communication strategy cleared in message output  . In my case this solved the problem.
    Best regards,
    Benjamin

  • HOW to make 2 step Communication strategy  for external send

    Hi
    I have made this 2 step communication strategy and attached to an email output type for purchase order, but it doesn't work as expected.
    The 2 steps are 1  INT,  2 = PRT
    If the vendor/supplier has an email in the address the purchase order is send by email, but if he has no email addres, then the output fails with message "E-mail address incorrect or non-existent"
    I expected the result to be that it would create a print instead of an email.
    What is wrong?
    Thanks.
    Thomas Madsen Nielsen

    I found the solution myself.
    The communication type PRT = Print is not supported, but LET = Letter will do exactly the same thing.
    I found the answer in OSS note 323720.
    Thanks

  • Problem in maintaining communication strategy

    Hi All,
    I have the error message TK455 when creating or modifying a communication strategy.
    The first field is named "Position" and is a 'numc' type field.
    I tried to give 1 or 01 but it keeps giving error message
    "Enter numeric values only"
    The detailed error description is:
    Message no. TK455
    Diagnosis
    The value "  " was entered in the field "POS".
    This is not possible because it is a numeric field where only numbers may be entered.
    The length of the field is 000002.
    System Response
    The entry was not accepted.
    Procedure
    Enter only numeric values in this field.
    I couldn't find any information relating to this is OSS notes.
    If anybody has the solution, I'm interested.
    Thanks in advance
    Sonali

    SAP gave solution

  • Communication Strategy

    Hi,
    How does communication strategy works in choosing the output mediums. What are the steps involve activating communication strategy.
    My purpose of sending Shipment documents to the forwarding agent is through fax. If forwarding agent doesnu2019t have fax output should reach through print medium.
    I have created my own communication strategy and maintained as the first position u2013 Mail, second position u2013 Fax and third position u2013 Print.
    I have created a new output ZZTM for medium 5 (external send) and this strategy has assigned to the output condition record for ZZTM. Please let me know what are the other mandatory steps need to maintain to finish the cycle. Is there anything I need to maintain in SCOT?
    We have only two ways of sending the output. Fax (1st preference) and Print (2nd preference who doesnu2019t have fax)
    Thanks.

    Hi, what is the table you have in your output type. Is it by forwarding agent?
    Assuming you have the table for your output type ZZTM as per forwarding agent, Then you maintain the condition record for forwarding agents who accepts fax and in the comunnincation medium assign "Fax" as output medium.
    For those forwarding agents who do not have fax, then assign the communication medium as "Print".
    So based on the forwarding agent your output will be triggerend in your delivery and the shipment documents will be generated accoridngly.
    If you have any other table in your output ZZTM, please mail the table details for any further information.
    Hope this hepls
    Regards
    Sai

  • Loop on message 'Please enter a communication strategy'

    When I try to do a repoat output of a purchase order, on the Communication Method page, a communication strategy is present.  The Save icon is greyed out.  When I go back to the Messages page and save it takes me back to the Communication Method page and gives me the error message above even though a Communication strategy is already there.  Any suggestions on why this is happening?

    Check the KBA 2147913 - Communication strategy disappears from purchase order output also the OSS note 2017440 - Communication strategy cleared in message output

  • Release strategy Purchase order missing

    Hi experts,
    I set release strategy for purchase order and it was working OK, but now release procedure is not active when I create a purchase order, all setting are correct and verificaction too.
    Sap version is ECC 6.0, I do not know if there is something to correct this error, because I created some POs and release tab was displayed correctly but now it does not work.
    Do you know something to solve this issue?
    Thanks
    Regards,
    Lili.

    Please make sure the release strategy is not changed by some one and than check it out
    or go to release strategy config and check the release strategy of last config
    here everything should be green or yellow
    now go to CL30 and enter your class and class type 032 and hit enter
    then enter the value of you charactristics which you have used in the Po and hit the Find in inti class from top menu
    see what all release stra get pulled.
    if oyu pulled more than one that means you have duplication inyour release strategy

  • Optimal communication strategy for poker game

    Hi,
    I'm designing a client/server poker game, and I'm trying to decide on the best protocol for client/sever comms. It's a personal project, so it doesn't need to be 100% robust or extensible.
    I was thinking of the following model:
    Client(s) and server communicate via Object Input/Output Streams over a socket. Client opens a Listener thread which listens in a while(true) loop, and Server also listens in a while(true) and processes incoming messages. The communication workflow will follow a request-response model.
    I will create my own Message class(String sender, int msgType, Object msgValue), and both listening classes will use switch(msgType) statements to process requests.
    Does anybody have any recomendations/stipulations regarding this model? There are a couple of issues I can think of:
    1. Use of while(true) loops should be avoided
    2. What happens to forever-listening ObjectInputSrteams when the client disconnects unsafely?
    3. How should the server handle client disconnects? Is it sufficient to use the onWindowClose method in the client GUI?
    Any feedback appreciated, thanks in advance,
    Sean

    Why not use RMI instead of plain sockets? The server part can be a
    simple facade to the real poker server (which can be a simple POJO).
    The 'business logic' (the poker game itself) is handled by the real
    poker server while all communication stuff is handled by RMI. That way
    the clients don't have to be aware of the fact that they're talking to some
    thing remote and it frees you from implementing that communication
    layer with all its burden.
    kind regards,
    Jos

  • Inter project communication strategy

    I have two LV projects in which I have developed tools to control two different types of instruments (A and B).
    I now need to use both instruments to achieve a specific goal (optimize A for B). Specifically, I need to collect data in B, design an algorithm that sends instructions to A, collect data in B and sends back instructions to A, etc, until an optimum is obtained.
    I can think of at least one way to do that:
    modify project B to send instructions to a LV global/communication VI/queue/notifier which will be shared by the two projects.
    The problem is, I have nver done that so I am not sure what the scope of, say a notifier is. If I create a notifier in a VI belonging to project B, can I refer to it by the same name in project A?
    Thanks for your comments.

    Well, since I am temporarily stuck with LV 2009 due to some FPGA support issue I have in LV 2010, I think I will use Datasockets.
    I have played around with it a bit and here is what I am planning to do (attached):
    - one project (untitled project 1) contains my DAQ GUI which needs to control the other instrument: in the example, it sends a "numeric" via a DS write. However, for my algorithm to be foolproof, I need to make sure that the other instrument has updated its status before I collect data. Therefore, after a write, I wait for the other guy to send an acknowledgment (using a read to another DS). When this is confirmed, I proceed.
    - the other project (untitled project 2) is a simple GUI for the other instrument, which the user  can control via a FP numeric. When it is "remotely" controlled by the previous one (that is when, timing out, it gets a new numeric from the DS used by the other GUI to send its instruction), it updates this control (it overrides any user action) and writes this value into the other DS to tell the remote controller that it has updated its status.
    Do you see any flow in this logic? At least, it seems to work. Bear with me, this is a barebone architecture.
    Attachments:
    Datasocket.zip ‏27 KB

  • Add pages to community links -- what's missing

    Community links display external links, documents, and users fairly reliably. I'm having trouble linking to an internal page, though, with the "Add Page" control. I can launch the page browser and select the page I want, but when I click OK, I'm getting a very descriptive message: "Error - The server has experienced an error. Try again or contact your portal administrator if you continue experiencing problems."

    Here is the info on the case I filed
    Problem Description:
    I am trying to add the pages to the community links portlet.
    It is not working
    I am getting
    Error - The server has experienced an error. Try again or contact your portal administrator if you continue experiencing problems.
    ### Detailed Problem Statement ###
    ptspy has the following error
    ptspy has the following error
    549 portal.ssurapan-d5a940.Administrator 3-9-2009 0:32:58.469 Error Portal_Browsing ACTIVE ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' com.plumtree.portalpages.browsing.editors.sitemap.sitemapfolderplugin.SiteMapFolderPlugInView FeaturesView::DisplayJavascript The following error occured when trying to display the JavaScript: null
    java.lang.NullPointerException
    at com.plumtree.uiinfrastructure.statichelpers.GeneralHelpers.Replace(GeneralHelpers.java:85)
    at com.plumtree.portalpages.browsing.sitemap.linkselector.SiteMapLinkContainer.GetSelectedCommPagesAsStringForTree(SiteMapLinkContainer.java:206)
    at com.plumtree.portalpages.browsing.editors.sitemap.sitemapfolderplugin.SiteMapFolderPlugInModel.GetSelectedCommPagesAsString(SiteMapFolderPlugInModel.java:744)
    at com.plumtree.portalpages.browsing.editors.sitemap.sitemapfolderplugin.SiteMapFolderPlugInView.DisplayJavascript(SiteMapFolderPlugInView.java:493)
    at com.plumtree.portalpages.portlets.sitemap.prefs.SiteMapPortletPrefsDP.DisplayJavaScriptFromChild(SiteMapPortletPrefsDP.java:92)
    at com.plumtree.uiinfrastructure.form.AFormDP.Display(AFormDP.java:499)
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleDisplayPage(Interpreter.java:2140)
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleRequest(Interpreter.java:659)
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.DoService(Interpreter.java:191)
    at com.plumtree.uiinfrastructure.web.XPPage.service(XPPage.java:300)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:176)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3495)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    here is the answer from support
    As we discussed, this issue has been reported as bug # 7824743. The bug is still open and the current workaround from the bug notes is to use the ‘Add Links’ button and paste in the url from the desired page you want to add. This works fine, however you will need to have the url beforehand.
    I have documented the bug number in your ticket and also added your ticket to the bug notes. As per Oracle policy I will now place the case in soft close status. You can check the status of the bug directly on metalink if you are looking for status in the future.

  • Communications-API: Windows download missing

    Hi,
    I wanted to download the Communications API for accessing the serial port for Windows but the appropriate download seems to be got lost.
    At http://www.sun.com/download/products.xml?id=43208d3d there are downloads for Linux and Solaris only ... so does anybody know what happened with the Windows-version?
    Oxy
    PS: Sorry for double posting but the other category was really wrong for this topic...

    Thank you for the unfriendly answer.
    Btw: when do you have tried to search for that
    problem last time? You get hundreds of results that
    are related to the Comm-API somehow...http://onesearch.sun.com/search/onesearch/index.jsp?qt=javacomm+windows&subCat=siteforumid%3Ajava31&site=dev&dftab=siteforumid%3Ajava31&chooseCat=javaall&col=developer-forums
    Second hit has all the info you ever might need.

  • Purchase Order E-mailing with Release Strategy

    Hello,
        We are experiencing an issue when e-mailing a Purchase Order which has a release strategy. When the order is released, the confirmation e-mails are going to the person who releases it when it is supposed to go to the person who has created the P.O. We are using a Smartform P.O. based on /SMB11/BL_MM_PO_L and print program /SMB40/FM06P. I must note that there was a bug found in the aforementioned print program and before that was fixed e-mailing would not work at all.
      We have also attempted to use all combinations of standard unmodified print programs and standard unmodified smartforms and have had no luck at getting the confirmation e-mail to send to the correct person this way either.
      SAP has recommended that we use program SAPFM06P with form Medruck. While this combination does work correctly, Medruck is not a Smartform. Has anybody here used a smartform Purchase Order with a release strategy and had the confirmation e-mail send to the created and not the releasor?
      Below is a list of the print programs and forms we have tried in various combinations. We are running ECC6/Basis 7
    Print Programs:
    /SMB11/FM06P
    /SMB40/FM06P
    SAPFM06P (Sapscript Only)
    Forms:
    /SMB11/BL_MMPO_L
    /SMB11/MMPO_L
    /SMB40/MMPO_L

    Hi,
    Purchase order via e-mail in SAP sys,the configurations and pre-requisites are follow:
    1. You must maintain an e-mail address in the address in the vendor master.
    2. The same applies to your own user master. You also have to specify an e-mail address there in order to identify the sender.
    Note that it is not possible to change the e-mail address of the vendor via the SAP purchase order transaction (ME21N, ME22N, and so on). The system only uses the e-mail address of the vendor that is maintained in the vendor master!
    3. For the output type for default values, a communication strategy needs to be maintained in the Customizing that supports the e-mail. You can find the definition of the communication strategy in the Customizing via the following path: (SPRO -> IMG -> SAP Web Application Server -> Basic Services -> Message Control -> Define Communication Strategy). As a default, communication strategy CS01 is delivered. This already contains the necessary entry for the external communication. Bear in mind that without a suitable communication strategy it is not possible to communicate with a partner via Medium 5 (external sending).
    4. Use the standard SAP environment (program 'SAPFM06P', FORM routine 'ENTRY_NEU' and form 'MEDRUCK') as the processing routines.
    5. In the condition records for the output type (for example, Transaction MN04), use medium '5' (External send).
    6. You can use Transaction SCOT to trigger the output manually. The prerequisite for a correct sending is that the node is set correctly. This is not described here, but it must have already been carried out.
    7. To be able to display, for example, the e-mail in Outlook, enter PDF as the format in the node.
    For more details, check SAP note:191470
    Regards,
    Biju K

  • Send purchase order e-mail with release strategy

    Hi!!
    I have a problem with sending e-mails in purchase order that are blocked with release strategy.
    I create a purchase order that is block for the release strategy, then I release it. This is working OK, but I can't send an e-mail with this released puchase order, to do it, I have to modify something in the purchase order.
    Somebody knows what is happening?
    I would like to send e-mails without previous modification of the purchase order.
    Thanks for your help.

    Hi,
    Purchase order via e-mail in SAP sys,the configurations and pre-requisites are follow:
    1. You must maintain an e-mail address in the address in the vendor master.
    2. The same applies to your own user master. You also have to specify an e-mail address there in order to identify the sender.
    Note that it is not possible to change the e-mail address of the vendor via the SAP purchase order transaction (ME21N, ME22N, and so on). The system only uses the e-mail address of the vendor that is maintained in the vendor master!
    3. For the output type for default values, a communication strategy needs to be maintained in the Customizing that supports the e-mail. You can find the definition of the communication strategy in the Customizing via the following path: (SPRO -> IMG -> SAP Web Application Server -> Basic Services -> Message Control -> Define Communication Strategy). As a default, communication strategy CS01 is delivered. This already contains the necessary entry for the external communication. Bear in mind that without a suitable communication strategy it is not possible to communicate with a partner via Medium 5 (external sending).
    4. Use the standard SAP environment (program 'SAPFM06P', FORM routine 'ENTRY_NEU' and form 'MEDRUCK') as the processing routines.
    5. In the condition records for the output type (for example, Transaction MN04), use medium '5' (External send).
    6. You can use Transaction SCOT to trigger the output manually. The prerequisite for a correct sending is that the node is set correctly. This is not described here, but it must have already been carried out.
    7. To be able to display, for example, the e-mail in Outlook, enter PDF as the format in the node.
    For more details, check SAP note:191470
    Regards,
    Biju K

  • SD billing documents send to Customer though EMAIL.

    Dear All,
    We want to send SD Billing documents to Customers through EMAIL. For that we have created new output type ZMAL and done the determination procedure for output type. Also we have maintained Customer Codes with Sales Org. in VV31. But when we raise the Invoice, output type should be come automatically (ZMAL) but it's won't come.
    Please guide us what Config/Setting is missing or provide us all steps to be follow, so we can check and make correction.
    Please help.
    Thanks
    Prashant

    Hi,
    In Configuration of Output type maintain in the Default values tab
    Dispatch time 4
    Transmission Medium 5
    Partner Function CP
    Communication strategy CS01
    Another option might be to maintain Contact Person(s) for the Customer and enable the form for that Partner.
    Maintain customer as the contact person and email address in General data of customer master.Also trigger the partner during the Billing.
    Also ensure that the output type will be triggered automatically once it is released to accounting.There is a routine in O/P determination procedure.
    Regards,

Maybe you are looking for

  • Ipod shuffle with itunes no playlist

    After upgrading to latest iTunes 12.0.1.26 I can no longer sync any music or playlists to my ipod shuffle. I have 37Gb of music available, but when I select my device and then settings/music, it shows no playlists or tracks to sync? I hate this new i

  • Adding dynamic 'start with' clause in Hierarchial query in Discoverer 4i

    I have created a custom folder based upon the following hierarchial guery: SELECT supervisor_name, level FROM xxhr084_hr_emps_v START WITH supervisor_name = 'TEST SUPER' CONNECT BY prior person_id = supervisor_id ORDER SIBLINGS by supervisor_name I w

  • SQL Usage within PLD

    We will often drop ship for customers. I have created a UDF to use as the ship to company name if we are not using the BP name. What I would like to do is have PLD use this if it is populated, but use CardName if it isn't (on our Packing Lists). If i

  • Downloaded 4.0. part of navigation bar missing.

    The reload icon, stop search icon, and home page icon are missing. The previous page arrow, next page arrow, address box, and search box works.

  • TS4062 Where do I find my music synced from my computer?

    Where do I open my library on the device? As far as I know my ipad mini iOS7 sync was successful. The "Music" app only lets me see songs if I purchased them from the iTunes library, and it redirects me to the iTunes Store app telling me that my libra