How do i able to get data for unit price using RSEG table?

Dear All,
How do i able to get data for unit price in RSEG table?

Hi Thiru,
Please check the logic in thread http://scn.sap.com/thread/1347964
Hope this helps.
Regards,
Deepak Kori

Similar Messages

  • How to get data from live site using C# on grid view

    hi, how am I able to get data from a website and display it in a grid view ?
    Can anyone show me how I would do this? Thanks

    Hello,
    This post does not fit to this forum, read the
    stickies.
    Regards, Eyal Shilony

  • Hi all. I have a factory unlocked iphone 4s. I'm from Belize but i'm going to visit Fort Lauderdale, FLA. How can I get data for my phone? I checked the web and only got 'not sure to don't know' answers. Whoever has done this please help me

    Hi All. I live outside of the USA and have an iPhone 4s. I'm going to Fort Lauderdale, FLA and want to data service for my iPhone ( navigation using google or imaps, browsing and voip ing when no wi fi available). I browsed the net but seems almost impossible. When I visited Toronto I was able to get data thru Koodo but I don't think this is offered in the USA. Anyone who has real experience with this please help. This is a situation that is best aided by persons who have experienced it. Thanks

    Have a look here:
    http://forums.macrumors.com/archive/index.php/t-982315.html

  • Not able to get data while executing in background for mb52

    Dear all,
    my requirement is i want to schedule the zreport for every 1 hour.but proble is when iam executing in fore ground iam able to get data.but when iam going to scheduling this iam not able to get data.
    my code is
    type-pools:slis.
    data zbudat type RANGE OF budat.
    data wab like line of zbudat.
    data zmatkl type RANGE OF MATKL.
    data waz like line of zMATKL.
    data zwerks type RANGE OF werks.
    data wax like line of zwerks.
    waz-sign = 'I'.
    waz-low = 'CRUDE'.
    waz-option = 'EQ'.
    append waz to zmatkl.
    clear waz.
    waz-sign = 'I'.
    waz-low = 'SGO'.
    waz-option = 'EQ'.
    append waz to zmatkl.
    clear waz.
    *waz-sign = 'I'.
    *waz-low = 'FINES'.
    *waz-option = 'EQ'.
    *append waz to zmatkl.
    *clear waz.
    *waz-sign = 'I'.
    *waz-low = 'LUMPS'.
    *waz-option = 'EQ'.
    *append waz to zmatkl.
    *clear waz.
    *waz-sign = 'I'.
    *waz-low = 'UFO'.
    *waz-option = 'EQ'.
    *append waz to zmatkl.
    wax-sign = 'I'.
    wax-low = 'BIMI'.
    wax-option = 'EQ'.
    append wax to zwerks.
    clear wax.
    wax-sign = 'I'.
    wax-low = 'BIPL'.
    wax-option = 'EQ'.
    append wax to zwerks.
    *waz-sign = 'I'.
    waz-low = 'C'.
    *waz-option = 'CP'.
    *append waz to zmatnr.
    *clear waz.
    *waz-sign = 'I'.
    waz-low = 'S'.
    *waz-option = 'CP'.
    *append waz to zmatnr.
    *clear waz.
    *waz-sign = 'I'.
    waz-low = 'UC'.
    *waz-option = 'CP'.
    *append waz to zmatnr.
    *waz-sign = 'I'.
    waz-low = 'F'.
    *waz-option = 'CP'.
    *append waz to zmatnr.
    *clear waz.
    *waz-sign = 'I'.
    waz-low = 'L'.
    *waz-option = 'CP'.
    *append waz to zmatnr.
    types:begin of w_tab,
           bwkey type werks_d,
           matnr type matnr,
            lgort type LGORT_D,
            budat type budat,
            labst type labst,
           endmenge type p decimals 3,
          end of w_tab.
          DATA : IT_TAB TYPE STANDARD TABLE OF W_TAB WITH HEADER LINE .
    FIELD-SYMBOLS: <gt_fieldcat> TYPE slis_fieldcat_alv,
    <gt_report_list> TYPE w_tab .
    field-symbols <lt_pay_data> type any table.
    *FIELD-SYMBOLS : <LT_DATA> LIKE LINE OF IT_TAB .
    FIELD-SYMBOLS : <LT_DATA> type any .   " i have chaged  it
    data lr_pay_data type ref to data.
    cl_salv_bs_runtime_info=>set( exporting display = abap_false
    metadata = abap_false
    data = abap_true ).
    ****SUBMIT ZQM_GR_BARGE_LOADING WITH S_date in zbudat with s_werks in zwerks with p_pend = ' ' AND RETURN .
    submit RM07MLBS  with MATKLA in zmatkl with werks in zwerks
    "with XVBST = 'X'
    using selection-SCREEN '1000' and return.
    try.
    cl_salv_bs_runtime_info=>get_data_ref( importing r_data = lr_pay_data ).
    assign lr_pay_data->* to <lt_pay_data>.
    catch cx_salv_bs_sc_runtime_info.
    message `Unable to retrieve ALV data` type 'E'.
    endtry.
    cl_salv_bs_runtime_info=>clear_all( ).
    data: obj_s type ref to ZKMINCO_MINESTOCKFROM_SAP_OUT.
    create OBJECT obj_s.
    data : output TYPE ZKMINMINESTOCKFROM_SAP1 ,
            record type ZKMINMINESTOCKFROM_SAP_REC_TAB ,
           wa_record like line of record.
    LOOP AT <lt_pay_data> ASSIGNING <LT_DATA>.
    MOVE-CORRESPONDING <LT_DATA> TO IT_TAB .
    APPEND IT_TAB .
    wa_record-STOCK_AS_ON_DATE = sy-datum .
    wa_record-STOCK_AS_ON_TIME = sy-uzeit .
    wa_record-PLANT_ID = it_tab-bwkey.
    wa_record-STORAGE_LOC_ID = it_tab-lgort .
    wa_record-MATERIAL = it_tab-matnr .
    wa_record-STOCK_QTY = it_tab-labst.
    append wa_record to record.
    clear wa_record.
    endloop.
    output-MINESTOCKFROM_SAP-record = record .
    CALL METHOD obj_s->MINESTOCKFROM_SAP_OUT
      EXPORTING
        output = output .
    commit work.
    Thanks in advance.

    Hi,
    I assume that in your case you have two program lets say ZFOREGROUND and ZBACKGROUND (Called inside zforeground using submit statement)
    zforeground has :
    1. a input field to browse excel sheet or some file at the selection screen, and
    2. button 'post all' to determine the background processing.
    Now your requirement is such that you want zbackground to get scheduled as background job when post all button is clicked.
    So, within the event AT USER-Command, check the sy-ucomm as that of post all button, if so write the following code to schedule the job:
    DATA: jobname LIKE tbtcjob-jobname.
    DATA :jobcount LIKE tbtcjob-jobcount,
    host LIKE msxxlist-host.
    DATA: BEGIN OF starttime.
    INCLUDE STRUCTURE tbtcstrt.
    DATA: END OF starttime.
    DATA: starttimeimmediate LIKE btch0000-char1.
    DATA: gv_job_dt TYPE sy-datum,
    gv_job_tm TYPE sy-uzeit.
    jobname = 'EXCLUSION_LISTING'.
    gv_job_dt = sy-datum.
    gv_job_tm = sy-uzeit.
    Job open
    CALL FUNCTION 'JOB_OPEN'
    EXPORTING
    delanfrep = ' '
    jobgroup = ' '
    jobname = jobname
    sdlstrtdt = sy-datum
    sdlstrttm = sy-uzeit
    IMPORTING
    jobcount = jobcount
    EXCEPTIONS
    cant_create_job = 01
    invalid_job_data = 02
    jobname_missing = 03.
    IF sy-subrc NE 0.
    "error processing
    ENDIF.
    Insert process into job
    SUBMIT ZBACKGROUND AND RETURN
    WITH p_file1 = gv_file_cust_exc "<----
    Parameters which you want to pass to report zbackground from the report
    WITH p_file2 = gv_file_win_deal "------zforeground
    USER sy-uname
    VIA JOB jobname
    NUMBER jobcount.
    IF sy-subrc ne 0.
    "error processing
    ENDIF.
    Close job
    starttime-sdlstrtdt = gv_job_dt.
    starttime-sdlstrttm = gv_job_tm.
    CALL FUNCTION 'JOB_CLOSE'
    EXPORTING
    event_id = starttime-eventid
    event_param = starttime-eventparm
    event_periodic = starttime-periodic
    jobcount = jobcount
    jobname = jobname
    laststrtdt = starttime-laststrtdt
    laststrttm = starttime-laststrttm
    prddays = 1
    prdhours = 0
    prdmins = 0
    prdmonths = 0
    prdweeks = 0
    sdlstrtdt = starttime-sdlstrtdt
    sdlstrttm = starttime-sdlstrttm
    strtimmed = starttimeimmediate
    targetsystem = host
    EXCEPTIONS
    cant_start_immediate = 01
    invalid_startdate = 02
    jobname_missing = 03
    job_close_failed = 04
    job_nosteps = 05
    job_notex = 06
    lock_failed = 07
    OTHERS = 99.
    IF sy-subrc EQ 0.
    WRITE:/1 'JOB' COLOR 3,
    jobname COLOR COL_GROUP,
    'Scheduled in Background' COLOR 3. "error processing
    gv_time = starttime-sdlstrttm.
    gv_date = starttime-sdlstrtdt.
    ENDIF.
    Above code will schedule the report zbackground in background.
    Note:
    the program schduled in background will not be able to access any data present on your presentation server. data should be provided either by the program schhedulling it in foreground or it has to be thr in application server.
    Regards,
    Ravi

  • Not able to get data in production client in BEX query

    Hi Experts,
                       I have an SD related query which is working fine in development.
    in production while i run the query iam not getting data for three fields "ship to party" , "Bill to party" and "sold to party.
    I am able to see the data at the cube level but it is not reflecting in the query. Transportation of this query also
    did not throw any errors. Please provide a solution.
    Regards,
    susheeth.
    Edited by: Susheeth on Aug 4, 2011 1:26 PM

    Hi,
    Check if the characteristics used in query are direct objects from cube or navigation attributes of any other characteristics. In case of navigation attributes you need to have master data maintained.
    And as mentioned by Vamsi, check the text data maintained for 0CUSTOMER. And for checking data you can mark Key and Text option.
    Regards,
    Durgesh.

  • HOW I WAS ABLE TO GET ORACLE/LINUX RUNNING

    Just like some (or should I say most) of you, it took me pains
    (one week at that) to get 8i EE running on Linux.
    Here is how I was able to get it up and running:
    Environment:
    * RedHat 6.0
    * Linux kernel 2.2.12
    * Blackdown JRE (not JDK) 1.1.6v5
    * Mem: 128MB
    Create the linux account 'oracle' and make the account a member
    of the 'dba' group. The 8i docs contradicts itself saying that
    'oracle' should be a member of the 'oinstall' group in one place,
    but later on says that 'oracle' should be a member of the 'dba'
    group in other places. (In the 8.0.5 installation, 'oracle' is a
    member of the 'dba' group, so just follow this tradition).
    I have 2 linux machines. Because the machine where I am
    installing 8i has several other purposes, I ran X on another
    machine and have the OUI display on that other machine, but the
    OUI ran on the machine where I installed 8i.
    From the host running X, I set "xhost +182.212.1.32" (this is
    the IP address of the host where I am installing 8i), telnetted
    to the host where 8i will be installed, logged in as 'oracle',
    did a 'su', mounted the CDROM, exited from root (thereby going
    back to the oracle account), did a "DISPLAY=182.212.1.200:0.0;
    export DISPLAY", "cd /mnt/cdrom", and then did ran the installer
    "./runInstaller".
    If you did not make 'oracle' a member of 'dba', OUI will say "You
    are not a member of the 'dba' group.... blah ...." and will ask
    you the linux group for OSDBA and OSOPER.
    If you DID make 'oracle' a member of the 'dba' group, you will
    not get this prompt at all, and you will be asked to specify the
    linux group that will be responsible for installing/upgrading
    oracle. Specify the group 'oinstall' in this prompt. Basically,
    this prompt will 'chgrp oinstall' the directory
    '$ORACLE_BASE/oraInventory'.
    Cotinue with the installation. You will be prompted to run a
    script under the /tmp/oracle/oraInstroot.sh directory as root.
    Continuing, I specifed a custom install. After almost completing
    the installation, you will be prompted to run the 'root.sh' under
    $ORACLE_HOME as root. Note that this script is not executable, so
    either "chmod 744 root.sh;./root.sh" or "sh ./root.sh".
    At this point, db config assistant will run, but gave me an
    exception, something like "JNLSException: No character sets
    found." This error was not fatal as it did allowed me to
    continue. (Note that I tried setting ORA_NLS33 and NLS_LANG, but
    I still had this exception. However, I have not tried downloading
    i18n-1.1.6-v5-glibc-x86.tar.bz2 from blackdown. But I do not know
    if that will help.). I did not continue with dbassist but exited,
    and exited OUI. The reason was that, after telling dbassist to
    save to scripts, it cannot even save the scripts!!
    Now run dbassist again ("cd $ORACLE_HOME/bin; ./dbassit"). You
    will again get the message "JNSLException: No characters found".
    I specified an OLTP database. Later on, you will be asked if you
    want to use shared server processes (MTS) or dedicated server
    processes. At this point, specify dedicated server processes.
    (Note: this is important. More on this later).
    The SYSTEM datafile need not be initially 175MB. I had mine set
    to 75MB.
    When prompted if you want to create the db now or save to
    scripts, specify save to scripts, and exit dbassist.
    Now "cd $ORACLE_HOME/install". The main script (which is
    sqlSID.sh --- replace SID with the value of ORACLE_SID), will
    simply run other scripts.
    Instead of running the main script, run each of the scripts
    (that the main scripts was supposed to call) manually in the
    order specified by the main scripts. This will help you later on
    point out the specific script which may have problems.
    The first script will start the instance and create the
    database.
    Run that first script.
    Now here lies the importance of specifying "dedicated server
    processes" instead of "shared server processes". If you specified
    "dedicated server processes", the db should now be created, and
    the script will exit without errors. If you specified "shared
    server processes (MTS)", the instance will be mounted but you
    will get the message "ORA-01012: not logged on". The db will
    therefore not be created. I believe the following quote from the
    docs (not included with the linux 8i EE CD, but included
    witht he nt 8i EE CD) says it all:
    =================================================================
    ===========
    Restricted Operations of the Multi-Threaded Server
    Certain administrative activities cannot be performed while
    connected to a
    dispatcher process, including shutting down or starting an
    instance and
    media recovery. An error message is issued if you attempt to
    perform these
    activities while connected to a dispatcher process.
    These activities are typically performed when connected with
    administrator
    privileges. When you want to connect with administrator
    privileges in a
    system configured with multi-threaded servers, you must state in
    your connect
    string that you want to use a dedicated server process
    (SRVR=DEDICATED) instead of a dispatcher process.
    Additional Information:
    See your Oracle operating-system-specific
    documentation or the Net8
    Administrator's Guide for the proper connect
    string syntax.
    =================================================================
    =========
    From the above, you should be able to create a db using "shared
    server processes (MTS)" from scratch (instead of creating a db
    using "dedicated server process" and then later on changing to
    MTS), by modifying your tnsnames.ora file. However, I have not
    done this.
    Now run the remaining scripts that the main script was supposed
    to call. The only other problem I had with the scripts was the
    last script (the one with SIDjava.sh). I had a problem with the
    redo logs, and I got an "end of communication error" in the
    middle of the execution of the last script. I have to run this
    last script twice to make sure it worked.
    I believe the reason for the problem with the last script was
    related to what I found out later on, that all the rollback
    segments were OFFLINE (except that rbs in SYSTEM)!!!
    So probably it is best that, after running the first script, take
    the rollback segments online, before continuing with the other
    scripts.
    After running the scripts and the database created, I then
    applied te 8.1.5.0.1 patch, shutting down the database first.
    (Run svrmgrl, connect internal, shutdown;)
    However, after applying the patch, and starting the database
    again, I still get 8.1.5.0.0 and not 8.1.5.0.1 when loggin
    in using sqlplus or svrmgrl. Maybe the patch should be applied
    first BEFORE creating the db???
    Okay, now I have it running for 3 days now. However, I get this
    error in my alert files:
    OER 536879337 in Load Indicator : Error Code = 570716328 !
    ... when the instance is mounted, and
    Load Indicator not supported by OS
    .... several times.
    I have not been able to solve these remaining issues.
    John Salvo
    null

    This should get you started. I can point you to many places, but
    http://en.wikipedia.org/wiki/Verizon_FiOS
    Pasive Optical Network. Most  customers really don't need to know all the nuts and bolts.
    http://en.wikipedia.org/wiki/BPON
    GOOD LINK Anti-Phish. I never viewed this list. Cool.
    http://www.dslreports.com/faq/16637
    Optical Network Terminal (ONT) is a type of NID used with fiber-to-the-premises applications.
    Various models used.I had one of the first ONT 610X, I now have 612. I also believe they use Motorola ONTs?
    http://en.wikipedia.org/wiki/Optical_Network_Terminal#Optical_network_terminals

  • Not getting data for 1 field in ODS

    Hi BW Experts,
    I am loading the data from R/3 to BW.I have loaded the data through PSA.The data is available in New data field. After activating the ODS, for 1 field the data is not uploaded and in the report, the values are not displaying.
    I have checked the Transformations also. it is mapped correctly.But still i am not getting data for that field.
    Thanks,
    Siva.

    Thanks for the Update
    1. What is your Service Pack Level?
      Service Pack is 0016
    2. Are you able to see the data in PSA?
       Yes I can see the data in PSA
    3. After load, are you able to see the value in New table?
       Yes i can able to see the data in New data table
    4. Anywhere, are you doing the SORTING of Data Package?
       No I have not sorted the data Package.I have not written any coding on this
    I have not written any coding in transformation also.
    Thanks,
    Siva.

  • How do i get data from a structure using join?

    hi,
    what is the actual use of a structure.?
    my problem is :
    KUAGV is an existing STRUCTURE. it has got one fields each which links to MARA, AND VBKD tables. i want to fetch all related information from KUAGV, mara, vbkd . which is the better way : using joins or views or anything else? how do i
    get data from a structure using join?

    structure temporarily holds  any data passed to it dynamically throughout the runtime but doesnot store it permanently. so
    a structure cannot be included in a join.so instead of incuding structure KUAGV's field in a join 
    search the transparent table in which same field are present and  use it in join.
    A structure if created in DDIC(Data Dictionary) is a global DATA STRUCTURE which is used to group related information, for example you would group all the details of your bank account into a structure BANK_ACCOUNT that contains fields like account_Id, account_holder_name etc.
    If you create a structure in your program then it is local to your program. So you use this structure to create data holders of this DATA TYPE to hold data in your program.
    Edited by: suja thomas on Feb 11, 2008 6:24 AM
    Edited by: suja thomas on Feb 11, 2008 6:31 AM

  • IChat complains that it cant' get data for 10 seconds

    and drops my video or audio connection.
    I've been killing myself trying to get screen sharing, video and audio chat to work w/ a friend. ALL of the equipment is Apple.
    Me: Macbook running latest Leopard <- wired -> Time Capsule <- wired -> Westell DSL Modem on ATT (3 Mbps downstream/768 Kbps upstream)
    Friend: Macbook running latest Leopard <- 2.4GHz 11n wireless WPA2 -> AEBS <- wired -> Morotola (?) cable modem on comcast.
    I've set both Macs to have Quicktime set for automatic (setting it lower didn't make any diff) and iChat is throttled down to 100Kbps bandwidth.
    We can iChat fine. Then if I start video, audio or screen share, it'll start and last about 20 seconds until it stops. Then iChat complains it didn't get data for 10 seconds. The error log is at the end. Neither machine has internet sharing turned on. If I try the same test with 2 Macbooks inside my home network, no problem.
    Ideas? I'm baffled that all my equipment is Apple (aside from the modems and internet connections) and it still doesn't work.
    ERROR LOG:
    Date/Time: 2008-07-13 21:42:14.912 -0700
    OS Version: 10.5.4 (Build 9E17)
    Report Version: 4
    iChat Connection Log:
    2008-07-13 21:41:27 -0700: AVChat started with ID 1104206518.
    2008-07-13 21:41:27 -0700: dsfanboy051: State change from AVChatNoState to AVChatStateWaiting.
    2008-07-13 21:41:27 -0700: 0x1a220c50: State change from AVChatNoState to AVChatStateInvited.
    2008-07-13 21:41:46 -0700: 0x1a220c50: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-07-13 21:41:46 -0700: dsfanboy051: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-07-13 21:41:51 -0700: 0x1a220c50: State change from AVChatStateConnecting to AVChatStateConnected.
    2008-07-13 21:41:51 -0700: dsfanboy051: State change from AVChatStateConnecting to AVChatStateConnected.
    2008-07-13 21:42:11 -0700: 0x1a220c50: State change from AVChatStateConnected to AVChatStateEnded.
    2008-07-13 21:42:11 -0700: 0x1a220c50: Error -20 (No data has been received for the last 10 seconds.)
    2008-07-13 21:42:11 -0700: dsfanboy051: State change from AVChatStateConnected to AVChatStateEnded.
    2008-07-13 21:42:11 -0700: dsfanboy051: Error -20 (No data has been received for the last 10 seconds.)
    Video Conference Error Report:
    23.739548 @VCU/streamer/RTPTransport.c:2136 type=4 (00000000/2)
    [Bandwidth Detection]
    [Not enough packet samples 2 < 4]
    Video Conference Support Report:
    0.260487 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    19.498358 @Video Conference/VCInitiateConference.m:1598 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    19.503462 @Video Conference/VCInitiateConference.m:1702 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    21.496366 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK2b63015b5f0b1a0b
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:43580>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 394
    v=0
    o=cagustin 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 43580 RTP/AVP 110 121 12 3 0
    a=rtcp:43580
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3330649068
    21.546757 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK2b63015b5f0b1a0b
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    21.551959 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK2b63015b5f0b1a0b
    To: "u0" <sip:user@rip:16402>;tag=423949614
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:45514>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    21.563085 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK2b63015b5f0b1a0b
    To: "u0" <sip:user@rip:16402>;tag=423949614
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:45514>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 266
    [v=0
    o=joykellman 0 0 IN IP4 67.188.125.253
    s=0
    c=IN IP4 67.188.125.253
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 45514 RTP/AVP 110
    a=rtcp:45514
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:2527946835
    21.563394 @SIP/Transport.c:2362 type=1 (00000000/0)
    [ACK sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK1735c05b28dcc06a
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=423949614
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    21.809273 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from 67.188.125.253:45514]
    22.135306 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=104447.50, NSDev=31.62%]
    22.265783 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=1098214.90, NSDev=77.73%]
    24.022096 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=888512.50, NSDev=26.14%]
    30.000989 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK24093ad60967e29d
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=423949614
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    30.050749 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK24093ad60967e29d
    To: "u0" <sip:user@rip:16402>;tag=423949614
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    30.561845 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP 67.188.125.253:45514;branch=z9hG4bK6e0cc787713335ec
    Max-Forwards: 70
    To: "0" <sip:user@lip:16402>;tag=558083850
    From: "u0" <sip:user@rip:16402>;tag=423949614
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    30.562558 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 67.188.125.253:45514;branch=z9hG4bK6e0cc787713335ec
    To: "0" <sip:user@lip:16402>;tag=558083850
    From: "u0" <sip:user@rip:16402>;tag=423949614
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000026 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000049 @:0 type=5 (00000000/16402)
    [Local SIP port]
    24.064349 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 332 up, 332 down. (00000000)
    24.356247 @Video Conference/VideoConferenceMultiController.m:1958 type=5 (00000000/0)
    [Start Conference With UserID: u0]
    Binary Images Description for "iChat":
    0x1000 - 0x23bfff com.apple.iChat 4.0.5 (608) /Applications/iChat.app/Contents/MacOS/iChat
    0x2b0000 - 0x31efff com.apple.Bluetooth 2.1 (2.1f17) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x36a000 - 0x4bdfff com.apple.viceroy.framework 363.2.11 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x52c000 - 0x56bfff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x58d000 - 0x5a6fff com.apple.frameworks.preferencepanes 12.1 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5c0000 - 0x5f9fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x609000 - 0x61dfff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x62e000 - 0x64cfff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x654000 - 0x685fff com.apple.iChatCommonGUI 4.0.5 (608) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x6ae000 - 0x6b1fff com.apple.BezelServicesFW 1.4.832 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6f1000 - 0x6f6fff com.apple.iChat.Styles.Balloons 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x119fb000 - 0x119fefff com.apple.iChat.Styles.Boxes 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x11a05000 - 0x11a0bfff com.apple.iChat.Styles.Compact 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x11a13000 - 0x11a15fff com.apple.iChat.Styles.Text 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x175b1000 - 0x176cffff com.apple.RawCamera.bundle 2.0.7 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x17dcc000 - 0x17dd1fff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x17ed1000 - 0x17f0cfff com.apple.QuickTimeFireWireDV.component 7.5 (861) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x17f69000 - 0x17fd6fff com.DivXInc.DivXDecoder 6.6.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x17fe5000 - 0x181d7fff com.elgato.mpegsupport EyeTV MPEG Support 1.0.7 (build 43) (1.0.7) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x18301000 - 0x1830afff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x18314000 - 0x18341fff com.apple.QuickTimeIIDCDigitizer 7.5 (861) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x18353000 - 0x1839dfff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x183c4000 - 0x183c7fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x183cd000 - 0x183d2fff com.apple.audio.AppleHDAHALPlugIn 1.5.7 (1.5.7a24) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x183d7000 - 0x18559fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x18587000 - 0x185e0fff com.apple.driver.AppleIntelGMA950GLDriver 1.5.28 (5.2.8) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x185e8000 - 0x18604fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x197a8000 - 0x1995efff com.apple.audio.codecs.Components 1.6.3 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x19ad4000 - 0x19ad4fff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x19ada000 - 0x19ae1fff com.apple.JavaVM 12.0.2 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x19aeb000 - 0x19aecfff com.apple.iChat.PersonIconPlugIn 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90005fff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90006000 - 0x90006fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90007000 - 0x90079fff com.apple.iLifeMediaBrowser 1.0.7 (208) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x901db000 - 0x9033bfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9033c000 - 0x903f6fff com.apple.CoreServices.OSServices 226.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x903f7000 - 0x90415fff com.apple.DirectoryService.Framework 3.5.4 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90416000 - 0x904c4fff com.apple.QTKit 7.5 (861) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x904d2000 - 0x908e2fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x908e3000 - 0x90965fff com.apple.CFNetwork 330.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90966000 - 0x90aacfff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90aad000 - 0x90adafff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90adb000 - 0x90adcfff libffi.dylib /usr/lib/libffi.dylib
    0x90add000 - 0x90c14fff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90c15000 - 0x90c6efff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90c6f000 - 0x90da7fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90da8000 - 0x90e24fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9108e000 - 0x9109afff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9109b000 - 0x910b7fff com.apple.IMFramework 4.0.5 (582) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x910b8000 - 0x910c1fff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x910c2000 - 0x910d3fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x910d4000 - 0x910e4fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x910e5000 - 0x91197fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91198000 - 0x91198fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91199000 - 0x91199fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9119a000 - 0x91226fff com.apple.LaunchServices 289.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91227000 - 0x91251fff com.apple.CoreMediaPrivate 9.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x91252000 - 0x912e5fff com.apple.ApplicationServices.ATS 3.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x912e6000 - 0x9140afff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91415000 - 0x91417fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91418000 - 0x9141cfff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x914fe000 - 0x91522fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x91523000 - 0x91533fff com.apple.speech.synthesis.framework 3.7.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91534000 - 0x9153bfff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9153c000 - 0x91b8cfff com.apple.WebCore 5525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91b8d000 - 0x91b9cfff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x91b9d000 - 0x91b9dfff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91b9e000 - 0x91ba2fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x91ba3000 - 0x91bc2fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91bc3000 - 0x91bc8fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91c3c000 - 0x91cb9fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91cba000 - 0x92050fff com.apple.QuartzCore 1.5.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92051000 - 0x92051fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92052000 - 0x92061fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x92062000 - 0x920a6fff com.apple.DirectoryService.PasswordServerFramework 3.0.3 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x920a7000 - 0x92131fff com.apple.DesktopServices 1.4.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92132000 - 0x922b1fff com.apple.AddressBook.framework 4.1.1 (695) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x922b2000 - 0x9230ffff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x924cf000 - 0x925b4fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x925b5000 - 0x925b8fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x925b9000 - 0x925e4fff libauto.dylib /usr/lib/libauto.dylib
    0x925e5000 - 0x92600fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92601000 - 0x92dfefff com.apple.AppKit 6.5.3 (949.33) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92dff000 - 0x92e1ffff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e20000 - 0x92eebfff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92eec000 - 0x92ef0fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x92ef1000 - 0x92f28fff com.apple.SystemConfiguration 1.9.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92f64000 - 0x92f77fff com.apple.IMUtils 4.0.5 (582) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x92f78000 - 0x92f7efff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92f7f000 - 0x93452fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93453000 - 0x93470fff com.apple.QuickLookFramework 1.1 (170.4) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x93471000 - 0x934b3fff com.apple.NavigationServices 3.5.2 (163) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x934b4000 - 0x935e6fff com.apple.CoreFoundation 6.5.3 (476.14) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x935e7000 - 0x93616fff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93617000 - 0x936f6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x936f7000 - 0x93d93fff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93d94000 - 0x93dbcfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x93dbd000 - 0x93e5ffff com.apple.QuickTimeImporters.component 7.5 (861) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x93e60000 - 0x93e9efff com.apple.CoreMediaIOServicesPrivate 9.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x93ed0000 - 0x93f0afff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93f0b000 - 0x93f13fff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x93f14000 - 0x93f64fff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93f65000 - 0x93f6cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x93f6d000 - 0x94000fff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9400d000 - 0x9404cfff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9404d000 - 0x9409dfff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9409e000 - 0x940a9fff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x940aa000 - 0x9418bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x9418c000 - 0x9420bfff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9420c000 - 0x94211fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94212000 - 0x9425cfff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9425d000 - 0x9428efff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9428f000 - 0x942defff com.apple.QuickLookUIFramework 1.1 (170.4) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x942df000 - 0x94307fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94308000 - 0x9432cfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9432d000 - 0x94337fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94368000 - 0x943a6fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x943a7000 - 0x954ecfff com.apple.QuickTimeComponents.component 7.5 (861) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x954ed000 - 0x95594fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95595000 - 0x955b3fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x955b4000 - 0x95602fff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x95603000 - 0x95619fff com.apple.CoreVideo 1.5.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9561a000 - 0x95660fff com.apple.Metadata 10.5.2 (398.18) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95661000 - 0x9593bfff com.apple.CoreServices.CarbonCore 786.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9593c000 - 0x959c7fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x959c8000 - 0x95d86fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95d87000 - 0x95de1fff com.apple.CoreText 2.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95e19000 - 0x96094fff com.apple.Foundation 6.5.5 (677.19) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x96095000 - 0x96145fff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96146000 - 0x961a2fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x961a3000 - 0x961a3fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x961a4000 - 0x961e5fff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x961e6000 - 0x964edfff com.apple.HIToolbox 1.5.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x964ee000 - 0x964eefff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x964ef000 - 0x96503fff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x96504000 - 0x966d2fff com.apple.security 5.0.4 (34102) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x966d3000 - 0x966defff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x966df000 - 0x966dffff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x966e0000 - 0x966e7fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x966e8000 - 0x966e8fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x966e9000 - 0x966ebfff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x966ec000 - 0x968a7fff com.apple.QuartzComposer 2.1 (106.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x968a8000 - 0x9692ffff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x96930000 - 0x969a2fff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x969a3000 - 0x969b1fff libz.1.dylib /usr/lib/libz.1.dylib
    0x969b2000 - 0x969b9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x96aca000 - 0x96debfff com.apple.QuickTime 7.5.0 (861) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96dec000 - 0x96e04fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96ed9000 - 0x96ef0fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x96ef1000 - 0x96ef1fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96ef2000 - 0x96f24fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96f25000 - 0x96f25fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96f26000 - 0x96ff4fff com.apple.JavaScriptCore 5525.18 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x96ff5000 - 0x9706ffff com.apple.print.framework.PrintCore 5.5.3 (245.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x97070000 - 0x97086fff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97087000 - 0x97144fff com.apple.WebKit 5525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x97145000 - 0x9720cfff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9724a000 - 0x97283fff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x97284000 - 0x97289fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices

    First of All set Quicktime for 1.5Mbps for both ends and the iChat Bandwidth for 500kbps on the Comcast end.
    One end has a feature on a modem or router that blocks what it thinks are Internet attacks (judging by the Log although speed could be a factor).
    Most Likely it is a DoS or SPI filter/firewall setting.
    Turn it Off (The Westell is the most likely)
    It Does not look like Pings are blocked as the log details them.
    There appears to be a small problem with the SIP Invite
    Contact: <sip:[email protected]:45514>
    This looks like the Comcast end and port 45514 on the example I have pulled out.
    If you read the rest of the log this moves about a bit.
    AS you Connected (however briefly) I would not worry too much about this unless the Time capsule and the Westell are both doing DHCP
    If you don't know how to access your Westell use this page http://portforward.com/routers.htm
    Click on your device.
    Click on iChat on the next page.
    Use the info near the top of the next page (once the Instructions start).
    Check first if it is doing DHCP.
    Next check if it has UPnP and if it is active.
    If it is doing both of those make sure the Time Capsule is NOT set to Share an IP (Set it to Off/Bridged).
    At the other end the cable modem is unlikely to route but check it is not listed in the Port Forward front page.
    9:07 PM Wednesday; July 16, 2008

  • How secure is the DocumentRevisions-V100 data for versions?

    How secure is the DocumentRevisions-V100 data for versions? Im concerned that if I open and work on a Numbers or Pages document from an encrypted disk image, Versions would save an unencrypted version within the database, making the encryption useless. Does anyone know if this is a problem or not? If so, is it fixed with Mountain Lion?

    hnanji wrote:
    I do not need the precise location or address, but a general description of how the data is maintained would be helpful. Security is absolutely essential, hence the reason why I am asking. To assume it is simply secure because it's a product by Apple, is not only only ignorant but foolish. If you do not know the answer then no need to reply.
    Your question is just as foolish as your request to know details. You will not get them and that is the answer that I do know. You will not get ANY details, ever. When somebody says that "Apple knows details" -kind of funny to me, cause Apple does not exist in that sense - Apple is corporation and corporation uses people, so there are people who know answer to any question, they just will not disclose secure information. So anybody, even me or pvonk, for expample, can know, But people who does, will not release that info. My answer is not intended to help you, just to let you know that you will not get any info. Not foolish person would take a hint, you didn't.

  • How can I get data in flat file from Pool table and cluster table ?

    Hi,
    I am working in one Achiving project. My requirement is to get data into flat file from Cluster table and pool table.
    Is there any tool avilable to download data into flat file from pool table and cluster table ?
    if table name given in the selection screen then data will be downloaded into flat file.
    waiting for quick response.
    Best Regards,
    Bansidhar

    Data cannot be retrived directly form the cluster table
    as the Cluster results are stored in Cluster Key say for example PCLkey
    and form that Key we need to fetch the data
    these clustes are not the part of PNP or PNPCE tables
    for ur info kindly check

  • Report to get data for current_week+1 till 13th week

    Hi Friends,
    I have two tables
    BACKLOG_WEEK_AFTER_ATP (LE)
    BACKLOG_ATP_GT_CW (RE)
    ** First I have to query whats the current week and year and it should come in this format ---- 2011-WK30
    columns in table BACKLOG_WEEK_AFTER_ATP are:
    ITEM_NUMBER      QUANTITY
    1N5418                 20
    1N5614                 30
    1N5806SM               10
    1N5811                  0
    2PFF6                  60columns in table BACKLOG_ATP_GT_CW are:
    ITEM_NUMBER     QUANTITY        YEAR_WEEK
    1N5418                30        2011-WK30
    1N5418                 5        2011-WK31
    1N5614                30        2011-WK32
    1N5806SM              30        2011-WK33
    1N5811                20        2011-WK32
    3EX473K1              20        2011-WK30My report should look like
    ITEM_NUMBER    2011-WK30  2011-WK31  2011-WK32  2011-WK33  ...............till 13th week
    1N5418                10         -5         -5         -5  ...............till 13t week
    1N5614                30         30          0          0  ................till 13th week
    1N5806SM              10         10         10         20  ................till 13th week
    1N5811                 0          0         20         20  ................till 13th week
    2PFF6                 60         60         60         60  ................till 13th week
    3EX473K1              20         20         20         20  ................till 13th weekTo get this report i have these conditions to keep in mind.
    1) If item_number not present in LE table and present in RE table then repeat what it is in RE table till 13th week
    2) If item_number not present in RE table and present in LE table then repeat what it is in LE table till 13th week
    3) If item_number present in LE and also present in RE table then do subtraction for RE - LE for that particular item_number till 13th week.
    4) If item_number is there in LE table but not present in RE table for current_week+1(today week comes as 29th week) then repeat the same which is there in LE table. If item is found in RE table for (example 32th week) then subtract RE -LE for that particular item_number
    Thanks in advance.
    Regards

    User_Apex wrote:
    Hi Friends,
    I have two tables
    BACKLOG_WEEK_AFTER_ATP (LE)
    BACKLOG_ATP_GT_CW (RE)
    ** First I have to query whats the current week and year and it should come in this format ---- 2011-WK30
    columns in table BACKLOG_WEEK_AFTER_ATP are:
    ITEM_NUMBER     QUANTITY
    1N5418                     20
    1N5614                     30
    1N5806SM                 10
    1N5811                       0
    2PFF6                        60columns in table BACKLOG_ATP_GT_CW are:
    ITEM_NUMBER     QUANTITY        YEAR_WEEK
    1N5418                     30                2011-WK30
    1N5418                     5                 2011-WK31
    1N5614                     30                2011-WK32
    1N5806SM                 30                2011-WK33
    1N5811                      20                2011-WK32
    3EX473K1                   20               2011-WK30My report should look like
    ITEM_NUMBER    2011-WK30  2011-WK31  2011-WK32  2011-WK33 ------ till 13th week
    1N5418                 10             -5                -5              -5     ...............till 13t week
    1N5614                 30             30               0                0     ................till 13th week
    1N5806SM              10            10              10              20    ................till 13th week
    1N5811                   0              0               20              20   ................till 13th week
    2PFF6                     60            60              60               60  ................till 13th week
    3EX473K1                20             20              20              20  ................till 13th weekTo get this report i have these conditions to keep in mind.
    1) If item_number not present in LE table and present in RE table then repeat what it is in RE table till 13th week
    2) If item_number not present in RE table and present in LE table then repeat what it is in LE table till 13th week
    3) If item_number present in LE and also present in RE table then do subtraction for RE - LE for that particular item_number till 13th week.
    4) If item_number is there in LE table but not present in RE table for current_week+1(today week comes as 29th week) then repeat the same which is there in LE table. If item is found in RE table for (example 32th week) then subtract RE -LE for that particular item_numberNot an APEX question: use {forum:id=75} forum.
    Query to get data for current week+13

  • How do I change the start date for the week from Monday to Sunday on my iPhone 5?

    How do I change the start date for the week on iCal from Monday to Sunday on my iPhone5?

    Yes. On my new iPhone 5 the iCal week begins on a Monday not a Sunday and does not give me the option to edit in settings on the phone

  • How do I resolve the "insufficient data for image" error for Adobe reader 11.0.04?

    How do I resolve the "insufficient data for image" error for Adobe reader 11.0.04?

    Hi Johnkel1524,
    Please refer : http://helpx.adobe.com/acrobat/kb/insufficient-data-image.html
    Also try updating to 11.0.5 and check.

  • How come I can't get snapchat for my iPad?

    How come I can't get snapchat for my iPad?

    What country are you in ? I can find it here in the UK store and it's also in the US store - search for 'snapchat', and then on the results screen tap the 'iPad only' button at the top left and select 'iphone only' instead (the app is optimised for the smaller iPhone-sized scren, so won't show in the 'iPad only' view).

Maybe you are looking for