Course WUS581 - Technical Details of SAP CRM Web UI

I had the opportunity to attend 'WUS581 - Technical Details of SAP CRM Web UI' last month in Atlanta.  I understand it to have been the first time the course was offered in the US. 
The course was great - here's a link to the official [description|https://training.sap.com/ca/en/course/wus581-wus581-tech-details-of-sap-crm-web-ui-classroom-095-us-en/] . I believe this was an adaptation of the material from the Deep Dive Series. I have to say, that it was pretty fast paced as well - you really need to keep up as much of the material built upon what was already taught. 
The materials from the class are invaluable.  The labs were well done, and offered detailed solutions.  The labs were numerous, appropriate, and clean.  Most of the twenty exercises were cumulative.  I have since gone back to review some of the concepts, and the material stands well even outside of the classroom.
This course has given me a much better understanding of the bigger picture.  While I have not come from a CRM or BSP background, I have been working with webUI on a CRM 7.0 based SAP Custom Development Solution, [Fund Raising Management|http://www.sap.com/services/portfolio/customdev/brochures/index.epx] for about half a year.  So, I had at least been exposed to the workbench and some concepts over the previous six months.  This course really helped me tie some things together.
I just wanted to share my experience with the group...
...Mike

Mike,
I'm curious to find out how did you find out that the course you took was scheduled. The reason why I'm asking is that I didn't even know that SAP even offered the course in the US, so I would have tried to attend myself if I found out about in advance.
Glad to see you recommended the course.  There isn't going to be much CRM related technical content at SAP Teched in Las Vegas this year,  however there may be at least one session attending (wink-wink), that's not listed yet.  I would still recommend that CRM development folks still attend teched, because there is plenty of great technical content that we can use regardless.
Take care,
Stephen

Similar Messages

  • Pop-up screen not showing while accessing transactions in SAP CRM WEB-UI

    When we are logging on SAP CRM WEB UI, for transactions like Lead, Complaints and Activities-
    Sometimes Pop up screen is showing for selecting transaction types, but sometimes it is not showing.
    We have tried it on different work stations with same user id and standard business roles , but we are not able to trace the problem. Also with same id sometimes error shows, "No business roles attached, not allowed to logon,
    after that when we tried on other workstation with same id we were able to access all transactions.
    Please suggest what would be the problem. 
    Rishikesh

    This is sporadically occurring issue hence I cannot pin point one single reason. Since sometimes you are able to logon and some time not certainly it could not be a Role authorization issue.
    Just check if your business role is properly configured. Thats all i can say.
    Regards
    Kavindra

  • Can I use SPRO to configure SAP CRM web based application.

    Hi,
       I am just 5 days old in SAP solutions.
    I want to know if I can use SPRO (IMG) to configure master data and business processes pertaining to SAP CRM web based solution ?
    Regards,
    Diptendu.

    Hi Diptendu,
    You can indeed do some customizing in the SPRO regarding for example the PCUI (People Centric User Interface) of CRM.
    Within SPRO take CRM and afterwards in the Basic Functions you have some customizing to be done. You can also look at the cookbook for the PCUI, which you can find on the service.sap.com/crm-inst site.
    For the Interaction Webclient, there is a specific part for customizing in the SPRO under CRM --> Interaction Webclient.
    Hope this helps,
    Kind regards,
    Micha

  • How to send Email to customer when clicked on hyperlink on SAP CRM web UI

    Hi all,
    I am working with SAP CRM 7.0 EHP1. I have one field named Email on Complaint description page on Web client UI. I have made the field a hyperlink by using the setter getter methods of attribute in component workbench for the component -BT120H_CPL. Now I want to send one mail to customer who have raised the complaint when clicked on the hyperlink Email through SAP CRM if possible or by using Microsoft  outlook(Microsoft outlook is default mailing server on the system).
    Please help !
    Thanks and regards,
    Kavita Chaudhary
    Mobile: 8800222151

    Hi kavitha Chaudhary,
    if you wan to send any details to outside mail id first you should get that person mail id. based on that you can send data to that mail id by using this code...
    just fallow this code in your event..
    DATA: send_request       TYPE REF TO cl_bcs.
    DATA: text               TYPE bcsy_text.
    DATA: document           TYPE REF TO cl_document_bcs.
    DATA: sender             TYPE REF TO cl_sapuser_bcs.
    DATA: recipient          TYPE REF TO if_recipient_bcs.
    DATA: bcs_exception      TYPE REF TO cx_bcs.
    DATA: sent_to_all        TYPE os_boolean.
    TRY.
    *     -------- create persistent send request ------------------------
           send_request = cl_bcs=>create_persistent( ).
    *     -------- create and set document -------------------------------
    *     create document from internal table with text
           APPEND 'Hi to all' TO text.
           document = cl_document_bcs=>create_document(
                           i_type    = 'RAW'
                           i_text    = text
                           i_length  = '12'
                           i_subject = 'test created by srinivas' ).
    *     add document to send request
           CALL METHOD send_request->set_document( document ).
            sender = cl_sapuser_bcs=>create( sy-uname ).
           CALL METHOD send_request->set_sender
             EXPORTING
               i_sender = sender.
    * hardcoded value im passing here u should capture customer mail id here..
    data : lv_email type string.
    lv_email = '[email protected]'.
    *     --------- add recipient (e-mail address) -----------------------
    *     create recipient - please replace e-mail address !!!
           recipient = cl_cam_address_bcs=>create_internet_address(
                                             lv_email ).
    *     add recipient with its respective attributes to send request
           CALL METHOD send_request->add_recipient
             EXPORTING
               i_recipient = recipient
               i_express   = 'X'.
    *     ---------- send document ---------------------------------------
           CALL METHOD send_request->send(
             EXPORTING
               i_with_error_screen = 'X'
             RECEIVING
               result              = sent_to_all ).
           IF sent_to_all = 'X'.
             WRITE text-003.
           ENDIF.
           COMMIT WORK.
    * *                     exception handling
    * * replace this very rudimentary exception handling
    * * with your own one !!!
         CATCH cx_bcs INTO bcs_exception.
           WRITE: text-001.
           WRITE: text-002, bcs_exception->error_type.
           EXIT.
       ENDTRY.
    after this go to sost transaction.
    first you can see first mail.. select your recent mail id execute then you will get email..
    try this and let me know..
    if this is not working then see this link too this might be help full to you.
    Hyperlink in Email using Send Mail Activity
    Thanks & Regards,
    Srinivask.

  • Custom message required on log on pop-up in SAP CRM WEB UI

    We required custom message to the log- on popup, right now the message is coming after we give the user ID and password "starting SAP CRM" instead of that
    user required welcome message.., how can achieve this ?
    Please reply as soon as possible.

    Hi Pankaj,
    did you already check the guide in the CRM Wiki:
    https://wiki.sdn.sap.com/wiki/display/CRM/WelcomeUserMessageinWeb+UI
    Hope this answers your question.
    Best Regards,
    Michael

  • Data of Pop Up (Third Party Provider) is not copied over to SAP CRM Web UI

    Hi Experts,
    we have created a Function Group (ZDI_PAYMENT) and have defined  FM ZDI_PAYMENT_SET to set data into the variables of this Function Group and FM ZDI_PAYMENT_GET to retrieve data out of the same variables.
    Process is as follows: A customer wants to pay with his credit card but credit card can not be saved on the Service Order. So that is why a token is created and this token is saved on the Service Order. To create this token SAP CRM is connected via HTTP Connection to a third party provider. When user needs a token he pushes a button and a pop up is openened. This pop up is already provided by third party provider and in this pop up the user introduces credit card number and on the same pop up the token is visible and just has to be copied over to the SAP CRM View.
    Problem now is that when we made testing we found out that for some user it works fine and FM ZDI_PAYMENT_GET gets actually the values for token and data is copied over to SAP CRM but for others it does not work. So we think it has to be to do with the browser settings but we are not really sure.
    Has anybody experience with that?
    Regards,
    Oliver Schultze

    Hi Experts,
    we found out already what was the problem. We have used a URL to log in into the SAP CRM that has a port. Log In Link should be without Port.
    Regards

  • SAP CRM WEB UI : Toolbar not displayed properly

    Hi ,
    One of my client's is facing an issue with the toolbar display on CRM Web UI. For example, if he opens up some activity on Web UI, the toolbar is displayed vertically in an uneven format as shown in the image attached herewith:
    Does any one have some idea about rectifying it? I have checked the personalization settings and this problem occurs only for one user.

    Hi Simran,
    Try to debug method IF_BSP_WD_TOOLBAR_CALLBACK~GET_BUTTONS and see how the button and the seperators are placed there.
    May be the seperators are disturbed in the button table.
    Thanks,
    Bhushan

  • Log off pop when navigating from SAP CRM Web IC to Utilities transactions

    Hi Experts,
    I have created about 100 transaction launchers for ISU transactions, which are linked to the navigation bar in the Web IC. If I Click on this link which should open an ISU trnsaction, it doesnt open the ISU transaction. Rather it gives me a pop up as LOG OFF. The problem is most of the transactions are opening up this way, but there are only a few that doesnt open up and gives a log off error.
    The client mapping of CRM system and Utility system has been done.

    Hi Friends,
    I have configured a transaction launcher for ISU transaction code EL27 and EL29,
    I am facing the simular issue, when try to access these transaction from ICWC i face the same problem. Logged off successfully screen appears.
    Please let me know if you resolved this error.
    Thank you.

  • SAP-CRM - Auto Confirmation of Contract Account from IVRS to SAP-CRM IC Web

    Hello Experts,
    In Our Projects we are Using SAP-CRM Web Client for Call Center Processes. AVAYA is a Third Part agency which have developed the IVR system for handling the Consumer Calls. We have Developed BAPIs which will fetched data from SAP based on Contract Account entered by Consumer on IVRS. AVAYA have developed the CTI Pop-Up also which have several Consumer Details along with CA. Now Client wants that CA , entered by Consumer on IVRS, will be autoconfirm to CRM - Web Client. If anyone have any document for doing all these setting please share with us & Provide us guidelines...
    Regards,
    Abhishek Chopra

    Hello Abhishek.
    You can refer to [Note 707104 - Account identification from attached data|https://service.sap.com/sap/support/notes/707104]. It describes how to set autoconfirmation based on CAD.

  • Step by step guide of creation of WEB UI in SAP CRM

    Hi Friends,
    I am new in SAP CRM. I want to create a WEB UI in SAP CRM. Kindly share the link or documents.
    Regards,
    Narendra Goyal

    First check documentation on the following wiki page: http://wiki.sdn.sap.com/wiki/display/CRM/CRMWebClientUIFramework.
    If you want to buy a book that gives the whole overview, then here is one:
    - link to sample: http://www.sap-press.de/download/dateien/1931/sappress_sap_crm_web_client.pdf
    - link to bookshop: http://www.sap-press.com/products/SAP-CRM-Web-Client-Customizing-and-Development.html

  • Sales Data Information - BP Creation - in CRM Web UI

    Hi All,
    Scenario: ECC-CRM customer master data replication and vice versa.
    On ecc side, some fields in the relevant account group in sales area data are mandatory, namely -
    1. Shipping Conditions
    2. Terms of Payment
    3. Currency
    4. Account Assignment Group
    5. Customer Pricing Procedure
    While there is no problem of finding these corresponding fields in SAP CRM - GUI, I am having a little difficulty in locating these particular fields in SAP CRM Web UI.
    Can anyone please tell me under which component in ACCOUNT screen can I find these 5 fields since they are mandatory entries to be filled in CRM for replication of customers from CRM to ECC.
    Any help will be appreciated.
    Thanks and Regards
    Varun Taneja

    Hi Vinod,
    Create new sales area for the bp, when you click on new button in the sales are assignement block you will be navigating to another screen there click on sales org. F4 field it will open pop up for sales area data selection.. once you select the sales area data you will see all the other blocks like Shipping, Billing, blocking reason etc..
    For eg. shipping area contains you shipping condition field.. similarly check for the other fields you needed it will be avaiable..
    Hope this helps..
    Cheers,
    Sumit Mittal

  • Substitution rule does not work in SAP CRM

    Hi,
    In our client, we have work flow set up for substitutions. Manager A has specified B as his substitute for approving work flow items during his absence. I checked the table T77S0, WFLOW AUTOF is set to 'X'. I checked the table HRUS_D2, here the entry shows as 
    User   User   Start date         End date                   Substitute profile            Substitute Active
    A          B      03/10/2014        01/01/9999                0001                                    X
    However B is not able to receive the workflow items of A. When I tried to forward using SWIA, then B is getting workflow items. Not sure, why the substitution is not working. User A has set up workflow substitute in SAP CRM Web UI.
    Any suggestions to resolve this will be greatly appreciated.
    Thanks.
    With regards,
    Ravi

    You assigned substitution profile 0001 which is disciplinary or something like that - this substitution profile has no meaning and is only an example.  try not assigning a substitution profile or use profile 'all' which contains the 'NO_CLASS' task class which is the default classification for tasks in the system.
    you can see substitution definition in SAP Web Application Server → Business Management → SAP Business Workflow → Basic Settings (Organization Management) → Substitute Profile.
    see also: Maintaining and Activating Substitutes (SAP Library - SAP Business Workflow)

  • Melita Predictive Dialer Integration with SAP CRM WebIC

    Hello All,
    Does any one have any information about "Melita Predictive Dialer" integration with SAP CRM Web IC.
    Please let me know.
    Thanks
    Amar Reddy

    Hello Amar,
    I am only aware of a few customers who have integrated predictive dialing into the Interaction Center, and those customers all used Genesys or Avaya. I'm not aware of anyone who has done this with Melita yet.
    By the way, I wrote a high-level Blog on the topic of automated dialing available on PBX:
    Link:Does Automated Outbound Dialing Fit in Your CRM / Call Center Strategy?
    Warm regards,
    John

  • How to handle special character in SAP CRM

    Hi all,
    I am facing a problem on SAP CRM Web UI - Contact Creation - When a special character is inserted on address fields of Business
    Partner (e.g. ` ~ ^ etc.), the interface does not understand this character and changes it to a TRIANGLE on pressing enter key.
    Kindly guide as how to handle it or something is missing in terms of (note or patch).
    I am running on SAP CRM 7.0
    Thanks,
    Pradeep Singh Dhadwal

    Hi Pradeep.
    At the end of the day, a character is stored as a byte sequence on disk, and a code page defines the mapping between the byte sequence and any given character.The code page determines what character you can see and enter, therefore different code pages map different characters to the same byte sequence.
    I suggest you to first check if your system is a Unicode system by checking the System menu->Status option->Unicode system field. I'll assume it is.
    Then, please run report RSCP0018 (optionally also RSCPINST and then select Current NLS config pushbutton).
    These reports will show you the actual configuration of languages and code pages of your Application Server. Please check that the correct languages and code pages are configured. If you need to know more about code pages configuration, please check Note 42305, which explains pretty well the whole process.
    Kind regards, and good luck.
    Federico

  • Data flow from E-commerce to SAP CRM 7.0 , ECC and third party system

    Hi,
    I have a requirement like the customers are created in E-commerce website of the company. When a customer is created the data should be synch to CRM , ECC and thrid party system ( price data from CRM  for the customer ).
    How do we transfer the data from E-commerce to CRM.?.andn ECC. Is it transferred first to CRM and then to ECC. Can  we acheive all the systems synched at a time.
    Can anyone explain with some design.
    Thank you,
    Regards,
    Prashanth.

    Hi
    SAP CRM E-Commerce (called as WEB CHANNEL) works as per the below options (in CRM 7.0 and ECC 6.0)
    1. SAP CRM Web channel with CRM back end where CRM will be a leading system for order creation. From E-Commerce channel, the order is saved in the back end CRM system and then replicated to ECC (through middleware settings).
    In this scenario PRODUCT CATALOG will be created in CRM system. The use of TREX server will be used for product catalog replication.Also, the image server will be required for the display of product images in the PRODUCT CATALOG.
    2. SAP CRM Web channel with ECC back end where ECC will be a leading system for ORDER CREATION. This is a new offering in CRM 7.0 where from E-Commerce web shop the order is directly created in ECC system. Hence no middleware settings are required for order replication. 
    In this scenario also PRODUCT CATALOG will be created in CRM system. The use of TREX server will be used for product catalog replication. Also, the image server will be required for the display of product images in the PRODUCT CATALOG.
    3. For customer replication from E-Commerce > CRM > ECC, you need to maintain the middleware settings between CRM and ECC for business partner replication.
    Hope this will clarify.
    Regards

Maybe you are looking for

  • Download Error (480) when trying to download rented movie

    Hello all. Managed to install the update. Everything seems to be working fine. Then decided to rent a movie, accepted the payment etc. but when I try to download I keep getting "Download Error (480)" and a notification to go to "Check Downloads" and

  • My MBP was a lemon!

    I decided to switch to Mac and am really questioning that decision. My $2,800 MBP died after 1 week because the 2 GB memory was bad. The service has been good but it is extremely disappointing to have to spend hours with AppleCare and now 2 weeks wit

  • How do I get the default zooming to not include images or how can I resize everything but actual images?

    I have a problem with the default zooming in firefox Using default layout.css.devPixelsPerPx=-1 or layout.css.devPixelsPerPx=1.5 makes all UI and webpage text look nice and readable, spacing is fine and everything. The only problem is that images are

  • SIS - ALE issue

    Hi experts, pls help. Thx. It seems that msg type SISDEL is transferred from R/3 to R/3 successfully (Idoc w/staus "green" light). But I failed to find the relevant business data in the receiving system, i.e. outbound delivery.

  • Does the new Garageband open files in older versions?

    Maybe a dumb question, but I couldn't find assurance anywhere that upgrading to GarageBand 10.0.2 allows backward compatibility. If so, maybe Apple should tout this in all the ads, notices and promotion....