SAP CRM custom tags in MS Word

Hi
When working with MS Word templates functionality in Attachments assignment block and generating a word document pressing "with template" button we can use BADI CRM_OFFICE_TEMPLATE_BADI to transfer custom tags inside the template. But is it possible to use those custom tags transferred in formulas inside the template? I mean the formula "If" from the menu Insert->Quick parts->Field->If ? Otherwise, is there any solution to use the tags in any formulas inside the template?
Regards,
Aliaksei

Actually it's based on past productive experience of using complicated word templates that I'm basing my answer.  My collegaue who had calcuated field requirements did not use formulas in our more complex word templates and instead we performed the calculation in CRM instead.  Oh BTW, I'm actually not an SAP Employee by any means, but a customer of SAP instead.  We had been using word templates productively on our 7.0 installation for at least four years.  When we had to migrate the work to EHP1 system with the new content controls, there were many bugs in the standard delivered solution include problems when macros existed in the document that were released by notes by SAP.
Take care,
Stephen

Similar Messages

  • SAP CRM  : custom B2C without NWDI

    Hi All,
    I need to custom B2C scenario ( SAP CRM) without NWDI. Any idea on how to do that? which tool i should use?
    Thanks in advance
    raji

    http://sateeshchandrach.googlepages.com/
    https://wiki.sdn.sap.com/wiki/display/Snippets/HowtocreatecustomApplicationinE-commerce5.0without+NWDI
    sateesh's blog has really helped me a lot.
    thanks sateesh..

  • How to integrate a Widget in SAP CRM Webclient UI Homepage?

    Hello Experts,
    i´m new with CRM Webclient UI. Can somebody explain me how to integrate a widget in the Home - Page of SAP CRM Webclient UI?.
    Maybee one of you can recommend also a good widget for weather forecasting?
    Thank you.
    Best regards
    Manfred

    Have a look at these posts...
    Customer Relationship Management (SAP CRM)
    Customer Relationship Management (SAP CRM)
    Google or Yahoo Widgets are pretty good, you can customise them on the website below and then copy and paste the code into your BSP component.
    http://www.google.com/ig/directory?synd=open
    Regards,
    David

  • Edit Custom Tag

    I have created a custom tag and when the tag is inserted, i
    would like the inner text to change color. is this possible? and if
    so, what file needs to be modified to do this? or if i have to
    create one, where would it go?
    example:
    i insert my custom tag around the word hello
    <mytag>hello</mytag>
    currently, the font color for hello is black. after i insert
    the tags i would like the font color to change. is this possible?
    and also, as a side note when i right click on my tag, the
    option to edit tag is not available. where do i need to change this
    so my tag can have edit properties?
    thanks for the help.

    You can't just make up tags. To achieve what you want you
    should use CSS. If
    you don't understand CSS go to DW's Help and search on CSS.
    Walt
    "kscap" <[email protected]> wrote in message
    news:eqfoo4$reg$[email protected]..
    >I have created a custom tag and when the tag is inserted,
    i would like the
    > inner text to change color. is this possible? and if so,
    what file needs
    > to be
    > modified to do this? or if i have to create one, where
    would it go?
    >
    > example:
    > i insert my custom tag around the word hello
    > <mytag>hello</mytag>
    > currently, the font color for hello is black. after i
    insert the tags i
    > would
    > like the font color to change. is this possible?
    >
    > and also, as a side note when i right click on my tag,
    the option to edit
    > tag
    > is not available. where do i need to change this so my
    tag can have edit
    > properties?
    >
    > thanks for the help.
    >

  • 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

  • ICI - How to display custom error messages in SAP CRM

    Hello,
    we are working on a custom Contact Center which interfaces with SAP CRM Version 7 with Enhancement Package over ICI.
    The basic call functions like accepting, hanging up, holding and retrieving are fully implemented and are working already.
    Our goal is to display error messages in the CRM so that clients know there is something wrong, for example why he can't be log in successfully (e.g. the telephony server isn't reachable).
    We already found the ICI Documentation file which provides us the CRM SOAP error codes and tried to send SOAP Fault messages, but never got
    them to screen.
    Please find an attached example screenshot what we mean exactly, reproduced by trying to make a call with CRM user while BCM CDT isn't
    running in the background.
    Regarding to this topic we've the following questions:
    - Is it possible to display custom error messages on the CRM or is this functionality limited to SAP?
    - Could you provide us some further information on how to use this feature exactly (implementation details?) and how the SOAP XML should look like to get it work?
    Thank you in advance!
    Best regards
    René Holy

    NewUser7 wrote:
    Please correct me if I am wrong
    I need to create an entity adapter and attach an error handler with the adapter? or can i handle that in the event handler itself. I coulnt find any api for handling errorsYou can do it both ways but since we are talking about event handler now, then in 9.x you need to extend com.thortech.xl.client.events.tcBaseEvent class for creating a event handler. In tcBaseEvent class there are various flavors of handleError method. So use that as per my note earlier and you should be good.
    HTH

  • 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.

  • How to create a custom Report in SAP CRM using the Bol Framework

    Hi Guys
    I have developed a report in SE38 which calls a custom Function Module within it and it works all good.
    Now I want to take my Function Module as well as the external structures I created for this report and use them to make a View in SAP CRM which will allow the user to make selection and then when they click on a button another view has to be shown which should have the content of the report based on the selection.
    I know how to create a view based on the standard object types but this time I want to use my custom function Module..
    Kindly advice or refer me to a link that might be useful.
    Regards
    * Thato                                                                        *

    You want to create a View in SE11 calling FM that you created? Is it?

  • MS Word integration with SAP CRM: can a PDF be created from the MS Word doc

    21/11
    Gurus,
    I know have a better understanding of the topic but still have 2 open questions.
    I now know that StreamServe cannot read .DOC files but can read and work with .PDF files.
    Since we are in a SAP forum and not a StreamServe forum,
    1/ I am wondering if SAP CRM 2007 can convert the MS Word generated and populated documents into .PDF. Possibly immediatly.
    2/ Can the MS Word generated and populated documents be saved by SAP CRM 2007 as .XML files?
    Thanks again.
    Dear All,
    On my project, there is a requirement to generate ad-hoc and amendable letters in CRM (2007).
    We might have +150 letters so I am thinking about using MS Word integration with SAP CRM to deliver this.
    With SAP CRM 2007, I understand that it is indeed possible to generate WebServices that will then be consumed by Word templates through the mail merge functionality. So agents will not have to enter BP name, address and so on. All this can be done by configuration which is great.
    My point of concern is how to integrate this design to StreamServe for printing purpose (we do not want to go into local printing)
    Can StreamServe collects the Word generated document?
    Should this Word document be converted as PDF before or can StreamServe do it?
    Should StreamServe exploits the XML contents within the Word generated document?
    Thanks for your help and insights about this.
    Brice.
    Edited by: Brice Vialle on Nov 21, 2008 9:26 PM
    Edited by: Brice Vialle on Nov 21, 2008 9:34 PM

    Hi Chris,
        Your advice helps me a lot, thank you.
        I upload an XML-Format template Word Doc to server as a MIME Object.
        When OfficeControl is started in Web Dynpro, OfficeControl automatically open the XML-Format template.
       For the first time, I get the XString-type Context attribute bind to the content of the Word Doc,
       then translate it to string, I got the XML-format content, it's great!
       However, after the first time, when I input any new contents in MS Word in Web Dynpro,
       no matter I execute "Ctrl + S" or click the "savedocument" button,
       when I translate the XString Context attribute to String, I got messy code. (but the first time, it is good plain text)
       I use the function module: ECATT_CONV_XSTRING_TO_STRING (good for first time, dump after first time),
       SCMS_XSTRING_TO_BINARY, SCMS_BINARY_TO_STRING (good for first time, messy code after first time).
       My Demo source code is in: (system) SMV --> (local object) zhaode --> (Dynpro Component) ztest_office_control
       core source code is as:
       clear itab.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          BUFFER = lv_datas
        IMPORTING
          OUTPUT_LENGTH = lv_length
        TABLES
          binary_tab = itab.
      CALL FUNCTION 'SCMS_BINARY_TO_STRING'
        EXPORTING
          input_length = lv_length
          mimetype = 'text/plain; charset=utf-8'
        IMPORTING
          text_buffer = lv_datas_string
          output_length = lv_data_len
        TABLES
          binary_tab = itab.
        Can you give me some advice?
    Best Regards,
    Derek

  • SAP CRM : Call popup in CUSTOM ACTION (i have a dump : ASSERTION_FAILED )

    Hi to everyone,
    i have a problem to create a popup inside a new custom action in SAP CRM. I have a dump ASSERTION_FAILED.
    Could somebody help me to fix the problem,please?
    Thanks in advance.
    Dario.

    Hi,
    in this case i have to write my code inside a custom action. The problem is that i have no a standard controller and ME instance.
    So i tried to import controller from memory by IMPORT/EXPORT stataments, but when i create popup the system gets a dump :
    ASSERTION_FAILED
    Code is as follows :
        DATA zlc_controller TYPE REF TO cl_bsp_wd_component_controller.
        CALL FUNCTION 'ZCRM_CONTROLLER_GET'
          IMPORTING
            ex_controller = zlc_controller.
        DATA zcl_me TYPE REF TO zl_srqm_inc_incidentovp_impl2.
        CALL FUNCTION 'ZCRM_ME_EHONSAVE_GET'
          IMPORTING
            ex_me = zcl_me.
              lc_controller TYPE REF TO cl_bsp_wd_component_controller,
              lc_view TYPE REF TO cl_bsp_wd_controller.
       IF lr_confirm_popup IS NOT BOUND.
    Message
         MOVE text-t01 TO l_text.
    Title
         MOVE text-tit TO l_title.
        CALL METHOD zlc_controller->window_manager->create_popup_2_confirm
          EXPORTING
            iv_title          = 'TITLE'
            iv_text           = 'TEXT'
            iv_btncombination = if_bsp_wd_window_manager=>co_btncomb_yesno "OK Button
          RECEIVING
            rv_result         = lr_confirm_popup.
        lr_confirm_popup->set_display_mode( if_bsp_wd_popup=>c_display_mode_surrounded ).
        lr_confirm_popup->set_on_close_event( iv_event_name = 'eh_closepopup_at_save'
                                              iv_view = zcl_me ).
        lr_confirm_popup->open( ).
    Thanks.
    Dario.

  • Can I record customer interaction captured through Hardphone conn. to SAP CRM?

    Hello friends,
    I'm currently working on one of the proposals for SAP Contact Center implementation with SAP CRM also supporting Hardphones. Client has this requirement to capture interactions from Hardphone in the form of recordings in CRM system.
    I'm aware of BCM softphone having option to record customer interactions both at Client and Server side but the client would like to record hardphone interactions and store in CRM system. How could this be acheived?
    Would be of great help if you could share the config documents for the same.
    Thanks
    Chiroy

    Hi Chiroy,
    BCM cannot record client interactions without the assistance of a third party application such as Vierent or Nice.  Client interactions meaning the performance of the Agent on his or her personal desktop, such as key strokes and open files etc.
    What BCM can do is record all voice packets between the client and the agent.
    It will do this with users on a Hardphone, in MTD mode, using Convergence or the CDT.
    There is no restrictions to recording unless you make them so.
    There is no need for supporting documents as this information is covered in several existing SAP guides.
    Also, these recordings once created, can notify CRM of the storage location in BCM and attach the path of the recorded file to the Interaction Record.  This is all done as part of the CAD from BCM. This is option is available via the OII link in BCM but requires CRM customization to work properly.
    It should be noted that this recording feature is only active if you have server side recording, not client side.
    I hope that helps.
    Thanks,
    Marcus

  • SAP CRM Role assignment block - Customer cc

    hi there, can anyone please tell me what the Customer CC refers to in the SAP CRM Role assignment block
    Thanks, Sue

    hi ahmedi khan,
    the role key what you have created that will be assign to your business role.
    go to CRMC_UI_PROFILE or
    SPRO >> Customer relationship Management >>UI Framework >>Business Roles >> Define Business Role
    click on your business role and under role config key you have to pass your custom role key..
    like this..
    go through this link you can get to know..
    The Usage of the SAP CRM Role Configuration Key –Detailed example
    Thanks & Regards,
    Srinivask

  • How to Create Customer Contact data in SAP CRM

    Hi All,
    Would want to create Customer Contact data in SAP CRM, could please guide me step by step that how can i create the customer contact data in SAP CRM?
    Regards
    Avinav

    Hello Avinav,
    In CRM 6.0 and 7.0 GUI is no more used, you can use WEB UI and login using SALESPRO role to create a contact.
    1. Logon to CRM web UI
    2. Choose Create Contact from the Navigation bar
    3. Enter all the data - Title, first name, last name, account id,
    street, stree2, street3, street4, street5, city, postal code, email,
    mobile no and website.
    4. Press the Save key.
    Hope it will help! Please award points in case this helps!
    Best Regards
    Lata

  • Number for bDocs processed per hour in custom interface to SAP CRM from Tibco

    Hello Experts,
    Could you please let me know the ideal Number for bDocs processed per hour for a interface which has SAP CRM and TIBCO.
    The intent is to use to most easy to scale technology for a custom interface to SAP CRM from Tibco .
    I did check the forums but was not able to get a definitive answer.
    I understand that it is not possible to quantify the exact number of BDocs that can be processed in an hour,but could you please let me know the factors on which it depends.
    Regards,
    Akash

    It depends on type of data you want to process and the size of your hardware.  My rule of thumb is that you should be able to do at least 1 BDOC per second in a worst case scenario or 3600 records for a small size system.  Keep in mind the biggest bottleneck is the database update/lookup times.  A properly sized large system, could do much more volume.  Your best bet is put in the desired transactional throughput into the SAP quicksizer and then work with your SAP hardware partner to approriately size your production box.
    If you already have hardware for production bought/existing, then find out the current SAPS rating for your hardware and then use the quicksizer to determine the target SAPS needed to meet your requirements.
    Take care,
    Stephen

  • SAP CRM V1.2007 Best Practice

    Hello,
    we are preparing the installation of a new CRM 2007 system and we want to have a good demo system.
    We are considering too options;
    . SAP CRM IDES
    . SAP CRM Best Practice
    knwoing that we have an ERP 6.0 IDES system we want to connect to.
    The Best Practice seems to have a lot of preconfigured scenarios that will not be available in the IDES system (known as the "SAP all in one").
    How can we start the automatic installation of the scenarios (with solution builder) connecting to the ERP IDES system?
    Reading the BP Quick guide, it is mentioned that in order to have the full BP installation we need to have a ERP system with another Best Practice package.
    Will the pre customized IDES data in ERP be recognized in CRM?
    In other words, is the IDES master data, transactional data and organizational structure the same as the Best Practice package one?
    Thanks a lot in advance for your help
    Benoit

    Thanks a lot for your answer Padma Guda,
    The difficult bit in this evaluation is that we don't know exactly the
    difference between the IDES and the Best Practice. That is to say,
    what is the advantage to have a CRM Best Practice connected to an ERP
    IDES as opposed to a CRM IDES system connected to a ERP IDES system?
    As I mentioned, we already have an ERP IDES installed as back end system.
    I believe that if we decide to use the ERP IDES as the ERP back end, we will loose some of the advantage of having an ERP Best practice connected to an CRM best practice e.g. Sales area already mapped and known by the CRM system, ERP master data already available in CRM, transactional data already mapped, pricing data already mapped etc.
    Is that righ? Or do we have to do an initial load of ERP in all cases?

