CRM 2007 Call Centre Fact Sheet Modification

Hi Gurus
The CRM 2007 CIC Fact Sheet is preconfigired with 6 views:
Installed Base
Service Ticket History
Sales Order History
Generic History View
Service Order History
Complaint History
Is it possible to configure different componient views to be visible as like the BP Account Fact Sheet.
I have reviewed: Maintain Fact Sheet function and it doesn't appear to do what I  need.
Many Thanks in  advance
Panduranga

Hi Panduranga
Do you want to add other order types to BP Account Fact Sheet?
or Do you want other Component views to look like BP Account Fact Sheet?
regards
Rupesh

Similar Messages

  • Integrate MS CRM with call centre avaya

    Hi, all.
    Prompt please how it is possible to integrate MS CRM with call centre avaya

    Hi Elka,
    Please check this link : http://www.avayausers.com/showthread.php?p=52698
    Let me know, if this is not what you are looking for,
    Regards,
    Chinmay
    http://metrix.blogspot.com

  • Import data external system in PCUI SAP CRM install base Object fact sheet

    I want to import data from third party system to Object fact sheet of install base. Please let me know the possible way to do so. Do I need to import data in BI and then to Object fact sheet?

    Hi Pankaj,
    If you have seperate BI server also alongwith the CRM system as back end.Then IU can create two seperate iviews of the two fact sheets hitting different servers e.g.if this is telecom perspective then In one pcui screen you can give two iviews one will fetch data from CRM server and populate 360 degree view of the customer whereas the BI iview will have multiple line level display of the last bills generated which we can see in detail also by hitting the same iview.
    Regards,
    Priyadarshan

  • CRM 2007 Interaction centre : Enhancment deletion causing a Dump error

    Hi,
    To carry out some development I need to delete the existing ehnacement for BuPaCreate page however the enhancment for Bupadetail exist.
    On executing the CRM 2007 Interaction center application Bupasearch page trigger and on pressing the create  button it results in the dump in class CL_CTHMLB_CONFIG_UTILITY.
    Thanks & Rgds
    Sandy

    Hi Sandy,
    Have you already deleted the enhancement, To me it looks that your configuration got corrupted. May be that you had some Z attributes in the enhancement what you have deleted and it is still present in your configuration. Delete the config and try the standard config.
    Check other dependency of the deleted configuration.
    Thanks,
    Vikash.

  • How can I add a text( In CRM 2007 called Note) to the current entity?

    Dear Friends,
    I want to add text type 'SU99' with text 'Hello World' to a CRM transaction, how to do this by BOL? Is there any example component for this issue?
    Thanks and best regards,
    Anders

    Hello Anders,
    here a piece of code where we add a text from type S002 to the Servicerequest:
    lr_bt = lr_bt_adminh->get_related_entity( iv_relation_name = 'BTHeaderTextSet' ).
          lr_bt = lr_bt->create_related_entity( iv_relation_name = 'BTTextHAll' ).
          lr_bt->set_property( iv_attr_name = 'TDID'
                                    iv_value = 'S002').
          lv_conc_lines = 'called Tel.'(003).
          CONCATENATE lv_conc_lines lv_phone_no into lv_text.
          lr_bt->set_property_as_string( iv_attr_name = 'CONC_LINES' iv_value = lv_text ).
          lr_core->modify( ).
    I hope this helps.
    Kind regards
    Manfred

  • CRM 2007 - Call information

    Hi all,
    i"d like to build reports on call level. E.x.:
    Call Id
    Call Entry Date
    Customer Account Id
    Customer Account Name
    Contact Name
    Call Note Date
    Call Note
    Is there a standard extractor to get those fields (especially call id, entry date, call notes)?
    Thanks, best regards
    Frank

    Hi Franks,
    I think This below ABAP Code will helps you.
    TABLES:
      crmd_orderadm_h.                     " Business Transaction
    Event definition
    CLASS lcl_event_receiver DEFINITION DEFERRED.
    *TYPES
    TYPES:
      BEGIN OF t_output,
       salpat(10) TYPE c,                      " Partner number
       guid       TYPE crmd_orderadm_h-guid, " Guid
       salname    TYPE name1,                " sales person name
       date       TYPE                       " Date
                     crmd_orderadm_h-posting_date,
       name1(80) TYPE c,                " Name
       name2(80) TYPE c,                " contact
       name3(80) TYPE c,                " Company
       item(10)  TYPE c,                    " Product
       objid     TYPE crmd_orderadm_h-object_id,
       notes     TYPE string,               " Notes
       flag      TYPE c,
      END OF t_output.
    Internal table and work area for output
    DATA:
      it_output TYPE STANDARD TABLE OF t_output,
      wa_output TYPE t_output.
    TYPES:
      BEGIN OF t_excel,
       salname   TYPE name1,           " sales person name
       date(10)  TYPE c,               " Date
       name1(80) TYPE c,                " Name
       name2(80) TYPE c,                " contact
       name3(80) TYPE c,                " Company
       item(10)  TYPE c,                    " Product
       objid     TYPE crmd_orderadm_h-object_id,
       notes(1052) TYPE c,               " Notes
      END OF t_excel.
    Internal table and work area for excel
    DATA:
      it_excel TYPE STANDARD TABLE OF t_excel,
      wa_excel TYPE t_excel.
    Internal table and work area for Business Transaction
    DATA:
      it_crmd_orderadm_h TYPE STANDARD TABLE OF crmd_orderadm_h,
      wa_crmd_orderadm_h TYPE crmd_orderadm_h.
    Internal table and work area for text
    DATA:
      it_lines TYPE STANDARD TABLE OF tline,
      wa_lines TYPE tline.
    Internal table and workarea for Partner function
    DATA:
      it_partner TYPE crmt_partner_external_wrkt,
      wa_partner TYPE crmt_partner_external_wrk.
    Internal table and work area for Name
    DATA:
      it_name             TYPE STANDARD TABLE OF but000,
      wa_name             TYPE but000.
    Internal table to hold the Guids for crm_order_maintain
    DATA:
    it_header_guid TYPE crmt_object_guid_tab,
    wa_header_guid TYPE crmt_object_guid.
    *Internal table and workarea for Product
    DATA:
      it_product_i TYPE  crmt_product_i_wrkt,
      wa_product_i TYPE  crmt_product_i_wrk.
    *Internal table and work area for orderadm
    DATA:
      it_orderadm_i TYPE  crmt_orderadm_i_wrkt,
      wa_orderadm_i TYPE  crmt_orderadm_i_wrk.
    DATA:
       g_patner(10) TYPE n,
       g_name       TYPE thead-tdname.
    TYPES:
    BEGIN OF t_person_res,
      name1 TYPE name1,
    END OF t_person_res.
    DATA:
    wa_person_res TYPE t_person_res,
    it_person_res TYPE STANDARD TABLE OF t_person_res.
    TYPES:
        BEGIN OF t_product,
         item TYPE crmt_product_i_wrk-prod_hierarchy,
        END OF t_product.
    DATA:
      wa_product TYPE t_product,
      it_product TYPE STANDARD TABLE OF t_product.
    DATA:
       it_appointment     TYPE     crmt_appointment_wrkt,
       wa_appointment     TYPE     crmt_appointment_wrk.
    TYPES:
      BEGIN OF t_text,
       guid TYPE guid,
       text(1055) TYPE c,
      END OF t_text.
    DATA:
      wa_text TYPE t_text,
      it_text TYPE STANDARD TABLE OF t_text.
    Regards,
    Nagaraju.v

  • Factsheet Dynamic Links CRM 2007

    Hi Folks,
    Is it possible to have dynamic links in the factsheet in CRM 2007 Web client?
    I've seen this question on here a few times and both yes and no have been given as answers!

    Hi Sree,
    Thank you for your response.
    The dynamic links we require are the following:
    Links that when you select them bring you to a particular R3 transaction.
    Links that when you select them bring you to a particular CRM transaction.
    The fact sheet is going to contain information from CRM, R3 and BW concerning individual Customers. We are hoping to be able to make this a bit more user friendly by allowing information to be clicked on to bring the user to the selected transaction.
    Is this possible?
    Thanks,
    bubbleabu

  • Configuring Fact sheet for CRM 2007

    Hi guys
    Went through best prcatice B08 and configured necessary steps for my factsheet
    Also checked previous topic discussions and found this subject header under this forum Configuring Fact sheet in IC CRM 2007 : Pls help
    I did exactly as said, factsheet shows under my nav bar, but when i confirm BP and navigate to factheet. It is not showing default view which inlcudes Ibase, Email, Lead and so on
    All I want to see is my master data marketing attributes, physical address and previous transactions of that BP
    Please advice what to do or what Im missing
    Thanks
    Jogi

    Hi,
    In component BSP_DLC_FS and View factsheetyou can select the page type and once the Layout type is chosen, you can select your Fact sheet views from available Fact Sheet Views and there you can assign your views.I think you must have activated the fact sheet button for your PFCG Role.
    I went to Component BSP_DLC_FS and clicked on display.
    Went to views and selected BSP_DLC_FS/factsheet. Where exactly do I select the page types and layouts and my factsheet views? Still fairly new to the the BSP_WD_CMPWB  so please excuse
    Thanks Jogi

  • CRM 2007 - Customer Fact Sheet

    Hi Gurus,
    i've been looking for customer fact sheet screen but can't find any in the standard account master screen in CRM 2007.
    any help really appreciated
    JD

    Hello Jushan,
    while debugging in business partner I saw some stuff about the CFS.
    Have a look at method CL_BP_HEAD_BPHEADOVERVIEW_IMPL->IF_BSP_WD_TOOLBAR_CALLBACK~GET_BUTTONS()
    In it do a search for "--- Factsheet". This will point you to the weired code I stumbled upon.
    Do not know if it will help you. Maybe you can just assign yourself this User parameter or debug around it. By the way, it will show the button for CFS in the business partner overview page. Never tried to click on it though.
    cheers Carsten

  • Modification in interaction center Customer Fact Sheet of XSLT program

    Hi All,
    There is a requirement to do a small modification in CRM winclient Interaction Center Customer Fact Sheet.
    A new data need to be displayed in the fact sheet according to certain condition.
    The fact sheet is displayed upon the code written in XSLT program. Need to understand how the code is fetching the data values from the RFC client. The part of the code is as below (unable to post the code). Can some one tell me what the attributes in the XSLT code are and where are they defined.
    Condition need to be written to display the meter type based on the serial number of the meter. Can this be done in XSLT program or else where.
    I have also looked at the class for the environment ZCL_CFS_GET_ENVIROMENT. I do not see any custom method created here. Also looked that there were no BADI available.
    Kindly let me know where the condition need to be written.
    Thanks to All
    Regards
    P Raj

    The info object of the environment is assinged with class ZCL_CFS_GET_ENVIRONMENT, this class has method GET_REPORT, this method calls function module ZCRM_CFS_READ_ENVIR.
    The code of condition is to be written in this function module.
    The attributes of the code is to be called in the specific area in the XSLT program of the environment.

  • How to pass variable between CRM Fact sheet and BI web template

    Hello,
    I am looking for someone who has integrated a custom web template with the CRM fact sheet (I am on 2004s).
    I have created a custom web application design template for displaying on the portal for a CRM factsheet (TPL_FACT_SHEET).
    This template is based on a query which has a variable (CHOOSE_CUST, ready for input, input: optional type) on 0CUSTOMER char.
    When the sales rep queries the CRM FactSheet on the portal- based on the 0CUSTOMER he is demanding the fact sheet for,  the appropriate 0CUSTOMER value needs to be parsed to my custom web template and it should return him the report. The report is very simple with just sales for current and previous year by material group. There is a std template to do this but we are using cutom data providers and hence need to create this custom web template.
    Thus far I have created a 'filter pane' in my web template but do not know how to link this with the CRM fact sheet or even how to link it to my query variable. Currently when my template is called from the factsheet (portal) it displays results for multiple customers without any filter!
    Please advise how to proceed in linking the CRM fact sheet 0Customer number with my web template filter pane!
    Full points for useful answers!
    Thanks
    Naresh

    Hello,
    I am looking for someone who has integrated a custom web template with the CRM fact sheet (I am on 2004s).
    I have created a custom web application design template for displaying on the portal for a CRM factsheet (TPL_FACT_SHEET).
    This template is based on a query which has a variable (CHOOSE_CUST, ready for input, input: optional type) on 0CUSTOMER char.
    When the sales rep queries the CRM FactSheet on the portal- based on the 0CUSTOMER he is demanding the fact sheet for,  the appropriate 0CUSTOMER value needs to be parsed to my custom web template and it should return him the report. The report is very simple with just sales for current and previous year by material group. There is a std template to do this but we are using cutom data providers and hence need to create this custom web template.
    Thus far I have created a 'filter pane' in my web template but do not know how to link this with the CRM fact sheet or even how to link it to my query variable. Currently when my template is called from the factsheet (portal) it displays results for multiple customers without any filter!
    Please advise how to proceed in linking the CRM fact sheet 0Customer number with my web template filter pane!
    Full points for useful answers!
    Thanks
    Naresh

  • Create New Info Block in ECC for CRM Customer Fact Sheet

    Hi,
    we have a requirement to add a new info block in Customer Fact Sheet to display Equipment master from ECC. the info block required somehow is not listed in standard ECC info block.
    is there any way i can configure the info block in ECC so i can call it from CRM? or do i need to develop it using ABAP in ECC?
    thanks in advance

    What I really really need is an example of how a new Assignment block can be created so that it appears in the PDF fact sheet.
    I'm aware that the interface within the Smartform will need to be changed, along with the coding to process any new data being parsed in. The copied class, now called ZCL_UIU_PRN_ACCOUNT has a method called Collect_data which populates the itabs and forwards to the appropriate Smartform. I'm currently looking through this code to see what needs to be done.
    The collect_data method loops through the data in the CRMT_BSP_PRINT table and retrieves the data structure and class, and I assume it calls them, but I have no idea what these classes have in common as I can't see common theme with them.
    The data sources are:
    CRMT_BSP_ACTIVITY2_BP
    COMT_BSP_BP_ADDRESS
    CRMT_BSP_CONTACT_OBJ_BP
    CRMT_BSP_INT_HISTORY_BP
    CRMT_BSP_OPPORTUNITY_BP
    CRMT_BSP_ACC_R3_FACT_SHEET
    CRMT_BSP_ACC_RELATION
    CRMT_BSP_SALES_AREA_BP
    and their associated class/interface is:
    CL_BSP_ACC_ACCMOD_ACTIVITY
    CL_BSP_BP_ACCMOD_ADDR_MIX
    CL_BSP_ACC_ACCMOD_CONTACT
    CL_BSP_ACC_ACCMOD_INT_HISTORY
    CL_BSP_ACC_ACCMOD_OPPORTUNITY
    CL_BSP_ACC_ACCMOD_PRN_R3DATA
    CL_BSP_ACC_ACCMOD_RELATIONS
    CL_BSP_ACC_ACCMOD_SALES_AREA
    It would look like a lot of these classes are based on CL_BSP_*ACCMOD classes, but that's guesswork on my part.
    I am unhappy that I seem to be pioneering here as there's no guide/help on exactly what needs to be done to add new AB's/sections to the PDF fact sheet. I find that strange as most areas are well documented, except this area as far as I know.
    Sure, there is a note which identifies some of the objects that need to be changed, but misses out a vital table, but there are no guides. There are many people who produce videos on how to achieve the easier stuff, like adding fields to AB's via the UI configurator, but there seems to nothing in the area of extending the PDF fact sheet.
    Jas
    Edited by: Jason Stratham on Apr 29, 2010 10:22 AM

  • CRM IC win (customizing view/fact sheet)

    Hi,
    I dont understand how to change the display of a info block into view
    Where i could change the display of a block?
    For exemple:
    if i add the block "Address" : Class "CL_CRM_CCKPT_IO_ADDRESS"
    Regards
    Julien

    Hi Julien
    I am offline to a CRM system right now, so I can't give you a cut'n'paste solution. I don't think they are good anyway.
    What you have to do is create your own info block class and then use configuration to include that in the Fact Sheet.
    Copy class CL_CRM_CCKPT_IO_ADDRESS to Z_CL_CRM_CCKPT_IO_ADDRESS (or some other Z name). Use SE24 or SE80.
    You can see that this class is a subclass, in the first screen. It has inherited particular methods from the superclass. It may also have a couple of it's own helper methods.
    I think one of them is called GET_REPORT or something like that. That's where each info block goes and gets all the data from this system or another and formats it into XML.
    The particular UI you are using then reformats that XML.
    Anyway, this is the method you need to adjust (as a minimum).
    The URL that you mention passes parameters into the info blocks. The first part of the code digs those parameters out.
    You can add your own BAPI calls or whatever here.
    Then you can fill the XML table with your own data. This is a bit tricky - it's hard to understand the way the XML table is built. It uses template files stored in tx SMW0.
    Once you have it compiling, configure it in to your fact sheet. I think you will have to add your new class to table CRM_CCKPT_CLASS - not sure if that is available via the IMG.
    You can build an info block with any data in it. I always find it easiest to find a similiar one in SE24 (by searching for CL_CRM_CCKPT_IO*) and copy that as a starting point.
    Good Luck.
    Dom

  • CRM 7 PDF Fact sheet question.

    My understanding is that the PDF uses a smartform to create the PDF and there is config behind which identify the AB's to be used. However, am I right it saying that the PDF config can only use the AB's that are defined for standard Online Fact Sheet?.
    So, if we have particular AB's that the PDF Fact needs to use but should not be displayed within the online fact sheet then we'll have to create them within the view, hide them so that they do not display when the Online Fact Sheet is displayed, but add these AB's into the configuration table for the PDF fact sheet, and of course modify the Samartscipt so that it knows what to do witrh this extra data for the new AB's.
    Have I missed anything, or have I not got the right grasp on this?.
    Jason
    Edited by: Jason Stratham on Apr 27, 2010 1:52 PM

    It is slightly different when making modifications to the PDF view because with the standard online Fact sheet you can easily add new fields using the UI config tools, and then just adjust the code to populate these fields, should they be new ones.
    However, you don't have this option with the PDF fact sheet, so there's a difference straight away. My problem is that I need to add new AB's and new fields in both existing AB's and new AB's for both the PDF and online Fact Sheet, although I'm concentrating on the PDF fact sheet first. There seems to be a good many articles on adding new fields, which to be honest is childs play when using the UI configurator, but very few articles on the subject of adding new AB's and fields and then having them populated via ERP, which is no easy task, and is about 99% of what I need to achieve.
    So, to start with, has anyone come across a easy guide to adding new AB's and fields for the PDF fact sheet, and possibly an easy method to populate it. I have found a WIKI guide, written by someone within SAP (I believe) but their HTML code in the example is not generated correctly so they have manually entered it, which seems like a bit of cheat to me, as it should work.
    http://wiki.sdn.sap.com/wiki/display/CRM/Howtodisplayaz-tableinanassignmentblock
    However, any other guides would be much appreciated as I'm sure anyone who reads this guide will find it hard to follow.
    With regards
    Jason

  • BW Query in CRM Account Fact Sheet : Error

    When selecting a BW query in the account fact sheet : the following error message is shown :
    "Query can not be loaded (Data Provider "DP_1" : No service-implementation is available)"
    Do we need to create a web service for this ?

    Hi there!
    There are at least two connections required:
    1) RFC connection from CRM to BW java stack,
    2) Within the CRM fact sheet, the BW source also needs to be defined.
    Check out
    Procedure
    1.     Access the activity using the following navigation options:
    Transaction code     SPRO
    SAP CRM IMG menu     Customer Relationship Management  CRM Middleware and Related Components  Communication Setup  Middleware Parameters  Define Middleware Parameters
    2.     Choose R/3 customer fact sheet and order status.
    3.     Choose New Entries (F5).
    4.     Create the following table entry.
    Field name     User action and values     Comment
    Key      CRMCFSOLTP     
    Parameter 1     CRMCFSOLTP     
    RFC Destination     <RFC destination for the ERP system>     RFC destination has been created in building block CRM Connectivity
    5.     Choose Save (Ctrl+S).
    6.     Choose Back (F3) twice.
    7.     Choose BW customer fact sheet.
    8.     Choose New Entries (F5).
    9.     Create the following table entry.
    Field name     User action and values     Comment
    Key      CRMCFSBW     
    Parameter 1     CRMCFSBW     
    RFC Destination     <RFC destination for the BW system>     RFC destination has been created in building block BI Connectivity
    10.     Choose Save (Ctrl+S).
    Procedure
    1.     Access the activity using the following navigation options:
    Transaction code     SPRO
    SAP CRM IMG menu     Customer Relationship Management  UI Framework  UI Framework Definition  Fact Sheet  Maintain Fact Sheet
    2.     Choose BP_ACCOUNT_FS.
    3.     Choose Copy As.
    4.     Maintain the following table entry.
    Field name     User action and values     Comment
    Fact Sheet ID     ZOTIS_ACCOUNT_FS     
    Fact Sheet Title     Otis Account Fact Sheet     
    Description     Otis Account Fact Sheet     
    5.     When prompted, select Copy All Dependent Entries.
    6.     Choose Save (Ctrl+S).
    7.     Choose ICCMP_FS.
    8.     Choose Copy As.
    9.     Maintain the following table entry.
    Field name     User action and values     Comment
    Fact Sheet ID     ZOTIS_IC_AFS     
    Fact Sheet Title     Otis IC Account Fact Sheet     
    Description     Otis IC Account Fact Sheet     
    10.     When prompted, select Copy All Dependent Entries.
    11.     Choose ZOTIS_IC_AFS.
    12.     In the Dialog Structure on the left, double click and select folder option View Assignments.
    13.     Choose New Entries.
    14.     Maintain the following table entry.
    Field name     User action and values     Comment
    Component Name     BP_FACTSHEET     
    Interface View     BIReport     
    Inbound Plug     DEFAULT     
    Title     BI Report     
    15.     Choose Save (Ctrl+S).
    I hope this helps.
    John Hawk

