How to configure Broadcast messaging for IC Webclient profile

Dear all,
How to configure Broadcast messaging for IC Webclient profile. what are the prerequisites for it?
We are not using EP interface for IC Webclient, then where can I find broadcast messaging URL in SAP CRM system.
I have checked for the relevant BSP application, but could not find.
Please help me to configure the scenario successfully, your help will be highly appreciated.
Best regards,
Raghu ram

Hi raghu
In CRM Broad cast messaging application is CRM _BM,
Go to easy access u2013 go to favourites u2013 select add other objects - select BSP Applications- then select CRM_BM Application.
Select that BSP application and test it u2026
`
Regards,
Narsimha

Similar Messages

  • How to prevent error message for material description in MDG material detail screen, when user click on check action

    Dear Experts,
    I have a requirement for making material description as non mandetory in change request view of mdg material screen.
    I have done that using field usage in get data method of feeder classes, but still message is displaying.
    This message 'Material description is mandatory is displaying with check action only, but not with save or submit after i anhance field property as not mandetory.
    How to prevent error message for material description in MDG material detail screen, when user click on check action.
    Thanks
    Sukumar

    Hello Sukumar
    In IMG activity "Configure Properties of Change Request Step", you can completely deactivate the reuse area checks (but will then loose all other checks of the backend business logic as well).
    You can also set the error severity of the checks from Error to Warning (per CR type, not per check).
    Or you provide a default value for the material description, e.g. by implementing the BAdI USMD_RULE_SERVICE.
    Regards, Ingo Bruß

  • How to configure release procedure for rate contracts release

    Dear all,
    How to configure release procedure for rate  contract following are the requirements
    they are two release codes c1 & c2 <=100000,>=100000
                    if  c1 is not there c2 has to be approved
         Change in the value of the rate contract contract
         Change in the validity of the rate contract
         Addition of deletion of line items
    While using a non u2013 released rate contract in the PO an error message should shoot out.
    Also the logic should be changed while using the rate contract in the PO.
    The usage of the rate contract should be till the validity of the rate contract. i.e. the measurement should be end date of the rate contract and the PO creation date and not the delivery date of the PO. &
    It should be possible to refer existing valid rate contracts in purchase orders.
    Regards,
    bhaskar

    Hi,
    In SAP rate contract is known as value contract denoted with wk. The release procedure for rate contract is same as that of other contracts and scheduling agreements. The tables  for contracts will vary with SA (Scheduling agreement) .You may try and maintain condition records based on the customer combination and maintian the validity date of condition records as per your requirement.For contract and PO will have the same header/item table as EKKO/EKPO, and the release
    class in standard is the same FRG_EKKO, you can use the same for contract.
    To distinguish if it's a contract or PO, EKKO-BSART can be used.
    For contract EKKO-BSART will be MK or WK, while PO will have NB/UB etc..
    You can restrict the document type to set up the release strategy for only contract.
    Of cause, you can also create your own release class Z* for contract copying standard
    one FRG_EKKO via CL01/Class type 032, and then assign the class Z* to customizing:
    OLME:
    -> contract
    ->Release Procedure for Contracts
    ->Define Release Procedure for Contracts
    ->Release Groups
    If you have already created the PO release class.
    Assign a new chracteristic of Document Category -BSTYP
    Please check below link for detailed release procedure. I hope this wil help you out .Thanking you.
    http://wiki.sdn.sap.com/wiki/display/ERPSCM/RELEASE+PROCEDURE#RELEASEPROCEDURE-TABLESUSEDFORRELEASEPROCEDURES

  • Is there any mechanism for broadcast messages for every client?

    Hi, all
    I just wanna to develop such a kind of chatting program. So I just build the communication structure for that. I want to use UDP protocol to send and recieve messages. As we know about that protocol, it does not need connection between server and client, so some packages will be lost. I just used only one DatagramSocket to recieve and send any messages back and forth. And I implemented the client using multithread technique. The problem is that when multiple client sent messages to server, how could server broadcast the specific message to all clients. I am very headache about that. I just used Vector to store diffrent address and port. And when a meesage arrived, I will firstly make ajustment about whether the address and port had been stored, if not, I will add, otherwise I will ignore it. So I think it will be terrible that if thousands of clients connected to the server, how big Vector will be. So I want to know whether the Net package or DatagramSocket provided some kind of mechanism about broadcast messages for every interested client. Thanks. Here is my code below:
    ChattingServer.java
    * Created on 2005-4-16
    * TODO To change the template for this generated file go to
    * Window - Preferences - Java - Code Style - Code Templates
    // A server that echoes datagrams
    import java.net.*;
    import java.io.*;
    import java.util.*;
    * @author Kevin
    * TODO To change the template for this generated type comment go to
    * Window - Preferences - Java - Code Style - Code Templates
    public class ChattingServer {
         static final int INPUT = 1066;
         private byte[] buf = new byte[1000];
         private DatagramPacket dp = new DatagramPacket(buf, buf.length);
         private DatagramSocket socket;
         private Vector addrVector, portVector;
         public ChattingServer() {
              try {
                   System.out.println("Chatting Server Started......");
                   socket = new DatagramSocket(INPUT);
                   System.out.println("The status is: " + socket.getBroadcast());
                   addrVector = new Vector();
                   portVector = new Vector();
                   socket.receive(dp);
                   addrVector.addElement(dp.getAddress());
                   portVector.addElement(new Integer(dp.getPort()));
                   System.out.println("The original size of addrVector: " + addrVector.size());
                   System.out.println("The original size of portVector: " + portVector.size());
                   String first = Transfer.toString(dp);
                   System.out.println(first);
                   System.out.println("The info: " + dp.getAddress() + ": " + dp.getPort());
                   DatagramPacket echo = Transfer.toDatagram(first, dp.getAddress(), dp.getPort());
                   socket.send(echo);
                   while(true) {
                        socket.receive(dp);
                        System.out.println("A message recieved and prepare for broadcasting.....");
                        for(int i = 0; i < addrVector.size(); i++){
                             if(!((((InetAddress)(addrVector.elementAt(i))).toString() == (dp.getAddress()).toString()) && (((Integer)portVector.elementAt(i)).toString() == (new Integer(dp.getPort())).toString()))) {
                                  System.out.println("Before adding element");
                                  System.out.println("(InetAddress)(addrVector.elementAt(i)).toString(): " + ((InetAddress)(addrVector.elementAt(i))).toString() + ", dp.getAddress().toString(): " + (dp.getAddress()).toString());
                                  System.out.println("(Integer)portVector.elementAt(i).toString(): " + ((Integer)portVector.elementAt(i)).toString() + ", (new Integer(dp.getPort())).toString()" + (new Integer(dp.getPort())).toString());
                                  addrVector.addElement(dp.getAddress());
                                  portVector.addElement(new Integer(dp.getPort()));
                        String info = dp.getAddress() + ": " + dp.getPort();
                        String rcvd = info + ": " + Transfer.toString(dp);
                        System.out.println(rcvd);
                        System.out.println("The size of addrVector is: " + addrVector.size());
                        System.out.println("The size of portVector is: " + portVector.size());
                        String echoString = Transfer.toString(dp);
                        for(int i = 0; i < addrVector.size(); i++) {
                             InetAddress tempAddr = (InetAddress)addrVector.elementAt(i);
                             int tempPort = Integer.parseInt(portVector.elementAt(i).toString());
                             System.out.println("The port is: " + tempPort);
                             echo = Transfer.toDatagram(echoString, tempAddr, tempPort);
                             socket.send(echo);
              } catch(SocketException e) {
                   System.err.println("Can't open socket");
                   System.exit(1);
              } catch(IOException e) {
                   System.err.println("Communication error");
                   e.printStackTrace();
         public static void main(String[] args) {
              new ChattingServer();
    ChattingClient.java
    * Created on 2005-4-16
    * TODO To change the template for this generated file go to
    * Window - Preferences - Java - Code Style - Code Templates
    // Tests the ChattingServer by starting multiple clients, each of which sends datagrams.
    import java.lang.Thread;
    import java.net.*;
    import java.io.*;
    * @author Kevin
    * TODO To change the template for this generated type comment go to
    * Window - Preferences - Java - Code Style - Code Templates
    class Sender extends Thread {
         private DatagramSocket s;
         private InetAddress hostAddress;
         public Sender(DatagramSocket s) {
              this.s = s;
              try {
                   hostAddress = InetAddress.getByName(null);
              } catch(UnknownHostException e) {
                   System.err.println("Can not find host");
                   System.exit(1);
              System.out.println(" Welcome ChattingDemo..........");
              System.out.println("Please input your name&#65306; ");
         public void run() {
              try {
                   String strSent;
                   BufferedReader rd = new BufferedReader(new InputStreamReader(System.in));
                   String name = rd.readLine();
                   while(true) {
                        System.out.print(name + ": ");
                        strSent = rd.readLine();
                        if(strSent == "END") break;
                        s.send(Transfer.toDatagram(strSent, hostAddress, ChattingServer.INPUT));
                        sleep(100);
                   System.exit(1);
              } catch(IOException e) {
              } catch(InterruptedException e) {
    public class ChattingClient extends Thread {
         private static DatagramSocket s, srv;
         private byte[] buf = new byte[1000];
         private DatagramPacket dp = new DatagramPacket(buf, buf.length);
         public ChattingClient(DatagramSocket s) {
              this.s = s;
         public void run() {
              try {
                   while(true) {
                        s.receive(dp);
                        String rcvd = Transfer.toString(dp);
                        System.out.println(rcvd);
                        sleep(100);
              } catch(IOException e) {
                   e.printStackTrace();
                   System.exit(1);
              }catch(InterruptedException e) {
         public static void main(String[] args) {
              try {
                   srv = new DatagramSocket();
              } catch(SocketException e) {
                   System.err.println("Can not open socket");
                   e.printStackTrace();
                   System.exit(1);
              new ChattingClient(srv).start();
              new Sender(srv).start();
    }

    Hello Amir,
    ACS used to tie the license to the MAC address of the machine but I believe Cisco removed that in version 5.1 or 5.2 as users were facing with issues if the MAC changed on a virtual machine. 
    Other Cisco products, such as the ASA, Call Manger, and even ISE are a lot more restrictive when it comes to licensing. However, Cisco in general has many products that are licensed on the "honor system" where you are responsible for reporting and paying for everything that you are using. 
    Also, I suppose Cisco could audit any companies out there and figure out what the company is using vs what it actually paid for :)
    I hope this helps!
    Thank you for rating helpful posts!

  • How to put Broadcaste message in Essbase Console"

    Hi All ,
    This is General Query no related to any project...
    The requirement is like when we are going to put server in service mode, a HTML banner should come on console that "Essbase server is devlopemt mode".i am ware that something call web.xml file is there there we need to make some changes but i.e. on HFM...
    you can take this as "How to put Broadcaste message in Essbase Console"... :) :) :)
    Can somebody please help on this issue?
    Regards
    Abidur
    Edited by: user10428830 on Jun 19, 2009 2:48 AM

    Do you mean EAS Console, or other client tools, i.e., Excel, Reports, WA, Planning, etc?
    I would think if the former, that you (hopefully) don't have so many dbas that you can't informally communicate. I've never seen an Essbase shop (and of course, my exposure isn't every client in the world, but still) that had more than a few real dbas.
    Across the other tools? Planning has a console broadcast tool, although I haven't touched it since 2.2. I think you're going to be out of luck looking for an Orcalce EPM solution to this one.
    Regards,
    Cameron Lackpour

  • How to give error message for the screen element text field when wrong i/p

    How to give error message for the screen element text field when wrong i/p
    when wrong input given
    eg. 
    I have a text box with SBOOK-CARRID
    so when user give wrong entry in text box i.e LG
    then I should give some error stating that the the input is invalid or not available ,
    now it showing the error of standard messages,
    i want manual message to be displayed when error comes.
    Thank you,
    Regards,
    Jagrut Bharatkumar Shukla

    Hi all,
    Thank you for your valuable reply,
    but the thing is that its a screen field,
    i.e text box not a selection screen
    i created in screen layout
    with name sbook-carrid
    now i want to get error message display if wrong i/p is given
    thank you.
    Regards,
    Jagrut bharatkumar Shukla,

  • How to write Error message for select options?

    Hi
    i have this select option statement
    SELECT-OPTIONS: s_fevor FOR afko-fevor.
    how to write error message for this?
    Regards
    Smitha

    Error messages are displayed for Select-options mostly on two conditions:
    1) You needs to check wether a value is entered or not its done by:
    a)
    Select-options:SELECT-OPTIONS: s_fevor FOR afko-fevor Obligatory.
       In this case error message is automatically throwed by system.
    b) You can do this in Selection Screen events.
    Ex:
    AT SELECTION-SCREEN./AT SELECTION-SCREEN ON S_FEVOR.
    IF S_FEVOR-LOW IS INITIAL.
    MESSAGE 'XXXXX' TYPE 'E'.
    ENDIF.
    2) You need to Validate the entered value:
    You can do this in Selection Screen events.
    Ex:
    AT SELECTION-SCREEN./AT SELECTION-SCREEN ON S_FEVOR.
    SELECT FEVOR
                 FROM AFKO
                 INTO AFKO-FEVOR
                 UP TO 1 ROWS
    ENDSELECT.        
    IF SY-SUBRC NE 0.
    MESSAGE 'XXXXX' TYPE 'E'.
    ENDIF.
    Regards,
    Gurpreet

  • How to configure Email notification for User login's in Exchange Infrastructure?

    How to configure Email notification for User login's in Client Machines?

    Hi ,
    Based on the description , you need to assign logon scripts to the end users via group policy and also use your exchange server as the smtp server in that logon script to relay emails to the internal recipients.
    Thanks & Regards S.Nithyanandham

  • How to configure SMTP server for osb 10.3.1

    Hi All,
    Can anyone share information on how to configure SMTP server for osb 10.3.1
    and then how to send an email from osb 10.3.1
    Thanks in Advance!!

    Thanks a lot!!
    I configured the same way. When I am sending email to an account on the same domain as my SMTP server is the sending of email is successful. But its giving error when I am trying to send an emain to an account which is on different domain. It giving error as "Operation has been cancelled"
    Please suggest something.

  • How turn off I message for galaxy s4 on ipad

    How turn off I message for galaxy s4 on ipad

    You can't iMessage with an Android device. iMessages is an Apple app that only works with other iOS devices and Macs running Maverciks to Mountain Lion. What exactly are you trying to do?

  • How to configure the message control for DESADV

    dear friends .
    my requiremnet is i have to write the outbound for DESADV message type for extended IDOC  : ZDESADV01.
    pls tell me solution briefly

    Hi...
    How do we use IDoc to create Outbound delivery document using the transaction VL01N.
    Do following steps..
    Go to NACE and select V2 and click output type from menu.
    Give following value.
    Condition component Value
    Access sequence 0005 (sales organization/customer)
    Condition 0 (no condition)
    “Exclusive” select
    Output type LAVA (shipping notification outbound)
    Procedure V10000 (shipping output)
    Application V2 (shipping)
    Processing subroutine Program RSNASTED,
    form routine EDI-PROCESSING
    General data Select Condition access and Multiple sending of output, otherwise
    leave the fields blank
    Time e.g. 4 (immediately, IDocs are generated immediately after
    posting)
    Transmission medium 6
    Partner function WE
    Language DE (German)
    You must maintain following values for outbound partner profile.
    Output category : Desadv
    Partner type : Ku
    Partner function : WE
    Port : Subsystem
    Output mode: Collect idoc
    Basic type : Delvry01
    Packet size: 1
    Application: V2
    Output type : LAVA
    Process code: DELV.
    You can post the delivery by selecting Shipping, Delivery>Sales and Distribution >Logistics
    -->Create (transaction VL01N). Output control is used to find the condition record and the shipping
    notification is sent to the customer via EDI (IDoc Interface). The shipping time in the condition
    record determines when the corresponding outbound IDoc is generated.
    <b>Reward if Helpful.</b>

  • How to configure mail server for subscription

    Hi,
    I want to test subscription. My problem is how to configure the mail server.
    As to my understanding, we need first configure mail server, then the user can choose "Subscribe" in the Details screen of a folder.
    My steps are:
    1. In KM - CM - Utilities - Channels, specify SMTP server, userId and password.
    2. In KM - CM - Utilities - Channel originators, set the Original address for notificator.EMAIL.
    3. In KM - Collaboration - Groupware Transport - Mail Transport, specify SMTP server and sent message folder.
    After that, when I choose a user and click "Send email", it failed saying "Failed to communicate with SMTP server when sending the email.".
    Could anyone tell me what's wrong with my configuration, or what should I do to make subscription work?
    Thanks,
    Ray

    Hi Vineeth,
    Thanks for help.
    According to your steps:
    1. set up a mail transport and making notification and mailing service active.
       In System admin - KM - CM - Global services, I've enabled Inbox, Mailing and Notification services.
      In KM - CM - Collaboration - Groupware Transport, I've set up a mail transport:
      Name: JavaMailTransport
      SMTP Server: smtp.yahoo.com
      Sent message folder: /documents
      System alias name: mytransport
    2. Give everyone read permission on notifications in KM.
      Where can I set user's permission on notifications? I think you mean folder /etc/notifications, but I don't know how to set permissions.
    3. Check if proper id's are maintained in users profile.
      How to do this?
    Thanks for help~~
    Regards,
    Ray

  • How to configure SNMP agent for Oracle 10g

    Hello,
    I've installed oracle 10g in a Windows 2000 SP4 and I want to monitor database using SNMP.
    I've already installed Windows SNMP agent but I haven't any idea how to configure Oracle in order to grant SNMP monitoring.
    What should I do?
    Is Oracle database ready to be monitored via SNMP by default?
    Thanks in advance for your help.
    Regards,
    Carles

    Hello,
    Thanks for your message.
    In fact, I already found this doc in oracle, but it just show executables I have to install and my question can I install these executables.
    I've already installed Windows SNMP agent, configured and testedwith disk space checkings, but it doesn't work fine with Oracle.
    I launched Oracle Universal Installer and I checked Installed Products, but I haven't found how to install SNMP agents for oracle.
    How can I add Oracle Peer Master Agent and Encapsulator to my oracle installation?
    Thanks again for your help.
    Regards,
    Carles

  • How to Configure Solution Manager for 1.Download SuppPacks 2. Monitoring 3

    We recently upgraded to ECC 6.0 and installed Solution Man., very vanilla.  Basically just to get the Key to do the upgrade with.
    I would really appreciate it if someone could share any documentation that would provide guidance on how to now further configure SolMan for the following
    1.  Monitor our Landscape which comprises of ABAP ECC (java is installed though not actively using), and SAP BI 7.0
    Sandbox, Dev, QAS and Prdn  for BOTH ECC & BI
    2. Download Support Patches from SAP Marketplace (currently we have had to donwload the long way with download manager creating a message to get them apporoved whew... this is work..)
    3. Add messages to SAP Market Place (thru SolMan)
    4 Possibly monitor security and manage userids etc (if possible)
    And if there is functionality that will make the BASIS experience better I would definitely appreciate it.  We don't need the help desk as we already have it ,but, we may take advantage of Project documentation
    I would really really appreciate it if someone could advise
    Kind Regards & Thank You
    Maria

    Hi Maria,
    With solution manager you can definitely do a world of things, below is a list inclusive of the features you wanted:
    1. Dowload SP-Stacks, etc - you will have to configure Maintenance Optimizer for this (MOPZ).
    2. Monitoring - you can monitor your ABAP and JAVA stacks using the monitoring features of CCMS which is embedded in Solution Manager, please have a look at the monitoring setup guide (for NW04S) in the Service Marketplace. Basically, it uses agents such as SAPCCMSR for JAVA Stacks and SAPCCM4X for ABAP stacks.
    3. You can also configure availability monitoring using th same guide as above - this uses the CCMSPING tool.
    4. You can monitor your business processes using the BPM/BPMon features of solution manager - you will also get this guide in http://service.sap.com/solutionmanager.
    5. You can scheule your earlywatch alerts (EWAs) in solution manager system - have a look at the following link for this:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0f35bf3-14a3-2910-abb8-89a7a294cedb
    6. You can also have DBACOCKPIT on your Solution Manager system and have it tomonitor backups, etc on your satellite systems. For thsi have a look at SAP notes 1028624, 1025707 and 1027146 (and the DBACOKPIT guide in SAP Note 1028624).
    Hope this is helpful. Kindly award points if useful.
    Thanks, Dibya

  • How to configure Broadcasting server in SAP?

    Hi,
    We are trying to use pre caluculation using broadcasting for queries, for this broadcasting server needs to be configured in the system...
    We are using SAP-BI 7.0, Can anybody let us know the step by step solution to configure Broadcasting server
    rgds,
    KN RAO

    Hi,
    This links gives you a good idea on what broadcasting exactly is:
    http://help.sap.com/saphelp_nw04s/helpdata/en/a5/359840dfa5a160e10000000a1550b0/frameset.htm
    Please refer to the link below to hava a general idea on how broadcasting must be configured,you will find information specific to collaboration:
    http://help.sap.com/saphelp_nw04s/helpdata/en/84/30984076b84063e10000000a1550b0/frameset.htm
    Also check :
    How to install and configure a boradcasting server ?
    -Vikram

Maybe you are looking for