Maybe you are looking for

  • IPhone doesn't play Quicktime Web-Export for iPhone (not cell!)

    Hello guys, I play around with the html5 video tag and the possibilities to get implemented videos working on the iPhone. I exported the video via the standard function in Quicktime (Encoding Video for Wi-Fi, 3G, and EDGE) which is installed on 10.6.

  • Wireless Woes

    Many months back I got a Netgear WGR614 V6 wireless router. For a while it did the job but I noticed as soon as I left the room with the router in, the signal would degrade. By the time I got to the garden area (2 rooms away) and signal was dead. Aft

  • Automatically uncheck selected items in selectOrderShuttle?

    Dear ADF gurus, Is there an attribute in af:selectOrderShuttle tag that will automatically "Uncheck" the selected items after they are moved from the heading list to the trailing list? I read through the online document and search in this forum and I

  • Need By Date Should be equal or after the effective start date- error in po_requisitions_interface_all

    Hi All, We have created a manual planned order for one buy item in ASCP workbench for some qty and released it. But, we are not able to get its requisition created in source. When we check the PO_Interface _Errors table, we found that it is errored o

  • PLSXML Problem

    I'm trying to install the PLSXML utility in an Oracle 8.1.7 schema. To check appropriate access, I executed the checkdeps.sql and here's what I got... ERROR at line 1: ORA-06502: PL/SQL: numeric or value error ORA-06512: at "SYS.OWA_UTIL", line 315 O