Fact sheet in BP, Activities

Hi All
did anyone work on fact sheet delivered by SAP for business partners. I checked the config guide for business package but no where it mentioned configuration for fact sheet in Business partners, activities and opportunities. When I click on the fact sheet in the tool bar it is not even giving me any error. For my portal BW server is already configured and the parameters are fine. Do You guys have any suggestions for me.
Thank You guys
Murthy

I'm back from a much delayed vacation.
One thing to remember when using CRM Object Links with the Portal. When you click on Factsheet or any object links you can turn off multi-windows by maintaining the table CRMC_PRT_CUSTOM.
Add the entry SINGLE_WINDOW_SWITCH_CRM_BSP with text'X' to turn of multi-windows.
Until you have the Object Links configured the Factsheet will not even open up another window. This is the same for Create Activity button with the Opportunity PC UI.
Cheers

Similar Messages

  • Link title not displaying properly in fact sheet

    Hi experts,
    I have an issue with fact sheet of BP here, the link titles, e.g. "Activities", "Account Billing Data", "Account Sales Data" etc are displaying like "BP_FACTSHEET0001", "BP_FACTSHEET0002"...
    I checked configuration in IMG CRM->UI Framework->Fact Sheet->Maintain Fact Sheet. The descriptions and translation look fine.
    Any suggestions for this?
    Thanks
    Shane

    Hi,
    Beside the customizing in spro, it is possible to make changes to the title in bsp_wd_cmpwb configuration also, please check whether you are able to see the correct description in the available fact sheet view and assigned fact sheet view.
    by the why, what CRM release you are on?
    Hongyan

  • Fact sheet configuration

    Hello Experts,
    I am tring to configuration factsheet in portal. I don't want to use BW iview for that i just want to show the lead and activities for the Business partner.
    I am not using the standard role provided in Business package. I have same custom role.
    Please give me the steps how can i configuration Factsheet without using BW iview for my custom role.
    Regards!!!
    Amit

    Hi,
    Iam to view a fact sheet in the portal and i get this error. I understand there may not be the portal components. I am not sure how to go about.
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.sap.portal.migrated/ep_5.0/pages/com.sap.pct.crm.accounts.FactSheet/com.sap.pct.crm.factsheet.LastSalesDocuments
    Component Name : null
    Page could not create the iView.
    See the details for the exception ID in the log file
    Any help would be appreciated
    Thanks

  • Fact Sheet generation - CL_CRM_GENIL_CONTAINER_OBJECT issue

    Hi Guys,
    We are utilizing functionality of an Activity Management to schedule appointments using Activity Scheduling and Standalone appointment creation as well. We did use automatic Fact Sheet attachments to the appointments.
    We introduced an ad hoc generation of PDF Fact sheet attachments into the appointments. We are testing our custom solution but we experienced one issue caused by SAP standard code.
    Let me summarize our settings first
    1.We turn off automatic FS generation in IMG CRM->Transactions->Settings for activities->Attach Fact Sheet to activities
    (Role)G:ZZ:CRM1:SLS_USER; (Trans.Type)Z100; (Short Descriptio)Visit; (Language)EN; (AttchAutom)blank; (AttachMan) flag
    2.We do use custom smartform ZCRM_FACTSHEET that is a copy of CRM_ACC_ACCOUNT_OVERVIEW_PRN
    3. We created new class ZCL_UIU_PRN_ACCOUNT as a copy of CL_UIU_PRN_ACCOUNT
    4. in View CRMV_PRN_CONTROL we have maintained following entries (Role)G:ZZ:CRM1:SLS_USER; (External Object Name)BuilHeader; (Form name) ZCRM_FACTSHEET; (Class/Interface)ZCL_UIU_PRN_ACCOUNT; (View) blank
    5. in cluster CRMVC_BUIL_PRT we have maintaned following Related objects ro (Role)G:ZZ:CRM1:SLS_USER and (Ext. Object Name) BuilHeader
    (External Object Name)BuilActivity-(Field name)ACTIVITIES; BuilAddress - ADDRESS_OVERVIEW; BuilContactPerson - CONTACTS; BuilInteractionHistory - HISTORY; BuilRelationship - RELATION_TYPES; BuilSalesArrangement - SALES_AREAS
    Our custom program ZFCRM_CREATE_FACT_SHEET is basically selecting relevant appointments; Reading information about main partner using FM CRM_PARTNER_READ_OW and calling FM CRM_UIU_BP_PRINT_BACKGROUND. All export parameter are properly filled in.
    This FM is basically calling our Z class ZCL_UIU_PRN_ACCOUNT based on above customizing. For simplification reasons imagine that ZCL_UIU_PRN_ACCOUNT is exact copy of standard SAP class CL_UIU_PRN_ACCOUNT where  CL_UIU_PRN_ACCOUNT is its superclass
    The issue is with the method COLLECT_DATA and section of the code
    lr_collection = lr_buil_entity->get_related_entities(
    iv_relation_name = <ls_model>-relation_name ).
    that returns data for internal tables lt_activities(open activities) and lt_history(closed activities). If we have scenario when we have 3 open and 8 closed activities:
    a. When I generate the Fact Sheet from an Account directly in Web UI CL_CRM_BOL_CORE->get_related_entities is returning 3 records for lt_activities(open activities) and 8 lt_history(closed activities).
    b. When I called it from our Z program the CL_CRM_BOL_CORE->get_related_entities is returning 11 records for lt_activities(open activities) and 11 lt_history(closed activities). It means mixed bag. And this is the issue.
    I did analyze the standard SAP code and the section containing below
    code is responsible for the mismatch
    try to read children
    if IV_RELATION_NAME is initial.
    if IV_OWNED_ONLY = ABAP_TRUE.
    LV_OBJ_LIST = IV_ENTITY->CONTAINER_PROXY-
    >IF_GENIL_CONTAINER_OBJECT~GET_OWNED_CHILDREN( IV_AS_COPY = TRUE ).
    else.
    LV_OBJ_LIST = IV_ENTITY->CONTAINER_PROXY-
    >IF_GENIL_CONTAINER_OBJECT~GET_CHILDREN( IV_AS_COPY = TRUE ).
    endif.
    elseif LV_MODE ne CL_CRM_BOL_ENTITY=>BYPASSING_BUFFER.
    get relation state
    >>this code>> LV_OBJ_LIST = IV_ENTITY->CONTAINER_PROXY-
    >IF_GENIL_CONTAINER_OBJECT~GET_RELATION( IV_RELATION_NAME =
    IV_RELATION_NAME
    IV_AS_COPY = TRUE ).
    read table IV_ENTITY->MY_MANAGER_ENTRY->RELATIONS with table key
    RELATION_NAME = IV_RELATION_NAME
    assigning
    <REL_STATE>.
    endif.
    CL_CRM_GENIL_CONTAINER_OBJLISTCP->CONSTRUCTOR
    data: LS_RELATION type GTYPE_RELATION,
    LV_PARENT type ref to CL_CRM_GENIL_CONTAINER_OBJECT,
    LV_ENTRY type ref to IF_GENIL_CONTAINER_OBJECT,
    LV_CHILD_PROXY type ref to CL_CRM_GENIL_CONTAINER_OBJECT.
    field-symbols: <REL> type CRMT_GENIL_CONT_RELAT
    >>this code>> read table IV_PARENT_DATA_REF->RELATIONS assigning <REL> with table key RELATION_NAME = IS_FILTER-RELATION_NAME.
    Table IV_PARENT_DATA_REF->RELATIONS is not filled for scenario b. at all. It is filled for scenario a. For our scenario b. it is missing relationships and that's the reason why we got mixed activities in BuilActivityRel and BuilHistoryRel..
    Did you come across similar bug or do you know which note could potentially resolve this issue?
    Thank you in advance.
    -Milan

    You might have to put breakpoint in function module CRM_UIU_BP_PRINT_BACKGROUND
    Check the values in parameter - IT_BOL_RELATION
    Also check values returned from querying table crmc_prn_contr2 (its at line 76 in our system).
    Thanks,
    Alwyn

  • Fact sheet not visible in new Z business role

    Hi all,
    On creating a new Z marketing professional role after copying from the standard role, I am not able to find the option of viewing the Account Fact Sheet under the link "More" in the customer master. i didnt find any customizing wherein I could assign the fact sheet to the business role.
    I've assigned the fact sheet to transaction types under Settings for activities but didnt work out. Any further settings ??
    Deserving points to be rewarded, Regards,
    Jacob.

    Jacob,
    check note 1040229.
    you have to maintain cluster view CRMV_BUIL_PRT (tx sm34)
    there you have to link your newly created business role (its PFCG role) to the form view CRM_ACCOUNT_OVERVIEW_PRN
    and to class/interface CL_UIU_PRN_ACCOUNT.
    should work this way
    regards,
    Ineke

  • Account fact sheet, print version (PDF). Query regarding output blocks.

    I have looked at OSS Note 1066280 which explains exactly how to config the PDF fact sheet. However, on looking at the view or using the SPRO path I can see that there are currenty no settings in place at the moment. i.e. the view/SPRO is showing no data.
    However, when looking at the appropriate Smartform I can see blocks for:
    Opportunities
    Activities
    Interaction history
    Contact Person
    Relationship types
    Which all print out (display in PDF) okay, except there's also a Sales block in the Smartform which does not print. The logic/output conditions in the Smartform say PRINT_DATA-SALES_AREAS = 'X' and SALES_AREAS[] NE initial.  What controls whether this information prints, config-wise.
    Also, I need to add new blocks of data, which is probably going to be sourced from ERP, but config-wise can I control whether the PDF displays these newly created blocks in the same way as it does for the SAP standard?.
    Regards
    Jason
    Edited by: Jason Stratham on Apr 20, 2010 1:46 PM

    I think my question might be answered when I look at table CRMT_BSP_PRINT.
    Regards
    Jason

  • Dispaly Fact Sheet in Activity Transaction

    Experts please explain the steps to dispaly fact sheet in activity transaction in webUI?

    Check the following SAPNote:
    https://service.sap.com/sap/support/notes/1066280
    Solution
    PDF Account Fact Sheet in Activities can be generated in 2 ways. One is when the user saves the Activity and the other is when the user clicks on the button 'Attach PDF Account Fact Sheet'. In Order to generate PDF Account Fact Sheet in Activities the following Customising needs to be maintained:
    1) Launch Transaction 'spro'
    2) Navigate to Customer Relationship Management -> transactions -> Settings for Activities -> Attach Account Fact sheet to Activity
    3) Here add the entries with the following details
    a) Role
    b) Transaction Type
    c) Language
    d) Save Check box (This check box indicates that the PDF is   generated while saving the activity.)
    e) Create check box (This check box indicates that the PDF is   generated when the user clicks on the 'PDF Account Fact Sheet   button' on the UI.)
    Alternatively these changes can also be made via transaction se11, view 'CRMV_ACT_PDFAFS'.
    Also please refer to the related note number 1040229 for Master Data Customising for the same.
    Edited by: Dirk Boegelspacher on Oct 29, 2009 2:50 PM

  • BW report in BP Fact Sheet in CIC0

    Hi Gurus,
    We wish to display BP specific BW reports in our CIC0 fact sheet. We have configured a web template and are able to view the BW view in the CIC0 fact sheet. The issue is, that we want the BW query to run automatically based on the BP confirmed in CIC0. Currently, we get the BW view wher we open a query and then populate the BP in the selection screen and run the report. The report then shows the expected data in fact sheet. However, ideally, the BP should automatically be passed in BW query as its already confirmed in CIC0, as it does when we get information from R/3 regarding a BP.
    Any help would be highly appreciated.
    Cheers!
    Amit

    Hi guys,
    I have the same problem, I need to call bw reports using the BP selected at cic0.
    I tried 2 options, I can display the bw reports but the BP is not send as a parameter.
    1- I created an action box in cic0 to call transaction RRMX in BW. I used BOR method, object type TSTC and method execute. This works fine to call the reports but can't find any option to send the bp as a parameter.
    2 - I created a bsp version of the bw reports and created an HTML call from CIC0. But the BW report doesn't accept parameters. Also I don't know how to send the BP as a parameter, it seems that I can only send Text.
    Let me know if you find another way to call bw reports from cic0.
    Cheers,
    Hernan.

  • Status used in open and completed transactions in Fact Sheet

    Hi! I would like to confirm the logics used in the fact sheet to display open and completed transactions. I read on the help that for open (for example) transactions, system is using status 'open' and 'in process'. This seems to me like system status. However, when I ran the fact sheet, the control is more at the user status level. So, I need clarification on this. Also, where can I find the status and transaction logics used for the extraction of these transactions (e.g. what transaction types are used)? I could not find the codings in the method GET_REPORT under class CL_CRM_CCKPT_PROCESS_CLOSED for example. Perhaps I have looked in the wrong place?
    Appreciate any help on the above.
    Cheers!
    SF

    No response. Based on what is being debugged, all transactions are taken into account.

  • 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

  • Sales orders are not shown within the ICWeb Account Fact Sheet

    Hi experts.
    We're having problems with the account fact sheet on the ICWeb.
    Even though our test customer has sale orders assigne when we select Order History, the fact sheet shows no data. Nevertheless, when we press button new order and then Order History, then the sales order`s list is available.
    By the way, we are using view ICCMP_ERP_ORDER.
    Please, can anyone help us?
    Thanks in advance.
    Almudena

    Hello,
    I'm facing the same issue at the moment. I have check all customizing, and I didn't find why the sales area, shipping and billing data are still blanck when I logged through CRM WEBUI.
    It will be very pleased, if you can tell me how you solved your issue ? maybe it will be the same for me
    Thanks in advance
    Best Regards
    Alexandra Rodriguez

  • IBase in Account Fact Sheet

    Hello experts,
    I have a question concerning the account fact sheet:
    We want to show the IBASE of the customer in the Fact Sheet (BP_ACCOUNT_FS), so I went to the Workbench and added the IBASE Component Fact Sheet. Unfortunately the available fields don't contain information about the product ID.
    Within the Account Fact Sheet of the IC WebClient the section of the IBASE does contain information of the product ID.
    So is there a possibility to use the IBASE section of the ICCMP_AFS in the BP_ACCOUNT_FS?
    (Adding the ICCMP_IBASE0001 to BP_ACCOUNT_FS in Customizing and Workbench withour additional settings did not work).
    Thanks for your help in advance!
    Regards Anne

    Hi Aakshi,
    Please check in transaction SICF in the BW system that the required service is activated - note 1124553 will help with this.
    Kind regards,
    Vanessa.

  • Making the BP Fact Sheet as the default page in CIC

    Hi All,
    How to make the BP Fact Sheet as the default page in the CIC WinClient. What is the config (IMG) path/ transaction code to do this change? Please let me know.
    Thanks in advance.
    --R D

    Hi R D,
    the transaction code is CRMC_CIC_WSP3 -
    'Define Profile for Automatically Created Workspaces'
    Best regards,
    Gerhard

  • BP Fact Sheet adding Multiple BI views using SAP configuration tool

    Hi,
    I am able to add multiple BI reports to the Fact Sheet using SAP standard Configuration. But all the views appear with the Same Heading "BI Report". Is there a way I can change the title "BI Report"  to something more specific to the Report context using SAP Standard Configuration or a BADI.
    E.g. Sales Data Report / Volume Analysis
    instead of BI Report / BI Report
    I am able to do so by creating my own BI inbound plugs for the interface definition in the component BP_FACTSHEET but I do not want to use that approach if their is a SAP standard way of doing it.
    Any advice will be greatly appreciated.
    Sumeet

    Hi Sumeet,
                     If you want to change the title of the view then you have to go particular component and view .Then redefine  this method IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION  and give ur title in description variable.Or you can go to this component BSP_DLC_FS and change the title when you assign the view in particular tiles.
    Thanks
    Vishwas Sahu

  • BP Fact sheet XML error

    Hi
    In BP sales area data Fact sheet tab when I select the view BW BP master data the following error is showing. Why this is error is coming can anybody help me???
    Rendering ERROR
    XML parsing error (3006) in 67102328[stream], line 5, column 14: invalid symbol '<' in literal 'http://<'
    XML
    XSLT
    CRM_CCKPT_CFS_SERVICE_DEFAULT
    Regards
    VN

    Hi,
    I had similar issue and resolved it.
    In our case the issue occured for only specific BPs. So this solution may be helpful where the issue occurs for specific BPs.
    The issue occurs because of special characters Ex : "#" entered in Long text.
    Once you delete these special characters in the text field the issue will be resolved.
    Hope it helps..
    VJ

Maybe you are looking for

  • Just got a new printer and i,m new to all this and i need some help please

    Hello everyone since i,m new here and i,m trying to fined out how to fined how to get the printer claim code for my new printer as this is my first time useing 1 please could someone help me fined it as its doing my head in. My printer is a HP Deskje

  • Error while taking Full DB Backup

    Hi, We had Multiplexed the Archive Log File to default location(Flash Recovery Area) and log_archive_dest_1=/u02/app/oracle/oradata/orcl/archive As too much of archive log's are generated we had removed the log_archive_dest_1. We had scheduled full D

  • Cisco APs not updating after WLC-update

    Hello everyone, I need to update my 5508 WLCs to a newer software, to support new AP-models. Started with AIR-CT5500-K9-1-7-0-0-FUS.aes and AIR-CT5500-K9-7-0-240-0.aes, everything worked fine. Pre-Downloaded the newer Image to the APs, restarted the

  • Adobe Premiere CC"has stopped working error"

    Ran an update on Adobe Premiere CC last night. Now this error occurs. I did a system restore to 1 hour before the update. Adobe worked fine this morning. After I closed the program and logged in tonight the "has stopped working error" displays. Also

  • ITunes 9 won't switch stores

    Hello I am using iTunes 9 and am trying to switch to different countries and doesn't work. It just keeps timing out after trying for a few seconds. I tried on a Mac and on a PC. Neither switches stores. Does anyone else have this problem?