Contact center data

Hello all
i want that agents to see which number the customer dialed before or with which agent he talked to ? i want to make database integration.Agents must see these data on the agent desktop explorer.How can i grab that data from contact center ? By default what kind of database ccx use ? For example someone talked to one agent and he called again,the new agent must see data abaut him before.
thank you

Hi
All the historical data is written to a database called db_cra that is replicated between the UCCX servers. The DB definition is here:
http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_7_0/user/guide/uccx70dbschema.pdf
You would have to look into this database, find a previous call from that customer (identified by calling number, or account number if you have scripts that store that sort of information) which would be in the 'ContactCallDetail' table, find the agent (in the 'Resource' table) that handled the call by checking the 'AgentConnectionDetail' table.
This example would retrieve the last 10 calls made from cust with the account number 1234999001 but you could easily change it to match the calling number in the CCD table.
select top 10
ccd.startdatetime,
ccd.applicationname,
ccd.customvariable1,
acd.callwrapupdata,
CASE disposition
WHEN 1 THEN 'Abandoned'
WHEN 2 THEN 'Answered'
WHEN 3 THEN 'Dequeued'
WHEN 4 THEN 'Handled by System'
WHEN 5 THEN 'Sent to another queue'
ELSE 'Unknown'
END as disposition
from db_cra.dbo.contactcalldetail AS ccd
LEFT OUTER join agentconnectiondetail AS acd 
on (ccd.sessionid = acd.sessionid and ccd.sessionseqnum = acd.sessionseqnum)
LEFT OUTER join contactqueuedetail AS cqd 
on (ccd.sessionid = cqd.sessionid and ccd.sessionseqnum = cqd.sessionseqnum)
where ccd.callerentereddigits=1234999001
order by ccd.startdatetime desc
Regards
Aaron
Please rate helpful posts...