Maybe you are looking for

  • Purchase Flow to FI in SAP ECC 6.0

    Dear All, I google regarding the Purchase and Sales Flow in SAP but didnt saw any document with description. Please suggest if I am going to the right direction in Purchase and Sales Flow step as follow :- Purchase Flow: 1) Purchase requisition raise

  • Using a Math Formula in AS3

    Hi, I am trying to test using a math formula (probit function) in AS3. I can't get the script to work: the dynamic text box is displaying NaN after I run the function and use a hard-coded number for the variable. Here's the button's script that is ge

  • Please confirm, I cannot open RAW images in CS2 from EOS 50D

    Platform: XP Pro SP3 After shooting my first session using the new Canon EOS 50D DSLR I cannot open RAW images in Photoshop CS2. Canon told me there was a free upgrade available to replace my current RAW editor ver. 3.7 BUT it appears from what I've

  • SSRS 2005 - How to do a WHERE clause against grouped items?

    Hi all Sorry for a newbie question, but I have been trying to solve this issue for ages and have not come up with anything yet! I have the following example data: SiteID    Contract 0001      No 0002      No 0002      Yes 0003      Yes 0004      Yes

  • Change sales area in sales order.........?

    Hi Experts, I know that in standard, we can not change the sales area in sales order, but my problem is that suppose when I create a sales order, I dont know that what distribution channel should be taken. Suppose I create a sales oder taking the dis