Problem with inbound idoc processing.

hi
I am creating release orders through idocs with the help of a custom program.
After posting the release orders, i need to take the RO number created by the posting from EKPO table, which is required for further processing within the same program. An error is coming saying that no RO exists for the specified criteria. May be the idocs are not getting updated.
Appreciate any suggestion for the above problem.

Hi,
Have you used
COMMIT after creating the RO..
That might be the reason i Think .
Use
Commit and wait.
Hope that helps.
Regards,
Tanveer.
<b>Please maek helpful answers</b>

Similar Messages

  • Problem with Inbound Idoc

    Hi everybody.
    I´ve got a problem with an inbound idoc. I've got a standard idoc INOTIF with an extension.
    To receive this Idoc from external systema I´ve created a Z FM to process this idoc.
    The problem is that when this idoc get to SAP the FM never is executed and the idoc appears with red flag and show me
    the next error: No status record was passed to ALE by the application and the idoc is shown with the status 51.
    ¿¿How can I fix this??
    Thanks a lot
    Regards

    hi
    and also give the funtion type is function module in we57 and in BD51 give ur ZFM and give 1 in input.t field.
    now you can see ur FM in WE42 under Identification field F4 value.
    The FM which is created by you  it should be in F4 help list fo field Identification in we42.
    and give the  Message type and Process code in we20 in inbound parameters.
    i am sure this will work .
    regards,
    Kiran Jagana

  • Handling BDC with inbound IDOC processing

    Hi All,
    In the function module for inbound processing, I have a BDC to be executed.
    But when the IDOC is received from the WEBSPHERE(Middleware) the BDC fails. There is an exception, "CNTL_ERROR"  raised by the class "CL_GUI_CUSTOM_CONTAINER=======CP"  when in BDC for the required transaction.
    I have contacted the Basis team and they are of the view that this happens when there is a difference in screen elements of the BDC creator(me) and the executor(websphere in this case).
    Can anyone tell me how can I correct this?
    Anuj

    John,
    WEBSPHERE is a system ID so Basis team will not allow me to access it as a user ID.( I had already requested them for the same).
    But I also compared the user-id parameters with mine and there is no difference.
    Can you think of something related to BDC? or some precaution which needs to be taken to cater the requirement if the screen elements are differing?
    Thanks for your replies.
    Anuj

  • Problems with multiple idocs in one file ( Inbound file )

    HI,
    Thanks in Advance for your suggestions.. Highly appreciated.
    We have problems with multiple IDocs in one file.
    We are using XIB ( Amtrix ) as Middleware to receive the files.
    Curretenly When the file contains one IDoc then there is no problem. IDoc is created and everything is ok.
    If file contains two IDocs ( for example two messages ORDERS and DELVERY ) then it is creating two IDocs but both IDocs contains ORDERS plus DELIVERY segements information. That is the problem. Some how SAP unable to differentiate the IDocs in the file.. But it knows that how many idocs are there in the file..because it is creating exact number of idocs.
    We are using TRFC port ... Do I need to change it to File port..
    When we have more than one idoc do we need set any parameter in the file ...

    Thanks for the swift response. Always ideas are useful.
    As of now , Middleware cannot split the file.
    Thing is SAP is creating two Idocs with different message types. Problem is First IDoc contains ORDERS message type but also DELIVERY segments as well. Second IDoc with DELIVERY message tyoe but ORDERS segments as well... This is the problem... I think we are missing some field activation in file for EDIDC record.
    As far as I know file port supports the number of IDocs in one file.. Hope TRFC port also supports that

  • Please  send one exicuted program example of inbound idoc process

    Dear Friends,
            I am facing one problem to process inbound idoc process.Please example send anybody ?
           I have faced problem in standalone process to do inbound idoc process.
            iam waiting for your valuble response.
      Definitly best answer will get best reward.
    Regards.
    Sridhar Menda.

    Hi Sridhar,
    Here is a example of program for inbound idoc process.
    Example Program to Process an IDoc  
    The Example Program to Process an IDoc shows how the fictitious message type XAMPLE, communicated with IDocs of type XAMPLE01, is processed using the inbound function module Idoc_Input_Xample. The IDoc type has a header segment, E1xhead, and any number of item segments E1xitem. The data from the IDoc is written to two database tables, XHEAD and XITEM respectively. XHEAD and XITEM contain the same field names as E1xhead and E1xitem respectively. The fields names and data types are shown in the following two tables:
    Field Name in XHEAD
    Docmnt_no
    Date
    Currency
    Country
    Description
    Document number
    Date
    Currency
    Country
    Type in e1xhead
    CHAR
    CHAR
    CHAR
    CHAR
    Type in XHEAD
    NUMC
    DATS
    CUKY
    CHAR
    Field Name in XITEM
    Item_no
    Materialid
    Descript
    Unit
    Quantity
    Value
    Ship_Inst
    Description
    Item number
    Material number
    Material description
    Unit of measure
    Quantity
    Value
    Shipping instructions
    Type in e1xitem
    CHAR
    CHAR
    CHAR
    CHAR
    CHAR
    CHAR
    CHAR
    Type in xitem
    NUMC
    CHAR
    CHAR
    UNIT
    QUAN
    CURR
    UNIT
    The data on the database is assigned a new document number (field DOCMNT_NO) using number assignment. The field DOCMNT_NO is not stored in the newly created table XHEAD.
    FUNCTION·IDOC_INPUT_XAMPLE.
    *"Local·interface:
    *"·······IMPORTING
    *"·············VALUE(INPUT_METHOD)·LIKE··BDWFAP_PAR-INPUTMETHD
    *"·············VALUE(MASS_PROCESSING)·LIKE··BDWFAP_PAR-MASS_PROC
    *"·······EXPORTING
    *"·············VALUE(WORKFLOW_RESULT)·LIKE··BDWF_PARAM-RESULT
    *"·············VALUE(APPLICATION_VARIABLE)·LIKE··BDWF_PARAM-APPL_VAR
    *"·············VALUE(IN_UPDATE_TASK)·LIKE··BDWFAP_PAR-UPDATETASK
    *"·············VALUE(CALL_TRANSACTION_DONE)·LIKE··BDWFAP_PAR-CALLTRANS
    *"·······TABLES
    *"··············IDOC_CONTRL·STRUCTURE··EDIDC
    *"··············IDOC_DATA·STRUCTURE··EDIDD
    *"··············IDOC_STATUS·STRUCTURE··BDIDOCSTAT
    *"··············RETURN_VARIABLES·STRUCTURE··BDWFRETVAR
    *"··············SERIALIZATION_INFO·STRUCTURE··BDI_SER
    *"·······EXCEPTIONS
    *"··············WRONG_FUNCTION_CALLED
    ·05·July·1996·----
    *·Example·function·module·for·processing·inbound·IDocs·for·ALE·or·EDI.
    *·This·example·applies·for·processing
    *···with····-··one·IDoc·at·a·time
    *···without·-··serialization
    *···········-··customer-exits
    *···········-··calling·an·ALE-enabled·transaction
    *···········-··mass·processing·(more·than·one·IDoc·at·a·time)
    ·Naming·conventions·----
    *·Internal·tables·start·with·'t_'
    *·Internal·field·strings·start·with·'f_'
    *·>>·The·following·line·must·appear·in·the·global·part·of·your
    *·>>·function·group:
    *····include·mbdconwf.············"Report·containing·the·ALE·constants.
    *·The·ALE·constants·start·with·'c_'.
    ··DATA:·SUBRC·LIKE·SY-SUBRC,
    ········OBJECT_NUMBER·LIKE·XHEAD-DOCMNT_NO.
    *·Initialize·variables
    ··SUBRC·=·0.
    *·Read·the·IDoc's·control·record
    ··READ·TABLE·IDOC_CONTRL·INDEX·1.
    *·Process·the·IDoc·and·post·the·data·to·the·database
    ··PERFORM·IDOC_PROCESS_XAMPLE·TABLES···IDOC_DATA
    ·······································IDOC_STATUS
    ······························USING····IDOC_CONTRL
    ······························CHANGING·OBJECT_NUMBER
    ·······································SUBRC.
    *·Fill·the·ALE·export·parameters
    ··CLEAR·IN_UPDATE_TASK.
    ··CLEAR·CALL_TRANSACTION_DONE.·········"Call·Transaction·is·not·used.
    ··IF·SUBRC·<>·0.·······················"Error·occurred
    ····WORKFLOW_RESULT·=·C_WF_RESULT_ERROR.
    ····RETURN_VARIABLES-WF_PARAM·=·C_WF_PAR_ERROR_IDOCS.
    ····RETURN_VARIABLES-DOC_NUMBER·=·IDOC_CONTRL-DOCNUM.
    ····APPEND·RETURN_VARIABLES.
    ··ELSE.································"IDoc·processed·successfully
    ····WORKFLOW_RESULT·=·C_WF_RESULT_OK.
    ····RETURN_VARIABLES-WF_PARAM·=·C_WF_PAR_PROCESSED_IDOCS.
    ····RETURN_VARIABLES-DOC_NUMBER·=·IDOC_CONTRL-DOCNUM.
    ····APPEND·RETURN_VARIABLES.
    ····RETURN_VARIABLES-WF_PARAM·=·C_WF_PAR_APPL_OBJECTS.
    ····RETURN_VARIABLES-DOC_NUMBER·=·OBJECT_NUMBER.
    ····APPEND·RETURN_VARIABLES.
    ··ELSE.
    ENDFUNCTION.
    ·······FORM·IDOC_PROCESS_XAMPLE······································
    ··This·routine·creates·an·application·document·based·on·the·IDoc's···
    ··contents.·Object_Number·contains·the·new·document's·number.··········If·an·error·occurs,·subrc·is·non-zero,·t_idoc_status·is·filled.·······Note:·if·more·than·one·error·is·detected,·t_idoc_status·contains···
    ········more·than·one·status·record.·································
    ··-->··F_IDOC_CONTRL····IDoc·control·record··························
    ··-->··T_IDOC_DATA······IDoc·data·records····························
    ··<--··T_IDOC_STATUS····IDoc·status·records··························
    ··<--··OBJECT_NUMBER····Created·document's·number····················
    ··<--··SUBRC············Return·code··································
    FORM·IDOC_PROCESS_XAMPLE
    ·······TABLES···T_IDOC_DATA····STRUCTURE·EDIDD
    ················T_IDOC_STATUS··STRUCTURE·BDIDOCSTAT
    ·······USING····F_IDOC_CONTRL··STRUCTURE·EDIDC
    ·······CHANGING·OBJECT_NUMBER··LIKE·XHEAD-DOCMNT_NO
    ················SUBRC··········LIKE·SY-SUBRC.
    *·Internal·field·string·for·the·document·header.
    ··DATA:·F_XHEAD·LIKE·XHEAD.
    *·Internal·table·for·the·document·items.
    ··DATA:·T_XITEM·LIKE·XITEM·OCCURS·0·WITH·HEADER·LINE.
    *·Number·given·to·the·created·document·DOCUMENT_NUMBER·LIKE·F_XHEAD-DOCMNT_NO.
    *·Move·the·data·in·the·IDoc·to·the·internal·structures/tables
    *·f_xhead·and·t_xitem.
    ··PERFORM·IDOC_INTERPRET·TABLES···T_IDOC_DATA
    ··································T_XITEM
    ··································T_IDOC_STATUS
    ·························USING····F_IDOC_CONTRL
    ·························CHANGING·F_XHEAD
    ··································SUBRC.
    *·Create·the·application·object·if·no·error·occurred·so·far.
    ··IF·SUBRC·=·0.
    *···This·fictitious·function·module·creates·a·new·object·based·on·the
    *···data·that·was·read·from·the·IDoc.·The·new·object's·ID·is·returned
    *···in·the·parameter·'document_number'.
    *···The·function·module·checks·that·the·data·is·correct,·and·raises
    *···an·exception·if·an·error·is·detected.
    ····CALL·FUNCTION·'XAMPLE_OBJECT_CREATE'
    ·········EXPORTING
    ··············XHEAD···········=·F_XHEAD
    ·········IMPORTING
    ··············DOCUMENT_NUMBER·=·DOCUMENT_NUMBER
    ·········TABLES
    ··············XITEM···········=·T_XITEM
    ·········EXCEPTIONS
    ··············OTHERS··········=·1.
    ····IF·SY-SUBRC·<>·0.
    ······SUBRC·=·1.
    *·····Put·the·error·message·into·'t_idoc_status'
    ······PERFORM·STATUS_FILL_SY_ERROR
    ················TABLES···T_IDOC_STATUS
    ················USING····T_IDOC_DATA
    ·························SY
    ·························''············"Field·name
    ·························'idoc_process_xample'.·········"Form·routine
    ····ELSE.
    *·····Fill·the·remaining·export·parameters
    ······OBJECT_NUMBER·=·DOCUMENT_NUMBER.··········"New·document's·number
    ······t_idoc_status-docnum·=·f_idoc_contrl-docnum.
    ······t_idoc_status-status·=·c_idoc_status_ok.
    ······t_idoc_status-msgty··=·'S'.
    ······t_idoc_status-msgid··=·your_msgid.·"Global·variable.
    ······t_idoc_status-msgno··=·msgno_success."Global·variable.
    ······t_idoc_status-msgv1··=·object_number.
    ······APPEND·T_IDOC_STATUS.
    ····ENDIF.·····························"if·sy-subrc·<>·0.
    ··ENDIF.·····························"if·subrc·=·0.
    ENDFORM.
    ·······FORM·IDOC_INTERPRET···········································
    ··This·routine·checks·that·the·correct·message·type·is·being·used,···
    ··and·then·converts·and·moves·the·data·from·the·IDoc·segments·to·the·
    ··internal·structure·f_xhead·and·internal·table·t_xitem.·············
    ··If·an·error·occurs,·t_idoc_status·is·filled·an·subrc·<>·0.·········
    ··-->··T_IDOC_STATUS·················································
    ··-->··T_XITEM·······················································
    ··-->··F_IDOC_DATA···················································
    ··-->··F_XHEAD·······················································
    ··-->··SUBRC·························································
    FORM·IDOC_INTERPRET·TABLES···T_IDOC_DATA····STRUCTURE·EDIDD
    ·····························T_XITEM········STRUCTURE·XITEM
    ·····························T_IDOC_STATUS··STRUCTURE·BDIDOCSTAT
    ····················USING····F_IDOC_CONTRL··STRUCTURE·EDIDC
    ····················CHANGING·F_XHEAD········STRUCTURE·XHEAD
    ·····························SUBRC··········LIKE·SY-SUBRC.
    *·Check·that·the·IDoc·contains·the·correct·message·type.
    *··Note:·if·your·message·type·is·reducible,·check·field·'idoctp'
    *·······(IDoc·type)·instead·of·'mestyp'.
    ··IF·F_IDOC_CONTRL-MESTYP·<>·'XAMPLE'.
    ····MESSAGE·ID······YOUR_MSGID···············"Global·variable
    ············TYPE····'E'
    ············NUMBER··MSGNO_WRONG_FUNCTION·····"Global·variable
    ············WITH····F_IDOC_CONTRL-MESTYP·····"message·type
    ····················'IDOC_INPUT_XAMPLE'······"Your·function·module.
    ····················F_IDOC_CONTRL-SNDPRT·····"Sender·partner·type
    ····················F_IDOC_CONTRL-SNDPRN·····"Sender·number.
    ············RAISING·WRONG_FUNCTION_CALLED.
    ··ENDIF.
    *·Loop·through·the·IDoc's·segments·and·convert·the·data·from·the·IDoc
    *·format·to·the·internal·format.
    ··LOOP·AT·T_IDOC_DATA·WHERE·DOCNUM·=·F_IDOC_CONTRL-DOCNUM.
    ····CASE·T_IDOC_DATA-SEGNAM.
    ······WHEN·'E1XHEAD'.
    ········PERFORM·E1XHEAD_PROCESS·TABLES···T_IDOC_STATUS
    ································USING····T_IDOC_DATA
    ································CHANGING·F_XHEAD
    ·········································SUBRC.
    ······WHEN·'E1XITEM'.
    ········PERFORM·E1XITEM_PROCESS·TABLES···T_XITEM
    ·········································T_IDOC_STATUS
    ································USING····F_XHEAD-CURRENCY
    ·········································T_IDOC_DATA
    ································CHANGING·SUBRC.
    ····ENDCASE.
    ··ENDLOOP.
    ENDFORM.
    ·······FORM·E1XHEAD_PROCESS··········································
    ··This·routine·fills·'f_xhead'·out·of·segment·e1xhead.·················If·an·error·occurs,·subrc·is·non-zero,·t_idoc_status·is·filled.····*
    ··-->··F_IDOC_DATA·······IDoc·segment·containing·e1xhead·fields······
    ··<--··F_XHEAD···········Internal·structure·containing·doc.·header···
    ··<--··T_IDOC_STATUS·····Status·fields·for·error·handling············
    ··<--··SUBRC·············Return·code:·non-zero·if·an·error·occurred··
    FORM·E1XHEAD_PROCESS·TABLES···T_IDOC_STATUS··STRUCTURE·BDIDOCSTAT
    ·····················USING····F_IDOC_DATA····STRUCTURE·EDIDD
    ·····················CHANGING·F_XHEAD········STRUCTURE·XHEAD
    ······························SUBRC··········LIKE·SY-SUBRC.
    ··DATA:·F_E1XHEAD·LIKE·E1XHEAD.
    ··F_E1XHEAD·=·F_IDOC_DATA-SDATA.
    *·Process·fields·that·need·conversion·from·ISO-codes·to·SAP-codes
    ··PERFORM·E1XHEAD_CODES_ISO_TO_SAP
    ·········TABLES···T_IDOC_STATUS
    ·········USING····F_E1XHEAD
    ··················F_IDOC_DATA
    ·········CHANGING·F_XHEAD
    ··················SUBRC.
    *·Process·fields·containing·dates·or·times
    ··PERFORM·E1XHEAD_DATE_TIME·USING····F_E1XHEAD
    ····························CHANGING·F_XHEAD.
    ENDFORM.·······························"e1xhead_process
    ·······FORM·E1XITEM_PROCESS··········································
    ··This·routine·converts·the·data·in·the·segment·'e1xitem'·for········
    ··to·the·format·of·table·'t_xitem'·and·appends·it·to·the·table.········If·an·error·occurs,·subrc·is·non-zero,·t_idoc_status·is·filled.····*
    ··-->··F_IDOC_DATA······IDoc·segment·································
    ··<--··T_XITEM··········Document·items·to·be·updated·to·database·····
    ··<--··T_IDOC_STATUS····Status·fields·filled·if·an·error·occurred····
    ··<--··SUBRC············Return·code:·0·if·all·OK·····················
    FORM·E1XITEM_PROCESS·TABLES···T_XITEM·······STRUCTURE·XITEM
    ······························T_IDOC_STATUS·STRUCTURE·BDIDOCSTAT
    ·····················USING····CURRENCY······LIKE·XHEAD-CURRENCY
    ······························F_IDOC_DATA···STRUCTURE·EDIDD
    ·····················CHANGING·SUBRC·········LIKE·SY-SUBRC.
    ··DATA:·F_E1XITEM·LIKE·E1XITEM.
    ··F_E1XITEM·=·F_IDOC_DATA-SDATA.
    *·Fields·of·type·CHAR,·NUMC,·QUAN·need·no·conversion.
    ··T_XITEM-ITEM_NO····=·F_E1XITEM-ITEM_NO.
    ··T_XITEM-MATERIALID·=·F_E1XITEM-MATERIALID.
    ··T_XITEM-DESCRIPT···=·F_E1XITEM-DESCRIPT.
    ··T_XITEM-QUANTITY···=·F_E1XITEM-QUANTITY.
    *·Process·fields·that·need·conversion·from·ISO-codes·to·SAP-codes
    ··PERFORM·E1XHEAD_CODES_ISO_TO_SAP
    ·········TABLES···T_IDOC_STATUS
    ·········USING····F_E1XHEAD
    ··················F_IDOC_DATA
    ·········CHANGING·F_XHEAD
    ··················SUBRC.
    *·Process·fields·that·contain·monetary·values
    ··PERFORM·E1XITEM_VALUE_IDOC_TO_SAP·TABLES···T_IDOC_STATUS
    ····································USING····F_E1XITEM
    ·············································CURRENCY
    ·············································F_IDOC_DATA
    ····································CHANGING·T_XITEM
    ·············································SUBRC.
    ··APPEND·T_XITEM.
    ENDFORM.
    ·······FORM·E1XHEAD_CODES_ISO_TO_SAP·································
    ··Converts·ISO-Codes·in·f_e1xhead·to·SAP-codes·in·f_xhead.·············f_idoc_data,·t_idoc_status·and·subrc·are·used·for·error·handling.··*
    FORM·E1XHEAD_CODES_ISO_TO_SAP
    ·······TABLES···T_IDOC_STATUS·STRUCTURE·BDIDOCSTAT
    ·······USING····F_E1XHEAD·····STRUCTURE·E1XHEAD
    ················F_IDOC_DATA···STRUCTURE·EDIDD
    ·······CHANGING·F_XHEAD·······STRUCTURE·XHEAD
    ················SUBRC.
    *·f_xhead-currency···Type·CUKY·=>·convert·ISO-Code·to·SAP-Code.
    ··PERFORM·CURRENCY_CODE_ISO_TO_SAP
    ·········TABLES···T_IDOC_STATUS
    ·········USING····F_E1XHEAD-CURRENCY
    ··················F_IDOC_DATA
    ··················'CURRENCY'
    ·········CHANGING·F_XHEAD-CURRENCY
    ··················SUBRC.
    ··CHECK·SUBRC·=·0.
    *·f_xhead-country···Contains·a·country·=>·convert·from·ISO·to·SAP·code.
    ··PERFORM·COUNTRY_CODE_ISO_TO_SAP
    ·········TABLES···T_IDOC_STATUS
    ·········USING····F_E1XHEAD-COUNTRY
    ··················F_IDOC_DATA
    ··················'COUNTRY'
    ·········CHANGING·F_XHEAD-COUNTRY
    ··················SUBRC.
    ENDFORM.
    ·······FORM·E1XITEM_CODES_ISO_TO_SAP·································
    ··Converts·ISO-Codes·in·f_e1xitem·to·SAP-codes·in·f_xitem············
    ··f_idoc_data,·t_idoc_status·and·subrc·are·used·for·error·handling.··
    FORM·E1XITEM_CODES_ISO_TO_SAP
    ·······TABLES···T_IDOC_STATUS·STRUCTURE·BDIDOCSTAT
    ·······USING····F_E1XITEM·····STRUCTURE·E1XITEM
    ················F_IDOC_DATA···STRUCTURE·EDIDD
    ·······CHANGING·F_XITEM·······STRUCTURE·XITEM
    ················SUBRC·········LIKE·SY-SUBRC.
    *·f_xitem-unit·······Type·UNIT·=>·convert·ISO-Code·to·SAP-Code.
    ··PERFORM·UNIT_OF_MEASURE_ISO_TO_SAP
    ·········TABLES···T_IDOC_STATUS
    ·········USING····F_E1XITEM-UNIT
    ··················F_IDOC_DATA
    ··················'unit'
    ·········CHANGING·F_XITEM-UNIT
    ··················SUBRC.
    *·f_xitem-ship_inst··Contains·shipping·instructions·=>·ISO·to·SAP·code.
    ··PERFORM·SHIPPING_INSTRUCT_ISO_TO_SAP
    ·········TABLES···T_IDOC_STATUS
    ·········USING····F_E1XITEM-SHIP_INST
    ··················F_IDOC_DATA
    ··················'ship_inst'
    ·········CHANGING·F_XITEM-SHIP_INST
    ··················SUBRC.
    ENDFORM.
    ·······FORM·E1XITEM_VALUE_IDOC_TO_SAP································
    ··Converts·fields·containing·monetary·values·in·f_e1xitem·to·········
    ··the·internal·representation·in·f_xitem.······························f_idoc_data,·t_idoc_status·and·subrc·are·used·for·error·handling.··*
    FORM·E1XITEM_VALUE_IDOC_TO_SAP
    ·······TABLES···T_IDOC_STATUS·STRUCTURE·BDIDOCSTAT
    ·······USING····F_E1XITEM·····STRUCTURE·E1XITEM
    ················CURRENCY······LIKE·XHEAD-CURRENCY
    ················F_IDOC_DATA···STRUCTURE·EDIDD
    ·······CHANGING·F_XITEM·······STRUCTURE·XITEM
    ················SUBRC·········LIKE·SY-SUBRC.
    *·f_xitem-value····Type·CURR·=>·convert·IDoc·amount·to·internal·amount.
    *·N.B.·the·currency·code·used·here·must·be·the·SAP-internal·one,·not
    *······the·one·contained·in·the·IDoc!
    ··CALL·FUNCTION·'CURRENCY_AMOUNT_IDOC_TO_SAP'
    ·······EXPORTING
    ············CURRENCY····=·CURRENCY
    ············IDOC_AMOUNT·=·F_E1XITEM-VALUE
    ·······IMPORTING
    ············SAP_AMOUNT··=·F_XITEM-VALUE
    ·······EXCEPTIONS
    ············OTHERS······=·1.
    ··IF·SY-SUBRC·<>·0.
    ····SUBRC·=·1.
    *···Put·the·error·message·into·'t_idoc_status'
    ····PERFORM·STATUS_FILL_SY_ERROR
    ··············TABLES···T_IDOC_STATUS
    ··············USING····F_IDOC_DATA
    ·······················SY
    ·······················'value'·········"Field·name
    ·······················'e1xitem_value_idoc_to_sap'.······"Form·routine
    ··ENDIF.·······························"if·sy-subrc·<>·0.
    ENDFORM.
    ·······FORM·E1XHEAD_DATE_TIME········································
    ··Moves·date·and·time·fields·in·f_e1xhead·to·the·fields·in·f_xhead.··
    FORM·E1XHEAD_DATE_TIME·USING····F_E1XHEAD·STRUCTURE·E1XHEAD
    ·······················CHANGING·F_XHEAD·STRUCTURE·XHEAD.
    *·f_xhead-date····Type·DATS·=>·initial·value·is·not·'blank'.
    ··IF·E1XHEAD-DATE·IS·INITIAL.
    ····CLEAR·F_XHEAD-DATE.
    ····F_XHEAD-DATE·=·F_E1XHEAD-DATE.
    ··ENDIF.
    ENDFORM.
    ·······FORM·CURRENCY_CODE_ISO_TO_SAP·································
    ··Converts·ISO·currency·code·'iso_currency_code'·to·SAP·code·in······
    ··'sap_currency_code'················································
    ··f_idoc_data,·field_name,·t_idoc_status·and·subrc·are·used·for······
    ··for·error·handling.················································
    FORM·CURRENCY_CODE_ISO_TO_SAP
    ·······TABLES···T_IDOC_STATUS·····STRUCTURE·BDIDOCSTAT
    ·······USING····ISO_CURRENCY_CODE·LIKE·TCURC-ISOCD
    ················F_IDOC_DATA·······STRUCTURE·EDIDD
    ················FIELD_NAME········LIKE·BDIDOCSTAT-SEGFLD
    ·······CHANGING·SAP_CURRENCY_CODE·LIKE·TCURC-WAERS
    ················SUBRC·············LIKE·SY-SUBRC.
    ··IF·ISO_CURRENCY_CODE·IS·INITIAL.
    ····CLEAR·SAP_CURRENCY_CODE.
    ··ELSE.
    ····CALL·FUNCTION·'CURRENCY_CODE_ISO_TO_SAP'
    ·········EXPORTING
    ··············ISO_CODE·=·ISO_CURRENCY_CODE
    ·········IMPORTING
    ··············SAP_CODE·=·SAP_CURRENCY_CODE
    ·········EXCEPTIONS
    ··············OTHERS···=·1.
    ····IF·SY-SUBRC·<>·0.
    ······SUBRC·=·1.
    *·····Put·the·error·message·into·'t_idoc_status'
    ······PERFORM·STATUS_FILL_SY_ERROR
    ················TABLES···T_IDOC_STATUS
    ················USING····F_IDOC_DATA
    ·························SY
    ·························FIELD_NAME
    ·························'currency_code_iso_to_sap'.·····"Form·routine
    ··ENDIF.·····························"if·sy-subrc·<>·0.
    ··ENDIF.·······························"if·iso_currency_code·is·initial.
    ENDFORM.
    ·······FORM·CURRENCY_CODE_ISO_TO_SAP·································
    ··Converts·ISO·currency·code·'iso_currency_code'·to·SAP·code·in······
    ··'sap_currency_code'················································
    ··f_idoc_data,·field_name,·t_idoc_status·and·subrc·are·used·for······
    ··for·error·handling.················································
    FORM·COUNTRY_CODE_ISO_TO_SAP
    ·······TABLES···T_IDOC_STATUS····STRUCTURE·BDIDOCSTAT
    ·······USING····ISO_COUNTRY_CODE·LIKE·T005-INTCA
    ················F_IDOC_DATA······STRUCTURE·EDIDD
    ················FIELD_NAME·······LIKE·BDIDOCSTAT-SEGFLD
    ·······CHANGING·SAP_COUNTRY_CODE·LIKE·T005-LAND1
    ················SUBRC············LIKE·SY-SUBRC.
    *·Only·convert·if·the·field·is·not·initial.
    ··IF·ISO_COUNTRY_CODE·IS·INITIAL.
    ····CLEAR·SAP_COUNTRY_CODE.
    ··ELSE.
    ····CALL·FUNCTION·'COUNTRY_CODE_ISO_TO_SAP'
    ·········EXPORTING
    ··············ISO_CODE·=·ISO_COUNTRY_CODE
    ·········IMPORTING
    ··············SAP_CODE·=·SAP_COUNTRY_CODE
    ·········EXCEPTIONS
    ··············OTHERS···=·1.
    ····IF·SY-SUBRC·<>·0.
    ······SUBRC·=·1.
    *·····Put·the·error·message·into·'t_idoc_status'
    ······PERFORM·STATUS_FILL_SY_ERROR
    ················TABLES···T_IDOC_STATUS
    ················USING····F_IDOC_DATA
    ·························SY
    ·························FIELD_NAME
    ·························'country_code_iso_to_sap'.······"Form·routine
    ··ENDIF.·····························"if·sy-subrc·<>·0.
    ··ENDIF.·······························"if·iso_country_code·is·initial.
    ENDFORM.
    ·······FORM·UNIT_OF_MEASURE_ISO_TO_SAP·······························
    ··Converts·ISO·unit·of·measure·code·'iso_unit_of_measure'·to·SAP·····
    ··code·in·'sap_unit_of_measure'.·····································
    ··f_idoc_data,·field_name,·t_idoc_status·and·subrc·are·used·for······
    ··for·error·handling.················································
    FORM·UNIT_OF_MEASURE_ISO_TO_SAP
    ·······TABLES···T_IDOC_STATUS·······STRUCTURE·BDIDOCSTAT
    ·······USING····ISO_UNIT_OF_MEASURE·LIKE·T006-ISOCODE
    ················F_IDOC_DATA·········STRUCTURE·EDIDD
    ················FIELD_NAME··········LIKE·BDIDOCSTAT-SEGFLD
    ·······CHANGING·SAP_UNIT_OF_MEASURE·LIKE·T006-MSEHI
    ················SUBRC···············LIKE·SY-SUBRC.
    *·Only·convert·the·field·if·it·is·not·empty.
    ··IF·ISO_UNIT_OF_MEASURE·IS·INITIAL.
    ····CLEAR·SAP_UNIT_OF_MEASURE.
    ··ELSE.
    ····CALL·FUNCTION·'UNIT_OF_MEASURE_ISO_TO_SAP'
    ·········EXPORTING
    ··············ISO_CODE·=·ISO_UNIT_OF_MEASURE
    ·········IMPORTING
    ··············SAP_CODE·=·SAP_UNIT_OF_MEASURE
    ·········EXCEPTIONS
    ··············OTHERS···=·1.
    ····IF·SY-SUBRC·<>·0.
    ······SUBRC·=·1.
    *·····Put·the·error·message·into·'t_idoc_status'
    ······PERFORM·STATUS_FILL_SY_ERROR
    ················TABLES···T_IDOC_STATUS
    ················USING····F_IDOC_DATA
    ·························SY
    ·························FIELD_NAME
    ·························'unit_of_measure_iso_to_sap'.··"Form·routine
    ··ENDIF.·····························"if·sy-subrc·<>·0.
    ··ENDIF.··················"if·iso_unit_of_measure_code·is·initial.
    ENDFORM.
    ·······FORM·SHIPPING_INSTRUCT_ISO_TO_SAP·····························
    ··Converts·ISO·package·code·'iso_package_type'·to·SAP·code·for·······
    ··purchasing·shipping·instructions·in·'sap_shipping_instructions'.···
    ··f_idoc_data,·field_name,·t_idoc_status·and·subrc·are·used·for······
    ··for·error·handling.················································
    FORM·SHIPPING_INSTRUCT_ISO_TO_SAP
    ·······TABLES···T_IDOC_STATUS·············STRUCTURE·BDIDOCSTAT
    ·······USING····ISO_PACKAGE_TYPE··········LIKE·T027A-IVERS
    ················F_IDOC_DATA···············STRUCTURE·EDIDD
    ················FIELD_NAME················LIKE·BDIDOCSTAT-SEGFLD
    ·······CHANGING·SAP_SHIPPING_INSTRUCTIONS·LIKE·T027A-EVERS
    ················SUBRC·····················LIKE·SY-SUBRC.
    *·Only·convert·the·field·if·it·is·not·empty.
    ··IF·ISO_PACKAGE_TYPE·IS·INITIAL.
    ····CLEAR·SAP_SHIPPING_INSTRUCTIONS.
    ··ELSE.
    ····CALL·FUNCTION·'ISO_TO_SAP_PACKAGE_TYPE_CODE'
    ·········EXPORTING
    ··············ISO_CODE·=·ISO_PACKAGE_TYPE
    ·········IMPORTING
    ··············SAP_CODE·=·SAP_SHIPPING_INSTRUCTIONS
    ·········EXCEPTIONS
    ··············OTHERS···=·1.
    ····IF·SY-SUBRC·<>·0.
    ······SUBRC·=·1.
    *·····Put·the·error·message·into·'t_idoc_status'
    ······PERFORM·STATUS_FILL_SY_ERROR
    ················TABLES···T_IDOC_STATUS
    ················USING····F_IDOC_DATA
    ·························SY
    ·························FIELD_NAME
    ·························'shipping_instruct_iso_to_sap'.·"Form·rout.
    ··ENDIF.·····························"if·sy-subrc·<>·0.
    ··ENDIF.··················"if·iso_unit_of_measure_code·is·initial.
    ENDFORM.
    ·······FORM·STATUS_FILL_SY_ERROR·····································
    ··Fills·the·structure·t_idoc_status·with·the·import·parameters·······
    ··plus·the·relevant·sy·fields.·······································
    ··-->··IDOC_NUMBER···········IDoc·number·····························
    ··-->··SEGNUM················Segment·number··························
    ··-->··SEGFLD················Field·in·segment························
    ··-->··ROUTID················Name·of·routine·························
    ··<--··T_IDOC_STATUS·········Status·fields···························
    FORM·STATUS_FILL_SY_ERROR·TABLES···T_IDOC_STATUS·STRUCTURE·BDIDOCSTAT
    ··························USING····F_IDOC_DATA···STRUCTURE·EDIDD
    ···································VALUE(F_SY)···STRUCTURE·SY
    ···································SEGFLD········LIKE·BDIDOCSTAT-SEGFLD
    ···································ROUTID········LIKE·BDIDOCSTAT-ROUTID.
    ··t_idoc_status-docnum·=·f_idoc_data-docnum.
    ··t_idoc_status-status·=·c_idoc_status_error.
    ··t_idoc_status-msgty··=·f_sy-msgty.
    ··t_idoc_status-msgid··=·f_sy-msgid.
    ··T_IDOC_STATUS-MSGNO··=·F_SY-MSGNO.
    ··t_idoc_status-msgv1··=·f_sy-msgv1.
    ··t_idoc_status-msgv2··=·f_sy-msgv2.
    ··t_idoc_status-msgv3··=·f_sy-msgv3.
    ··t_idoc_status-msgv4··=·f_sy-msgv4.
    ··t_idoc_status-segnum·=·f_idoc_data-segnum.
    ··t_idoc_status-segfld·=·segfld.
    ··t_idoc_status-repid··=·f_sy-repid.
    ··t_idoc_status-routid·=·routid.
    ··APPEND·T_IDOC_STATUS.
    ENDFORM.
    Also Check out these docs.
    http://help.sap.com/saphelp_nw04/helpdata/en/dc/6b7ee143d711d1893e0000e8323c4f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/1a/178ad32d3011d3bc3500105a6588b2/frameset.htm
    Dont forget to reward pts, if it helps ;>)
    Regards,
    Rakesh.

  • WF-BATCH user locks up inbound IDoc processing

    Hi Experts!
    We have an issue with our inbound IDoc processing randomly being locked by the WF-BATCH user.  I have searched SAP Notes, and the only thing I could find was on Note 519420, it said to check the default settings for date format and decimal notation format in SU01.  All looked fine, except for the decimal notation which was 1.234,567.89, instead of 1,234,567.89.  If I changed this, would this fix the problem?  Any suggestions would be greatly appreciated.  Thank you in advance. 
    WC

    WF-BATCH - is an ID in SAP which processes batch workflow tasks.
    So if your IDOC posting triggers workflow task - it's going to be processed by WF-BATCH.

  • Problem with Delivery IDOC staus 51

    Hi all,
    I have problem with Delivery IDOC.
    An IDOC is sent from the logistics provider with reference to a manually created delivery, which creates another IDOC & another partial delivery.
    The second IDOC created then confirms the partial delivery created by the first IDOC.
    When IDOC try to confirm this delivery, it goes to status 51 with error " Delivery does not exist".
    In some case IDOC was correctly processed & confirmed the delivery.
    In some cases it went wrong.
    Any ideas regarding this?

    Hi Suneel,
    It seems there is timing issue between the first IDoc and second IDoc.
    When the first IDoc has not yet commit to DB then the second IDoc tries to process with reference to the first IDoc.
    Is there any that can distinguish between 1st and 2nd IDocs?
    In other word, can you post the second IDoc within minutes delay?
    Just my two cents.
    Regards,
    Ferry Lianto

  • Outbound delivery with Inbound IDOC DELVRY06 with Message type SHPCON

    Hi Friends
    I am trying to pack outbound delivery with Inbound IDOC DELVRY06 with Message type SHPCON.
    But IDOC has error Specification of destination HU missing.
    Could you please help us to resolve the issue to Pack the outbound delivery with the  IDOC.
    Thanks
    SR

    HI Ian Kehoe
    Sorry for delay in reply
    Thanks you very much
    I solved that problem .
    Could you please advice  test data for IDOC  DELVRY06 packing hierarchy (multi level packing) to pack SAP outbound delivery.
    Thanks
    Ravi

  • Problem with inbound ichats

    We are having a problem with inbound video ichats to our domain. It doesn't happen all the time but it happens enough to where it is a problem. The users can type back and forth, but when they go to ichat it fails. Here is the error log:
    Date/Time: 2009-11-09 10:15:51 -0500
    OS Version: 10.6.1 (Build 10B504)
    Report Version: 4
    iChat Connection Log:
    2009-11-09 10:15:11 -0500: AVChat started with ID 914321416.
    2009-11-09 10:15:11 -0500: 0x116de8040: State change from AVChatNoState to AVChatStateWaiting.
    2009-11-09 10:15:11 -0500: [email protected]: State change from AVChatNoState to AVChatStateInvited.
    2009-11-09 10:15:16 -0500: 0x116de8040: State change from AVChatStateWaiting to AVChatStateConnecting.
    2009-11-09 10:15:16 -0500: [email protected]: State change from AVChatStateInvited to AVChatStateConnecting.
    2009-11-09 10:15:47 -0500: 0x116de8040: State change from AVChatStateConnecting to AVChatStateEnded.
    2009-11-09 10:15:47 -0500: 0x116de8040: Error -8 (Did not receive a response from 0x116de8040.)
    2009-11-09 10:15:47 -0500: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2009-11-09 10:15:47 -0500: [email protected]: Error -8 (Did not receive a response from 0x116de8040.)
    Video Conference Error Report:
    0.000000 @/SourceCache/VideoConference/VideoConference-413.1/Video Conference/DotMacConfiguration.m:758 type=4 (FFFFFFFF/0)
    [HTTP GET failed (0)]
    7075.095640 @/SourceCache/VideoConference/VideoConference-413.1/SIP/SIP.c:2917 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    7077.097166 @/SourceCache/VideoConference/VideoConference-413.1/SIP/SIP.c:2917 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    7079.097812 @/SourceCache/VideoConference/VideoConference-413.1/SIP/SIP.c:2917 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    7081.099303 @/SourceCache/VideoConference/VideoConference-413.1/SIP/SIP.c:2917 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    7083.100508 @/SourceCache/VideoConference/VideoConference-413.1/SIP/SIP.c:2917 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    7052.727047 @/SourceCache/VideoConference/VideoConference-413.1/Video Conference/VCInitiateConference.m:2059 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    7052.858652 @/SourceCache/VideoConference/VideoConference-413.1/Video Conference/VCInitiateConference.m:2074 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    7073.084138 @/SourceCache/VideoConference/VideoConference-413.1/Video Conference/VCInitiateConference.m:2266 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    7073.094858 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:58922;branch=z9hG4bK4909686401fb4686
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=1466270130
    Call-ID: 1decd42bc2175e4-cd42-11de-91e3-cabd2c1e4011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:58922>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 701
    v=0
    o=jmarte 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 58922 RTP/AVP 110 12 124 3 0
    a=rtcp:58922
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 58922 RTP/AVP 123 126 34
    a=rtcp:58922
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 58922 VIDEO 58922
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7073.595276 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:58922;branch=z9hG4bK4909686401fb4686
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=1466270130
    Call-ID: 1decd42bc2175e4-cd42-11de-91e3-cabd2c1e4011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:58922>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 701
    v=0
    o=jmarte 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 58922 RTP/AVP 110 12 124 3 0
    a=rtcp:58922
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 58922 RTP/AVP 123 126 34
    a=rtcp:58922
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 58922 VIDEO 58922
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7074.595698 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:58922;branch=z9hG4bK4909686401fb4686
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=1466270130
    Call-ID: 1decd42bc2175e4-cd42-11de-91e3-cabd2c1e4011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:58922>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 701
    v=0
    o=jmarte 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 58922 RTP/AVP 110 12 124 3 0
    a=rtcp:58922
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 58922 RTP/AVP 123 126 34
    a=rtcp:58922
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 58922 VIDEO 58922
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7075.096068 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:58922;branch=z9hG4bK64db79c466522581
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=708872370
    Call-ID: 1decd42bd52d656-cd42-11de-91e3-a39cce734011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:58922>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 701
    v=0
    o=jmarte 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 58922 RTP/AVP 110 12 124 3 0
    a=rtcp:58922
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 58922 RTP/AVP 123 126 34
    a=rtcp:58922
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 58922 VIDEO 58922
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7075.597004 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:58922;branch=z9hG4bK64db79c466522581
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=708872370
    Call-ID: 1decd42bd52d656-cd42-11de-91e3-a39cce734011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:58922>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 701
    v=0
    o=jmarte 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 58922 RTP/AVP 110 12 124 3 0
    a=rtcp:58922
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 58922 RTP/AVP 123 126 34
    a=rtcp:58922
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 58922 VIDEO 58922
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7076.597918 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:58922;branch=z9hG4bK64db79c466522581
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=708872370
    Call-ID: 1decd42bd52d656-cd42-11de-91e3-a39cce734011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:58922>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 701
    v=0
    o=jmarte 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 58922 RTP/AVP 110 12 124 3 0
    a=rtcp:58922
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 58922 RTP/AVP 123 126 34
    a=rtcp:58922
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 58922 VIDEO 58922
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7077.097553 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:51959 SIP/2.0
    Via: SIP/2.0/UDP sip:58922;branch=z9hG4bK23a21bc72e8767be
    Max-Forwards: 70
    To: "u0" <sip:user@rip:51959>
    From: "0" <sip:user@lip:16401>;tag=311165264
    Call-ID: 1decd42be843d76-cd42-11de-91e3-9564bbb34011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:58922>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 701
    v=0
    o=jmarte 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 58922 RTP/AVP 110 12 124 3 0
    a=rtcp:58922
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 58922 RTP/AVP 123 126 34
    a=rtcp:58922
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 58922 VIDEO 58922
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7077.598425 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:51959 SIP/2.0
    Via: SIP/2.0/UDP sip:58922;branch=z9hG4bK23a21bc72e8767be
    Max-Forwards: 70
    To: "u0" <sip:user@rip:51959>
    From: "0" <sip:user@lip:16401>;tag=311165264
    Call-ID: 1decd42be843d76-cd42-11de-91e3-9564bbb34011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:58922>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 701
    v=0
    o=jmarte 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 58922 RTP/AVP 110 12 124 3 0
    a=rtcp:58922
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 58922 RTP/AVP 123 126 34
    a=rtcp:58922
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 58922 VIDEO 58922
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7078.598896 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:51959 SIP/2.0
    Via: SIP/2.0/UDP sip:58922;branch=z9hG4bK23a21bc72e8767be
    Max-Forwards: 70
    To: "u0" <sip:user@rip:51959>
    From: "0" <sip:user@lip:16401>;tag=311165264
    Call-ID: 1decd42be843d76-cd42-11de-91e3-9564bbb34011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:58922>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 701
    v=0
    o=jmarte 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 58922 RTP/AVP 110 12 124 3 0
    a=rtcp:58922
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 58922 RTP/AVP 123 126 34
    a=rtcp:58922
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 58922 VIDEO 58922
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7079.098152 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16401;branch=z9hG4bK0160c35509f5babf
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=1731373961
    Call-ID: 1decd42bfb57f16-cd42-11de-91e3-8ad003214011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16401>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 691
    v=0
    o=jmarte 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16401 RTP/AVP 110 12 124 3 0
    a=rtcp:16401
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 16401 RTP/AVP 123 126 34
    a=rtcp:16401
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16401 VIDEO 16401
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7079.599557 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16401;branch=z9hG4bK0160c35509f5babf
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=1731373961
    Call-ID: 1decd42bfb57f16-cd42-11de-91e3-8ad003214011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16401>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 691
    v=0
    o=jmarte 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16401 RTP/AVP 110 12 124 3 0
    a=rtcp:16401
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 16401 RTP/AVP 123 126 34
    a=rtcp:16401
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16401 VIDEO 16401
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7080.600432 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16401;branch=z9hG4bK0160c35509f5babf
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=1731373961
    Call-ID: 1decd42bfb57f16-cd42-11de-91e3-8ad003214011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16401>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 691
    v=0
    o=jmarte 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16401 RTP/AVP 110 12 124 3 0
    a=rtcp:16401
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 16401 RTP/AVP 123 126 34
    a=rtcp:16401
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16401 VIDEO 16401
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7081.100390 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16401;branch=z9hG4bK33f929d568b152ad
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=82267052
    Call-ID: 1decd42c0e70008-cd42-11de-91e3-e0a735c94011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16401>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 691
    v=0
    o=jmarte 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16401 RTP/AVP 110 12 124 3 0
    a=rtcp:16401
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 16401 RTP/AVP 123 126 34
    a=rtcp:16401
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16401 VIDEO 16401
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7081.601540 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16401;branch=z9hG4bK33f929d568b152ad
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=82267052
    Call-ID: 1decd42c0e70008-cd42-11de-91e3-e0a735c94011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16401>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 691
    v=0
    o=jmarte 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16401 RTP/AVP 110 12 124 3 0
    a=rtcp:16401
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 16401 RTP/AVP 123 126 34
    a=rtcp:16401
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16401 VIDEO 16401
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    7082.602485 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16401;branch=z9hG4bK33f929d568b152ad
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=82267052
    Call-ID: 1decd42c0e70008-cd42-11de-91e3-e0a735c94011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16401>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 691
    v=0
    o=jmarte 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2400
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16401 RTP/AVP 110 12 124 3 0
    a=rtcp:16401
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:3110890660
    m=video 16401 RTP/AVP 123 126 34
    a=rtcp:16401
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16401 VIDEO 16401
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2795763882
    Video Conference User Report:
    7047.449733 @:0 type=5 (00000000/16401)
    [Local SIP port]
    7047.449796 @:0 type=5 (00000000/16401)
    [Local SIP port]
    7047.449842 @:0 type=5 (00000000/16401)
    [Local SIP port]
    7047.449886 @:0 type=5 (00000000/16401)
    [Local SIP port]
    7073.084143 @/SourceCache/VideoConference/VideoConference-413.1/Video Conference/VideoConferenceGlobalObjects.m:1670 type=5 (00000000/0)
    [Router]
    [FULLCONE]
    7073.084162 @/SourceCache/VideoConference/VideoConference-413.1/Video Conference/VideoConferenceGlobalObjects.m:1672 type=5 (00000000/0)
    [CommNAT Result: 0x00000102
    Binary Images Description for "iChat":
    0x100000000 - 0x100280fff com.apple.iChat 5.0 (741) /Applications/iChat.app/Contents/MacOS/iChat
    0x102935000 - 0x10296cfff com.apple.FWAVC 101.46 (46) /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
    0x102cbe000 - 0x102ddbfff com.apple.TundraUnits 101.0 (715) /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/Tundr aUnits.bundle/Contents/MacOS/TundraUnits
    0x102ea6000 - 0x102ec5fff com.apple.opengl 1.6.3 /System/Library/Frameworks/OpenGL.framework/Resources//GLRendererFloat.bundle/G LRendererFloat
    0x103726000 - 0x1038b1fff com.apple.opengl 1.6.3 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1038e1000 - 0x103c9efff com.apple.GeForce8xxxGLDriver 1.6.2 (6.0.2) /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/libclh.dyl ib
    0x112b10000 - 0x112b14fff com.apple.iChat.Styles.Balloons 5.0 (741) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x112b33000 - 0x112b35fff com.apple.iChat.PersonIconPlugIn 5.0 (741) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x11547a000 - 0x1154b7fff com.apple.DP.ScreenInputDevice 7.0 /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/Apple ScreenInputDevice.plugin/Contents/MacOS/AppleScreenInputDevice
    0x1154c3000 - 0x1154edfff com.apple.mio.DAL.VDC_4 101.0 (715) /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.p lugin/Contents/MacOS/VDC
    0x1160f6000 - 0x1160fafff com.apple.audio.AudioIPCPlugIn 1.1.0 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1160ff000 - 0x116105fff com.apple.audio.AppleHDAHALPlugIn 1.7.4 (1.7.4a1) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x116131000 - 0x116356fff com.apple.audio.codecs.Components 2.0 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x116c61000 - 0x116c65fff com.apple.iChat.FileTransferAtomPlugIn 5.0 (741) /Applications/iChat.app/Contents/PlugIns/FileTransferAtom.plugin/Contents/MacOS /FileTransferAtom
    0x200000000 - 0x200466fff com.apple.GeForce8xxxGLDriver 1.6.2 (6.0.2) /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x7fff5fc00000 - 0x7fff5fc3bfff dyld /usr/lib/dyld
    0x7fff80003000 - 0x7fff80046fff com.apple.CoreGraphics 1.535.5 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff80047000 - 0x7fff800a3fff com.apple.opengl 1.6.3 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff800a4000 - 0x7fff80121fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x7fff80122000 - 0x7fff802dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x7fff802e0000 - 0x7fff802f1fff libz.1.dylib /usr/lib/libz.1.dylib
    0x7fff802f2000 - 0x7fff80392fff com.apple.LaunchServices 360.3 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff80393000 - 0x7fff80399fff com.apple.CoreGraphics 1.535.5 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff803cf000 - 0x7fff803d3fff com.apple.iChat.IMSecurityUtils 5.0 (742) /System/Library/Frameworks/IMCore.framework/Frameworks/IMSecurityUtils.framewor k/Versions/A/IMSecurityUtils
    0x7fff803d4000 - 0x7fff80458fff com.apple.print.framework.PrintCore 6.0 (312) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff80459000 - 0x7fff8048afff com.apple.opengl 1.6.3 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff80540000 - 0x7fff806fafff com.apple.ImageIO.framework 3.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff806fb000 - 0x7fff806fcfff liblangid.dylib /usr/lib/liblangid.dylib
    0x7fff806fd000 - 0x7fff80865fff com.apple.viceroy.framework 386.0 (413.1) /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x7fff80866000 - 0x7fff808c8fff com.apple.datadetectorscore 2.0 (80.7) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff808c9000 - 0x7fff808c9fff com.apple.Cocoa 6.6 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff808ca000 - 0x7fff808fbfff com.apple.ApplicationServices.ATS 4.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff808fc000 - 0x7fff80946fff com.apple.IMCore 5.0 (742) /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
    0x7fff80954000 - 0x7fff8096dfff com.apple.CFOpenDirectory 10.6 /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff80984000 - 0x7fff80af7fff com.apple.CoreFoundation 6.6 (550) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff80b01000 - 0x7fff80b36fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x7fff80b37000 - 0x7fff80b4cfff com.apple.LangAnalysis 1.6.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff80b4d000 - 0x7fff81541fff com.apple.AppKit 6.6.1 (1038.2) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff81542000 - 0x7fff81599fff com.apple.Symbolication 1.1 (67) /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8159a000 - 0x7fff815bbfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x7fff815bc000 - 0x7fff815c7fff com.apple.HelpData 2.0.3 (33) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff81701000 - 0x7fff81724fff com.apple.iChat.IMFoundation 5.0 (742) /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
    0x7fff8187e000 - 0x7fff818b5fff libssl.0.9.8.dylib /usr/lib/libssl.0.9.8.dylib
    0x7fff818b6000 - 0x7fff818bafff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x7fff818bb000 - 0x7fff81a28fff com.apple.QTKit 7.6.3 (1584) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff81a35000 - 0x7fff81a48fff com.apple.opengl 1.6.3 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff81b42000 - 0x7fff81b9ffff com.apple.framework.IOKit 2.0 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff81ba0000 - 0x7fff81c31fff com.apple.Bluetooth 2.2.1 (2.2.1f7) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff81c32000 - 0x7fff81c7ffff libauto.dylib /usr/lib/libauto.dylib
    0x7fff81c80000 - 0x7fff81eeafff com.apple.QuartzComposer 4.0 (156.6) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff81ef3000 - 0x7fff81f33fff com.apple.QD 3.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff81f34000 - 0x7fff81f4cfff com.apple.iChat.InstantMessage 5.0 (742) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x7fff81f4d000 - 0x7fff82006fff libsqlite3.dylib /usr/lib/libsqlite3.dylib
    0x7fff82007000 - 0x7fff8213ffff com.apple.CoreData 102 (246) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff82140000 - 0x7fff8220cfff com.apple.CFNetwork 454.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff8225d000 - 0x7fff8227dfff com.apple.DirectoryService.Framework 3.6 (621) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff8227e000 - 0x7fff82285fff com.apple.OpenDirectory 10.6 /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff82286000 - 0x7fff8233bfff com.apple.ink.framework 1.3 (104) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff8233c000 - 0x7fff824fafff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x7fff824fb000 - 0x7fff82619fff com.apple.PubSub 1.0.4 (65.11) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff8261a000 - 0x7fff8261ffff com.apple.CommonPanels 1.2.4 (91) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff826bd000 - 0x7fff826dffff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x7fff826e0000 - 0x7fff827f7fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x7fff827f8000 - 0x7fff8285efff com.apple.AppleVAFramework 4.6.2 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8285f000 - 0x7fff82875fff libbsm.0.dylib /usr/lib/libbsm.0.dylib
    0x7fff82bb4000 - 0x7fff82bcafff com.apple.ImageCapture 6.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff82dab000 - 0x7fff82dbcfff com.apple.DSObjCWrappers.Framework 10.6 (134) /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff82dbd000 - 0x7fff830effff com.apple.CoreServices.CarbonCore 859.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff83120000 - 0x7fff831dbfff com.apple.ApplicationServices.ATS 4.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8321c000 - 0x7fff8322afff libkxld.dylib /usr/lib/system/libkxld.dylib
    0x7fff8322b000 - 0x7fff83230fff com.apple.ImageIO.framework 3.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff83231000 - 0x7fff83280fff com.apple.ImageIO.framework 3.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff83281000 - 0x7fff8329ffff com.apple.ImageIO.framework 3.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff832a0000 - 0x7fff83330fff com.apple.SearchKit 1.3.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff83331000 - 0x7fff8335cfff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x7fff8335d000 - 0x7fff83390fff com.apple.remotedesktop.screensharing 1.2 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x7fff83391000 - 0x7fff83391fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff83392000 - 0x7fff83421fff com.apple.PDFKit 2.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff83422000 - 0x7fff83544fff com.apple.audio.toolbox.AudioToolbox 1.6 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff83545000 - 0x7fff83566fff com.apple.opencl 11 /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff83567000 - 0x7fff83864fff com.apple.HIToolbox 1.6.0 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff83865000 - 0x7fff83874fff com.apple.NetFS 3.2 /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff83875000 - 0x7fff83f67fff com.apple.CoreGraphics 1.535.5 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff83f68000 - 0x7fff83fe6fff com.apple.audio.CoreAudio 3.2.0 (3.2) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff83fe7000 - 0x7fff84022fff com.apple.CoreMedia 0.420.17 (420.17) /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff84023000 - 0x7fff84060fff com.apple.ApplicationServices.ATS 4.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff84097000 - 0x7fff84112fff com.apple.ISSupport 1.9.1 (49) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff84113000 - 0x7fff84139fff com.apple.ImageIO.framework 3.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8413a000 - 0x7fff84160fff com.apple.frameworks.preferencepanes 13.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x7fff84161000 - 0x7fff841defff com.apple.backup.framework 1.1 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff841df000 - 0x7fff84261fff com.apple.QuickLookUIFramework 2.0 (327.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff84262000 - 0x7fff843e6fff com.apple.JavaScriptCore 6531 (6531.5) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff844e8000 - 0x7fff8459efff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x7fff8459f000 - 0x7fff8459ffff com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff845a0000 - 0x7fff845a4fff com.apple.CoreGraphics 1.535.5 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff845a5000 - 0x7fff84611fff com.apple.CorePDF 1.0 /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff84612000 - 0x7fff8463afff com.apple.DictionaryServices 1.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff8463b000 - 0x7fff846c7fff SecurityFoundation /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff846c8000 - 0x7fff848d4fff com.apple.RawCamera.bundle 2.2.1 (477) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff848d5000 - 0x7fff848e2fff com.apple.CoreGraphics 1.535.5 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff848e3000 - 0x7fff848ebfff com.apple.iChat.IMUtils 5.0 (742) /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
    0x7fff848ec000 - 0x7fff84902fff com.apple.MultitouchSupport.framework 200.20 /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff84903000 - 0x7fff84949fff com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff84989000 - 0x7fff84989fff com.apple.Accelerate 1.5 (Accelerate 1.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8498a000 - 0x7fff84c0efff com.apple.security 6.0 (36910) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff84c0f000 - 0x7fff84fa3fff com.apple.QuartzCore 1.6.0 (226.0) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff84fa4000 - 0x7fff84fa6fff com.apple.print.framework.Print 6.0 (237) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff84fc8000 - 0x7fff85045fff com.apple.CoreText 3.0.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff85046000 - 0x7fff85047fff com.apple.audio.units.AudioUnit 1.6 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff85048000 - 0x7fff85053fff com.apple.speech.recognition.framework 3.10.10 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff85054000 - 0x7fff85055fff libffi.dylib /usr/lib/libffi.dylib
    0x7fff85056000 - 0x7fff850abfff com.apple.framework.familycontrols 2.0 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff850ac000 - 0x7fff850f0fff com.apple.ImageCaptureCore 1.0 /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff850f1000 - 0x7fff85534fff com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff85535000 - 0x7fff85544fff com.apple.opengl 1.6.3 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff85545000 - 0x7fff855c5fff com.apple.iLifeMediaBrowser 2.1.3 (346.0.3) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x7fff855c6000 - 0x7fff856d5fff libcrypto.0.9.8.dylib /usr/lib/libcrypto.0.9.8.dylib
    0x7fff856d6000 - 0x7fff856f1fff com.apple.datadetectors 2.0 (102.0) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x7fff856f2000 - 0x7fff86115fff com.apple.WebCore 6531 (6531.9) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff86116000 - 0x7fff86116fff com.apple.CoreServices 44 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff86117000 - 0x7fff8612bfff com.apple.speech.synthesis.framework 3.10.35 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff86150000 - 0x7fff86193fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x7fff86194000 - 0x7fff861ddfff com.apple.securityinterface 4.0 (36981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff861e1000 - 0x7fff86290fff edu.mit.Kerberos 6.5.8 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff86291000 - 0x7fff86303fff com.apple.CoreSymbolication 2.0 (23) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff86304000 - 0x7fff8634efff com.apple.Metadata 10.6.0 (507.1) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8634f000 - 0x7fff86354fff com.apple.opengl 1.6.3 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff86355000 - 0x7fff86357fff com.apple.ImageIO.framework 3.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff86358000 - 0x7fff8658efff com.apple.AddressBook.framework 5.0 (862) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff8658f000 - 0x7fff86a87fff com.apple.VideoToolbox 0.420.17 (420.17) /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff86a88000 - 0x7fff86a8bfff com.apple.opengl 1.6.3 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff86a97000 - 0x7fff86a97fff com.apple.Carbon 150 (152) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff86aac000 - 0x7fff86aacfff com.apple.vecLib 3.5 (vecLib 3.5) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff86c5d000 - 0x7fff86c60fff com.apple.help 1.3.1 (41) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff86c61000 - 0x7fff86c9cfff com.apple.CoreMediaIOServices 101.0 (715) /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff86c9d000 - 0x7fff86cb8fff com.apple.openscripting 1.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff86cbb000 - 0x7fff86ccdfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x7fff86d43000 - 0x7fff86f7cfff com.apple.imageKit 2.0 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff8704d000 - 0x7fff87053fff com.apple.IOSurface 73.0 /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff87054000 - 0x7fff870a5fff com.apple.HIServices 1.8.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff870a6000 - 0x7fff870f5fff com.apple.DirectoryService.PasswordServerFramework 6.0 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff870f6000 - 0x7fff871b2fff com.apple.CoreServices.OSServices 352 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff871fc000 - 0x7fff87202fff com.apple.DiskArbitration 2.3 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff87203000 - 0x7fff87244fff com.apple.SystemConfiguration 1.10 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8725b000 - 0x7fff8730ffff com.apple.ColorSync 4.6.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff87310000 - 0x7fff873f4fff com.apple.DesktopServices 1.5.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff873f5000 - 0x7fff8745ffff com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff87460000 - 0x7fff874c8fff com.apple.MeshKitRuntime 1.0 (49.0) /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff874c9000 - 0x7fff87563fff com.apple.ApplicationServices.ATS 4.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff87564000 - 0x7fff87593fff com.apple.quartzfilters 1.6.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff875a4000 - 0x7fff875ebfff com.apple.QuickLookFramework 2.0 (327.0) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff875ec000 - 0x7fff875edfff com.apple.TrustEvaluationAgent 1.0 (1) /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff875ee000 - 0x7fff87635fff com.apple.coreui 0.2 (112) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff87636000 - 0x7fff87637fff com.apple.MonitorPanelFramework 1.3.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff87638000 - 0x7fff8763ffff com.apple.KerberosHelper 2.0 (1.0) /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x7fff87640000 - 0x7fff87663fff com.apple.ScreenSaver 3.0 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x7fff87684000 - 0x7fff8768bfff com.apple.DisplayServicesFW 2.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff876e9000 - 0x7fff87722fff com.apple.MeshKit 1.0 (49.0) /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff87723000 - 0x7fff8782dfff com.apple.MeshKitIO 1.0 (49.0) /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff8782e000 - 0x7fff88038fff com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff88039000 - 0x7fff88068fff com.apple.iChat.IMRenderingFoundation 5.0 (742) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMRenderingFound ation.framework/Versions/A/IMRenderingFoundation
    0x7fff88069000 - 0x7fff881a6fff com.apple.WebKit 6531 (6531.9) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff881a7000 - 0x7fff881d7fff com.apple.shortcut 1.1 /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff881de000 - 0x7fff882b8fff com.apple.vImage 4.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff882b9000 - 0x7fff882d3fff com.apple.ScriptingBridge 1.1 (???) /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x7fff882d4000 - 0x7fff882f8fff com.apple.CoreVideo 1.6.0 (43.0) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff882f9000 - 0x7fff88336fff com.apple.LDAPFramework 2.0 (120.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff88367000 - 0x7fff883a2fff com.apple.AE 496 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff883a3000 - 0x7fff883e1fff com.apple.DebugSymbols 1.1 (70) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff883e2000 - 0x7fff88663fff com.apple.Foundation 6.6 (751) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff88664000 - 0x7fff8872ffff com.apple.ColorSync 4.6.0 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x7fff88730000 - 0x7fff88835fff com.apple.opengl 1.6.3 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff88836000 - 0x7fff88836fff com.apple.ApplicationServices 38 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff88837000 - 0x7fff88842fff com.apple.CrashReporterSupport 10.6 (237) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff88843000 - 0x7fff88846fff com.apple.securityhi 4.0 (36638) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff88847000 - 0x7fff88950fff com.apple.MediaToolbox 0.420.17 (420.17) /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x

    Hi,
    How have you got the ports iChat needs open in your Modem or Router ?
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:58922;branch=z9hG4bK4909686401fb4686
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16401>;tag=1466270130
    Call-ID: 1decd42bc2175e4-cd42-11de-91e3-cabd2c1e4011@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:58922>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 701
    This is supposed to have port 16402 listed at all points.
    The SIP port at you end has already moved.
    Later attempts show the Buddy moving port as well.
    a=rtpID:2795763882
    7073.595276 @/SourceCache/VideoConference/VideoConference-413.1/SIP/Transport.c:2138
    At th point where the Square brackets show you are supposed to list A PING
    This is most likely not showing as the ports and SIP invite are not resolved.
    The bits below "Binary Images for iChat" tell us nothing.
    8:45 PM Monday; November 9, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • While installing adobe creative cloud , getting the following error msg " There seems to be a problem with the download process. Error code:201"

    while installing adobe creative cloud , getting the following error msg " There seems to be a problem with the download process. Error code:201"

    Creative Cloud Help / Error downloading Creative Cloud applications
    http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html

  • Outbound delivery creation with inbound IDOC transfer from Java system

    Dear Experts,
           The scenario we are having is really very interesting. Hopefully its a good learning for me and also for others also.
    The scenario is,
                   After sales order creation the details will be sent to one Non SAP system (Java) for performing some tasks related to forwarding agent decision, shipping date and etc. Once the details are finalized in that Java system then, the details needs to be transferred to SAP as "Inbound IDOC" process. For this proposed to use the SAP Jco middle ware.
                 Once the details transfered from Java system to SAP then, the outbound IDOC needs to get generated automatically. Assuming the stock for that sales order line item is available. Also one more complexity is, our client is using custom transaction (ZVl10C) for delivery creation.
    Now Query is,
                   1. Which IDOC, message type and Functional module needs to be used for creating the delivery automatically..??
                   2. As per assumption, stock of that sales order line item should be available. Due to some business reason the stock was removed during inbound IDOC transfer then, what will happen to the IDOC..?. How to avoid this situation..??
                   3. As we told we are re going to use SAP Jco b/w SAP & Java system. In this case, how the data will get transfered from Java system to SAP..?
    Thanks in advance for the replies I am going to get
    Regards,
    VEL

    Didn't get any feedback from experts for long time. So we are closing the question

  • Inbound idoc processing by workflow

    Hello,
    How can I find if an inbound IDoc has been processed via workflow ?
    following are details -
    1)status records 50 and 64 for the idoc show RFC user ID whereas 62 and 53 show WORKFLOW_020 user ID.
    2)manual re process in test system using WE19 has all four status records by login user ID.
    3)BD67 values for this process code was checked for the start events.
    4)I checked standard task 30200090 following oss note 325361
    5)The invoice document posted via this idoc has created by user ID as WORKFLOW_020 
    I do not have full knowledge of inbound idoc processing via workflow and I am in the process of learning the same. Kindly help.
    thank you very much in advance,
    Bhakti

    Hello,
    How can I find if an inbound IDoc has been processed via workflow ?
    following are details -
    1)status records 50 and 64 for the idoc show RFC user ID whereas 62 and 53 show WORKFLOW_020 user ID.
    2)manual re process in test system using WE19 has all four status records by login user ID.
    3)BD67 values for this process code was checked for the start events.
    4)I checked standard task 30200090 following oss note 325361
    5)The invoice document posted via this idoc has created by user ID as WORKFLOW_020 
    I do not have full knowledge of inbound idoc processing via workflow and I am in the process of learning the same. Kindly help.
    thank you very much in advance,
    Bhakti

  • Where to put break point when debugging the inbound IDOC processing

    Hi, Dear Experts,
    If IDOC has error and want to debug, which program or function module  to put break point when debugging the inbound IDOC processing
    Thank you so much!
    Helen

    It depends on if you have the custom FM or standard FM...Is it MM invoice or FI invoice? ... You can find out your FM by going to partner profile (WE20) for your sender partner and partner function.. Drill down to your partner and the message type and find the inbound process code.. Double clicking on the process code will help you find the FM...
    If you don't have access to WE20, You can also put BP into any of the IDOC_INPUT_INVOIC* FM and see if it is getting triggered (assuming your IDOC is standard FM)...

  • How to know whether we are in Inbound Idoc processing ?

    Hi,
    Can we know from any system variables that whether we are in Inbound Idoc processing?
    Rgds,
    Antony

    Hi Antony,
    Inbound or Outbound is clssified based on Direction Filed.
    If we have IDOC Number chk in EDIDC its direction
    If Direct = 1(Outbound) or =2 (Inbound) i think
    Regards,
    Poornima

  • Create PM orders/notif with inbound IDOC

    Hi all,
       Anyone knows how can I create a PM order and a PM notification with inbounds IDOC?. If there are not IDOC available, it´s possible create PM order and notification trhought BAPI´s?.
    Thanks in advance
    Abel

    Hi Abel,
    Have a look at BAPI_ALM_ORDER_MAINTAIN for PM Order and BAPI_ALM_NOTIF_CREATE for PM Notification.
    You can check the BAPI's from transaction code BAPI.
    Hope this helps.
    Thanks
    Lakshman

