Logging activities in CIC

Hi,
I need information about the logging of activities in CIC.
First thing I want to know is where are the activities that I already can see in "SPRO -> IMG -> Customer Service -> Customer Interaction Center (CIC) -> Customer-Specific System Modifications for CIC -> Define Customer-Specific Activities" stored/maintained?
Second thing is how can I create new Activities that actually make sense. Meaning to create an activitiy that actually exists for the CIC like activity=AGENT_LOGIN description=AGENT LOGIN and not something like activity=TEST description=TEST (what kind of activities exist)?
Third thing is where can I read those logs later?
Thanks and regards,
Alex

Hi Suneel,
You can use the transaction CRMD_BUS2000126 to see all the activities.
Also, refer the table CRMD_ORDERADM_H and CRM_ORDER_INDEX.
You can execute the report CRM_ORDER_READ to view the same, just pass the transaction number in Object ID field.
<b>Reward points if it helps.</b>
Regards,
Amit Mishra

Similar Messages

  • Searching all activities in CIC navigation area*****

    Hi collegues
    We are working on CRM 4.0 , We have configured CIC, now we want to search
    1.all the business activities in CIC , but in navigation area we are having the option of "Business activities" in locator search by using this if we search for any business activity it is giving no result .. why is it so??
    2. we want to know the all business transactions which has been taken place in  a period of time that is leads,opprtunities,business activity,complaints.. which are taken place in CIC , but we dont have option of "ALL" in locator search.How can we add this to the locator search????
    please guide us for the above
    thanks in advance
    suneel

    Hi Suneel,
    You can use the transaction CRMD_BUS2000126 to see all the activities.
    Also, refer the table CRMD_ORDERADM_H and CRM_ORDER_INDEX.
    You can execute the report CRM_ORDER_READ to view the same, just pass the transaction number in Object ID field.
    <b>Reward points if it helps.</b>
    Regards,
    Amit Mishra

  • Ability to log activities against Partners

    Is it possible for our sales users to log their activities directly against partners?  We have a requirement to log phone calls, tasks, emails, and appointments against our partner list / partner contact list.
    Thank you,
    Kelly

    Hi Kelly,
    Creation of Activities from Partners work center may be required to maintain the relationship between these two objects in Application studio.
    Did you check the option to select more Roles in Activities and try to add your Partner ? again you can do this in Activities work center.
    Thanks & Regards
    Naren..

  • Lifelog not logging activities

    I am using lifelog with my swr10 and my xperia z1. It logs everything for me except for internet browsing, Facebook, music, and games. I have contacted Sony and they suggested clearing the lifelog data. I did this and it worked for about ten minutes. I told them this and their only other suggestion was to hard reset my phone. I thought I'd ask the forums before I did that. I hope you guys can help.
    Ella

    I have Z1 and SWR30 and if I browse internet using Chrome,in lifelog I geta small world icon where it says (chrome less than ... minutes). How is it for you? There is a setting at the end of all activities called edit,where you can uncheck any of them.
    All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

  • Java Logging Activities

    hello,
    is there any sort of TextArea box, formatted in a way that you can add log messages, like disconections, attempts, etc.
    with a circular limit.
    any ideas if there is a class existing? or code it all by hand ?

    Hello,
    I have written some code, but not really tested it yet. It is for use with Java 1.4 logging and is a TextAreaOutputStream that you can then use with logging as a handler. m_logger is an instance of Logger.
    JTextArea ta = getlog_pane();
    LogIt.addHandler(ta,3000);
    /** Adds a user declared handler. */
    static public void addHandler(JTextArea text_area, int line_count_limit) {
         TextAreaOutputStream taos = new TextAreaOutputStream();
         taos.setTextArea(text_area);
         taos.setLineCountLimit(line_count_limit);
         StreamHandler sh = new StreamHandler(taos,new SimpleFormatter());
         m_logger.addHandler(sh);
    }     // addHandler
    07/05/2009 MAW ENH0000000 First written
    package com.pacsol.util;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.util.logging.Level;
    import javax.swing.JTextArea;
    /** An OutputStream that sends text to a JTextArea (which you must supply).
    * This has been designed for use with LogIt so that log entries can be
    * sent to a log window. */
    public class TextAreaOutputStream extends OutputStream {
         static final int c_line_count_limit_not_set = -1;
         private JTextArea m_text_area;
         private int m_line_count_limit = c_line_count_limit_not_set;
         void setTextArea(JTextArea ta) {
              m_text_area = ta;
         }     // setTextArea
         void setLineCountLimit(int line_count_limit) {
              m_line_count_limit = line_count_limit;
         }     // setTextArea
         public void write(byte[] arg0, int arg1, int arg2) throws IOException {
              String ss = new String(arg0,arg1,arg2);
              m_text_area.append(ss);
              enforce_line_count_limit();
         }     // write
         public void write(byte[] arg0) throws IOException {
              String ss = new String(arg0);
              m_text_area.append(ss);
              enforce_line_count_limit();
         }     // write
         public void write(int arg0) throws IOException {
              byte[] bb = new byte[] {(byte)arg0};
              String ss = new String(bb);
              m_text_area.append(ss);
              enforce_line_count_limit();
         }     // write
         private void enforce_line_count_limit() {
              if (m_line_count_limit == c_line_count_limit_not_set) {
                   return;     // not set
              }     // if
              int line_count = m_text_area.getLineCount();
              if (line_count <= m_line_count_limit) {
                   return;
              }     // if
              int diff = m_line_count_limit - line_count;
              try {
                   int offset = m_text_area.getLineEndOffset(diff);
                   m_text_area.replaceRange("",0,offset);     // remove first bit
              }     // try
              catch (Exception e) {
                   LogIt.log(Level.WARNING, "Error trying to limit lines.",e);
              }     // catch
         }     // enforce_line_count_limit
    }     // TextAreaOutputStreamHope that helps.
    Mark W.

  • SLG1 Transfer logs stopped logging X-fer activities

    Hello Experts,
    We are on GTS 10.0 and have come across an issue where the transfer log using SLG1 txn has stopped logging activities for the Orders flowing from ECC.
    Could this be because the log limit has exceeded and if there is a way to make it work without having to delete the historical log that has been there for last 5 months since Go-Live?
    Any help is much appreciated..
    Regards,
    Prashant.

    Hi Prashant,
    Use SLG1 to display the last logs available.  In the top pane of the results screen, you can see the Log Number.  Does it look as though the Number Range is exhausted?  If it is, then all other logging should also have stopped at that time - did you check the logs for other objects?
    Regards,
    Dave

  • Execute button Not appearing in SWI1 Log

    Hi all,
    We are executing a Vendor Workflow i.e is when ever a vendor is created a workflow is triggered and mail is sent for approval.
    There is 2 z tables for agent assignment. It is maintained.
    After creating vendor we can approve it through a mail
    or we can go to Swi1 click the log of that task and inside the log we have a tab Activities.
    in the activities tab we should get buttons Execute,Reject,Create.
    But now we are not getting those buttons inside the log activities tab.
    We verified all the role tables but i dont know wy its not appearing.
    Pls experts help me out with suggestion,
    Awating for ur reply,
    Regards,
    Venkatesh.S

    it looks like your transaction is marked as Easy Web Transaction.
    go to transaction SE93 , enter your transaction and change the radiobutton selection from Easy Web transaction to Professional user transaction and save it.
    run it again, now you can execute from menu->program->execute
    Regards
    Raja

  • CCMS and Security Audit log

    I have seen a huge number of companies who do not use SM19/SM20 or RZ20. It is not configured. example I worked for 3 clients(user base 14000, 16000,1000) and none of them have this configuration.
    Do you know why is it so if it is not configured at your place.
    Thanks
    Edited by: Pankaj Jain on Sep 26, 2009 7:02 PM

    Performance impact is dependent on the Hardware sizing and the daily monitoring activities together with the back up schedule by the BASIS team.
    My experience is: I have seen maximum of clients using this for logging activities of ALL users in the system. In other few cases, it is restricted to Super and Special users.
    Please go through the document: [Security Audit Log|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/2088d9d4-e011-2a10-bba9-90548dbc2d6a&overridelayout=true] (it's a bit Old)
    Try searching Community with SM20 / SM19 / Security Audit Log search strings.
    Regards,
    Dipanjan

  • Security Audit Log for XI IB

    Hello,
    on the ABAP Stack it is possible to activate the security audit log, to log activities on certain objects/functions. Is there also a possibilty to do this for the JAVA-Stack.
    We have for legal reasons to log, want users are doing on the productive XI system. E.g. we wanna log if someone is changing the value mapping or configurating the adapter.
    Regards, Werner

    Hi,
    chk out these links
    Audit Log
    http://help.sap.com/saphelp_me21sp2/helpdata/en/23/c9833b3bb1780fe10000000a11402f/content.htm
    regards
    jithesh

  • Application Log in SAP AII

    The following log <b>Backend integrated documents are not supported</b> is found while trying to give “<b>complete document for free pack</b>” in exception handling (AUTO-ID COCKPIT).
    Can anyone say what could be the reason for the specified log?

    Hi Hari,
    System logs activities in SAP GTS system for various objects, including document blocks in SAP Compliance Management for the customs documents that are replicates of logistics documents from the feeder system and similar such data is also recorded by the system for references at a latter stage for other areas as well. These are known as application logs. For a quick reference, you can use Tcode SLG1 and look at the various things it has. I hope this is what you asked for. For more information, please feel free to ask and of course keep posting.
    Regards,
    Aman

  • Transactions Vs Redo log

    I want to know what happens when transaction activity level of a database decreases?
    Is it increase , decrease or has no effect on the REDO log activities ?????
    Is it increase or decrease the deadlock detection activity of the database??????
    Regarding deadlocks I have a small doubt as well. Suppose there are 10 transactions, But suddenly all transactions get deadlocked. SO infact the transaction activity level goes down as all are stuck. But Shouldn't it INCREASE the deadlock detection activity here???????

    damorgan wrote:
    Redo logs sole purpose in Oracle is for recovery ... and they only contain committed transactions (from UNDO and data tablespaces).
    In some cases online redo logs may contain uncommitted transactions as described in 11.2 Concepts Guide "Basic Instance Recovery Steps: Rolling Forward and Rolling Back" figure: http://download.oracle.com/docs/cd/E11882_01/server.112/e10713/startup.htm#BABBBFFG.
    See also http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1670195800346464273

  • Activity app not logging

    Wondering if any one here have had issues with their Activity app stopping from logging data? On my 38mm Sport model SG, after a week of faultless use, today I noticed that it has stopped consistently logging activities. This morning it did log for an hour or so and none since (evening now). Have tried flicking all the options on and off, rebooting the watch and now finally resetting the watch. Still not logging.
    Any idea what could be issue? Anyone else having the same?

    It should have been installed when you first paired your watch BUT it might be on the last screen. That is what a lot of folks have seen - myself included - it is put on the last screen, sometimes all by itself.

  • How to give block trace in workflows?

    I need to trace particular activities and action in work flows ..How can we give the <block trace =true>?
    I am trying to give right after the <Activity> which resulted to error.
    <Activity id='0' name='start'>
    <block trace='true'>
    <Transition to='Create OU Structure'/>
    <WorkflowEditor x='43' y='10'/>
    </block>
    </Activity>
    Appriciated if give one example
    Edited by: siteminder on Sep 16, 2008 11:16 AM

    Thanks frogger.I tried this option..giving some import xml errors.I will keep update after troubleshoot.
    Meanwhile I found another way to trace all workflows log activities.
    Open System Configuration object in the debug
    modified the below and exported.All workflow logs are writing to given file name workflow.log
    <Attribute name='workflow'>
    <Object>
    <Attribute name='consoleTrace' value='false'/>
    <Attribute name='fileTrace' value='C:\Idm7.1\Activesynclogs\workflow.log'/>
    <Attribute name='maxSteps' value='5000'/>
    <Attribute name='resultTrace' value='true'/>
    <Attribute name='retainHistory' value='true'/>
    <Attribute name='traceAllObjects' value='true'/>
    <Attribute name='traceLevel' value='4'/>
    <Attribute name='validationLevel' value='CRITICAL'/>
    </Object>
    </Attribute>

  • Regarding Extracting Data from SAP CRM

    Hi,
    1) What are steps to extract data fron  SAP CRM? I heared that we get different types of errors while extracting data from SAP CRm to BW when compared to BW
    2) From which tables BW system is getting data when we extract data from SAP CRM Lead management, Opportunities, Activities and CIC?
        Can anybody please let me know the answers for these ..........
    Thanks in Advance,
      Sowji
    [email protected]

    Hi Sowjanya,
    Pls ch this link:
    regarding bw crm extraction
    CRM extraction
    CRM Extraction
    http://help.sap.com/saphelp_nw2004s/helpdata/en/be/92fb3b28904f73e10000000a114084/frameset.htm
    http://help.sap.com/bp_biv335/BI_EN/html/BW/SalesAnalysis.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f2910623-0c01-0010-de8f-d1926988a986
    http://help.sap.com/bp_biv135/html/bw.htm
    http://help.sap.com/bp_biv135/html/BW/SalesAnalysis.htm
    http://help.sap.com/bp_biv235/BI_EN/index.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/af/ed833b2ab3ae0ee10000000a11402f/frameset.htm
    http://help.sap.com/bp_biv235/BI_EN/index.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/af/ed833b2ab3ae0ee10000000a11402f/frameset.htm
    http://help.sap.com/bp_biv235/BI_EN/html/BW/CRMAnalytics.htm
    http://help.sap.com/saphelp_crm50/helpdata/en/1a/023d63b8387c4a8dfea6592f3a23a7/frameset.htm
    Steps:
    1) Activate the application component hierarchy (tcode RSA9). Changes made to the application component hierarchy in the CRM system can be transferred to the BW using the "Edit Application Component Hierarchy" (SBIW - Postprocessing of DataSources).
    SAP Note 434886 must be implemented in CRM 3.0 before the application component hierarchy is activated.
    2) Activate the Business Content DataSources (tcode RSA5).
    Select/enter the application component and choose Execute (F8).
    To compare the shipped and active versions, choose the 'Select Delta' pushbutton. If there is no active version of the DataSource, it is selected automatically.
    To activate the shipped version, choose the 'Transfer DataSources' pushbutton.
    3) Management of the versions of the BW-Adapter metadata (tcode BWA5). All DataSources are displayed that are managed by the BW Adapter.
    As in transaction RSA5 (Service API Metadata Activation), the 'Select Delta' function can be used to select the inactive DataSources or compare shipped and active versions.
    You can also go directly to the screen for maintaining DataSources that are managed by the BW Adapter.
    The 'Compare Version' function makes a detailed comparison of the shipped and active versions.
    All BW-Adapter metadata is considered when versions are compared:
    Header information (Table SMOXHEAD)
    Mapping information (Table SMOXRELP)
    Global selection conditions (Table SMOXGSEL)
    Attribute key fields (Table SMOXAFLD)
    Datasources used in CRM-BW extraction are:
    0crm_sales_act_1,
    0BBP_STSMA_TEXT
    0CRMFOCST_TEXT
    0CRM_ACCPLN_ATTR
    0CRM_ACCPLN_TEXT
    0CRM_BILL_BLCK_TEXT
    0CRM_CANC_PARTY_TEX
    0CRM_CANRSN_TEXT
    0CRM_CATEGORY_ATTR
    0CRM_CATEGORY_TEXT
    0CRM_CLASS_TEXT
    0CRM_DECOTP_TEXT
    0CRM_DECO_TEXT
    0CRM_DIRECT_TXT
    0CRM_ECROPT_TEXT
    0CRM_FINCLASS_TEXT
    0CRM_ITM_OBJ_TYPE_T
    0CRM_ITM_TYPE_TEXT
    0CRM_JRGUID_TEXT
    0CRM_OBJ_TYPE_TEXT
    0CRM_OPGUID_TEXT
    There many more!
    Check the datasources in rsa6 of crm system under CRM node. Documentation is available in SAP help.
    *pls search SDN For more info*
    *pls assign points if info is useful*
    Regards
    CSM reddy

  • TDMS in same system

    Hello TDMS Group Members,
    We had setup TDMS environment,
    Our BI 7.0 sandbox system is central system.
    Production copy sandbox client 100 is sender
    Production copy sandbox client 120 is receiver
    Both sender and receiver are on same ECC 6.0 system.
    Is there any issue foreseen or any issue to sender client data,
    Any information would be highly appreciated.
    Thank you,
    AKL

    hi Pankaj,
    i want to ask you regarding TDMS logging activities, if you could help me.
    I have written my own program for creating conversion scrambling rules and when i run it in the tdms interface
    i want to do the logging of this stuff for e.g from which user , time, date , and all the same as SAP default logging
    protocols are doing, i am going through this program cnv_mbt_def_046 again and again, but so far not successfull to know that
    how is the mechanism working, if  you could help me please how could i logg all the activities, as the SAP default logging
    procedure is working.
    Thanks in advance,
    regards,
    Umer Malik

Maybe you are looking for

  • Sync 1 socket between 2 threads.

    consider this code: Socket sok = new Socket('192.158.9.42", 5432); ThreadClass_1 t1 = new ThreadClass_1(sok); t1.start(); ThreadClass_2 t2 = new ThreadClass_2(sok); t2.start(); t1 needs to download a large file. then t2 takes over for the remaining w

  • On button power failure -- causes intermittent start

    This behavior started about one month ago on my 2008 mac pro. It does not seem identical to anything I have seen posted, so I discuss here. Previously the computer has been rock solid for two years. I have replaced the battery on the motherboard, upd

  • Xml-fragment Issue retrieving Nested element data

    Hi, I've problem retrieving the nested element data from the xml. Using XmlBeans I am getting null when retriving the inner element. I printed the nested element xmlobject it has Xml-Fragment wrapped. I tired using below code it doesn't throw any err

  • Fatal error: Call to undefined function virtual() /login.php on line 1

    How could this be? I created it using the Login form wizard.

  • Authentication on 3750 against ACS

    After making AAA changes on the catalyst 3750 the key configuration part was missed and the login attempt on the switch is getting failed now. There are no logs in the "failed attempts" on the ACS. What is the solution now?