CRM - Business Activity DataSource

Hi Experts,
I have a new requirement in BI where I need to identify the Datasource for Business Activity of CRM. My main DataSources are 0CRM_SRV_PROCESS_H  and  0CRM_SRV_PROCESS_I. which will be linked to the DataSource of Business Activity.
Can anyone help me with name of the Datasource for Business Activity please.
Thanks

Hi
Pleas efind these data sources and folow these links
http://help.sap.com/saphelp_erp2005/helpdata/en/6d/cfb43920aace2ee10000000a11402f/frameset.htm
Technical Name: 0CRM_SALES_ACT_1
http://help.sap.com/saphelp_nw04/helpdata/en/61/ef4529577111d6b21500508b5d5211/frameset.htm
0CRM_SALES_ACT_1 and 0SVY_DATA_1
The table name CRMD_Activity_H gives Business activity details in opportunity transaction
Thank you
MSS:-)

Similar Messages

  • Link CRM Business Activity with ISU notification

    Hi All
    I have a requirement to create a documentflow where ISU notification can be drilled down from CRM business activity.
    Can you tell me which BADI should I enhance or is there any other way of doing? Any help is much appreciated.
    Regards
    Girish

    You need to create mapping between CRM activities and ISU contact, document flow will take care from there.
    Important tables for maintainting mapping in R/3 system
    BPCT_CRM_CLASS - Central mapping settings
    BPCT_CRM_DIRECT - Mapping contact directions
    BPCT_CRM_PRIO - Contact Priorities
    BPCT_CRM_TDID - Contact Text Id

  • CRM business activity E-mail

    Dear Experts,
    We are trying to create E-mail by navigating through following path
    Salespro role: Activity & Cases (Work Centre) : Create E-mail (Logical Link)
    But no transaction is getting displayed. We have seen settings in standard transaction type 0005 E-mail, where business activity category is 401 E-mail. We have also created Ztransaction as copy of 0005 and also seen allowed channels and other transaction type settings required for transaction. But we are not able to see any transaction when we open business activity (Create E-mail).
    Please guide.
    Thanks and regards
    Pankaj Kumar

    Hello,
    please check the fm CRM_ORDER_CHANNEL_SEL_CB, it seems that there is an issue with the maintained channel of
    transaction types.
    Check whether there is any record in CRMC_CHANNEL_AS for the given
    channel.
    If NO, then all the process types are shown.
    If YES, then only those process types are shown which have been
    maintained for the given channel.
    Best regards
    Rene

  • The activity datasource of CRM problem

    Ho,all:
       Now I face a special problem as follow:
       The sale activity of CRM have two kinds.one is business activity, other is task.
       I activate the datasource <b>0CRM_SALES_ACT_1</b> in CRM . SAP BW BP said this for activity data.
       But now I can not upload task data from CRM to BW,and I can not find Task data in display screen, when I execute RSA3 and choose <b>0CRM_SALES_ACT_1</b>.
       Hope it clear, and hope anyone can give me some advice to solve this problem.
    Regards&Thanks!
    zagory

    hi Zagory,
    you need to do something in crm, follow oss 669436-Extracting tasks (activities) for CRM Case Mgmt. into BW
    Symptom
    Tasks (activities) are not available in SAP BW Content, since they are already filtered out during extraction in CRM. Therefore, analysis or reporting is not possible for tasks in BW.
    Other terms
    Extraction, tasks, Case Management
    Reason and Prerequisites
    Tasks are filtered in the standard installation and therefore cannot be reported in BW.
    Solution
    To perform task analyses as part of Case Management, make the following adjustments in CRM and BW:
    1. Make adjustments in CRM
    In CRM, adjust the following part of the CRM_SALES_ACT_1_MAP function module (in the area of line 170-210):
    >> LOOP AT ls_bdoc-activity_h INTO ls_activity_h.
    >>
    >>     .....
    >>     MOVE-CORRESPONDING ls_activity_h TO extract_data.
    >>     READ TABLE ls_bdoc-orderadm_h INTO ls_orderadm_h
    >>          WITH KEY orderadm_h_guid = ls_activity_h-orderadm_h_guid
    >>            BINARY SEARCH.
    >>    IF sy-subrc = 0 AND NOT
    >>       ls_orderadm_h-object_type = gc_object_type-task.
    >>       ......
    Replace the last two lines with:
    > > IF sy-subrc = 0.
    After you make this change, both the CRM business activity (object type 'BUS2000126') and the CRM task (object type 'BUS2000125') are extracted with the '0CRM_SALES_ACT_1' DataSource.
    2. Create an ODS object in BW (for tasks only)
    Create a new ODS object in BW. To do so, go to modeling in the Adminstrator Workbench (transaction RSA1) and create the new ODS object, ideally in the 0CRM_SALES_A (activities) InfoArea. Assign a useful technical name (for example, ZCRMTASK) and a description. You can use the 0SAL_DS01 ODS object as a template. However, you must remove all fields that are not required from the "Tasks ODS" after you generate the new ODS object. Use the 0CRM_ACGUID InfoObject as a key field. Then check, save and activate this ODS object and exit maintenance.
    3. Create an update rule
    A new update rule is required for the new ODS object. Create this for the ODS object directly, selecting the 0CRM_SALES_ACT_1 InfoSource as the source. In some cases, some fields may not be updated. You can ignore this message. To ensure that only tasks are updated into the new ODS object, you must create a start routine. Add the following lines in the routine area (before ABORT = 0):
    > > delete DATA_PACKAGE where CRM_OBJTYP ne 'BUS2000125'.
    Check, save and activate the update rule.
    4. Adjust the update rule for business activities (activities)
    To ensure that the extracted tasks are not updated into the ODS for business activities, you have to adjust the update rule for the 0SAL_DS01 ODS object. Only the update rule of the 0CRM_SALES_ACT_1 InfoSource is affected. You must insert the following line in the routine area (before ABORT = 0):
    > > delete DATA_PACKAGE where CRM_OBJTYP eq 'BUS2000125'.
    Check, save and activate the update rule.
    The new ODS object can now be filled with data. If it is also the case that no data is contained or required in the ODS object for customer contacts, you can execute a normal initial upload of the data from the OLTP.
    5. Adjust the 0CRM_CMG1 and 0CRM_CMG2 InfoSets
    To ensure that the tasks are also available for Case Management reporting, you must extend or copy and then extend the 0CRM_CMG1 and 0CRM_CMG2 InfoSets. To do so, go to InfoSet maintenance (transaction RSISET) and edit the two InfoSets in sequence. In each case, insert the newly created ODS object as an additional InfoProvider. Then connect the key field of the ODS (0CRM_ACGUID) with the 0CRM_CSM_CA InfoObject of the 0CRM_CMGL InfoProvider. This join must be implemented as a left outer join. Check and then activate each of the extended InfoSets.
    A possible analysis has to be created subsequently. Here, it is essential to ensure that you filter on the BUS2000125 object type in the case of pure task analyses (activity task analysis), since, otherwise, customer contacts will also appear in the analysis.

  • Activation of Business Content Datasources in CRM Source system

    Hi,
          My Requirement is to activate all Datasources in CRM Develoment server.I have select the entire node in RSA5 and click "Activate Datasources".But for each Datasources system is askin for develoment request.Is there any procedure to activate all Datasources with single Development Request.
    Regards
    Vishal

    This section describes the general settings necessary for BW Integration in CRM.
    If CRM is not involved in your scenario skip this section.
    Transferring Application Component Hierarchy (CRM)
    Procedure
    This step has to be carried out in the CRM system.
    IMG Menu     Integration with Other mySAP Components &#61664; Data Transfer to the SAP Business Information Warehouse &#61664; Business Content DataSources &#61664; Transfer Application Component Hierarchy
    Transaction code     RSA9
    Confirm the security check: Do you want the content application Transfer Component Hierarchy? with YES.
    If a dialog box appears requesting the user to enter a development class, enter a development class in the customers namespace and choose Save or choose Local object.
    If no error message is sent the application component hierarchy has been transferred successfully.
    Cross Connectivity:
    It describes all settings that are necessary to connect the components of the SAP.system landscape with each other. The settings for each combination of two components to be connected are described in a separate structure node. The separate section headings make it possible to identify the activities required to connect certain components with each other. The section headings for components that are not part of the installation can be skipped
    Connecting SAP BI with SAP ERP, SAP CRM
    Procedure
    To carry out the activity, choose one of the following navigation options in the SAP BI system:
    Transaction Code     RSA1
    SAP BI Menu     Modeling &#61664; Data Warehousing Workbench: Modeling
    1.     Choose Modeling.
    2.     Choose Source Systems.
    3.     Select SAP in the window on the right.
    4.     Choose the Context menu (right mouse click).
    5.     Choose Create.
    6.     Make the following entries:
    Field     Entry
    Target computer (server)                            Server of the SAP ERP, SAP CRM or SAP SRM system
    System ID     System ID of the SAP ERP, SAP CRM or SAP SRM system
    System number     System number of the SAP ERP, SAP CRM or SAP SRM system
    Background user in source system     RFCUSER
    Password for source system     welcome
    Background user in BI     RFCUSER (can not be changed in this activity)
    Password for BI user     welcome
    9.     On the dialog box Please log on as an administrator in the following screen choose Continue.
    10.     Log on to the Source System with your administrator user. Choose the correct client.
    11.     On the dialog box New Source System Connection choose Continue.
    12.     On the Replicate Metadata dialog box, choose Only Activate.
    The building block CRM Lead Analysis describes the all the required activities to analyze the Marketing Lead Analysis data from SAP CRM in SAP Business Information Warehouse.
    The analysis is carried out with the following queries of the InfoCube 0MKTG_C01 CRM - Lead Management (SAP BW Business Content).
    The Lead Management InfoCube contains all the characteristics and data used for the administration of leads. This InfoCube enables you to execute the following standard queries available in SAP BW:
    1.     Channel Analysis: This query is used to determine the best channels by which business partners are contacted in the context of a marketing campaign. Following each marketing campaign, the lead manager can compare the success of a given channel to those of others.
    2.     Efficiency Reporting: This query is used to analyze the efficiency with which leads are qualified. By navigating to the sales organizations and the responsible employees for the leads, it is possible to assess how efficiently lead teams are working and to identify areas for improvement.
    3.     Historical Evaluation: Use to help analyze and compare leads over different intervals (comparison of different quarters or years for example) to see if general characteristics in the processing of leads can be identified for these periods.
    4.     Lost Leads: Provides an overview of the number of lost leads in a particular period and the reasons (implemented as a navigation characteristic) for the loss of the leads. This query is used to analyze the main reasons why leads might be lost, with a view to developing new strategies for overcoming these weaknesses.
    5.     Channel Mgmt.: Top-n Lost Leads (Current Year): In a Channel Manager Portal, this query provides an analysis of the leads lost by a Channel Manager over the past 12 months. Channel Managers can also view the leads lost by their Channel Partners. In a Partner Portal, this query shows the top-n unsuccessful leads distributed by a Channel Manager to a Channel Partner. Partner Manager can see the lost leads of the Partner Employees over the year. Partner Employee can view his lost leads over the year.........
    Before starting activities in this building block, you need to perform or check the following steps:
    1.     From the BW Connectivity building block the following activities have to be completed:
    a.     Local Settings è SAP CRM: all activities have to be completed.
    b.     Local Settings è SAP BW: all activities have to be completed.
    c.     Cross Connectivity è Connecting SAP BW with SAP R/3, SAP CRM, SAP SRM: Connect your CRM System.
    2.     From the General Settings for BW Integration building block the following activities have to be completed:
    a.     In section General Settings in CRM all activities have to be completed.
    b.     In section General Settings in SAP BW all activities have to be completed.
    Hope it will helps you........

  • Business Activity in SAP CRM 7.0 WebUI

    Hello SAP Experts,
    In SAP CRM 7.0, under maintain activities, I have assigned categories to class interaction log, appointments and tasks.
    The same categories have been assigned to some business activities. For example Category Sales Call (001) is assigned to Interaction Log. The sales call is in turn assigned to Transaction Type- Business Activity.
    When I log on to web ui, I am able to see this business activity under Interaction Log and create the transaction.
    In the same way, when I assign category u2013CX4 (Telephone Call) to class Phone Call to a Transaction Type-Sales Call (0001-business activity), I am not able to see the same in web ui.
    The same holds good when categories are assigned to Class Miscellaneous, Letter, Meeting, E-mail etc, are in turn assigned to transaction types are visible in web ui.
    Kindly clarify, whether all the business activities fall under APPOINTMENT, INTERACTION LOG, TASK, E-MAIL AND VISIT PLAN in WEB UI.
    The other category class, apart from the above mentioned, where can they be used?
    If yes, how do I do the customizing which would enable me to see all in WEB UI?
    Thanks in advance
    Regards,
    Srinivasan.R

    Hi Raghavendran,
    I am facing the same problem. Other than Appointments,Tasks,Email and Interaction record I cannot create any other Activities.
    I defined a new Transaction type assigned the category Misc but cannot create the Activity on WEBUI. As Raja suggested I have also assigned the Channel as WEBUI and ICWEBCLIENT but still does not work. Is there any Role specific customization that needs to be performed?
    Please let me know if your issue is resolved and how you resolved it.
    Any help will be greatly appreciated.
    Thanks,
    Pooja

  • In which table in CRM can i find data in business activity details?

    Hi
    In which table in CRM can i find data entered in business activity details in opportunity transaction.
    Please advice .
    Thanks,
    Vaishnavi

    found the table name CRMD_Activity_H

  • Business Activity details in Opportunity transaction in CRM table.

    Hi
    In which table in CRM can i find data entered in business activity details in opportunity transaction.
    Please advice .
    Thanks,
    Vaishnavi

    look at tables CRMD_OPPORT_H and CRMD_ACTIVITY_H.
    regards.

  • Business activity  and customer contact

    I have a requirement , When we create a Business activity in CRM that should should create and maintain in ISU( R3)  as Customer contact with the same number range ..
    Like wise if I create a customer contact in ISU that should create in CRM as Business contact with same number range..
    Please suggest me what all the customizations required for this ?
    Thanks  & Regards,
    Rahul D

    Hi,
    If this is a Characterstic defined - definitely this will be getting populated from Billing document in SD Module. Secondly, there could be a derivation rule defined as per your configuration. Derivation rules can be checked in Transaction code - KEDR.
    Thanks
    Murali.

  • Customer contact and business activity

    Hi,
    I have a requirement , When we create a Business activity in CRM that should should create and maintain in ISU( R3) as Customer contact with the same number range ..
    Like wise if I create a customer contact in ISU that should create in CRM as Business contact with same number range..
    Please suggest me what all the customizations required for this ?
    Thanks & Regards,
    Rahul D

    Hi Shaughterdm,
    Welcome to Numbers discussions.
    When spreadsheets first appeared, I'm going back to the original Lotus 123, they were used by many folks and organizations as flat file databases so the short answer is yes you could do it.
    After reading your request a better answer would be to look at a relational database such as File Maker Pro and their new Beneto perhaps. Of course it depends on your needs, type of data recorded etc. Based on your reporting desires personally I'd lean towards database not a spreadsheet.
    Do evaluate your needs, what you want out of your data now and down the road. I wouldn't want to start with a spreadsheet then realize months, years later it should have been in a database—been there done that got that tee shirt and scars. I've worked with many that this happened to. UGH!
    I'm sure others will jump in here with other more helpful suggestions.
    Sincerely,
    RicD

  • Object Link to CRM business object in Trex search result list

    Hello Everyone,
    has anybody sucessfully configured the functionality "Object Link Properties" which is described in the Document <a href="http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000647974&_SCENARIO=01100035870000000112&_OBJECT=011000358700005796662005E">Configuring the Business Package for SAP CRM 5.0 SP01 (EN)</a> on Page 169? I'm not the Knowledge Management specialist and would get some help on this topic. Has anybody detailed steps how to configure this?
    It shounds interresting as the result would be that when the User does a full text search for Attached Documents he will also get a link to the original CRM business object like Activity, Account or Opportunity.
    Regards
    Gregor

    Hi Gregor,
    Thanks for your reply.
    using windows explorer mechanism i can see the folders that i created in the CRM config.
    Now in Portals KM i did the following steps:
    a) Created an HTTP Data Source : with URL = the URL that the service crm_prt_km_dav generates.
    http://abrusux156h.pch.chem.corp.local:8086/sap/crm/crm_prt_km_dav
    b)Created a memory cache
    c)Created a WebDAV respository manager with the following details:
    Description :WebDAV
    Prefix : /PRD  (PRD is the BO Hierarchy name that i have set in the CRM config)
    System ID : T86 (Sames as what was set in HTTP Data Source)
    Repository Service : svc_acl
    ACL Manager cache : ca_cm
    Security manager : ACLSecurityManager
    Memory Cache :webDAV(same as what i had set in step b)
    I restarted the portal server. and then tried doing the test by going to
    Content Admin ->KM Content ->root
    But i dont see the /PRD folder out there.
    Any clues on that???
    Thanks,
    Anand

  • Business Activity - Interaction Record

    Hi Gurus,
    We have created one acitivity type ZACT transaction type for business activity. When we create this activity in GUI/WEBUI using BP_Poweruser Business Role in WEB UI we could able to see the questionnaire attached to the business activity.
    But when we use the IC_Agent Business Role in WEBUI, this is being taken as interaction record, but the activity is not having questionarie attached to the activity.
    What is the process of getting the questionnarie attached to Business Activity,in the interaction record.
    Thanks in advance.
    Regards
    Vinod

    Dear Vinod,
    We are using CRM 5.0 and creating questionnaires. Steps of Configuration
    Defined Questionnaire
    Defined Sections
    Defined Questions
    Defined Answers
    Saved the Questionnaire
    Activated the Questionnaire
    Defined the Determination for Questionnaire
    Defined Qualification Levels for the questionnaire.
    Visit the following link :
    Re: Custom Questionnaire - Leads
    it might be helpful to you.
    Regards,
    Ankush

  • Create business activity with products

    Hi,
    I am Trying to create a business activity with products. Adding  Activity Journals TAB in the activity u201CBus Act.:With Prodsu201D. The issue is that when I am trying to make a Journal template type in (CRMM_JOURNAL : Define Activity Journals) I am not getting my own transaction type under Transaction Type option (I have copied my own transaction type  from the standard u201CBus Act:With Prodsu201D activity). I only get the standard activity type (0020 :Bus Act.:With Prods) in my drop down box. (attached is the screen shot)
    Any ideas
    I am using SAP CRM 5.0.

    Hi,
    first your transaction type has to be active.
    Next, you need to assign item categories ACT0, ACT1 and ACT in SPRO, in order to use activity journals.
    All three.
    Regards

  • Business Activity Upload

    Hi,
    I am new to CRM and want to know how we can manage an upload for a Contact Log and Business Activity to be maintained in the CRM system.
    I found an object in Emigall (BCONTACT), but am not too sure.
    Thanks and Regards,
    Karan

    Hello Karan,
    Transaction BCT0 and BCT1 are used to create and maintain Contact Log..
    Also you can see object BCONTACT in transaction SWO1...
    See:
    http://help.sap.com/saphelp_utilities472/helpdata/en/38/1a6c35a018d041e10000009b38f839/frameset.htm
    Hope this is helpful.
    Regards
    Olivia

  • Business activity duration error

    Hi,
    When I create business activity on my crm system duration field occurs initial in some cases.
    Duration is INITIAL in the case shown below,
    18.01.2008  00:00 - 18.01.2008  02:00
    Duration is true in the case shown below,
    18.01.2008  02:00 - 18.01.2008  03:00
    Date profile is 'Activity: Actual' which use date rule 'Actual Date (Activities)'. Time zone: EET.
    Thanks,

    Do you have a source control system  (svn, git,...) you use with the application?
    The Model,jpr file is corrupt which may cause trouble later. Right now everything looks working, but there might some display problems when you open e.g. the application module or VO.
    Save the current (corrupt?) jpr file and try to restore it from the repository until you find one which loads without the problem. Once you have on select the project in the application navigator and click on refresh (ctrl-r). This should add missing content back again.
    Timo

Maybe you are looking for