Refresh Parameters

Hi ,
I create parameter fields and use select expert by record to link it to the data , when i run the report in the preview mode it prompts fine i choose the needed and say Ok.
now the results dont change, only when I click the apply 'tick' the settings that I chose are applied to the data set and its filtered and the results are seen.
all this works very fine , my question : Is there a way to automatically show the results when a parameter is chosen, and Ok is clicked , rather than do all this and then finally apply it.
Also I know that parameter fields work when used with ODC in CRDC , will this be the same case there too?
Thanks for you time in reading my question.

works with refresh parameters when set in formuals

Similar Messages

  • SSRS: "View Report" button doesn't refresh parameter dropdowns

    So many people have asked similar questions about why SSRS report parameters are not refreshed when "View Report" button is clicked and MSDN simply comes back with an answer "work as designed". It's a bad design, period.
    Here is my suggestion to Microsoft team who works on SSRS: either add a "Refresh Parameters" button at the end of the last parameter dropdown so users can force reload the parameter list, or add "Reload
    Report" after "View Report" button (which should be re-named "Refresh Report" more precisely) to allow user reload the entire report (as if it was Ctrl-F5 is pressed in I.E.), not just to refresh the main report dataset as "Review
    Report" button is currently doing.

    Hi Steve Liu,
    Thanks for your suggestion and you can also submit this suggestion at
    https://connect.microsoft.com/SQLServer/
    If the suggestion mentioned by customers for many times, the product team may consider to add the feature in the next SQL Server version. Your feedback is valuable for us to improve our products and increase the level
    of service provided.
    Thanks for your understanding
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • BO 4.0 : JCoException while scheduling the webi report

    Hi,
    We are in BO 4.2 patch 8.
    We have 35 webi reports. These report uses SAP BW as data source. We are using DF to fetch data from SAP BW.
    We have manually configured the RFC destination for JCO connection (as mentioned in SAP notes - 1638647).
    Reports are getting scheduled successfully. But sometimes some webi reports fails with the following error message.
    Database error: (CS) "Java Exception : java.lang.RuntimeException:com.sap.connectivity.cs.java.drivers.DBDError: [Data Federator Driver][Server] [Connector 'Sales_BO_New'] SAP NetWeaver BW has reported an exception: com.sap.conn.jco.JCoException: (112) RFC_ERROR_REQUEST_CANCELLED: connection with handle 3 closed
    after cancel (remote system is PBI|BILPBI)" . (IES 10901)
    This is in intermittent issue. If anybody faced this issue, then please let me know your feedback.
    Thanks,
    Ravi
    Edited by: Ravi Kirana Palla on Dec 9, 2011 7:38 AM
    Edited by: Ravi Kirana Palla on Dec 9, 2011 7:38 AM

    Hi,
    Personally, I haven't seen this before. To recap:
    - Manual refresh work fine
    - scheduling works most of the time
    - but sometimes it fails with << SAP NetWeaver BW has reported an exception: com.sap.conn.jco.JCoException: (112) RFC_ERROR_REQUEST_CANCELLED >>
    You might want see if you can isolate a particular document causing the problem, or determine if it's related to using certain refresh parameters
    According to http://help.sap.com/saphelp_nw70/helpdata/de/f6/daea401675752ae10000000a155106/content.htm
    it says Find out from the JAVA application or the JCo traces which JCo Server was cancelled and restart the server; in the J2EE Application Server context, JCo Servers are often started via the Service JCo RFC Provider
    but .. i don't know how helpful that is..
    Best of luck
    H

  • Set a timer in servlet

    i want to set a timer of 10 min in one of my pages(im using servlets) and i want to redirect a user to a different page after that period of time.i tried to use a loop using thread.sleep(),but it is not working.to redirect to a different page i uused refresh parameters but getting error 405.please help...

    That's not how it should be done. JSP/ Servlets are server side technology and the code runs on the server before the page is generated. Once the page is sent to the client, your JSP/ Servlet has long since finished servicing that particular request and you cannot do anything to that response now, once it's committed.
    You can do this with either:
    - JavaScript, setting a timer onload and then doing what you want
    - Using META tags [1] to refresh or redirect
    Be aware that both of these can fail and you should always give a link to the page unless you want your user to be stranded. And also, just as a preemptive measure, JavaScript != Java so if you decide to go that way, you'll need to post your queries in some JavaScript forum and not in the Java forums.
    [1] http://en.wikipedia.org/wiki/Meta_refresh
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    ----------------------------------------------------------------

  • Automatically exporting report into PDF

    Hi All,
    Wanted to know if CR XI can export individual reports based on the list in my "F5" refresh parameters.
    For example, when I hit F5 to refresh data, a list of all my sales offices appear.  I am tediously hitting F5, select sales office, and exporting and naming each PDF file. 
    Is there a way to automatically create a PDF file for each sales office, and having the PDF file named as the sales offices? 
    Thank You,
    Frank

    Hi,
    For refreshing and getting new reports in any format we use the Easy view from
    http://www.easystreetsoftware.net/Products/EasyView_Main.php
    The new reports overwrite the previous one, it is running as a service, we are getting 48 reports a day (scheduling them)  and the cost is less than 50 Euros
    Rgds.
    Pepe

  • DB polling in cluster environment?

    Hi all,
    I have a DB adapter polling a table in a 2 node clustered environment. For each row it polls it is creating 2 instances on two servers and this is is causing issues when i call 3 rd party web service with identical data....i tried checking distributed polling in adapter config and also 'singleton' property in composite.xml, but still it creates duplicate instances some times and not all the times....Could some one suggest some thing for resolving this...
    Thanks

    parameter looks fine.  I too faced similar problem with DBAdapter in cluster.  Later I realized that the above parameters were set in the wrong place.  I think this might be an issue with the relationship you create between tables.  Hence you need to identify the right place to set the above parameters. Look up my toplink file
    <reference-class>XXXXXXX</reference-class>
                      <refresh>false</refresh>
                      <remote-refresh>false</remote-refresh>
                      <cache-usage>primary-key</cache-usage>
                      <lock-mode>none</lock-mode>
                      <container xsi:type="list-container-policy">
                         <collection-type>java.util.Vector</collection-type>
                      </container>
                   </query>
                   <query name="XXXXXX" xsi:type="read-all-query">
                      <reference-class>XXXXXX</reference-class>
                      <refresh>false</refresh>
                      <remote-refresh>false</remote-refresh>
                      <lock-mode>none</lock-mode>
                      <container xsi:type="list-container-policy">
                         <collection-type>java.util.Vector</collection-type>
                      </container>
                   </query>
    In the above sample, you could notice the remote-refresh parameters are present twice.  When I enabled 'Distributed Polling' option, the parameters were set in the italics instead of in the text which is bold.  After I modified the toplink file, it works fine as expected. Hopes it clarifies you.
    rgds
    sen

  • Smbclient gets errors

    [root@node1 ~]# smbclient ////192.168.75.106 -U codrut -W workgroup -d10
    INFO: Current debug levels:
      all: 10
      tdb: 10
      printdrivers: 10
      lanman: 10
      smb: 10
      rpc_parse: 10
      rpc_srv: 10
      rpc_cli: 10
      passdb: 10
      sam: 10
      auth: 10
      winbind: 10
      vfs: 10
      idmap: 10
      quota: 10
      acls: 10
      locking: 10
      msdfs: 10
      dmapi: 10
      registry: 10
    lp_load_ex: refreshing parameters
    Initialising global parameters
    rlimit_max: increasing rlimit_max (1024) to minimum Windows limit (16384)
    INFO: Current debug levels:
      all: 10
      tdb: 10
      printdrivers: 10
      lanman: 10
      smb: 10
      rpc_parse: 10
      rpc_srv: 10
      rpc_cli: 10
      passdb: 10
      sam: 10
      auth: 10
      winbind: 10
      vfs: 10
      idmap: 10
      quota: 10
      acls: 10
      locking: 10
      msdfs: 10
      dmapi: 10
      registry: 10
    params.c:pm_process() - Processing configuration file "/etc/samba/smb.conf"
    Processing section "[global]"
    doing parameter workgroup = WORKGROUP
    doing parameter server string = Samba Server Version %v
    doing parameter log file = /var/log/samba/log.%m
    doing parameter max log size = 50
    doing parameter security = user
    doing parameter passdb backend = tdbsam
    doing parameter load printers = yes
    doing parameter cups options = raw
    pm_process() returned Yes
    lp_servicenumber: couldn't find homes
    set_server_role: role = ROLE_STANDALONE
    Substituting charset 'UTF-8' for LOCALE
    added interface eth0 ip=fe80::215:5dff:fe4b:6a03%eth0 bcast=fe80::ffff:ffff:ffff
    :ffff%eth0 netmask=ffff:ffff:ffff:ffff::
    added interface eth0 ip=192.168.75.109 bcast=192.168.75.255 netmask=255.255.255.
    0
    Netbios name list:-
    my_netbios_names[0]="NODE1"
    Client started (version 3.6.9-169.el6_5).
    Enter codrut's password:
    Opening cache file at /var/lib/samba/gencache.tdb
    Opening cache file at /var/lib/samba/gencache_notrans.tdb
    sitename_fetch: No stored sitename for
    internal_resolve_name: looking up #20 (sitename (null))
    no entry for #20 found.
    resolve_lmhosts: Attempting lmhosts lookup for name <0x20>
    resolve_lmhosts: Attempting lmhosts lookup for name <0x20>
    getlmhostsent: lmhost entry: 127.0.0.1 localhost
    resolve_wins: Attempting wins lookup for name <0x20>
    resolve_wins: WINS server resolution selected and no WINS servers listed.
    resolve_hosts: Attempting host lookup for name <0x20>
    resolve_hosts: getaddrinfo failed for name  [Name or service not known]
    name_resolve_bcast: Attempting broadcast lookup for name <0x20>
    bind succeeded on port 0
    Socket options:
            SO_KEEPALIVE = 0
            SO_REUSEADDR = 1
            SO_BROADCAST = 1
            Could not test socket option TCP_NODELAY.
            Could not test socket option TCP_KEEPCNT.
            Could not test socket option TCP_KEEPIDLE.
            Could not test socket option TCP_KEEPINTVL.
            IPTOS_LOWDELAY = 0
            IPTOS_THROUGHPUT = 0
            SO_REUSEPORT = 1
            SO_SNDBUF = 262144
            SO_RCVBUF = 262144
            SO_SNDLOWAT = 1
            SO_RCVLOWAT = 1
            SO_SNDTIMEO = 0
            SO_RCVTIMEO = 0
            Could not test socket option TCP_QUICKACK.
    async_connect failed: No such file or directory
    nmbd not around
    lang_tdb_init: /usr/lib64/samba/en_US.UTF-8.msg: No such file or directory
    Connection to  failed (Error NT_STATUS_BAD_NETWORK_NAME)
    [root@node1 ~]#

    Hi Bob,
    Thank you for your response.
    My question is not related to the volume of the attachment file, but the access privilege in the admin
    setting.
    If the customer want to prohibits the attachment in the TASK then each user would like to
    integrate email with no ATTACHMENT through OEI, this error message comes up.
    My question is that this is a normal behaviour of CRM on D? Is there no work around to use prohibition
    of the attachment and OEI integration of email with no attachment?
    Thanks and regards,

  • FileFormats supported by XMP SDK 4.0 Prerelease

    Hi,
    I am using XMP SDK 4 Prerelease to extract/inject XMP info.
    Can you please tell me what are all the fileformats supported by XMP SDK 4 Prerelease.
    Thanks,
    Venkatesh

    Hello Tikku
    On page 327 of the SAP Web Intelligence RESTful web service SDK User Guide, SAP BusinessObjects Business Intelligence platform 4.1 there is a section "Getting the document refresh parameters before refreshing a document:
    Request
    GET http://<serverName>:6405/biprws/raylight/v1/documents/{documentId}/param
    eters
    Example: To get the refresh parameters
    Windows
    curl -G -i -H "accept:application/xml" -H X-SAP-LogonToken:"""%tokenValue%""" http://<server
    Name>:6405/biprws/raylight/v1/documents/{documentId}/parameters
    Etc., etc.
    Please have a look at the referenced section of the Guide. If that does not help, let me know. I should have more code on an image that is not up right now and I can share that if need be.
    Oh., BTW, this really is another question and should have been posted as a new Discussion. Just want to keep these seperate for easier searching .
    - Ludek
    Message was edited by: Ludek Uher

  • Convergence Sesion timeout

    Hi Sun,
    I am frequently having a pop up screen from convergence server showing
    "session time out, please login again"
    Is there any parameter inside convergence can increase these timeout pop up ?
    Cheer
    Sam

    ubd wrote:
    -What version of Convergence are you running (./iwcadmin -V)?
    Sun Convergence 1.0-10.01 (built September 6 2009 - 18:29:30)Have you upgraded your application-server to Glassfish 2.1?
    - Explain your architecture ( Front end , Backend , Loadbalancer details )?
    load balancer to frontend mailproxy(msg64 + iwc),then passthrough firewall then backend mail server
    - Does Every user has this issue or few users? and does this happen randomly?
    it happen randomlyHow many users (number and percentage wise) are reporting this problem?
    - What is the browser you are using ?
    IE8,MOzilla 3.5.3
    - Are you using Access manager or any custom SSO module?
    using access manager Access Manager for authentication or SSO or both?
    Are you using the SSO cookie to access Convergence (i.e. you bypass the Convergence login page).
    In the Access Manager console, do you see the IDLE time being refreshed for the user login?
    Have you configured the Convergence SSO refresh parameters e.g.
    sso.enablerefreshsso = true
    sso.refreshinterval = 10
    - If you are able to reproduce the problem at your will , please try to observe some pattern on what conditions you are able to reproduce it..
    just login an email account & leave the it idle from sometime(intermittant), then the popup timeout will appear. after key in password, user able to use it againDo you see the idle timeout again after logging in a second time?
    Regards,
    Shane.

  • SIP CUBE sees DTMF * and # parsed as the number 1

    I am integrating a third party ippbx to Cisco Cube all working but with the UCCX, because when I send the * or # dtmf digits the cube sees them as the number 1 dtmf digit
    I have verified with wireshark that vendor system is sending correctly but cube reads/interprets it as the number 1 any help would be appreciated

    If you can see the attached, I dialed 1234#
    and the cube sent 12341
    AAPUSVAARPTVG02#
    009451: Mar  4 12:51:20.798: //-1/xxxxxxxxxxxx/SIP/Info/sipSPIDeleteContextFromTable: Context for key=[201] removed.
    009452: Mar  4 12:51:20.798: //32189/48265AD0BE6D/SIP/Info/sipSPIUdeleteCcbFromUASReqTable: ****Deleting from UAS Request table.
    009453: Mar  4 12:51:20.798: //32189/48265AD0BE6D/SIP/Info/sipSPIUdeleteCcbFromTable: Deleting from table. ccb=0x4A0D64B0 [email protected]
    009454: Mar  4 12:51:20.798: //32189/48265AD0BE6D/SIP/Info/sipSPIUdeleteCcbFromUASRespTable: ****Deleting from UAS Response table.
    009455: Mar  4 12:51:20.798: //32189/48265AD0BE6D/SIP/Info/sipSPIUdeleteCcbFromTable: Deleting from table. ccb=0x4A0D64B0 [email protected]
    009456: Mar  4 12:51:20.798: //32189/48265AD0BE6D/SIP/Info/sipSPIFlushEventBufferQueue: There are 0 events on the internal queue that are going to be free'd
    009457: Mar  4 12:51:20.798: //32189/48265AD0BE6D/SIP/Info/ccsip_qos_cleanup: Entry
    009458: Mar  4 12:51:20.798: //32189/48265AD0BE6D/SIP/Info/sipSPI_ipip_free_codec_profile: Codec Profiles Freed
    009459: Mar  4 12:51:20.798: //32189/48265AD0BE6D/SIP/Info/sipSPIUfreeOneCCB: Freeing ccb 4A0D64B0
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    AAPUSVAARPTVG02#
    009460: Mar  4 12:51:54.243: //-1/xxxxxxxxxxxx/SIP/Info/HandleUdpIPv4SocketReads: Msg enqueued for SPI with IP addr: [10.107.177.95]:5060
    009461: Mar  4 12:51:54.243: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_process_sipspi_queue_event: ccsip_spi_get_msg_type returned: 2 for event 1
    009462: Mar  4 12:51:54.243: //-1/xxxxxxxxxxxx/SIP/Transport/sipTransportProcessNWNewConnMsg: context=0x00000000
    009463: Mar  4 12:51:54.243: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    INVITE sip:[email protected]:5060;user=phone SIP/2.0
    Via: SIP/2.0/UDP 10.107.177.95;branch=z9hG4bK+ccab88001db7a774e18a6626099dfafe+10.107.177.95+8
    Allow-Events: refer
    Allow-Events: message-summary
    Allow-Events: dialog
    Max-Forwards: 70
    Call-ID: [email protected]
    From: "Manager";tag=10.107.177.95+8+1740001+dc7af6ae
    To: ""
    CSeq: 392882336 INVITE
    Expires: 180
    Supported: replaces
    Contact: "Manager"
    Content-Type: application/sdp
    Content-Length: 195
    User-Agent: Wave/10.5.3021.2152
    v=0
    o=InstantOffice 785 0 IN IP4 10.107.177.95
    s=phone-call
    c=IN IP4 10.107.177.95
    t=0 0
    m=audio 16746 RTP/AVP 0 18
    a=rtpmap:0 pcmu/8000/1
    a=rtpmap:18 g729/8000/1
    a=ptime:20
    a=sendrecv
    009464: Mar  4 12:51:54.243: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_new_msg_preprocessor: Checking Invite Dialog
    009465: Mar  4 12:51:54.247: //-1/xxxxxxxxxxxx/SIP/Info/sipSPIAddContextToTable: Added context(0x4A0E0A28) with key=[203] to table
    009466: Mar  4 12:51:54.247: //-1/xxxxxxxxxxxx/SIP/Transport/sipSPIUpdateResponseInfo: Dialog Transaction Address 10.107.177.95,Port 5060, Transport 1, SentBy Port 5060
    009467: Mar  4 12:51:54.247: //-1/742AD833BE83/SIP/State/sipSPIChangeState: 0x4A0E0A28 : State change from (STATE_NONE, SUBSTATE_NONE)  to (STATE_IDLE, SUBSTATE_NONE)
    009468: Mar  4 12:51:54.247: //-1/xxxxxxxxxxxx/SIP/Transport/sipSPIUpdateResponseInfo: Dialog Transaction Address 10.107.177.95,Port 5060, Transport 1, SentBy Port 5060
    009469: Mar  4 12:51:54.247: //-1/xxxxxxxxxxxx/SIP/Info/sipSPISetDateHeader: Converting TimeZone EST to SIP default timezone = GMT
    009470: Mar  4 12:51:54.247: //-1/xxxxxxxxxxxx/SIP/Transport/sipSPIUpdateResponseInfo: Dialog Transaction Address 10.107.177.95,Port 5060, Transport 1, SentBy Port 5060
    009471: Mar  4 12:51:54.247: //-1/xxxxxxxxxxxx/SIP/Info/sipSPICheckIpip: VOIP dialpeer (peer=0x474A30BC) found for sip_user: 4095
    009472: Mar  4 12:51:54.247: //-1/xxxxxxxxxxxx/SIP/Info/sipSPIGetContentGTD: No GTD found in inbound container
    009473: Mar  4 12:51:54.247: //-1/742AD833BE83/SIP/Info/sipSPIUaddCcbToUASReqTable: ****Adding to UAS Request table.
    009474: Mar  4 12:51:54.247: //-1/742AD833BE83/SIP/Info/sipSPIUaddCcbToTable: Added to table. ccb=0x4A0E0A28 [email protected]
    009475: Mar  4 12:51:54.247: //-1/742AD833BE83/SIP/Info/sipSPIMatchSrcIpGroup: Match not found on carrier id
    009476: Mar  4 12:51:54.247: //-1/742AD833BE83/SIP/Info/sipSPIMatchSrcIpGroup: Match not found on Incoming called number: 4095
    009477: Mar  4 12:51:54.247: //-1/742AD833BE83/SIP/Info/sipSPIMatchSrcIpGroup: Match not found on destination pattern: 100
    009478: Mar  4 12:51:54.247: //-1/742AD833BE83/SIP/Info/ccsipUpdateIncomingCallParams: ccCallInfo: Calling name Manager, number 100, Calling oct3 0x00, oct_3a 0x80, Called number 4095
    009479: Mar  4 12:51:54.247: //-1/742AD833BE83/SIP/Info/sipSPIGetShrlPeer: Try match incoming dialpeer for Calling number: : 100
    009480: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIGetCallConfig: Precondition tag absent in Require/Supported header
    009481: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIGetCallConfig: Non dial peer leg - using RTP Supported Codecs
    009482: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIGetCallConfig: RTP Preferred Codecs supported by GW 18
    009483: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIGetCallConfig: RTP Preferred Codecs supported by GW 0
    009484: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIGetCallConfig: RTP Preferred Codecs supported by GW 8
    009485: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIGetCallConfig: RTP Preferred Codecs supported by GW 9
    009486: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIGetCallConfig: RTP Preferred Codecs supported by GW 4
    009487: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIGetCallConfig: RTP Preferred Codecs supported by GW 2
    009488: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIGetCallConfig: RTP Preferred Codecs supported by GW 15
    009489: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIGetCallConfig: RTP Preferred Codecs supported by GW 3
    009490: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIContinueNewMsgInvite: Calling name Manager, number 100, Calling oct3 0x00, oct_3a 0x80, ext_priv 0x00, Called number 4095, oct3 0x00
    009491: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIContinueNewMsgInvite: Carrier id code , prev_cid NONE, next_cid NONE, prev_tgrp NONE, next_tgrp NONE
    009492: Mar  4 12:51:54.251: //-1/742AD833BE83/SIP/Info/sipSPIRscmsmAvail: Value returned by check is = 0
    009493: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/sipSPIProcessHistoryInfoHeader: No HI headers recvd from app container
    009494: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/sipSPIProcessDiversionHeader: No diversion headers recvd from app container
    009495: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/sipSPIProcessReplacesHeader: No replaces hdr found
    009496: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/sipSPIDoMediaNegotiation: Number of m-lines = 1
    SIP: (32208) Attribute mid, level 1 instance 1 not found.
    009497: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Media/sipSPISetMediaSrcAddr: Media src addr for stream 1 = 172.25.30.21
    009498: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/sipSPIDoAudioNegotiation: Codec (g711ulaw) Negotiation Successful on Static Payload for m-line 1
    009499: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/sipSPIDoPtimeNegotiation: One ptime attribute found - value:20
    009500: Mar  4 12:51:54.251: //-1/xxxxxxxxxxxx/SIP/Info/convert_ptime_to_codec_bytes: Values :Codec: g711ulaw ptime :20, codecbytes: 160
    009501: Mar  4 12:51:54.251: //-1/xxxxxxxxxxxx/SIP/Info/convert_codec_bytes_to_ptime: Values :Codec: g711ulaw codecbytes :160, ptime: 20
    009502: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Media/sipSPIDoPtimeNegotiation: Offered ptime:20, Negotiated ptime:20 Negotiated codec bytes: 160 for codec g711ulaw
    009503: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/sipSPIDoDTMFRelayNegotiation: m-line index 1
    009504: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/sipSPIDoDTMFRelayNegotiation: Requested DTMF-RELAY option(s) not found in Preferred DTMF-RELAY option list!
    009505: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/sipSPIStreamTypeAndDtmfRelay: DTMF Relay mode: Inband Voice
    009506: Mar  4 12:51:54.251: //-1/xxxxxxxxxxxx/SIP/Info/sip_sdp_get_modem_relay_cap_params: NSE payload from X-cap = 0
    009507: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/sip_select_modem_relay_params: X-tmr not present in SDP. Disable modem relay
    009508: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/sipSPIGetSDPDirectionAttribute: No direction attribute present or multiple direction attributes that can't be handled for m-line:1 and num-a-lines:0
    009509: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/sipSPIDoAudioNegotiation: Codec negotiation successful for media line 1
            payload_type=0, codec_bytes=160, codec=g711ulaw, dtmf_relay=inband-voice
            stream_type=voice-only (0), dest_ip_address=10.107.177.95, dest_port=16746
    009510: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/State/sipSPIChangeStreamState: Stream (callid =  -1)  State changed from (STREAM_DEAD) to (STREAM_ADDING)
    009511: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Media/sipSPIUpdCallWithSdpInfo:
            Preferred Codec        : g729r8, bytes :20
            Preferred  DTMF relay  : inband-voice
            Preferred NTE payload  : 101
            Early Media            : No
            Delayed Media          : No
            Bridge Done            : No
            New Media              : No
            DSP DNLD Reqd          : No
    009512: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Info/resolve_media_ip_address_to_bind: Media already bound, use existing source_media_ip_addr
    009513: Mar  4 12:51:54.251: //32208/742AD833BE83/SIP/Media/sipSPISetMediaSrcAddr: Media src addr for stream 1 = 172.25.30.21
    009514: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer:
    callId 32208 peer 0 flags 0x201 state STATE_IDLE
    009515: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo:
    CallID 32208, sdp 0x4A606AE0 channels 0x4A0E1CC8
    009516: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/copy_channels:
    callId 32208 size 0 ptr 0x495086DC)
    009517: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo:
    Hndl ptype 0 mline 1
    009518: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: Selecting codec g711ulaw
    009519: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/codec_found:
    Codec to be matched: 5
    009520: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: ADD AUDIO CODEC 5
    009521: Mar  4 12:51:54.255: //-1/xxxxxxxxxxxx/SIP/Info/convert_codec_bytes_to_ptime: Values :Codec: g711ulaw codecbytes :160, ptime: 20
    009522: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: Media negotiation done: stream->negotiated_ptime=20,stream->negotiated_codec_bytes=160, coverted ptime=20 stream->mline_index=1, media_ndx=1
    009523: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Error/sipSPI_ipip_copy_sdp_to_channelInfo:
    failed to update call entry
    009524: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo:
    Adding codec 5 ptype 0 time 20, bytes 160  as channel 0 mline 1 ss 1 10.107.177.95:16746
    009525: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo:
    Hndl ptype 18 mline 1
    009526: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Media/sipSPISelectCodecVersion: Codec (g729br8) is not in preferred list
    009527: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: An exact codec match not configured, using interoperable codec g729r8
    009528: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: Selecting codec g729r8
    009529: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/codec_found:
    Codec to be matched: 16
    009530: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: ADD AUDIO CODEC 16
    009531: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: Media negotiation NOT done, get ptime from sdp: ptime=20, media_ndx=1
    009532: Mar  4 12:51:54.255: //-1/xxxxxxxxxxxx/SIP/Info/convert_ptime_to_codec_bytes: Values :Codec: g729r8 ptime :20, codecbytes: 20
    009533: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Error/sipSPI_ipip_copy_sdp_to_channelInfo:
    failed to update call entry
    009534: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo:
    Adding codec 16 ptype 18 time 20, bytes 20  as channel 1 mline 1 ss 1 10.107.177.95:16746
    009535: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: Copy sdp to channel- AFTER CODEC FILTERING: ccb->pld.ipip_caps.codecInfo[channel_ndx].codec = 5
    009536: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: Copy sdp to channel- AFTER CODEC FILTERING: ccb->pld.ipip_caps.codecInfo[channel_ndx].codec = 16
    009537: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: Copy sdp to channel- AFTER CODEC FILTERING: ccb->pld.ipip_caps.codecInfo[channel_ndx].codec = -1
    009538: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer:
    callId 32208 flags 0x100 state STATE_IDLE
    009539: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer:
    Report initial call media
    009540: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer: ccb->flags 0xC, ccb->pld.flags_ipip 0x201
    009541: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/copy_channels:
    callId 32208 size 468 ptr 0x47E3CD94)
    009542: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer:
    CCSIP: Unable to report channel ind
    009543: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/ccsip_update_srtp_caps:  5054: Posting Remote SRTP caps to other callleg.
    009544: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer: do cc_api_caps_ind()
    009545: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Media/sipSPIUpdCallWithSdpInfo:
              Stream type            : voice-only
              Media line             : 1
              State                  : STREAM_ADDING (2)
              Stream address type    : 1
              Callid                 : -1
              Negotiated Codec       : g711ulaw, bytes :160
              Nego. Codec payload    : 0 (tx), 0 (rx)
              Negotiated DTMF relay  : inband-voice
              Negotiated NTE payload : 0 (tx), 0 (rx)
              Negotiated CN payload  : 0
              Media Srce Addr/Port   : [172.25.30.21]:0
              Media Dest Addr/Port   : [10.107.177.95]:16746
    009546: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPIHandleInviteMedia:
    Negotiated Codec       : g711ulaw, bytes :160
    Preferred Codec        : g729r8, bytes :20
    Preferred  DTMF relay 1 : 0
    Preferred  DTMF relay 2 : 0
    Negotiated DTMF relay   : 0
    Preferred and Negotiated NTE payloads: 101 0
    Preferred and Negotiated NSE payloads: 100 0
    Preferred and Negotiated Modem Relay: 0 0
    Preferred and Negotiated Modem Relay GwXid: 1 0
    009547: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPIDoQoSNegotiationWithMediaLine: Entry
    009548: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPIDoQoSNegotiationWithMediaLine: QOS negotiation for mline_index 1
    009549: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPIDoStreamQoSNegotiation: Best effort
    009550: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPICanSetFallbackFlag: Local Fallback is not active
    009551: Mar  4 12:51:54.255: //-1/xxxxxxxxxxxx/SIP/Media/sipSPIReserveRtpPort: reserved port 18716 for stream 1
    009552: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPIUpdateSrcSdpFixedPart: Reserving rtp port for stream 1, src_port=18716
    009553: Mar  4 12:51:54.255: //-1/xxxxxxxxxxxx/SIP/Info/sipSPISetMediaDirectionForStream: Setting Media direction SENDRECV for stream 1
    009554: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPIUpdateSrcSdpVariablePart: Setting stream 1 portnum to 18716
    009555: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPIUpdateSrcSdpVariablePart:
    SIP update src sdp, negoitated codec 5, payload type 0
    009556: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPIAddBillingInfoToCcb: sipCallId for billing records = [email protected]
    009557: Mar  4 12:51:54.255: //-1/xxxxxxxxxxxx/SIP/Info/sipSPIGetContentCPA: No CPA found in inbound container
    009558: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPIProcessCPA: No x-cisco-cpa content found
    009559: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_store_channel_info: Store channelInfo in CallInfo
    009560: Mar  4 12:51:54.255: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_store_channel_info: dtmf negotiation done, storing negotiated dtmf = 0,
    009561: Mar  4 12:51:54.259: //32208/742AD833BE83/SIP/Info/sipSPIShrlCall: Check peer: 0 for Shared-Line call, callid: 32208
    009562: Mar  4 12:51:54.259: //32208/742AD833BE83/SIP/Info/ccsip_set_bearer_capability:
       Bearer Capability: Speech (0x00)
    009563: Mar  4 12:51:54.259: //-1/xxxxxxxxxxxx/SIP/Info/sipSPIGetContentQSIG: No QSIG Body found in inbound container
    009564: Mar  4 12:51:54.259: //-1/xxxxxxxxxxxx/SIP/Info/sipSPIGetContentQ931: No RawMsg Body found in inbound container
    009565: Mar  4 12:51:54.259: //-1/xxxxxxxxxxxx/SIP/Info/sipSPICreateNewRawMsg: No Data to form The Raw Message
    009566: Mar  4 12:51:54.259: //32208/742AD833BE83/SIP/Info/sipSPIContinueNewMsgInvite: ccsip_api_call_setup_ind returned: SIP_SUCCESS
    009567: Mar  4 12:51:54.259: //32208/742AD833BE83/SIP/Info/sipSPIUaddccCallIdToTable: Adding call id 7DD0 to table
    009568: Mar  4 12:51:54.259: //32208/742AD833BE83/SIP/Transport/sipSPITransportSendMessage: msg=0x4A3DEDB8, addr=10.107.177.95, port=5060, sentBy_port=5060, is_req=0, transport=1, switch=0, callBack=0x00000000
    009569: Mar  4 12:51:54.259: //32208/742AD833BE83/SIP/Transport/sipSPITransportSendMessage: Proceedable for sending msg immediately
    009570: Mar  4 12:51:54.259: //32208/742AD833BE83/SIP/Transport/sipTransportLogicSendMsg: switch transport is 0
    009571: Mar  4 12:51:54.259: //-1/xxxxxxxxxxxx/SIP/Transport/sipTransportPostSendMessage: Posting send for msg=0x4A3DEDB8, addr=10.107.177.95, port=5060, connId=0 for UDP
    009572: Mar  4 12:51:54.259: //32208/742AD833BE83/SIP/State/sipSPIChangeState: 0x4A0E0A28 : State change from (STATE_IDLE, SUBSTATE_NONE)  to (STATE_RECD_INVITE, SUBSTATE_NONE)
    009573: Mar  4 12:51:54.259: //32208/742AD833BE83/SIP/Info/sipSPIProcessContactInfo: Previous Hop 10.107.177.95:5060
    009574: Mar  4 12:51:54.259: //-1/xxxxxxxxxxxx/SIP/Event/sipSPIEventInfo: Queued event from SIP SPI : SIPSPI_EV_CC_CALL_PROCEEDING
    009575: Mar  4 12:51:54.263: //-1/xxxxxxxxxxxx/SIP/Info/sipSPIAddContextToTable: Added context(0x4A0D11F4) with key=[204] to table
    009576: Mar  4 12:51:54.263: //32209/000000000000/SIP/State/sipSPIChangeState: 0x4A0D11F4 : State change from (STATE_NONE, SUBSTATE_NONE)  to (STATE_IDLE, SUBSTATE_NONE)
    009577: Mar  4 12:51:54.263: //32209/000000000000/SIP/Info/ccsip_call_setup_request: Before processing SETUP REQccb->pld.flags_ipip = 200
    009578: Mar  4 12:51:54.263: //32209/000000000000/SIP/Info/ccsip_call_setup_request: midcall-signaling passthru enabled
    009579: Mar  4 12:51:54.263: //32209/000000000000/SIP/Info/ccsip_call_setup_request:
    This a IPIP call: Chan 0, codec 5 channel 16746, ip 10.107.177.95:16746  params 0x4A439388 caps 0x47E60E64
    009580: Mar  4 12:51:54.263: //32209/000000000000/SIP/Info/ccsip_call_setup_request:
    This a IPIP call: Chan 1, codec 16 channel 16746, ip 10.107.177.95:16746  params 0x4A439388 caps 0x47E60E64
    009581: Mar  4 12:51:54.263: //32209/000000000000/SIP/Info/ccsip_gw_set_sipspi_mode: Setting SPI mode to SIP-SIP
    009582: Mar  4 12:51:54.263: //32209/000000000000/SIP/Info/ccsip_call_setup_request: After processing SETUP REQccb->pld.flags_ipip = 400000
    009583: Mar  4 12:51:54.263: //-1/xxxxxxxxxxxx/SIP/Info/sipSPIGetOutboundHostAndDestHostPrivate: CCSIP: target_host : 172.24.7.14 target_port : 5060
    009584: Mar  4 12:51:54.263: //-1/xxxxxxxxxxxx/SIP/Event/sipSPIEventInfo: Queued event from SIP SPI : SIPSPI_EV_CC_CALL_SETUP
    009585: Mar  4 12:51:54.263: //32209/742AD833BE83/SIP/Info/ccsip_call_setup_request: Incrementing call counter in dial-peer [11]
    009586: Mar  4 12:51:54.263: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_event_handler: 
    009587: Mar  4 12:51:54.263: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_event_handler: switch(ev.ev_id: 162)
    009588: Mar  4 12:51:54.263: //32208/742AD833BE83/SIP/Info/ccsip_event_handler:
    ccsip_event_handler: peer ID 32209 chans 0x4A6AF8B8 event 162 flags 0x40001C 0x100 0x601 data 0x4A6AF8B8
    009589: Mar  4 12:51:54.263: //32208/742AD833BE83/SIP/Info/ccsip_event_handler:
    ccsip_event_handler: CC_EV_H245_SET_MODE: peer ID 32209 chans 0x4A6AF8B8 event 162 flags 0x40001C 0x100 0x601 data 0x4A6AF8B8, type = 1
    009590: Mar  4 12:51:54.263: //32208/742AD833BE83/SIP/Info/ccsip_gw_set_sipspi_mode: Setting SPI mode to SIP-SIP
    009591: Mar  4 12:51:54.263: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_event_handler: CC_R_SUCCESS_WITH_CONFIRMED
    009592: Mar  4 12:51:54.267: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_process_sipspi_queue_event: ccsip_spi_get_msg_type returned: 3 for event 3
    009593: Mar  4 12:51:54.267: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_process_sipspi_queue_event: ccsip_spi_get_msg_type returned: 3 for event 2
    009594: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPIUaddccCallIdToTable: Adding call id 7DD1 to table
    009595: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPIGetCallConfig: preferred_codec set[0] type :No Codec    bytes: 0
    009596: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPIGetCallConfig: Media forking disabled
    009597: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPICanSetFallbackFlag: Local Fallback is not active
    009598: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPIGetCallConfig: Using Voice Class Codec, tag = 1
    009599: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Media/sipSPICopyPeerDataToCCB: Firewall traversal is not enabled
    009600: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPIGetCallConfig: xcoder high-density disabled
    009601: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPIGetCallConfig: Flow Mode set to FLOW_THROUGH
    009602: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPIGetCallConfig: Media forking disabled
    009603: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/preprocessSetup:
    This is a not a SIGO Call -, could be DM call
    009604: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_call_setup: No video caps posted by peer
    009605: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_call_setup: xcoder high-density disabled
    009606: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_call_setup: Flow Mode set to FLOW_THROUGH
    009607: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_channelInfo_to_sdp:
    callid 32209, channels 0x47DBA6E4 caps 0x47E60E64
    009608: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_channelInfo_to_sdp: Peer cap provided: callid = 32209, peer dtmf = 0
    009609: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_channelInfo_to_sdp: callid = 32209, peer not doing RFC2833, peer dtmf = 0, enable NTE_ASSUMED
    009610: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/codec_found:
    Codec to be matched: 5
    009611: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/codec_found:
    Codec to be matched: 16
    009612: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPIDtmfTranscoder: Return upon SCCP version 0
    009613: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/codec_found:
    Codec to be matched: 5
    009614: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/codec_found:
    Codec to be matched: 16
    009615: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPIDtmfTranscoder: Return upon SCCP version 0
    009616: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPIValidateAndCopyOutboundHost: CCSIP: copy target_host to outbound_host
    009617: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Media/sipSPISetMediaSrcAddr: Media src addr for stream 1 = 172.25.30.21
    009618: Mar  4 12:51:54.267: //-1/xxxxxxxxxxxx/SIP/Media/sipSPIReserveRtpPort: reserved port 16534 for stream 1
    009619: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Media/sipSPIAddSDPMediaPayload: Preferred method of dtmf relay is: 6, with payload: 101
    009620: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPIAddSDPPayloadAttributes:
    max_event 15
    009621: Mar  4 12:51:54.267: //-1/xxxxxxxxxxxx/SIP/Info/convert_codec_bytes_to_ptime: Values :Codec: g711ulaw codecbytes :160, ptime: 20
    009622: Mar  4 12:51:54.267: //-1/xxxxxxxxxxxx/SIP/Info/sipSPISetMediaDirectionForStream: Setting Media direction SENDRECV for stream 1
    009623: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sip_generate_sdp_xcaps_list: Modem Relay and T38 disabled. X-cap not needed
    009624: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Info/sipSPIOutgoingCallSDP: Creating recv-only stream for outbound call
    009625: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Media/sipSPIProcessRtpSessions: sipSPIProcessRtpSessions
    009626: Mar  4 12:51:54.267: //32209/742AD833BE83/SIP/Media/sipSPIProcessRtpSessions: No active streams.
    009627: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/sip_gw_pre_setup_add_sdp_container: SDP container added
    009628: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/sipSPIAddMLPPServicesInfo: No MLP Info available on incoming leg
    009629: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/sipSPIShrlGetInstanceInfo: Obtained the call instance 0 for non-shared-line '....' with callid: 32209
    009630: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/sipSPIAddCiscoGcid: Gcid value not set - not adding header.
    009631: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_set_history_info_header: No HI header recvd from container
    009632: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_set_diversion_header: No diversion header recvd from container
    009633: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/act_idle_continue_call_setup:
    009634: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/sipSPIRscmsmAvail: Value returned by check is = 0
    009635: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/sipSPIUaddCcbToUACTable: ****Adding to UAC table.
    009636: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/sipSPIUaddCcbToTable: Added to table. ccb=0x4A0D11F4 [email protected]
    009637: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/sipSPIUsetBillingProfile: sipCallId for billing records = [email protected]
    009638: Mar  4 12:51:54.271: //-1/xxxxxxxxxxxx/SIP/Transport/sipSPIUpdateResponseInfo: Dialog Transaction Address 172.24.7.14,Port 5060, Transport 1, SentBy Port 5060
    009639: Mar  4 12:51:54.271: //-1/xxxxxxxxxxxx/SIP/Info/sipSPISetDateHeader: Converting TimeZone EST to SIP default timezone = GMT
    009640: Mar  4 12:51:54.271: //-1/xxxxxxxxxxxx/SIP/Info/sipSPIgetRegistrarHost: registrar is not configured
    009641: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Event/sipSPICreateRpid: Received Octet3A=0x80 -> Setting ;screen=no ;privacy=off
    SIP: (32209) Group (a= group line) attribute, level 65535 instance 1 not found.
    009642: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/sipSPIGetCallExtensionSupported: anat enabled, src_sdp dont have anat
    009643: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Info/sipSPISendInvite: Associated container=0x4A43A5F8 to Invite
    009644: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Transport/sipSPISendInvite: Sending Invite to the transport layer
    009645: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Transport/sipSPIGetSwitchTransportFlag: Return the Global configuration, Switch Transport is FALSE
    009646: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Transport/sipSPITransportSendMessage: msg=0x47DBABF4, addr=172.24.7.14, port=5060, sentBy_port=0, is_req=1, transport=1, switch=0, callBack=0x4197823C
    009647: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Transport/sipSPITransportSendMessage: Proceedable for sending msg immediately
    009648: Mar  4 12:51:54.271: //32209/742AD833BE83/SIP/Transport/sipTransportLogicSendMsg: switch transport is 0
    009649: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/Transport/sipTransportLogicSendMsg: Set to send the msg=0x47DBABF4
    009650: Mar  4 12:51:54.275: //-1/xxxxxxxxxxxx/SIP/Transport/sipTransportPostSendMessage: Posting send for msg=0x47DBABF4, addr=172.24.7.14, port=5060, connId=2 for UDP
    009651: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/Info/sentInviteRequest: Sent Invite in state STATE_IDLE
    009652: Mar  4 12:51:54.275: //-1/xxxxxxxxxxxx/SIP/Info/sentInviteRequest: Transaction active. Facilities will be queued.
    009653: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/State/sipSPIChangeState: 0x4A0D11F4 : State change from (STATE_IDLE, SUBSTATE_NONE)  to (STATE_SENT_INVITE, SUBSTATE_NONE)
    009654: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/Media/sipSPIProcessRtpSessions: sipSPIProcessRtpSessions
    009655: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/Media/sipSPIAddStream: Adding stream 1 of type voice+dtmf (callid 32209) to the VOIP RTP library
    009656: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/Info/resolve_media_ip_address_to_bind: Media already bound, use existing source_media_ip_addr
    009657: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/Media/sipSPISetMediaSrcAddr: Media src addr for stream 1 = 172.25.30.21
    009658: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/Media/sipSPIUpdateRtcpSession: sipSPIUpdateRtcpSession for m-line 1
    009659: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/Media/sipSPIUpdateRtcpSession: rtcp_session info
            laddr = 172.25.30.21, lport = 16534, raddr = 0.0.0.0, rport=0, do_rtcp=FALSE
            src_callid = 32209, dest_callid = -1, stream type = voice+dtmf, stream direction = RECVONLY
            media_ip_addr =  - , vrf tableid = 0 media_addr_type = 1
    009660: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/Media/sipSPIUpdateRtcpSession: No rtp session, creating a new one
    009661: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/Info/sipSPICreateRtpSession: sess: 47DC9F20 do_rtcp:0
    009662: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/Media/sipSPICreateRtpSession: stun is disabled
    009663: Mar  4 12:51:54.275: //32209/742AD833BE83/SIP/State/sipSPIChangeStreamState: Stream (callid =  32209)  State changed from (STREAM_ADDING) to (STREAM_ACTIVE)
    009664: Mar  4 12:51:54.275: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Sent:
    SIP/2.0 100 Trying
    Via: SIP/2.0/UDP 10.107.177.95;branch=z9hG4bK+ccab88001db7a774e18a6626099dfafe+10.107.177.95+8
    From: "Manager";tag=10.107.177.95+8+1740001+dc7af6ae
    To: ""
    Date: Thu, 04 Mar 2010 17:51:54 GMT
    Call-ID: [email protected]
    CSeq: 392882336 INVITE
    Allow-Events: telephone-event
    Server: Cisco-SIPGateway/IOS-12.x
    Content-Length: 0
    SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP 10.107.177.95;branch=z9hG4bK+ccab88001db7a774e18a6626099dfafe+10.107.177.95+8
    From: "Manager";tag=10.107.177.95+8+1740001+dc7af6ae
    To: "";tag=244F8DC4-21CE
    Date: Thu, 04 Mar 2010 17:51:54 GMT
    Call-ID: [email protected]
    CSeq: 392882336 INVITE
    Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
    Allow-Events: telephone-event
    Remote-Party-ID: ;party=called;screen=no;privacy=off
    Contact:
    Server: Cisco-SIPGateway/IOS-12.x
    Content-Length: 0
    009706: Mar  4 12:51:56.479: //-1/xxxxxxxxxxxx/SIP/Info/HandleUdpIPv4SocketReads: Msg enqueued for SPI with IP addr: [172.24.7.14]:5060
    009707: Mar  4 12:51:56.479: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_process_sipspi_queue_event: ccsip_spi_get_msg_type returned: 2 for event 1
    009708: Mar  4 12:51:56.479: //-1/xxxxxxxxxxxx/SIP/Transport/sipTransportProcessNWNewConnMsg: context=0x00000000
    009709: Mar  4 12:51:56.479: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_new_msg_preprocessor: Checking Invite Dialog
    009710: Mar  4 12:51:56.479: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    SIP/2.0 200 OK
    Date: Thu, 04 Mar 2010 17:51:54 GMT
    Allow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY
    From: "Manager" ;tag=244F8D1C-1153
    Allow-Events: presence, kpml
    Supported: replaces
    Supported: Geolocation
    Content-Length: 211
    Require:  timer
    To: ;tag=65785772-11d5-4cc9-a426-d79b0af58553-56847455
    Contact:
    Content-Type: application/sdp
    Call-ID: [email protected]
    Via: SIP/2.0/UDP 172.25.30.21:5060;branch=z9hG4bK298144C
    CSeq: 101 INVITE
    Session-Expires:  1800;refresher=uas
    v=0
    o=CiscoSystemsCCM-SIP 2000 1 IN IP4 172.24.7.14
    s=SIP Call
    c=IN IP4 172.25.30.21
    t=0 0
    m=audio 19154 RTP/AVP 0 101
    a=rtpmap:0 PCMU/8000
    a=ptime:20
    a=rtpmap:101 telephone-event/8000
    a=fmtp:101 0-15
    009711: Mar  4 12:51:56.479: //32209/742AD833BE83/SIP/Info/sipSPICheckResponse: INVITE response with no RSEQ - disable IS_REL1XX
    009712: Mar  4 12:51:56.479: //-1/xxxxxxxxxxxx/SIP/Info/sipSPIGetContentGTD: No GTD found in inbound container
    009713: Mar  4 12:51:56.479: //32209/742AD833BE83/SIP/Info/sipSPIhandle200OKInvite: Transaction active. Facilities will be queued.
    009714: Mar  4 12:51:56.479: //32209/742AD833BE83/SIP/Info/sipSPIhandle200OKInvite: *** This ccb is the parent
    009715: Mar  4 12:51:56.479: //32208/742AD833BE83/SIP/Info/sipSPIUupdateCcCallIds: Old src/dest ccCallids: -1/-1, new src/dest ccCallids: 32208/32209
    009716: Mar  4 12:51:56.479: //32208/742AD833BE83/SIP/Info/sipSPIUupdateCcCallIds: Old streamcallid=-1, new streamcallid=32208
    009717: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Error/sipSPIProcessNotifyCallInfoHeader: Call-Info header with for Unsolicited Notify Absent,Disabling Unsolicited Notifies
    009718: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPIUACSessionTimer:
    Session-Expires value: 1800 refresher: 2
    009719: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_Add_SessionExpiresParamsToContainer: Session-refresh parameters added to container minse = 0 session expire = 1800 refresher = 2
    009720: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPIProcessHistoryInfoHeader: No HI headers recvd from app container
    009721: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPICompareRespMediaInfo: No Comparsion needed as 18x response SDP is either absent or ignored
    009722: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPIDoMediaNegotiation: Number of m-lines = 1
    SIP: Attribute mid, level 1 instance 1 not found.
    009723: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/resolve_media_ip_address_to_bind: Media already bound, use existing source_media_ip_addr
    009724: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Media/sipSPISetMediaSrcAddr: Media src addr for stream 1 = 172.25.30.21
    009725: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPIDoAudioNegotiation: Codec (g711ulaw) Negotiation Successful on Static Payload for m-line 1
    009726: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPIDoPtimeNegotiation: One ptime attribute found - value:20
    009727: Mar  4 12:51:56.483: //-1/xxxxxxxxxxxx/SIP/Info/convert_ptime_to_codec_bytes: Values :Codec: g711ulaw ptime :20, codecbytes: 160
    009728: Mar  4 12:51:56.483: //-1/xxxxxxxxxxxx/SIP/Info/convert_codec_bytes_to_ptime: Values :Codec: g711ulaw codecbytes :160, ptime: 20
    009729: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Media/sipSPIDoPtimeNegotiation: Offered ptime:20, Negotiated ptime:20 Negotiated codec bytes: 160 for codec g711ulaw
    009730: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPIDoDTMFRelayNegotiation: m-line index 1
    009731: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPICheckDynPayloadUse: Dynamic payload(101) could not be reserved.
    009732: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPIDoDTMFRelayNegotiation: RTP-NTE DTMF relay option
    009733: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPIDoDTMFRelayNegotiation: Case of partial named event(NE) match in fmtp list of events.
    009734: Mar  4 12:51:56.483: //-1/xxxxxxxxxxxx/SIP/Info/sip_sdp_get_modem_relay_cap_params: NSE payload from X-cap = 0
    009735: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sip_select_modem_relay_params: X-tmr not present in SDP. Disable modem relay
    009736: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPIGetSDPDirectionAttribute: No direction attribute present or multiple direction attributes that can't be handled for m-line:1 and num-a-lines:0
    009737: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPIDoAudioNegotiation: Codec negotiation successful for media line 1
            payload_type=0, codec_bytes=160, codec=g711ulaw, dtmf_relay=rtp-nte
            stream_type=voice+dtmf (1), dest_ip_address=172.25.30.21, dest_port=19154
    009738: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/State/sipSPIChangeStreamState: Stream (callid =  -1)  State changed from (STREAM_DEAD) to (STREAM_ADDING)
    009739: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Media/sipSPIUpdCallWithSdpInfo:
            Preferred Codec        : g711ulaw, bytes :160
            Preferred  DTMF relay  : rtp-nte
            Preferred NTE payload  : 101
            Early Media            : No
            Delayed Media          : No
            Bridge Done            : No
            New Media              : No
            DSP DNLD Reqd          : No
    009740: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/resolve_media_ip_address_to_bind: Media already bound, use existing source_media_ip_addr
    009741: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Media/sipSPISetMediaSrcAddr: Media src addr for stream 1 = 172.25.30.21
    009742: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer:
    callId 32209 peer 32208 flags 0x401005 state STATE_RECD_PROCEEDING
    009743: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo:
    CallID 32209, sdp 0x47DC33D0 channels 0x4A0D2494
    009744: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/copy_channels:
    callId 32209 size 468 ptr 0x47E3CD94)
    009745: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo:
    Hndl ptype 0 mline 1
    009746: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: Selecting codec g711ulaw
    009747: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/codec_found:
    Codec to be matched: 5
    009748: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: ADD AUDIO CODEC 5
    009749: Mar  4 12:51:56.483: //-1/xxxxxxxxxxxx/SIP/Info/convert_codec_bytes_to_ptime: Values :Codec: g711ulaw codecbytes :160, ptime: 20
    009750: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: Media negotiation done: stream->negotiated_ptime=20,stream->negotiated_codec_bytes=160, coverted ptime=20 stream->mline_index=1, media_ndx=1
    009751: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo:
    Adding codec 5 ptype 0 time 20, bytes 160  as channel 0 mline 1 ss 1 172.25.30.21:19154
    009752: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo:
    Hndl ptype 101 mline 1
    009753: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo:
    Call 32209 dtmf ptype 101 nte/oob enabled
    009754: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: setting ipip_caps DTMF to RFC2833: callid = 32209, dtmf = 6
    009755: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: Copy sdp to channel- AFTER CODEC FILTERING: ccb->pld.ipip_caps.codecInfo[channel_ndx].codec = 5
    009756: Mar  4 12:51:56.483: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_copy_sdp_to_channelInfo: Copy sdp to channel- AFTER CODEC FILTERING: ccb->pld.ipip_caps.codecInfo[channel_ndx].codec = -1
    009757: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer:
    callId 32209 flags 0x100 state STATE_RECD_PROCEEDING
    009758: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer:
    Report initial call media
    009759: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer: ccb->flags 0xC00018, ccb->pld.flags_ipip 0x403005
    009760: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer: Post CAPS to peer.
    009761: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/ccsip_caps_ind: Entry
    009762: Mar  4 12:51:56.487: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_caps_ind:
    destCallID=32208, srcCallID=32209,
                             peer_ccb->call_info.currentLocalName=Manager,
                             peer_ccb->call_info.currentRemoteName=,
                             ccb->call_info.currentLocalName=,
                             ccb->call_info.currentRemoteName=
    009763: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/ccsip_get_rtcp_session_parameters: CURRENT VALUES: stream_callid=32208, current_seq_num=0x9D9
    009764: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/ccsip_get_rtcp_session_parameters: NEW VALUES: stream_callid=32208, current_seq_num=0x0
    009765: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/ccsip_caps_ind: Load DSP with negotiated codec: g711ulaw, Bytes=160
    009766: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/ccsip_caps_ind: Set forking flag to 0x0
    009767: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/sipSPISetDTMFRelayMode: Set DSP for dtmf-relay = CC_CAP_DTMF_RELAY_INBAND_VOICE_AND_OOB
    009768: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/sip_set_modem_caps: Preferred (or the one that came from DSM) modem relay=0, from CLI config=0
    009769: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/sip_set_modem_caps: Disabling Modem Relay...
    009770: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/sip_generate_sdp_xcaps_list: Modem Relay and T38 disabled. X-cap not needed
    009771: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/sip_set_modem_caps: Negotiation already Done. Set negotiated Modem caps and generate SDP Xcap list
    009772: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/sip_set_modem_caps: Modem Relay & Passthru both disabled
    009773: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/sip_set_modem_caps: nse payload = 0, ptru mode = 0, ptru-codec=0, redundancy=0, xid=0, relay=0, sprt-retry=12, latecncy=200, compres-dir=3, dict=1024, strnlen=32
    009774: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Media/sipSPISetStreamInfo: 0 Active Streams
    009775: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Media/sipSPISetStreamInfo: Number of active streams is zero (0)!
    009776: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Media/sipSPISetStreamInfo:
    caps.stream_count=0,caps.stream[0].stream_type=0xFFFF, caps.stream_list.xmitFunc=
    009777: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Media/sipSPISetStreamInfo: ??unknown??, caps.stream_list.context=
    009778: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Media/sipSPISetStreamInfo: 0x0 (gccb)
    009779: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/ccsip_caps_ind: Load DSP with codec : g711ulaw, Bytes=160, payload = 0
    009780: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/ccsip_caps_ind: ccsip_caps_ind: ccb->pld.flags_ipip = 0x400403
    009781: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/ccsip_caps_ind: No video caps detected in the caps posted by peer leg
    009782: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/ccsip_caps_ind: Calling cc_api_caps_ack()
    009783: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Info/ccsip_caps_ack: Set forking flag to 0x0
    009784: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer: ccb->flags 0xC00018, ccb->pld.flags_ipip 0x403005
    009785: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Info/copy_channels:
    callId 32209 size 240 ptr 0x47E3CD94)
    009786: Mar  4 12:51:56.487: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_event_handler: 
    009787: Mar  4 12:51:56.487: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_event_handler: switch(ev.ev_id: 156)
    009788: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/ccsip_event_handler:
    ccsip_event_handler: peer ID 32209 chans 0x47E3CD94 event 156 flags 0xC0001C 0x100 0x400403 data 0x47E3CD94
    009789: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/ccsip_event_handler:
    ccsip_event_handler: CC_EV_H245_OPEN_CHANNEL_IND: peer ID 32209  chans 0x47E3CD94 event 156 flags 0xC0001C 0x100 0x400403 data 0x47E3CD94
    009790: Mar  4 12:51:56.487: //-1/xxxxxxxxxxxx/SIP/Event/sipSPIEventInfo: Queued event from SIP SPI : SIPSPI_EV_CC_NEW_MEDIA
    009791: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/ccsip_event_handler:
    ccsip_event_handler: set event->type = SIPSPI_EV_CC_NEW_MEDIA!: peer ID 32209 chans 0x47E3CD94 event 156 flags 0xC0001C 0x100 0x400403 data 0x47E3CD94
    009792: Mar  4 12:51:56.487: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_event_handler: CC_R_SUCCESS_WITH_CONFIRMED
    009793: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Info/sipSPI_ipip_report_media_to_peer: SIP2SIP, posting channel_ind to peer.
    009794: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Info/ccsip_update_srtp_caps:  5033: Not Sending NULL SRTP CAPS to SIP LEG
    009795: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Media/sipSPIUpdCallWithSdpInfo:
              Stream type            : voice+dtmf
              Media line             : 1
              State                  : STREAM_ADDING (2)
              Stream address type    : 1
              Callid                 : 32209
              Negotiated Codec       : g711ulaw, bytes :160
              Nego. Codec payload    : 0 (tx), 0 (rx)
              Negotiated DTMF relay  : rtp-nte
              Negotiated NTE payload : 101 (tx), 101 (rx)
              Negotiated CN payload  : 0
              Media Srce Addr/Port   : [172.25.30.21]:16534
              Media Dest Addr/Port   : [172.25.30.21]:19154
    009796: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Info/sipSPIProcessMediaChanges: sipSPIProcessMediaChanges
    009797: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Info/sipSPIhandle200OKInvite: ccsip_api_call_connect_media returned: SIP_SUCCESS
    009798: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/State/sipSPIChangeState: 0x4A0D11F4 : State change from (STATE_RECD_PROCEEDING, SUBSTATE_NONE)  to (STATE_RECD_PROCEEDING, SUBSTATE_NONE)
    009799: Mar  4 12:51:56.487: //-1/xxxxxxxxxxxx/SIP/Info/sipSPIGetContentQSIG: No QSIG Body found in inbound container
    009800: Mar  4 12:51:56.487: //-1/xxxxxxxxxxxx/SIP/Info/sipSPIGetContentQ931: No RawMsg Body found in inbound container
    009801: Mar  4 12:51:56.487: //-1/xxxxxxxxxxxx/SIP/Info/sipSPICreateNewRawMsg: No Data to form The Raw Message
    009802: Mar  4 12:51:56.487: //32209/742AD833BE83/SIP/Info/sipSPIShrlCall: Check peer: 11 for Shared-Line call, callid: 32209
    009803: Mar  4 12:51:56.487: //32208/742AD833BE83/SIP/Info/sipSPIShrlCall: Check peer: 0 for Shared-Line call, callid: 32208
    009804: Mar  4 12:51:56.491: //32209/742AD833BE83/SIP/Info/sipSPIhandle200OKInvite: ccsip_api_call_connected returned: SIP_SUCCESS
    009805: Mar  4 12:51:56.491: //32209/742AD833BE83/SIP/Transport/sipSPISendAck: Sending ACK to the transport layer
    009806: Mar  4 12:51:56.491: //32209/742AD833BE83/SIP/Transport/sipSPIGetSwitchTransportFlag: Return the Global configuration, Switch Transport is FALSE
    009807: Mar  4 12:51:56.491: //32209/742AD833BE83/SIP/Transport/sipSPITransportSendMessage: msg=0x47DBABF4, addr=172.24.7.14, port=5060, sentBy_port=0, is_req=1, transport=1, switch=0, callBack=0x419795EC
    009808: Mar  4 12:51:56.491: //32209/742AD833BE83/SIP/Transport/sipSPITransportSendMessage: Proceedable for sending msg immediately
    009809: Mar  4 12:51:56.491: //32209/742AD833BE83/SIP/Transport/sipTransportLogicSendMsg: switch transport is 0
    009810: Mar  4 12:51:56.491: //32209/742AD833BE83/SIP/Transport/sipTransportLogicSendMsg: Set to send the msg=0x47DBABF4
    009811: Mar  4 12:51:56.491: //-1/xxxxxxxxxxxx/SIP/Transport/sipTransportPostSendMessage: Posting send for msg=0x47DBABF4, addr=172.24.7.14, port=5060, connId=2 for UDP
    009812: Mar  4 12:51:56.491: //32209/742AD833BE83/SIP/State/sipSPIChangeState: 0x4A0D11F4 : State change from (STATE_RECD_PROCEEDING, SUBSTATE_NONE)  to (STATE_ACTIVE, SUBSTATE_NONE)
    009813: Mar  4 12:51:56.491: //32209/742AD833BE83/SIP/Call/sipSPICallInfo:
    The Call Setup Information is:
    Call Control Block (CCB) : 0x4A0D11F4
    State of The Call        : STATE_ACTIVE
    TCP Sockets Used         : NO
    Calling Number           : 100
    Called Number            : 4095
    Source IP Address (Sig  ): 172.25.30.21
    Destn SIP Req Addr:Port  : 172.24.7.14:5060
    Destn SIP Resp Addr:Port : 172.24.7.14:5060
    Destination Name         : 172.24.7.14
    009814: Mar  4 12:51:56.491: //32209/742AD833BE83/SIP/Call/sipSPIMediaCallInfo:
    Number of Media Streams: 1
    Media Stream             : 1
    Negotiated Codec         : g711ulaw
    Negotiated Codec Bytes   : 160
    Nego. Codec payload      : 0 (tx), 0 (rx)
    Negotiated Dtmf-relay    : 6
    Dtmf-relay Payload       : 101 (tx), 101 (rx)
    Source IP Address (Media): 172.25.30.21
    Source IP Port    (Media): 16534
    Destn  IP Address (Media): 172.25.30.21
    Destn  IP Port    (Media): 19154
    Orig Destn IP Address:Port (Media): [ - ]:0
    009815: Mar  4 12:51:56.491: //32209/742AD833BE83/SIP/Info/sipSPICallActive: Transaction Complete. Lock on Facilities released.
    009816: Mar  4 12:51:56.491: //32209/742AD833BE83/SIP/Info/sipSPIFlushEventBufferQueue: There are 0 events on the internal queue that are going to be free'd
    009817: Mar  4 12:51:56.491: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_process_sipspi_queue_event: ccsip_spi_get_msg_type returned: 3 for event 26
    009818: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_handle_channel_info:
    CCSIP:callID 32208 ft: 1, inc 4, 172.25.30.21:19154, codec 5
    009819: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_handle_channel_info:
    CCSIP:callid 32208 state STATE_SENT_ALERTING
    009820: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_channelInfo_to_sdp:
    callid 32208, channels 0x47E3CD94 caps 0x47E70388
    009821: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_channelInfo_to_sdp: Peer cap provided: callid = 32208, peer dtmf = 6
    009822: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/codec_found:
    Codec to be matched: 5
    009823: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_channelInfo_to_sdp:
    nego mline 1 dtmf 101 ss 1 ret 12
    009824: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_channelInfo_to_sdp: CCB->pld.flags_ipip 0x400403
    009825: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_copy_channelInfo_to_sdp: channel_ind/ack payload type 0
    009826: Mar  4 12:51:56.491: //-1/xxxxxxxxxxxx/SIP/Info/convert_codec_bytes_to_ptime: Values :Codec: g711ulaw codecbytes :160, ptime: 20
    009827: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_handle_channel_info: audio channel_ind
    009828: Mar  4 12:51:56.491: //-1/xxxxxxxxxxxx/SIP/Info/sipSPISetMediaDirectionForStream: Setting Media direction SENDRECV for stream 1
    009829: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPIUpdateSrcSdpVariablePart: Setting stream 1 portnum to 18716
    009830: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPIUpdateSrcSdpVariablePart:
    SIP update src sdp, negoitated codec 5, payload type 0
    009831: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPIProcessMediaChanges: sipSPIProcessMediaChanges
    009832: Mar  4 12:51:56.491: //-1/xxxxxxxxxxxx/SIP/Info/sipSPISetMediaDirectionForStream: Setting Media direction SENDRECV for stream 1
    009833: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPIUpdateSrcSdpVariablePart: Setting stream 1 portnum to 18716
    009834: Mar  4 12:51:56.491: //32208/742AD833BE83/SIP/Info/sipSPIUpdateSrcSdpVariablePart:
    SIP update src sdp, negoitated codec 5, payload type 0
    009835: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Info/ccsip_bridge: confID = 21265, srcCallID = 32208, dstCallID = 32209
    009836: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Info/sipSPIUupdateCcCallIds: Old src/dest ccCallids: 32208/32209, new src/dest ccCallids: 32208/32209
    009837: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Info/sipSPIUupdateCcCallIds: Old streamcallid=32208, new streamcallid=32208
    009838: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Info/ccsip_gw_set_sipspi_mode: Setting SPI mode to SIP-SIP
    009839: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Info/ccsip_bridge: xcoder_attached = 0, xmitFunc = 1131939416, ccb xmitFunc = 1131939416
    009840: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Media/sipSPIProcessRtpSessions: sipSPIProcessRtpSessions
    009841: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Media/sipSPIAddStream: Adding stream 1 of type voice-only (callid 32208) to the VOIP RTP library
    009842: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Info/resolve_media_ip_address_to_bind: Media already bound, use existing source_media_ip_addr
    009843: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Media/sipSPISetMediaSrcAddr: Media src addr for stream 1 = 172.25.30.21
    009844: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Media/sipSPIUpdateRtcpSession: sipSPIUpdateRtcpSession for m-line 1
    009845: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Media/sipSPIUpdateRtcpSession: rtcp_session info
            laddr = 172.25.30.21, lport = 18716, raddr = 10.107.177.95, rport=16746, do_rtcp=TRUE
            src_callid = 32208, dest_callid = 32209, stream type = voice-only, stream direction = SENDRECV
            media_ip_addr = 10.107.177.95, vrf tableid = 0 media_addr_type = 1
    009846: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Media/sipSPIUpdateRtcpSession: No rtp session, creating a new one
    009847: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Info/sipSPICreateRtpSession: sess: 4A699A58 do_rtcp:1
    009848: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Media/sipSPICreateRtpSession: stun is disabled
    009849: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Info/sipSPICreateAndStartRtpTimer:
    009850: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Info/sipSPICreateAndStartRtpTimer: Media Inactivity Timer is disabled.
    009851: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/Media/sipSPIGetNewLocalMediaDirection:
            New Remote Media Direction = SENDRECV
            Present Local Media Direction = SENDRECV
            New Local Media Direction = SENDRECV
            retVal = 0
    009852: Mar  4 12:51:56.495: //32208/742AD833BE83/SIP/State/sipSPIChangeStreamState: Stream (callid =  32208)  State changed from (STREAM_ADDING) to (STREAM_ACTIVE)
    009853: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Info/ccsip_bridge: confID = 21265, srcCallID = 32209, dstCallID = 32208
    009854: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Info/sipSPIUupdateCcCallIds: Old src/dest ccCallids: -1/-1, new src/dest ccCallids: 32209/32208
    009855: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Info/sipSPIUupdateCcCallIds: Old streamcallid=32209, new streamcallid=32209
    009856: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Info/ccsip_gw_set_sipspi_mode: Setting SPI mode to SIP-SIP
    009857: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Info/ccsip_bridge: xcoder_attached = 0, xmitFunc = 1131939416, ccb xmitFunc = 1131939416
    009858: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Media/sipSPIProcessRtpSessions: sipSPIProcessRtpSessions
    009859: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Media/sipSPIAddStream: Adding stream 1 of type voice+dtmf (callid 32209) to the VOIP RTP library
    009860: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Info/resolve_media_ip_address_to_bind: Media already bound, use existing source_media_ip_addr
    009861: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Media/sipSPISetMediaSrcAddr: Media src addr for stream 1 = 172.25.30.21
    009862: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Media/sipSPIUpdateRtcpSession: sipSPIUpdateRtcpSession for m-line 1
    009863: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Media/sipSPIUpdateRtcpSession: rtcp_session info
            laddr = 172.25.30.21, lport = 16534, raddr = 172.25.30.21, rport=19154, do_rtcp=TRUE
            src_callid = 32209, dest_callid = 32208, stream type = voice+dtmf, stream direction = SENDRECV
            media_ip_addr = 172.25.30.21, vrf tableid = 0 media_addr_type = 1
    009864: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Media/sipSPIUpdateRtcpSession: RTP session already created - update
    009865: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Media/sipSPIUpdateRtpSession: stun is disabled for stream:491045B8
    009866: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Info/sipSPICreateAndStartRtpTimer:
    009867: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Info/sipSPICreateAndStartRtpTimer: Media Inactivity Timer is disabled.
    009868: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Info/sipSPIUpdateRtcpSession:
    DTMF inb/oob iwf enabled 101
    009869: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Media/sipSPIGetNewLocalMediaDirection:
            New Remote Media Direction = SENDRECV
            Present Local Media Direction = SENDRECV
            New Local Media Direction = SENDRECV
            retVal = 0
    009870: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/State/sipSPIChangeStreamState: Stream (callid =  32209)  State changed from (STREAM_ADDING) to (STREAM_ACTIVE)
    009871: Mar  4 12:51:56.495: //32209/742AD833BE83/SIP/Info/ccsip_bridge:
    DTMF inb/oob iwf enabled 101
    009872: Mar  4 12:51:56.499: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Sent:
    ACK sip:[email protected]:5060 SIP/2.0
    Via: SIP/2.0/UDP 172.25.30.21:5060;branch=z9hG4bK2991586
    From: "Manager" ;tag=244F8D1C-1153
    To: ;tag=65785772-11d5-4cc9-a426-d79b0af58553-56847455
    Date: Thu, 04 Mar 2010 17:51:54 GMT
    Call-ID: [email protected]
    Max-Forwards: 70
    CSeq: 101 ACK
    Allow-Events: telephone-event
    Content-Length: 0
    009873: Mar  4 12:51:56.499: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_call_connect: CCSIP_CALL_CONNECT: ccb ptr 4A0E0A28
    009874: Mar  4 12:51:56.499: //-1/xxxxxxxxxxxx/SIP/Event/sipSPIEventInfo: Queued event from SIP SPI : SIPSPI_EV_CC_CALL_CONNECT
    009875: Mar  4 12:51:56.499: //-1/xxxxxxxxxxxx/SIP/Info/ccsip_process_sipspi_queue_event: ccsip_spi_get_msg_type returned: 3 for event 6
    009876: Mar  4 12:51:56.499: //32208/742AD833BE83/SIP/Info/sipSPIAddCiscoGcid: Gcid value not set - not adding header.
    009877: Mar  4 12:51:56.499: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_setSessionExpiresParams:
    Session refresh values minse = 0 session expire = 1800 refresher = 2
    009878: Mar  4 12:51:56.499: //32208/742AD833BE83/SIP/Info/sipSPI_ipip_set_history_info_header: No HI header recvd from container
    009879: Mar  4 12:51:56.499: //32208/742AD833BE83/SIP/Info/preprocessConnect: Write sdp_info into msg_body
    009880: Mar  4 12:51:56.503: //32208/742AD833BE83/SIP/Info/preprocessConnect: Add msg_body into container 0x4A43A758
    009881: Mar  4 12:51:56.503: //32208/742AD833BE83/SIP/Info/sipSPIShrlGetInstanceInfo: Obtained the call instance 0 for non-shared-line '539' with callid: 32208
    009882: Mar  4 12:51:56.503: //32208/742AD833BE83/SIP/Event/sipSPICreateRpid: Received Octet3A=0x00 -> Setting ;screen=no ;privacy=off
    SIP: (32208) Group (a= group line) attribute, level 65535 instance 1 not found.
    009883: Mar  4 12:51:56.503: //32208/742AD833BE83/SIP/Info/sipSPIGetCallExtensionSupported: anat enabled, src_sdp and dest_sdp available, should be a midcall request
    009884: Mar  4 12:51:56.503: //32208/742AD833BE83/SIP/Info/sipSPISendInviteResponse: Associated container=0x4A43A758 to Invite Response 200
    009885: Mar  4 12:51:56.503: //32208/742AD833BE83/SIP/Transport/sipSPISendInviteResponse: Sending 200OK Response to the Transport Layer
    009886: Mar  4 12:51:56.503: //32208/742AD833BE83/SIP/Transport/sipSPITransportSendMessage: msg=0x47DBABF4, addr=10.107.177.95, port=5060, sentBy_port=5060, is_req=0, transport=1, switch=0, callBack=0x41978DB0
    009887: Mar  4 12:51:56.503: //32208/742AD833BE83/SIP/Transport/sipSPITransportSendMessage: Proceedable for sending msg immediately
    009888: Mar  4 12:51:56.503: //32208/742AD833BE83/SIP/Transport/sipTransportLogicSendMsg: switch transport is 0
    009889: Mar  4 12:51:56.503: //-1/xxxxxxxxxxxx/SIP/Transport/sipTransportPostSendMessage: Posting send for msg=0x47DBABF4, addr=10.107.177.95, port=5060, connId=0 for UDP
    009890: Mar  4 12:51:56.503: //32208/742AD833BE83/SIP/Info/sentInviteResponse200: Sent 200Ok for Invite in state STATE_SENT_ALERTING
    009891: Mar  4 12:51:56.503: //-1/xxxxxxxxxxxx/SIP/Info/sentInviteResponse200: Transaction active. Facilities will be queued.
    009892: Mar  4 12:51:56.503: //32208/742AD833BE83/SIP/State/sipSPIChangeState: 0x4A0E0A28 : State change from (STATE_SENT_ALERTING, SUBSTATE_NONE)  to (STATE_SENT_SUCCESS, SUBSTATE_NONE)
    009893: Mar  4 12:51:56.503: //-

  • BI SDK 4.0

    Is there more info about the BI SDK 4.0? Is there a way to download this as a free trial?
    From what I've read it seems this is somewhat similar to what RAPID does, perhaps newer or more flexible.

    Hello Tikku
    On page 327 of the SAP Web Intelligence RESTful web service SDK User Guide, SAP BusinessObjects Business Intelligence platform 4.1 there is a section "Getting the document refresh parameters before refreshing a document:
    Request
    GET http://<serverName>:6405/biprws/raylight/v1/documents/{documentId}/param
    eters
    Example: To get the refresh parameters
    Windows
    curl -G -i -H "accept:application/xml" -H X-SAP-LogonToken:"""%tokenValue%""" http://<server
    Name>:6405/biprws/raylight/v1/documents/{documentId}/parameters
    Etc., etc.
    Please have a look at the referenced section of the Guide. If that does not help, let me know. I should have more code on an image that is not up right now and I can share that if need be.
    Oh., BTW, this really is another question and should have been posted as a new Discussion. Just want to keep these seperate for easier searching .
    - Ludek
    Message was edited by: Ludek Uher

  • How to refresh report data from bex query (BW) with parameters

    Hello,
    i hope someone can help me with my problem. I developed an desktop application, which loads (actual state) a report from the local file system. After setting the parameters, the report should be saved as a pdf file. Loading the report into the ReportDocument object and exporting the report to a pdf works fine. Setting parameters (without) a data source too. But now i can't refresh the data in the reports given by a parameter (e.g. time).
    I know there are two methods to do this. Push and pull. I want to use the pull method, cause my program should exports different reports and i think it should be easier to handle this with this method.
    On my development environment is installed:
    Crystal Reports SP 4
    MS Visual Studio 2010 (coding with C# .NET)
    .NET Framework 4
    SAP Integration Kit
    Crystal Reports for Visual Studio 2010 SP1 - SDK libraries
    Crystal Reports for Visual Studio 2010 SP1 - Runtime 32 bit
    SAP GUI 7.20 (Compilation 3)
    The bex query is enabled for external use from ole db for olap. Do i have forget something else?
    Here is a part of my code:
            public ReportDocument doPullMethod(ReportDocument crReportDocument)
                TableLogOnInfo crTableLogOnInfo = crReportDocument.Database.Tables[0].LogOnInfo;
                ConnectionInfo crConnectionInfo = crTableLogOnInfo.ConnectionInfo;
                crConnectionInfo.Password = "*******";
                crReportDocument.SetDatabaseLogon(crConnectionInfo.UserID, crConnectionInfo.Password, crConnectionInfo.ServerName, crConnectionInfo.DatabaseName);
                MessageBox.Show(crConnectionInfo.UserID + " _ " + crConnectionInfo.Password + " _ " + crConnectionInfo.ServerName + " _ " + crConnectionInfo.DatabaseName);
                for (int i = 0; i < crReportDocument.Database.Tables.Count; i++)
                //    crReportDocument.Database.Tables<i>.ApplyLogOnInfo(crTableLogOnInfo);
                    MessageBox.Show("TestConnectivity: " + crReportDocument.Database.Tables<i>.TestConnectivity());
                return crReportDocument;
    Cause i'm using only one bex query, i know that the SetDatabaseLogon()-method should bring me the same result as the ApplyLogOnInfo()-method SAP Crystal Reports .NET API Guide
    Exists an order which i have to follow? First setting parameter and then set the login informations or backwards? Cause i also get the "Failed to load database information" exception, when i set a parameter and TestConnectivity() returns false.
    Do i have to activate the data refresh manually or will be the data refreshed automatically on export?
    I searched in this forum (.NET - SAP Crystal Reports) and found only this thread which according to my problem:
    [Re: Crystal report connects to BW RFC by .NET;
    The question is assumed answered.

    Hi Robin,
    There is a SAP Integration Kit you need to allow CR to connect to SAP data sources. There isn't one for CR for VS 2010 and I don't believe there are the various extra options available in the SDK, no SDK access to the DB driver.
    Possibly, Check the other post, download and run the app Ludek suggested, it will get the connection info for your report using RAS and then plug the output code into your code and see if that works. It should show the crdb_olap dll is the database driver, assuming that is the connection method you used when designing the report.
    Pay attention to the database dll in the output from that app and verify it is on your PC in: C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86
    If that doesn't work then.....
    The problem is, CR for VS 2010 ( version 13 ) is the runtime for BOE 4.0  ( version 14 ) which includes the Integration kit drivers on install. There is no standalone install of the database drivers. They are installed with CR 2011, which doesn't have a SDK included, CR for VS 2010 is also the Developer version for CR 2011.
    Because of the "custom" connection requirements there is no SDK or access to the BW datasource extra options....
    Also note that CR 2008 is not supported in VS 2010, it should work though as long as you stick to 2.0 -> 3.5 framework, no 4.0 Framework support in CR 2008 or BOE 4.0
    You may want to try the SAP Integration Kit forum to see if anyone has been able to make this work or contact your account manager to verify if there are any plans to do what you are doing....
    Don

  • Automatically refresh the report tabs after selecting the parameters in bip

    Hello Everything!!
    Is there a way to automatically refresh all the report tabs once we select the parameters? The report are not refreshed automatically in each tab and users have to either hit apply button or refresh button for each report tab . Is this a lacking feature in BI publisher. I am using 11.1.1.6.6.
    Thanks,
    Uday

    Hello Everything!!
    Is there a way to automatically refresh all the report tabs once we select the parameters? The report are not refreshed automatically in each tab and users have to either hit apply button or refresh button for each report tab . Is this a lacking feature in BI publisher. I am using 11.1.1.6.6.
    Thanks,
    Uday

  • Not refresh other parameters on change

    Hi, all!
    I set "refresh other parameters on change" for my Text parameter, but when I write anything in field and press "Enter" nothing happens.
    But in my report is parameters that get parameter from text field.
    I can not understand what wrong.
    Please help me.

    The other field should be dependent on the value of this field.
    keep one text filed and one list field and make the list dependent on the text field. its partially refreshing the page.

  • Why is Refresh Sheet not showing me the parameters for report?

    I have a really large amount of data showing up in my report. It is taking forever (times out after 30 minutes) for my data to display. In the past, I have cancelled and then used the refresh sheet to constrict my report parameters and then rerun the report. However, today, after I select cancel, and then Refresh Sheet, the report just kicks off again and times out again without showing me my parameter list and without allowing me to specify my running parameters?
    Why is this happening and how can I get my Refresh Sheet to allow me to specify values for my execution parameters.
    Thanks,
    Cherie Machler

    Hi Cherie,
    Is this problem happening in Viewer?
    If yes, I had a SR open with oracle for this problem. It was recently closed without resolution. It is a problem that they are not willing to fix. My scenario is that I open a report with multiple worksheets that are long running and with multiple input parameters. I run the report with the default parameters. Realize I didn't input the correct thing, so I cancel the report. If I cancel at 3 seconds or less, my session hangs and I have to start a new internet session. If I cancel beyond 13 seconds, the cancel takes me back to the select worksheets screen but only allows me to run the report - no changing of parameters allowed.
    Message I received from Oracle:
    "I have received a response on Bug 5576575 - CANNOT CHANGE THE PARAMETER VALUES AFTER CANCELLING A
    REPORT IN VIEWER and internal enhancement request Bug 6007588 - NEED TO CHANGE THE PARAMETER
    VALUES AFTER CANCELLING A REPORT IN VIEWER.
    The bug applies to 10.1.2.54.25 also. Regarding allowing the parameters to be changed bug 6007588 the
    response " in order to fix this,it would need a change in architecture on how we capture and save state
    information. This is unlikely ".
    It will not be possible at this time to change the parameters when cancelling a query in Viewer."
    NOTE: If you read the bugs, they were logged against versions prior to 10.1.2.54 which means they should also apply to 10.1.2.50.
    Regards,
    Nancy

Maybe you are looking for

  • Include heading in text file

    Hi Experts, I need your HELP to include headings START_DATE, NUM_LOGS,MBYES,RSIZE in my text file "redo_history.log" below. 05-3-2009,36, 3600,100 05-4-2009,191, 19100,100 05-5-2009,56, 5600,100 06-1-2009,220, 22000,100 06-2-2009,245, 24500,100 06-3-

  • How to create web-screen for own-created program

    Hi experts! Could you please  suggest me: Some of our end-users have to work with WEBGUI interface. In T-code VL02N we have our userexit SAPLZSDEXIT (Screen 0110). And in WEBGUI we don't see this tab in VL02N. I think I have to generate web-interface

  • Blank page after logged into portal system

    Hi, After logged into our portal system, we are getting blank page with white space. This is not quite common for all users, few users able to view screens at portal systems. Please help me to resolve this issue. Thanks in advance Regards Srinias

  • How to create sequence based (SERIAL) primary key?

    Does anybody know any workaround to modify dictionary table outside Web Dynpro? I specify default column value in SQL Studio: ALTER TABLE PB_ORGANIZATION COLUMN ORG_ID ADD DEFAULT SERIAL(1) Everything is OK, but when I try to insert values in modifie

  • SAP Performance tuning

    What measures shall we take if it is needed to performance tune the SAP Server. It is getting too slow. It will be helpful if someone can send me some link about SAP Performance tuning, not ABAP performance tuning. Regards, Subhasish