Similar Messages

  • Report on Contact attached data

    Hi Experts,
    I am working on CRM 2007 Employee Interaction center. we have a requirement to pull call attached data into crm and later pull it to BI from crm to make reports out of it.
    So can anyone share a doc on how to pull contact attached data(CAD) to CRM(config steps) .
    Thanks in advance.
    Sudhakar

    Hi Sudhakar,
    Call-attached data is optional and comes in addition to data already delivered by the ICI-certified third-party CTI solution. This solution shoud already deliver on each incoming call - out of the box - caller number (ANI), which can be enough to have caller automatically identified.
    In case you need additional information to help identify caller, or to gather information that caller has keyed in on his phone during an automated dialog (Interactive Voice Response), then you have the possibility to transfer this extra information from the CTI solution to your SAP CRM system via ICI interface.
    What should appear in the CAD is something you have to define with the CTI vendor. Have you checked with your CTI vendor if they don't already have an analysis tool of IVR dialogs ?
    Let me present the example of what we did during an integration with a Cisco CTI, used in a service scenario where callers refer to service requests (creation, inquiry):
    We agreed with the CTI vendor that they set-up an IVR script where caller gets asked if he is calling about an existing service request or not. If yes, he is asked to enter the number of the service request. If not, he is asked to answer 2 questions that will already help the agent who gets the call to better qualify it. Relevant answers are also displayed in the IC alert area; they are clickable (e. g. to directly navigate to service request).
    We then agreed on following xml tags:
    <ItemAttachedData>
      <Application id="SAP-IC">
        <CV01>+321234567</CV01>          caller number (CLID)
        <CV02>+327654321</CV02>          called number (DNIS)
        <CV03>1</CV03>               OPEN TICKET OR NOT
        <CV04>7777777</CV04>          TICKET #
        <CV05>1</CV05>               ANSWER TO QUESTION 1
        <CV06>1</CV06>               ANSWER TO QUESTION 2
        <CV07/>
        <CV08/>
        <CV09/>
        <CV10/>
      </Application>
    </ItemAttachedData>
    In SAP CRM customizing, you can specify an XSL transformation to postprocess this CAD. It is interesting to note that SAP's implementation of the XSLT processor allows call of ABAP methods, where you can easily code evaluation of CAD, and even save CAD to a custom DB table.
    If you want to learn more about XSLT and ABAP, I recommend following book; it is a good investment!
    http://www.sap-press.com/products/XML-Data-Exchange-using-ABAP.html
    Hope I made this topic clearer
    Kind regards
    Walter

  • Direct CTI Integration with Oracle Contact Center Form

    Hi,
    We are on 11.5.10.2 and we are trying to implement the "Direct CTI Integration" solution that Oracle suggested to enable Screen Pop in contact center form based on data coming from a third party CTI. In our case we are using Genesys TServers for CTI.
    In this document (The equivalent R12 document is on metalink titled DIRECT CTI Integration - Oracle EBS Contact Center & Third Party CTI [ID 734902.1]), Oracle solution involves little to no coding from the Oracle Apps side other than a few profile setups. We are not able to get started on this because we did not find some of the profile options. And the forms did not have the changes that Oracle said it should have. Obviously, we need to apply some patches but not sure which one.
    I am wondering if there are any users and customer who have implemented a similar solution that can help us get started.
    Thanks.
    Regards,
    Venkat

    It has been a while since we did a test of the Direct CTI integration at my company. We are on a 12 release so the patches are included, unfortunately I can't help there.
    Word from the Wise: Be Prepared....
    The only development on the Oracle side that was necessary was the configuration of the profile settings. You select a port in the settings which will then instantiate an http listener on the user's thin client.
    The development on the CTI side is intensive....you must code an http listener on your client CTI to enable two way communication between the Oracle thin client and your 3rd party CTI client (most likely residing on the desktop of the user PC, in my case, Cisco CTIOS).
    Unless Oracle has since changed their model, you cannot just send a blind screen pop to the Oracle client due to the required 2 way communication. There are a lot of request/response's involved (registers, readys, etc). While it is absolutely necessary for an HTTP listener to exist on the Oracle side, I believe that it is unnecessary to have the level of communication required from the 3rd party CTI. The CTI needs the call control, I just don't believe that Oracle needs to know about it.
    If I have incorrectly interpreted or understood the model/options, I hope someone can correct me.
    Thanks,
    Derek

  • CAD from Contact center into SAP CRM

    Hi All,
    I am no SAP expert, but the following is what we are trying to achieve:
    -A call comes into a contact center application
    -Via an integration this call is send to a SAP ICI webinterface and ends up at the agent logged on to that SAP session.
    Now we have an awkward situation that the original number coming from the PBX is rather misformed +00031123456789. What we are expecting is +31123456789. The number coming from the PBX can be changed, but that is going to have consequences for all other people that are not connected to SAP, so doing this is not an option.
    What I have been reading about is that it is possible to get CAD (Call Attached Data) to be send into the SAP ICI environment.
    The contact center application is delivering the data in the following XML format:
    What I am interested in is to map all these fields into such a way that I can use them in the SAP ICI interface.
    I have been reading Link:[; and in there it is mentioned that there needs to be a mapping between these fields and an XSLT and ABAP. And a reference to a book.
    Is there anybody that can help me with this? Or give me some other advice that could help me out in this case. I would very much appreciate it.
    Thank you all very much for your input.
    Best regards,
    Corné

    Hello Corné,
    I'm guessing the reference was to my book, "Maximizing Your SAP CRM Interaction Center" from SAP Press, where on page 396 I offer a paragraph on how to identify a call via CAD rather than ANI.
    Here's the excerpt:
    How to Identify Account via Call Attached Data (CAD)
    Is the Interaction Center able to identify a customer via account number contained in call attached data (CAD) rather the via automatic number identification (ANI) service?
    Yes, it is possible to identify a customer by extracting the customeru2019s account ID from the call attached data (CAD). This can be configured in the IMG activity Define Account Identification Profiles (transaction CRMC_IC_BPPROF) in the fields under Contact-Attached Data Extraction. In the CAD Application ID field, enter the value that appears in the application ID tag that appears in the XML code of the Interactive Voice Response (IVR) system that collects the customeru2019s account number (e.g., u201CGenesys-CADu201D). In the XSLT file field, enter the name of the XSLT program that is responsible for extracting the account ID from the contact attached data. You are responsible for creating this XSLT file. However, SAP delivers a sample XSLT file that you can reference, named CRM_IC_BPIDENT_EXT_IAD_TO_ABAP. SAP also provides a sample program showing how to extract CAD data from, for example, Genesys named CRM_IC_BPIDENT_EXT_IAD_GENESYS. See SAP note 707104 for additional information.
    Best regards,
    John

  • Ask the Expert: Cisco Unified Contact Center Express (UCCX) Version 10.0 - Upgrade, Migration, and New Features Overview

                With Abhiram Kramadhati 
    Welcome to the Cisco Support Community Ask the Expert conversation. This is an opportunity to learn and ask questions about the upgrade, migration methods, and new features of the latest released Version 10.0 of Cisco Unified Contact Center Express (UCCX) with Cisco expert Abhiram Kramadhati.
    Abhiram will address the following on the latest release of Cisco UCCX Version 10.0:
    Installation
    Upgrade from previous versions - both Linux and Windows   
    Migration from MCS to Cisco UCS environment - Different methods and best practices
    New features - Overview and limitations
    This discussion will center on install and upgrade best practices, changes in hardware support, and migration methods from MCS to Cisco UCS. He can also briefly discuss the new features introduced in 10.0. The discussion focuses the latest versions, but queries about general Cisco UCCX topics can be addressed too if time allows.
    Abhiram Kramadhati is an engineer with the Contact Center Backbone group. He has been working with Cisco UCCX since he joined Cisco. During two years at Cisco, he has built his expertise around Cisco UCCX telephony applications, Java Telephony API (JTAPI) integration, Cisco UCCX system behavior, LDAP components, and Cisco UCCX as IP interactive voice response in Unified Contact Center Enterprise (UCCE) environments. He also works on other technologies, including Unified Communications Manager and UCCE. He has been involved in many technical escalations in the Asia Pacific region. Abhiram also holds a CCIE in voice (40065).
    For more details about this topic, refer to the recently published Tech-Talk Video and Blog.
    Remember to use the rating system to let Abhiram know if you have received an adequate response. 
    Abhiram might not be able to answer each question due to the volume expected during this event. Remember that you can continue the conversation in the Voice, Video, and Collaboration  community,  sub-community, Contact Center discussion forum shortly after the event. This event lasts through January 31, 2014. Visit this forum often to view responses to your questions and the questions of other community members.

    Hi Anurag,
    Thanks for your questions.
    1:Is there change in DB architecture as CUIC is the only option as compared to previous linux version UCCX ?
    I assume this is from the tables regarding historical data. The database schema essentially remains the same since UCCX 9.0 had CUIC too and we had a seperate DB Space for CUIC and we still continue with that. The traditional historical tables remain and the replication process remains the same too.
    2:Is there any version change for Linux OS used as VOS,
    The Linux version is Red Hat Linux 5. To be precise:
    [root@uccx10pub /]# cat etc/redhat-release
    Red Hat Enterprise Linux Server release 5.7 (Tikanga)
    3:Is there any API architecture change in UCCX 10 from previous releases ?
    I can answer this more of an overview. The only enhancement in the API side is the introduction of REST API step in the script editor. You can now make REST calls from the script and this ofcourse opens up a whole new world of possiblities.
    4:Since from UCCX 10 , we can only use either CAD or Finnesse at one  time, whats the impact of changing this after some time in production,  let say , i used CAD for 2 months and then i decided to move to Finesse,  whats the impact ? or is it a smooth change as switching CUIC and HRC  in previoius release ?
    For the scenario you mentioned, there is absolutely no problem. The point to note is that the Finesse services are activated/deactivated but the CAD desktop services are ALWAYS running. The only condition to keep in mind is that you can use ONLY ONE type of agent desktop at any time.  Also if Finesse is not used and CAD operations are used extensively, it is advisable to shutdown the Finesse service.
    5:Is 3rd Party UCS hardware supported by UCCX 10 instead of using Cisco manufactured UCS , can i use HP hardware for Virtualisation ?
    Yes, it can be used. This is something called as "Third party specs based specification". The most important things seen for compatibility are:
    Inter CPU Model
    It it is on thVMWare Hardware Compatibilty List
    You can get more information about this on the "Can I use this server?" section of UC Virtualized Hardware page:
    http://docwiki.cisco.com/wiki/UC_Virtualization_Supported_Hardware#.22Can_I_use_this_server.3F.22
    6:Is Host name change supported?
    Yes, the hostname change is supported. The prcocedure is documented in the UCCX 10.0 Administration Guide:
    http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_10_0/configuration/guide/UCCX_BK_W1AF9DDD_00_uccx-admin-guide-10.0.pdf (Pg 168)
    Cheers,
    Abhiram Kramadhati

  • CTI Problem in inbound call scenario with Siemens OpenScape Contact Center (CMS)

    Hello Experts,
    we are working on a SAP CRM 7.0 EhP 2 with CTI to a CMS from Siemens (OpenScape Contact Center).
    The basic integration works perfect, so that agents get informed about incoming calls in their Interaction Center UI and so on.
    Currently we have a problem with handling of incoming calls:
    When the agent is available (workmode 'ready') and he does not accept the call, the next available agent in the queue gets the call.
    So far, so good. The problem is that the calls, the agent did not accept, do not disappear in the upper right corner. They are counted up to 5 and a timer starts counting up to 600 seconds. When the 600 seconds are reached, the agend gets disconnected from the communication channel, too.
    (In case the agent talkes a call again, this counter is reset to again)
    Is there any possibility to avoid the signalization of unaccepted calls from CRM side (generally)?
    How could we prevent the agent from disconnection after 600 seconds and 5 unaccepted calls from CRM side?
    Thanks in advance!
    Kind regards
    Martin
    Message was edited by: Joaquin Fornas

    Hi Yoro,
    do you click on a physical phone button or on the button in the WebUI.
    As far is i know, the OpenScape Contact Center does not support hang up funktionallity of the related button in the WebUI.
    If you do not use wrapup time (which is used to give the agent time for the data maintenance before he continues receiving calls) the Counter shoud end after the call.
    It seams that the OpenScape does not work propperly.
    For more details you can take a look into the Log:
    Transaction CRM_ICI_TRACE
    You have to set the User Parameter CRM_ICI_TRACELEVEL to value XXX to enable the logging.
    Good Luck!
    Kind regards,
    Martin Gaschk

  • ICI development (SOAP, web services, contact center)

    Hello all, I have been developing an ICI (Integrated Communications Interface) web service for our contact center using ICI Interface Specification v 3.00 Date: 11/15/2002. I wonder if there is any newer document available, and if there is a forum/web site for more information about this matter?
    I have already implemented mostly working interfaces for IciSystem, IcuUser, IciEvent, IciContainer, IciItem, IciPhoneLine, IciPhoneCall, IciFolder and IciMessage. The problem is that the document does not tell everything, some things have to tried (in brute force) until it works, like the correct messageId format.
    Another problem is that the IC WebClient seems to hang very frequently, it takes an hour or so until it works again. I get JavaScript errors when I view an e-mail. Also it does not work with newer Java 1.5 but only with Java 1.4.2.
    Also I have not found the XML schemas mentioned in the end of the document: MonitoringCatalog.xsd etc.
    Thanks, Harri

    Harri, look into the BSP Forum and also for WebLogs here on the SDN from Thomas Jung, he has written some very, very good blogs. Tiest.

  • Historical Reporting Contact Center Express - Errors

    Hello
    When i create the report on my contact center express for historical information of somes ACDs, i am watching the following:
    Reject: Remote Timeout
    Reject: Channels Busy
    Reject: Trigger Failed
    What these reasons code mean???
    Thanks,
    Alexis Munoz

    Aaron,
    Thank you I will try what you suggest.
    Respectfully,
    Deborah
    Deborah A. Morgan
    Mary Washington HealthCare
    Information Systems Network Support Team
    (540) 741-1048 voice
    (540) 741-1072 fax
    Email [email protected]
    From: aaronharrison
    To: Deborah Morgan
    Date: 09/12/2011 05:18 PM
    Subject: - Re: Contact Center Express 7 Historical
    Reports Peak Time CSQ
    Cisco Support Community
    Re: Contact Center Express 7 Historical Reports Peak Time CSQ
    created by aaronharrison in Contact Center - View the full discussion
    Hi
    The closest thing to what you are asking for that I've seen is the
    'contact service queue activity by interval' report.
    It produces normal CSQ stats (total, abandon etc) per interval (i.e. per
    hour, 30 mins or 15 mins) through the day so you can see when your busy
    times are.
    Change the 'interval' to what you need on the detail tab before running
    the report.
    Regards
    Aaron
    Please rate helpful posts..
    Reply to this message by going to Cisco Support Community
    Start a new discussion in Contact Center at Cisco Support Community

  • CLID restriction for Contact Center Calls

    Hi,
    One of our customers has a stalker and they have asked from the telco to send the Calling Line ID for the mobile calls which are normally blocked by the calling person. When these calls are to a Callmanager user, they cannot see the caller ID as expected, but when the call is to contact center, than the agent sees the caller ID on the agent desktop which is legally not accepted. So I made a search and I found the
    clid strip pi-restrict
    command. Will this command do the trick to remove the caller ID for the agents also while still showing on the voice gateway isdn q931 debugs ?
    Thanks

    Hi,
    Here is the debug output: (I hope this much is enough)
    Sending Complete
            Bearer Capability i = 0x8090A3
                    Standard = CCITT
                    Transfer Capability = Speech 
                    Transfer Mode = Circuit
                    Transfer Rate = 64 kbit/s
            Channel ID i = 0xA1839F
                    Preferred, Channel 31
            Date/Time i = 0x0A081A10000C
                    Date (dd-mm-yr)   = 10-08-26
                    Time (hr:mnt:sec) = 16:00:12
            Calling Party Number i = 0x21A3, '1234567890'
                    Plan:ISDN, Type:National
            Called Party Number i = 0xA1, '0987654321'
                    Plan:ISDN, Type:National
    Aug 26 15:51:16.054: ISDN Se2/0:15 Q931: TX -> CALL_PROC pd = 8  callref = 0x805D
            Channel ID i = 0xA9839F
                    Exclusive, Channel 31
    Aug 26 15:51:16.082: ISDN Se2/0:15 Q931: TX -> ALERTING pd = 8  callref = 0x805D
            Progress Ind i = 0x8188 - In-band info or appropriate now
    The Voice gateway sends everything to the gatekeeper and gatekeepr sends it to the CCM over the GK controlled trunk. As i said before, if the call is destined to a normal IP Phone, ther is no problem, the CLID is "Unknown". But if the call is destined to an Agent, when the call starts ringin on the CAD, on the incoming call information, the CLID is unknown. But after the call is conncted, Both on the line information and the ANI field, the CLID is shown.
    Thanks

  • CISCO UNIFIED CONTACT CENTER EXPRESS - ORACLE WEB SERVICES

    We need to access to an Oracle database information through Web Services, in a system witch Cisco Unified Contact Center Express 8.5.
    Is there any way to do this? Thank you!

    Hi Alicia,
    Incase you are planning to obtain real time stats from the CRA_DB which is the UCCX db, this can be done via the use of a wallboard.
    -This displays the data such as
    available agents in CSQs, call volumes, talk times, wait times, and number of handled calls. You can enable the Unified CCX system to write Unified CCX real-time information to a database that can then be displayed on a wallboard.
    -Not sure if this is what you are looking for, let me know, thanks
    Prashanth

  • Error with the Contact Center Simulator

    Hello All,
    I am trying to use the Contact Center Simulator (CCS) with the IC WebUI in SAP CRM 7(IDES).
    I have done all the settings as per SAP Help and the Blog: How to Configure Contact Center Simulator User Interface (CCSUI)n
    When i try to use the CCS i am running into a issue.
    This is the sequence of steps - 
    1 - I start the CCS and then then i login to the IC WebUI and in the CCS i can see the Agent with status "Not Ready".
    2 - I change the status in the IC WebUI to "Ready"  but the status in the CCS doesnot change to "Ready" and remains "Not Ready"
    Tried installing different version of JRE (1.4.xx and 1.3.xx) but no change.
    Activated the ICI trace and the error message is see in the ICI is
    Http Outgoing Request - Http/1.0 401 Unauthorized
    Logon Failed
    Call of url http://<servername>:8004/sap/bc/bsp/sam_sess_queue/sam_session_queue_cntrler.do terminated due to error in logon data
    Note
    Logon performed in system <systemname>.No logon data provided.
    I checked SICF and all the required services are activated.
    So not sure whats the cause of the error.
    Any help/suggestions will be greatly appreciated.
    Cheers
    Subu

    Hi Subbu,
    I have a similar problem , I'm able to view in CCS this message :  Currently no agents are logged on to CCS , how do we proceed forward , i logged to WEB UI and the status is Ready but i'm not able to see the same status in CCS..
    Appreciate if you can publish your solution in this thread ...
    Thanks,
    Satish

  • Cisco Unified Contact Center 8.5. Field report description

    Hi,
    In the Cisco Contact Center reports there are some fields. One of those fields about the telephone calls is "Do not care". What does mean this field? what kind of telephone calls are in this fields?
    Thanks,
    Regards,
    David Lozano                  

    Hi Harrison,
    Thanks for the reply. BTW, this not the answer that i need. If any table have data regarding location/operational area, so i need to know that table, coz i used official database manual too. but there is no such table they mention there. 
    As you said, i checked with the team/skill and resource table, but there is no way to find a location or a operational area.
    Thx
    ComBank100

  • Contact Center Express GNU Bash vulnerability CSCur02861

    Cisco Security Advisory notes that Contact Center Express is affected by GNU bash vulnerability  [CSCur02861] . But this bug report is not public available. does anyone have information which versions are affected?

    8.0(2)SU5
    NO patch  as it has reached End of SW Maintenance Releases Date
    8.5(1)SU4
    http://software.cisco.com/download/release.html?mdfid=283625051&flowid=46059&softwareid=280840578&release=Security_Patches&relind=AVAILABLE&rellifecycle=&reltype=latest
    9.0(1)
    http://software.cisco.com/download/release.html?mdfid=284367996&flowid=46061&softwareid=280840578&release=Security_Patches&relind=AVAILABLE&rellifecycle=&reltype=latest
    9.0(2)SU2
    http://software.cisco.com/download/release.html?mdfid=284666782&flowid=46062&softwareid=280840578&release=Security_Patches&relind=AVAILABLE&rellifecycle=&reltype=latest
    10.0(1)SU1
    http://software.cisco.com/download/release.html?mdfid=285000761&flowid=49042&softwareid=280840578&release=Security_Patches&relind=AVAILABLE&rellifecycle=&reltype=latest10.5(1)SU1
    http://software.cisco.com/download/release.html?mdfid=286265496&flowid=70402&softwareid=280840578&release=Security_Patches&relind=AVAILABLE&rellifecycle=&reltype=latest
    10.5(1)SU1
    http://software.cisco.com/download/release.html?mdfid=286265496&flowid=70402&softwareid=280840578&release=Security_Patches&relind=AVAILABLE&rellifecycle=&reltype=latest

  • SR created using cs_servicerequest_pub.Create_ServiceRequest is not able to search it in Contact Center.

    Hi All ,
       I have created a SR using following sql api
    declare
    lx_msg_count NUMBER;
    lx_msg_data VARCHAR2(2000);
    lx_request_id NUMBER;
    lx_request_number VARCHAR2(50);
    lx_interaction_id NUMBER;
    lx_workflow_process_id NUMBER;
    lx_msg_index_out NUMBER;
    lx_return_status VARCHAR2(1);
    l_service_request_rec CS_ServiceRequest_PUB.service_request_rec_type;
    l_notes_table CS_SERVICEREQUEST_PUB.notes_table;
    l_contacts_tab CS_SERVICEREQUEST_PUB.contacts_table;
    begin
    -- Populate the SR Record type
    l_service_request_rec.request_date := to_date('19-NOV-2013 16:27:34', 'dd-MON-YYYY
    HH24:MI:SS');
    l_service_request_rec.type_id := 4;
    l_service_request_rec.status_id := 1;
    l_service_request_rec.urgency_id := 44;
    l_service_request_rec.inventory_item_id := 2530;
    l_service_request_rec.inventory_org_id := 204;
    l_service_request_rec.severity_id := 6;
    l_service_request_rec.summary := 'TEST IBIZ';
    l_service_request_rec.caller_type := 'ORGANIZATION';
    l_service_request_rec.customer_id := 3532;
    l_service_request_rec.verify_cp_flag := 'N';
    l_service_request_rec.sr_creation_channel := 'PHONE';
    l_service_request_rec.resource_type := null;
    l_service_request_rec.group_type := null;
    l_service_request_rec.owner_id := null;
    l_service_request_rec.owner_group_id := null;
    l_service_request_rec.bill_to_site_use_id := 1583;
    l_service_request_rec.ship_to_site_use_id := 2359;
    l_service_request_rec.exp_resolution_date := to_date('19-DEC-2013 16:27:34', 'dd-MON-YYYY
    HH24:MI:SS');
    l_service_request_rec.install_site_use_id := 178401;
    l_service_request_rec.account_id := 3670;
    l_service_request_rec.obligation_date := to_date('22-NOV-2013 16:27:34', 'dd-MON-YYYY
    HH24:MI:SS');
    l_service_request_rec.category_id := 1376;
    l_service_request_rec.last_update_channel := 'PHONE';
    l_service_request_rec.category_set_id := 27;
    l_service_request_rec.incident_occurred_date :=to_date('19-NOV-2013 16:27:34', 'dd-MON-YYYY
    HH24:MI:SS');
    l_service_request_rec.incident_location_id :=178401;
    l_service_request_rec.incident_country :='US';
    l_service_request_rec.last_update_program_code :='CSXSRTAB';
    l_service_request_rec.creation_program_code :='CSXSRTAB';
    l_service_request_rec.bill_to_account_id :=3670;
    l_service_request_rec.ship_to_account_id :=3670;
    l_service_request_rec.bill_to_party_id :=3532;
    l_service_request_rec.ship_to_party_id :=3532;
    l_service_request_rec.bill_to_site_id :=2915;
    l_service_request_rec.ship_to_site_id :=2915;
    l_service_request_rec.incident_location_type :='HZ_PARTY_SITE';
    dbms_output.put_line('before calling public sr');
    FND_GLOBAL.APPS_INITIALIZE(
    user_id => 0,
    resp_id => 21739,
    resp_appl_id => 514);
    cs_servicerequest_pub.Create_ServiceRequest (
    p_api_version => 2.0,
    p_init_msg_list => FND_API.G_TRUE,
    p_commit => FND_API.G_FALSE,
    x_return_status => lx_return_status,
    x_msg_count => lx_msg_count,
    x_msg_data => lx_msg_data,
    p_resp_appl_id => 514,
    p_resp_id => 21739,
    p_user_id => 0,
    p_login_id => NULL,
    p_request_id => NULL,
    p_request_number => NULL,
    p_service_request_rec => l_service_request_rec,
    p_notes => l_notes_table,
    p_contacts => l_contacts_tab,
    x_request_id => lx_request_id,
    x_request_number => lx_request_number,
    x_interaction_id => lx_interaction_id,
    x_workflow_process_id => lx_workflow_process_id );
    dbms_output.put_line('Return Status : ' || lx_return_status);
    dbms_output.put_line('Inserted request id: ' || lx_request_id );
    dbms_output.put_line('Inserted request num : ' || lx_request_number );
    dbms_output.put_line('Interaction ID : ' || lx_interaction_id );
    IF (lx_return_status <> FND_API.G_RET_STS_SUCCESS) then
    IF (FND_MSG_PUB.Count_Msg > 1) THEN
    --Display all the error messages
    FOR j in 1..FND_MSG_PUB.Count_Msg LOOP
    FND_MSG_PUB.Get(
    p_msg_index => j,
    p_encoded => 'F',
    p_data => lx_msg_data,
    p_msg_index_out => lx_msg_index_out);
    DBMS_OUTPUT.PUT_LINE(lx_msg_data);
    END LOOP;
    ELSE
    --Only one error
    FND_MSG_PUB.Get(
    p_msg_index => 1,
    p_encoded => 'F',
    p_data => lx_msg_data,
    p_msg_index_out => lx_msg_index_out);
    DBMS_OUTPUT.PUT_LINE(lx_msg_data);
    DBMS_OUTPUT.PUT_LINE(lx_msg_index_out);
    END IF;
    END IF;
    exception
    when others then dbms_output.put_line('in others main ' || sqlerrm);
    commit;
    end;
    I am able to create SR using above code but when i try to search using the SR number it say no LOV is found from Contact Center . Please
    help me out.
    Thanks
    Mark

    Hi Mark,
    Have you tried setting p_commit to FND_API.G_TRUE?
    HTH, Ryan.

  • Failed to open the console and System Center Data Access Service wont start - SCOM 2012

    Log Name: Operations Manager
    Source: Data AccessLayer
    Event ID: 33333
    Data Access Layer rejected retry on SqlError:
     Request: ManagementGroupInfo
     Class: 16
     Number: 208
     Message: Invalid object name 'dbo.__MOMManagementGroupInfo__'.
    =============================================================
    Log Name: Operations Manager
    Source: OpsMgr SDK Service
    Event ID: 26380
    The System Center Data Access service failed due to an unhandled exception.  
    The service will attempt to restart.
    Exception:
    Microsoft.EnterpriseManagement.Common.SdkServiceNotInitializedException: The Data Access service has not yet initialized. Please try again.
       at Microsoft.EnterpriseManagement.ServiceDataLayer.DispatcherService.get_Container()
       at Microsoft.EnterpriseManagement.Mom.Sdk.Service.SdkSubService.SdkChannel.Start()
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading._ThreadPoolWaitCallback.PerformWaitCallbackInternal(_ThreadPoolWaitCallback tpWaitCallBack)
       at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)
    =============================================================
    Failed to connect to server ' xxxxx'
    Date: 16/09/2013 20:36:16
    Application: Operations Manager
    Application Version: 7.0.8560.0
    Severity: Error
    Message: Failed to connect to server 'xxxxxx'
    Microsoft.EnterpriseManagement.Common.ServiceNotRunningException: The Data Access service is either not running or not yet initialized. Check the event log for more information. ---> System.ServiceModel.EndpointNotFoundException: Could not connect to net.tcp://xxxxx:5724/DispatcherService.
    The connection attempt lasted for a time span of 00:00:02.0020300. TCP error code 10061: No connection could be made because the target machine actively refused it xxx.xxx.xxx.xxx:5724.  ---> System.Net.Sockets.SocketException: No connection could
    be made because the target machine actively refused it xxx.xxx.xxx.xxx:5724
       at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
       at System.Net.Sockets.Socket.Connect(EndPoint remoteEP)
       at System.ServiceModel.Channels.SocketConnectionInitiator.Connect(Uri uri, TimeSpan timeout)
       --- End of inner exception stack trace ---
    Server stack trace:
       at System.ServiceModel.Channels.SocketConnectionInitiator.Connect(Uri uri, TimeSpan timeout)
       at System.ServiceModel.Channels.BufferedConnectionInitiator.Connect(Uri uri, TimeSpan timeout)
       at System.ServiceModel.Channels.ConnectionPoolHelper.EstablishConnection(TimeSpan timeout)
       at System.ServiceModel.Channels.ClientFramingDuplexSessionChannel.OnOpen(TimeSpan timeout)
       at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
       at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.OnOpen(TimeSpan timeout)
       at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.CallOnceManager.CallOnce(TimeSpan timeout, CallOnceManager cascade)
       at System.ServiceModel.Channels.ServiceChannel.EnsureOpened(TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.EnterpriseManagement.Common.Internal.IDispatcherService.Connect(SdkClientConnectionOptions connectionOptions)
       at Microsoft.EnterpriseManagement.Common.Internal.SdkDataLayerProxyCore.Initialize(EnterpriseManagementConnectionSettings connectionSettings, SdkChannelObject`1 channelObjectDispatcherService)
       at Microsoft.EnterpriseManagement.Common.Internal.SdkDataLayerProxyCore.CreateEndpoint[T](EnterpriseManagementConnectionSettings connectionSettings, SdkChannelObject`1 channelObjectDispatcherService)
       --- End of inner exception stack trace ---
       at Microsoft.EnterpriseManagement.Common.Internal.ExceptionHandlers.HandleChannelExceptions(Exception ex)
       at Microsoft.EnterpriseManagement.Common.Internal.SdkDataLayerProxyCore.CreateEndpoint[T](EnterpriseManagementConnectionSettings connectionSettings, SdkChannelObject`1 channelObjectDispatcherService)
       at Microsoft.EnterpriseManagement.Common.Internal.SdkDataLayerProxyCore.ConstructEnterpriseManagementGroupInternal[T,P](EnterpriseManagementConnectionSettings connectionSettings, ClientDataAccessCore clientCallback)
       at Microsoft.EnterpriseManagement.Common.Internal.SdkDataLayerProxyCore.RetrieveEnterpriseManagementGroupInternal[T,P](EnterpriseManagementConnectionSettings connectionSettings, ClientDataAccessCore callbackDispatcherService)
       at Microsoft.EnterpriseManagement.Common.Internal.SdkDataLayerProxyCore.Connect[T,P](EnterpriseManagementConnectionSettings connectionSettings, ClientDataAccessCore callbackDispatcherService)
       at Microsoft.EnterpriseManagement.ManagementGroup.InternalInitialize(EnterpriseManagementConnectionSettings connectionSettings, ManagementGroupInternal internals)
       at Microsoft.EnterpriseManagement.Mom.Internal.UI.Common.ManagementGroupSessionManager.Connect(String server)
       at Microsoft.EnterpriseManagement.Monitoring.Console.Internal.ConsoleWindowBase.TryConnectToManagementGroupJob(Object sender, ConsoleJobEventArgs args)
    System.ServiceModel.EndpointNotFoundException: Could not connect to net.tcp://xxxxx:5724/DispatcherService. The connection attempt lasted for a time span of 00:00:02.0020300. TCP error code 10061: No connection could be made because the target machine actively
    refused it xxx.xxx.xxx.xxx:5724.  ---> System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it xxx.xxx.xxx.xxx:5724
       at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
       at System.Net.Sockets.Socket.Connect(EndPoint remoteEP)
       at System.ServiceModel.Channels.SocketConnectionInitiator.Connect(Uri uri, TimeSpan timeout)
       --- End of inner exception stack trace ---
    Server stack trace:
       at System.ServiceModel.Channels.SocketConnectionInitiator.Connect(Uri uri, TimeSpan timeout)
       at System.ServiceModel.Channels.BufferedConnectionInitiator.Connect(Uri uri, TimeSpan timeout)
       at System.ServiceModel.Channels.ConnectionPoolHelper.EstablishConnection(TimeSpan timeout)
       at System.ServiceModel.Channels.ClientFramingDuplexSessionChannel.OnOpen(TimeSpan timeout)
       at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
       at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.OnOpen(TimeSpan timeout)
       at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.CallOnceManager.CallOnce(TimeSpan timeout, CallOnceManager cascade)
       at System.ServiceModel.Channels.ServiceChannel.EnsureOpened(TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.EnterpriseManagement.Common.Internal.IDispatcherService.Connect(SdkClientConnectionOptions connectionOptions)
       at Microsoft.EnterpriseManagement.Common.Internal.SdkDataLayerProxyCore.Initialize(EnterpriseManagementConnectionSettings connectionSettings, SdkChannelObject`1 channelObjectDispatcherService)
       at Microsoft.EnterpriseManagement.Common.Internal.SdkDataLayerProxyCore.CreateEndpoint[T](EnterpriseManagementConnectionSettings connectionSettings, SdkChannelObject`1 channelObjectDispatcherService)
    System.Net.Sockets.SocketException (0x80004005): No connection could be made because the target machine actively refused it xxx.xxx.xxx.xxx:5724
       at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
       at System.Net.Sockets.Socket.Connect(EndPoint remoteEP)
       at System.ServiceModel.Channels.SocketConnectionInitiator.Connect(Uri uri, TimeSpan timeout)
    =============================================================
    Log Name: Operations Manager
    Source: OpsMgr Root Connector
    Event ID: 28001
    The Root connector received an exception from the Config Service on StateSyncRequest:
    System.Runtime.Remoting.RemotingException: Failed to connect to an IPC Port: The system cannot find the file specified.
    Server stack trace:
       at System.Runtime.Remoting.Channels.Ipc.IpcPort.Connect(String portName, Boolean secure, TokenImpersonationLevel impersonationLevel, Int32 timeout)
       at System.Runtime.Remoting.Channels.Ipc.ConnectionCache.GetConnection(String portName, Boolean secure, TokenImpersonationLevel level, Int32 timeout)
       at System.Runtime.Remoting.Channels.Ipc.IpcClientTransportSink.ProcessMessage(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream, ITransportHeaders& responseHeaders, Stream& responseStream)
       at System.Runtime.Remoting.Channels.BinaryClientFormatterSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.EnterpriseManagement.Mom.Internal.IConfigService.OnStateSyncRequest(Guid source, UInt64 messageIdentifier, String cookie)
       at Microsoft.Mom.Connectors.Root.RootConnector.OnStateSyncRequest(Guid source, UInt64 messageIdentifier, String cookie)
    ================================================================
    Log Name: Operations Manager
    Source: OpsMgr Management Configuration
    Event ID: 29105
     The management group is not yet fully upgraded. OpsMgr Management Configuration Service will idle until upgrade is completed.
     Operations Manager database version: 1.0.0.0
     Minimum required version: 7.0.0.0

    Yes, i change the credentials, but doesnt work.
    Yes, i put the events in the
    main question!
    Events Logs:
    =======================================================
    Log Name: Operations Manager
    Source: Data AccessLayer
    Event ID: 33333
    Data Access Layer rejected retry on SqlError:
     Request: ManagementGroupInfo
     Class: 16
     Number: 208
     Message: Invalid object name 'dbo.__MOMManagementGroupInfo__'.
    =======================================================
    Log Name: Operations Manager
    Source: OpsMgr SDK Service
    Event ID: 26380
    The System Center Data Access service failed due to an unhandled exception.  
    The service will attempt to restart.
    Exception:
    Microsoft.EnterpriseManagement.Common.SdkServiceNotInitializedException: The Data Access service has not yet initialized. Please try again.
       at Microsoft.EnterpriseManagement.ServiceDataLayer.DispatcherService.get_Container()
       at Microsoft.EnterpriseManagement.Mom.Sdk.Service.SdkSubService.SdkChannel.Start()
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading._ThreadPoolWaitCallback.PerformWaitCallbackInternal(_ThreadPoolWaitCallback tpWaitCallBack)
       at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)
    =======================================================
    Log Name: Operations Manager
    Source: OpsMgr Root Connector
    Event ID: 28001
    The Root connector received an exception from the Config Service on StateSyncRequest:
    System.Runtime.Remoting.RemotingException: Failed to connect to an IPC Port: The system cannot find the file specified.
    Server stack trace:
       at System.Runtime.Remoting.Channels.Ipc.IpcPort.Connect(String portName, Boolean secure, TokenImpersonationLevel impersonationLevel, Int32 timeout)
       at System.Runtime.Remoting.Channels.Ipc.ConnectionCache.GetConnection(String portName, Boolean secure, TokenImpersonationLevel level, Int32 timeout)
       at System.Runtime.Remoting.Channels.Ipc.IpcClientTransportSink.ProcessMessage(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream, ITransportHeaders& responseHeaders, Stream& responseStream)
       at System.Runtime.Remoting.Channels.BinaryClientFormatterSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.EnterpriseManagement.Mom.Internal.IConfigService.OnStateSyncRequest(Guid source, UInt64 messageIdentifier, String cookie)
       at Microsoft.Mom.Connectors.Root.RootConnector.OnStateSyncRequest(Guid source, UInt64 messageIdentifier, String cookie)
    =======================================================
    Log Name: Operations Manager
    Source: OpsMgr Management Configuration
    Event ID: 29105
     The management group is not yet fully upgraded. OpsMgr Management Configuration Service will idle until upgrade is completed.
     Operations Manager database version: 1.0.0.0
     Minimum required version: 7.0.0.0

Maybe you are looking for

  • Database password change

    Hello, Can someone point me in the right direction in regards to changing the OIM database password on 9.1.0.2? We recently changed the password and I updated the xlconfig.xml file and updated two XML files located in the project domain using the met

  • Validation in T Code F-02 in which Bank outgoing GL A/c should be restricte

    Dear All, Please advice me regarding the following: User is posting the payment to vendor through T Code F-02, resulting in the not creation of the liability. Client wants to stop it by validation in T Code F-02 in which Bank outgoing GL A/c should b

  • Windows 7 install failed.How do I boot into mac?

    Hi, I tried to install windows 7 using the bootcamp assistant.I burnt the support software onto a separate disk but when I tried to install Windows 7 Ultimate 32 bit it asks me to load a CD/DVD driver.I cannot eject the Windows media for this driver?

  • Clear central cache? (in Adobe Bridge) message

    I am using iMac with 10.5.8 and running Adobe CS3.  In Bridge I am getting the following message: "Bridge encountered a problem and is unable to read the cache.  Please try purging the central cache in cache preferences to correct the situation." I c

  • Scrambled images in new PS CS4 installed after PS 7 on Vista

    Please forgive for the long title.  I did not know how to shorten it much with out leaving no indication of the type of problem waiting within.  I had photoshop 7 installe in Vista and was using that fine.  Now I have installed CS4 with photoshop 7 s