Maybe you are looking for

  • CS6 illustrator quit unexpectedly (Mac OS X 10.9.1)

    The rest of my Creative Suite works fine, just the AI won't start. I logged out and AI works in the guest user account. Please kindly help. Crash report below: Process:         Adobe Illustrator [743] Path:            /Applications/Adobe Illustrator

  • Slow Video playback on external monitor

    I'm having a problem with video on an external monitor drifting out of sync. The video plays back slow on the monitor but the sound come through fine and the video is playing at a normal speed in FCP. This is only happening with video from FCP, I can

  • Error "Valid Value - Value do not Exist" for payment terms

    Hi, I am trying to change the payment terms in a Sales Order using UIAPI. Although the value i am using to update is a valid value, i get the following error: Valid Value - Value do not Exist My code is as folows: Dim sNewValue as String sNewValue =

  • Adobe Flash plugin installed but not showing up

    Since 2-18-2013, my Adobe Flash Player is neither appearing as being installed with FireFox19 ... NOR does it work on any website other than the Adobe "verify" page. I have: a. Removed Flash Player and rebooted c. Reinstalled Flash Player from downlo

  • Thinkpad W530: None of the USB ports work when used with a 4338-35U replicator

    I have tried mouse. keyboard and a generic USB stick with a LED. None of the USB ports work on the replicator. Everything works fine when connected directly to the W530. The replicator ports must not have power because the LED doesn't come on.