URGENT ISSUE ! PLS SEE IT ( related to cureency field in field catalog)

Hi  Gurus,
I have populated the field catalog inf like this.
    is_FIELDCATALOG-FIELDNAME   = 'W_EXT_AMOUNT'.
    is_FIELDCATALOG-SELTEXT_M   = 'Extended Amount'.
    is_FIELDCATALOG-COL_POS     = 4.
    IS_FIELDCATALOG-OUTPUTLEN   = 16.
    is_FIELDCATALOG-REF_FIELDNAME     = 'WAERS'.
    is_FIELDCATALOG-REF_TABNAME     = 'T001'.
   IS_FIELDCATALOG-CFIELDNAME  = 'DMBTR'.
    is_fieldcatalog-ctabname = 'BSIS'.
    APPEND IS_FIELDCATALOG TO IT_FIELDCATALOG.
   CLEAR  IS_FIELDCATALOG.
Data : W_EXT_AMOUNT type DMBTR.
I calculated it using
W_EXT_AMOUNT = IS_ERROR-AMOUNT * P_NETAMT.( amount is of type                                                                               
DMBTR)
in the out put Amount is displayed with value 0,00
                    W_EXT_AMOUNT displayed as blank
when i print it for spool generation, its giving following dump
DUMP analysis.
What happened?
Error in the ABAP Application Program
The current ABAP program "SAPLKKBL" had to be terminated because
come across a statement that unfortunately cannot be executed.
You attempted to access an unassigned field symbol
(data segment 95).
This error may occur if
- You address a typed field symbol before it has been set with
ASSIGN
- You address a field symbol that pointed to the line of an
internal table that was deleted
- You address a field symbol that was previously reset using
UNASSIGN or that pointed to a local field that no
longer exists
- You address a global function interface, although the
respective function module is not active - that is, is
not in the list of active calls. The list of active calls
can be taken from this short dump.
SourceCde
2785 case gs_out-field_colcount.
2786 when 001.
2787 if gs_out_flags-slave ne 'X'.
2788 assign <fm01> to <field>.
2789 gs_fc = gs_mfc01.
2790 else.
2791 assign <fs01> to <field>.
2792 gs_fc = gs_sfc01.
2793 endif.
2794 when 002.
2795 if gs_out_flags-slave ne 'X'.
2796 assign <fm02> to <field>.
2797 gs_fc = gs_mfc02.
2798 else.
2799 assign <fs02> to <field>.
2800 gs_fc = gs_sfc02.
2801 endif.
2802 when 003.
2803 if gs_out_flags-slave ne 'X'.
2804 assign <fm03> to <field>.
2805 gs_fc = gs_mfc03.
2806 else.
2807 assign <fs03> to <field>.
2808 gs_fc = gs_sfc03.
2809 endif.
2810 when 004.
2811 if gs_out_flags-slave ne 'X'.
>>>> assign <fm04> to <field>.2813 gs_fc = gs_mfc04.
2814 else.
2815 assign <fs04> to <field>.
2816 gs_fc = gs_sfc04.
2817 endif.
Note : problem may be with field catalog population since if i remove W_EXT_AMOUNT it is working fine, not giving any dump.
Pls see.
Thanks & Regards
Srinivas Rao

Hi see this code and try again.
REPORT  zn_alv_complex                          .
TABLES : vbrk .
TYPE-POOLS : slis .
CONSTANTS : gc_top_of_page TYPE slis_formname VALUE 'TOP_OF_PAGE'.
TYPES : BEGIN OF ty_vbrk ,
             vbeln TYPE vbrk-vbeln ,
             vkorg TYPE vbrk-vkorg,
             vtweg TYPE vbrk-vtweg,
             kunrg TYPE vbrk-kunrg,
             END OF ty_vbrk,
        BEGIN OF ty_vbrp,
          vbeln TYPE vbrp-vbeln,
          posnr TYPE vbrp-posnr,
          matnr TYPE vbrp-matnr,
          netwr TYPE vbrp-netwr,
          END OF ty_vbrp,
       BEGIN OF ty_final,
          vbeln TYPE vbrk-vbeln ,
          posnr TYPE vbrp-posnr,
          matnr TYPE vbrp-matnr,
          netwr TYPE vbrp-netwr,
             vkorg TYPE vbrk-vkorg,
             vtweg TYPE vbrk-vtweg,
             kunrg TYPE vbrk-kunrg,
             END OF ty_final .
DATA : it_vbrk TYPE TABLE OF ty_vbrk,
       it_vbrp TYPE TABLE OF ty_vbrp,
       it_final TYPE TABLE OF ty_final ,
       wa_vbrk TYPE ty_vbrk,
       wa_vbrp TYPE ty_vbrp,
       wa_final TYPE ty_final ,
       git_event TYPE slis_t_event,
       git_layout TYPE slis_layout_alv,
       git_fieldcat TYPE slis_t_fieldcat_alv,
       gwa_fieldcat TYPE slis_fieldcat_alv.
SELECT-OPTIONS : s_vbeln FOR vbrk-vbeln,
                 s_vkorg FOR vbrk-vkorg,
                 s_vtweg FOR vbrk-vtweg.
START-OF-SELECTION .
  SELECT vbeln vkorg vtweg kunrg
    FROM vbrk
    INTO TABLE it_vbrk
   WHERE vbeln IN s_vbeln
     AND vkorg IN s_vkorg
     AND vtweg IN s_vtweg .
  SELECT vbeln posnr matnr netwr
    FROM vbrp
    INTO TABLE it_vbrp
     FOR ALL ENTRIES IN it_vbrk
   WHERE vbeln = it_vbrk-vbeln .
  LOOP AT it_vbrp INTO wa_vbrp .
    READ TABLE it_vbrk INTO wa_vbrk WITH KEY vbeln = wa_vbrp-vbeln .
    wa_final-vbeln = wa_vbrk-vbeln.
    wa_final-posnr = wa_vbrp-posnr.
    wa_final-netwr = wa_vbrp-netwr.
    wa_final-matnr = wa_vbrp-matnr.
    wa_final-vkorg = wa_vbrk-vkorg.
    wa_final-vtweg = wa_vbrk-vkorg.
    wa_final-kunrg = wa_vbrk-kunrg.
    APPEND wa_final TO it_final.
    CLEAR : wa_vbrk , wa_vbrp , wa_final .
  ENDLOOP .
  PERFORM sub_fieldcatalog.
  PERFORM sub_layout_init CHANGING git_layout.
  PERFORM sub_build_event USING git_event[] .
  PERFORM sub_alv_display.
*&      Form  SUB_FIELDCATALOG
      text
FORM sub_fieldcatalog.
  REFRESH git_fieldcat.
  gwa_fieldcat-col_pos = 0.
  gwa_fieldcat-fieldname = 'VBELN'.
  gwa_fieldcat-tabname = 'IT_FINAL'.
  gwa_fieldcat-outputlen = 14.
  gwa_fieldcat-seltext_l = 'Billing Doc.' .
  gwa_fieldcat-seltext_m = 'Billing Doc.' .
  gwa_fieldcat-seltext_s = 'Billing Doc.' .
  APPEND gwa_fieldcat TO git_fieldcat .
  gwa_fieldcat-col_pos = 1.
  gwa_fieldcat-fieldname = 'POSNR'.
  gwa_fieldcat-tabname = 'IT_FINAL'.
  gwa_fieldcat-outputlen = 5.
  gwa_fieldcat-seltext_l = 'Item.' .
  gwa_fieldcat-seltext_m = 'Item' .
  gwa_fieldcat-seltext_s = 'Item' .
  APPEND gwa_fieldcat TO git_fieldcat .
  gwa_fieldcat-col_pos = 2.
  gwa_fieldcat-fieldname = 'VKORG'.
  gwa_fieldcat-tabname = 'IT_FINAL'.
  gwa_fieldcat-outputlen = 14.
  gwa_fieldcat-seltext_l = 'Sales Org' .
  gwa_fieldcat-seltext_m = 'Sales Org' .
  gwa_fieldcat-seltext_s = 'Sales Org' .
  APPEND gwa_fieldcat TO git_fieldcat .
  gwa_fieldcat-col_pos = 3.
  gwa_fieldcat-fieldname = 'VTWEG'.
  gwa_fieldcat-tabname = 'IT_FINAL'.
  gwa_fieldcat-outputlen = 14.
  gwa_fieldcat-seltext_l = 'Dist. Ch.' .
  gwa_fieldcat-seltext_m = 'Dist. Ch.' .
  gwa_fieldcat-seltext_s = 'Dist. Ch.' .
  APPEND gwa_fieldcat TO git_fieldcat .
  gwa_fieldcat-col_pos = 4.
  gwa_fieldcat-fieldname = 'MATNR'.
  gwa_fieldcat-tabname = 'IT_FINAL'.
  gwa_fieldcat-outputlen = 18.
  gwa_fieldcat-seltext_l = 'Material' .
  gwa_fieldcat-seltext_m = 'Material' .
  gwa_fieldcat-seltext_s = 'Material' .
  APPEND gwa_fieldcat TO git_fieldcat .
  gwa_fieldcat-col_pos = 5.
  gwa_fieldcat-fieldname = 'NETWR'.
  gwa_fieldcat-tabname = 'IT_FINAL'.
  gwa_fieldcat-outputlen = 14.
  gwa_fieldcat-seltext_l = 'Price' .
  gwa_fieldcat-seltext_m = 'Price' .
  gwa_fieldcat-seltext_s = 'Price' .
  gwa_fieldcat-do_sum    = 'X' .
  APPEND gwa_fieldcat TO git_fieldcat .
ENDFORM .                    "SUB_FIELDCATALOG
*&      Form  sub_alv_display
      text
FORM sub_alv_display .
  DATA : gv_repid TYPE sy-repid .
  gv_repid = sy-repid.
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      i_callback_program      = gv_repid
      i_callback_user_command = 'USER-COMMAND'
      is_layout               = git_layout
      it_fieldcat             = git_fieldcat
      i_save                  = 'A'
      it_events               = git_event[]
    TABLES
      t_outtab                = it_final
    EXCEPTIONS
      program_error           = 1
      OTHERS                  = 2.
ENDFORM .                    "sub_alv_display
*&      Form
      text
FORM sub_layout_init CHANGING xyt_layout TYPE slis_layout_alv.
  CLEAR xyt_layout .
  xyt_layout-colwidth_optimize = 'X'.
  xyt_layout-zebra = 'X' .
ENDFORM.                    "SUB_LAYOUT_INIT
*&      Form  SUB_BUILD_EVENT
      text
     -->XT_EVENT   text
FORM sub_build_event USING xt_event TYPE slis_t_event .
  DATA : lwa_event TYPE slis_alv_event .
  CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
    EXPORTING
      i_list_type     = 0
    IMPORTING
      et_events       = xt_event
    EXCEPTIONS
      list_type_wrong = 1
      OTHERS          = 2.
  READ TABLE xt_event WITH KEY name = slis_ev_top_of_page INTO
lwa_event.
  lwa_event-form = gc_top_of_page.
  IF sy-subrc EQ 0 .
    MODIFY xt_event FROM lwa_event TRANSPORTING form WHERE name =
    gc_top_of_page.
  ENDIF.
ENDFORM.                    "SUB_BUILD_EVENT
*&      Form  TOP_OF_PAGE
      text
FORM top_of_page .
  CONSTANTS : lc_s TYPE char01 VALUE 'S'.
  DATA : lv_ecfld(250) TYPE c ,
         lwa_header TYPE slis_listheader ,
         lv_date(10) TYPE c,
         lv_user(10) TYPE c,
         lit_alv_header TYPE slis_t_listheader .
  CLEAR : lv_user ,  lv_date .
  CLEAR : lwa_header .
  lwa_header-typ = 'S'.
  lv_ecfld = 'User'.
  lwa_header-key = lv_ecfld .
  lwa_header-info = sy-uname.
  APPEND lwa_header TO lit_alv_header .
  CLEAR : lwa_header .
  lwa_header-typ = 'S'.
  lv_ecfld = 'Date'.
  lwa_header-key = lv_ecfld .
  lwa_header-info = sy-datum .
  APPEND lwa_header TO lit_alv_header .
  CLEAR : lwa_header .
  lwa_header-typ = 'S'.
  APPEND lwa_header TO lit_alv_header .
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      it_list_commentary = lit_alv_header.
ENDFORM .                    "TOP_OF_PAGE
Regards,
Nihar Swain .

Similar Messages

  • Urgent Issue !!! Related to CJ20N

    Hi Guys,
    This is an Urgent Issue!!!!
    I have a requirement to upload the data .Initially they have created project definition and wbselement with the help of some data transfer technique later on they have added custom fields to this transaction.
    Now for the existing project and wbs element they want to update the values for the new custom fields .
    So can anybody suggest me how to approach this problem as this is my first requirement in PS.
    Points will be rewarded....
    Awaiting for your reply..
    Regards,
    Ravi Ganji

    You can use lsmw and do a recording to insert those new customer fields. LSMW can call bdc recording and you can enter the values there...

  • Re: Related to CJ20N Urgent Issue

    Hi Guys,
    This is an Urgent Issue!!!!
    I have a requirement to upload the data .Initially they have created project definition and wbselement with the help of some data transfer technique later on they have added custom fields to this transaction.
    Now for the existing project and wbs element they want to update the values for the new custom fields .
    So can anybody suggest me how to approach this problem as this is my first requirement in PS.
    Points will be rewarded....
    Awaiting for your reply..
    Regards,
    Ravi Ganji

    Hello,
    To update Customer fields in a WBS element you can use LSMW recording mode for Tx: CJ02
    Enter the WBS element definition on the initial screen and cheese 'enter'
    in the WBS element overview, choose first line and select from menu: ' Details -> <Customer Fields> (This is an exit and you may see a different text over here) and you see the customer fields. fill the values in the fields and save.
    Hope this helps. Also please close all your previous threads.
    Best Regards, Murugesh AS

  • Urgent Issue:Err-REP-50125 : java.lang.ClassNotFoundException  - 11.1.1.3.0

    I'm trying to use custom destination with oracle fusion middleware 11.1.1.3.0 In-Process report server. I have added a custom destination section in the rwserver.conf file. Added the (customdest.jar - my jar file) jar file to the system classpath and reports_classpath. Still receiving class not found error.
    Here are the details:
    rwserver.conf:/opt/oracle/Middleware/user_projects/domains/ReportsDomain/config/fmwconfig/servers/WLS_REPORTS/applications/reports_11.1.1.2.0/configuration/rwserver.conf
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <server xmlns="http://xmlns.oracle.com/reports/server" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="11.1.1.2.0" xsi:schemaLocation="http://xmlns.oracle.com/reports/server file:/opt/oracle/Middleware/as_1/reports/dtd/rwserverconf.xsd">
    <cache class="oracle.reports.cache.RWCache">
    <property name="cacheSize" value="50"/>
    <!--property name="cacheDir" value="your cache directory"/-->
    <!--property name="maxCacheFileNumber" value="max number of cache files"/-->
    </cache>
    <!--Please do not change the id for reports engine.-->
    <!--The class specifies below is subclass of _EngineClassImplBase and implements EngineInterface.-->
    *<engine class="oracle.reports.engine.EngineImpl" engLife="50" id="rwEng" maxEngine="1" minEngine="1" jvmOptions="-Xmx512M" classPath="/opt/oracle/Middleware/as_1/jlib/jsp-api-2.1-6.0.1.jar:/opt/oracle/Middleware/as_1/jlib/jsch-0.1.26.jar:/opt/oracle/Middleware/as_1/reports/jlib/customdest.jar">*
    <property name="sourceDir" value="/opt/ogreports/catalog:/opt/ogreports/catalog/img"/>
    <!--property name="tempDir" value="your reports temp directory"/-->
    <!--property name="keepConnection" value="yes"/-->
    </engine>
    <engine class="oracle.reports.urlengine.URLEngineImpl" engLife="50" id="rwURLEng" maxEngine="1" minEngine="0" classPath="/opt/oracle/Middleware/as_1/jlib/jsp-api-2.1-6.0.1.jar:/opt/oracle/Middleware/as_1/jlib/jsch-0.1.26.jar:/opt/oracle/Middleware/as_1/reports/jlib/customdest.jar"/>
    <security class="oracle.reports.server.RWJAZNSecurity" id="rwJaznSec"/>
    <!--destination destype="oraclePortal" class="oracle.reports.server.DesOraclePortal">
    <property name="dbuser" value="$$PORTAL_DB_USERNAME$$"/>
    <property name="dbpassword" value="csf:$$CSF_ALIAS$$:$$PORTAL_DB_PASSWORD_KEYE$$"/>
    <property name="dbconn" value="$$PORTAL_DB_TNSNAME$$"/>
    </destination-->
    <destination class="oracle.reports.plugin.destination.ftp.DesFTP" destype="ftp"/>
    <destination class="oracle.reports.plugin.destination.webdav.DesWebDAV" destype="WebDav"/>
    *<destination destype="rcpfile" class="com.ubizen.og.offline.reporting.oracle.RcpDestination">*
    *<property name="user" value="tomcat"/>*
    *<property name="destype" value="rcpfile"/>*
    *</destination>*
    <job engineId="rwEng" jobType="report"/>
    <job engineId="rwURLEng" jobType="rwurl"/>
    <notification class="oracle.reports.server.MailNotify" id="mailNotify">
    <property name="succnotefile" value="succnote.txt"/>
    <property name="failnotefile" value="failnote.txt"/>
    </notification>
    Error:/opt/oracle/Middleware/user_projects/domains/ReportsDomain/servers/WLS_REPORTS/logs/reports/rwserver_diagnostic.log
    [2011-09-29T10:52:26.871-04:00] [WLS_REPORTS] [INCIDENT_ERROR] [REP-50125] [oracle.reports.server] [tid: 46] [userId: <anonymous>] [ecid: 0000JApf0iF9XbpSoQjc4m1EOGV800001d,1:18769] [APP: reports#11.1.1.2.0] [dcid: fa0c1bc817f5aeb4:-3e9d1a3b:1322b067681:-7fff-000000000000876f] REP-50125 : java.lang.ClassNotFoundException: com.ubizen.og.offline.reporting.oracle.RcpDestination [[
    java.lang.ClassNotFoundException: com.ubizen.og.offline.reporting.oracle.RcpDestination
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:169)
    at oracle.reports.server.Destination.invokeShutdown(Destination.java:492)
    at oracle.reports.server.Destination.shutdownDest(Destination.java:125)
    at oracle.reports.server.RWServer.shutdown(RWServer.java:463)
    at oracle.reports.server.RWServer.run(RWServer.java:364)
    at java.lang.Thread.run(Thread.java:662)
    ClassPath:.:/opt/oracle/Middleware/as_1/jlib:/opt/oracle/Middleware/as_1/reports/jlib
    File in classpath: /opt/oracle/Middleware/as_1/reports/jlib
    aolj.jar customdest.jar rwadmin.jar rwenv.jar rwxdo.jar
    confmbean.jar runtimembean.jar rwbuilder.jar rwrun.jar
    Relates to Oracle Bug:
    https://support.oracle.com/CSP/ui/flash.html#tab=KBHome(page=KBHome&id=()),(page=KBNavigator&id=(viewingMode=1143&from=BOOKMARK&bmDocTitle=Can%20Not%20Find%20Class%20From%20Custom%20Destinations%20Jar%20File%20-%20REP-50125%20:%20java.lang.ClassNotFoundException&bmDocID=1263455.1&bmDocType=PROBLEM&bmDocDsrc=KB))
    Note:
    I'm not sure where the In-Process report server is looking for the classpath. I added them in all possible classpaths ans none of them worked.
    This is an urgent issue in our team. We are migrating from 10g oracle application server to fusion middleware 11g report server. This functionality is working in 10g report server but not in 11g due to classpath issues.
    Please let me know if additional info needed. Please respond.

    Hi,
    Thanks very much for responding. I added my jar file(customdest.jar) as you have suggested to setDomainEnv.sh. Now the In-Process report server just hangs when I try to bring it up through em and I don't see any errors in the log files. Any ideas where to look for errors? The jar files were created for 10g , we are just migrating them to 11g. I have setup the trace at highest level still don't see any error in rwserver_diagnostic.log.
    Here is the details:
    /opt/oracle/Middleware/user_projects/domains/ReportsDomain/bin/setDomainEnv.sh :
    if [ "${SERVER_NAME}" = "WLS_REPORTS" ] ; then
    POST_CLASSPATH="/opt/oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar:/opt/oracle/Middleware/as_1/opmn/lib/nonj2eembeans.jar:/opt/oracle/Middleware/as_1/jdbc/lib/ojdbc6.jar:/opt/oracle/Middleware/as_1/opmn/lib/optic.jar:/opt/oracle/Middleware/as_1/opmn/lib/iasprovision.jar:/opt/oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/commons-el.jar:/opt/oracle/Middleware/as_1/jlib/dfc.jar:/opt/oracle/Middleware/as_1/dvt/lib/dvt-jclient.jar:/opt/oracle/Middleware/as_1/dvt/lib/dvt-utils.jar:/opt/oracle/Middleware/oracle_common/jlib/ewt3.jar:/opt/oracle/Middleware/oracle_common/modules/oracle.iau_11.1.1/fmw_audit.jar:/opt/oracle/Middleware/as_1/oui/jlib/http_client.jar:/opt/oracle/Middleware/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar:/opt/oracle/Middleware/oracle_common/modules/oracle.idm_11.1.1/identityutils.jar:/opt/oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jaccprovider.jar:/opt/oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jacc-spi.jar:/opt/oracle/Middleware/as_1/ord/jlib/jai_codec.jar:/opt/oracle/Middleware/as_1/ord/jlib/jai_core.jar:/opt/oracle/Middleware/oracle_common/modules/oracle.oc4j-obsolete_11.1.1/jazn.jar:/opt/oracle/Middleware/oracle_common/modules/oracle.oc4j-obsolete_11.1.1/jazncore.jar:/opt/oracle/Middleware/oracle_common/jlib/jewt4.jar:/opt/oracle/Middleware/as_1/jlib/jta.jar:/opt/oracle/Middleware/oracle_common/modules/oracle.ldap_11.1.1/ldapjclnt11.jar:/opt/oracle/Middleware/as_1/lib/mail.jar:/opt/oracle/Middleware/as_1/jlib/netcfg.jar:/opt/oracle/Middleware/as_1/jlib/oracle_ice.jar:/opt/oracle/Middleware/oracle_common/jlib/share.jar:/opt/oracle/Middleware/as_1/jlib/zrclient.jar:/opt/oracle/Middleware/as_1/reports/jlib/aolj.jar:/opt/oracle/Middleware/as_1/reports/jlib/confmbean.jar:/opt/oracle/Middleware/as_1/reports/jlib/runtimembean.jar:/opt/oracle/Middleware/as_1/reports/jlib/rwadmin.jar:/opt/oracle/Middleware/as_1/reports/jlib/rwbuilder.jar:/opt/oracle/Middleware/as_1/reports/jlib/rwenv.jar:/opt/oracle/Middleware/as_1/reports/jlib/rwrun.jar:/opt/oracle/Middleware/as_1/reports/jlib/rwxdo.jar:/opt/oracle/Middleware/as_1/jlib/rts2.jar:*/opt/oracle/Middleware/as_1/reports/jlib/customdest.jar*:${CLASSPATHSEP}${POST_CLASSPATH}"
    export POST_CLASSPATH
    Log file: rwserver_diagnostic.log
    /opt/oracle/Middleware/user_projects/domains/ReportsDomain/servers/WLS_REPORTS/logs/reports
    <destination class="oracle.reports.plugin.destination.ftp.DesFTP" destype="ftp"/>
    <destination class="oracle.reports.plugin.destination.webdav.DesWebDAV" destype="WebDav"/>
    <destination destype="rcpfile" class="com.ubizen.og.offline.reporting.oracle.RcpDestination">
    <property name="user" value="tomcat"/>
    <property name="destype" value="rcpfile"/>
    </destination>
    <job engineId="rwEng" jobType="report"/>
    <job engineId="rwURLEng" jobType="rwurl"/>
    <notification class="oracle.reports.server.MailNotify" id="mailNotify">
    <property name="succnotefile" value="succnote.txt"/>
    <property name="failnotefile" value="failnote.txt"/>
    </notification>
    <!--notification id="wfNotify" class="oracle.reports.server.WorkflowNotify">
    <property name="connStr" value="%WF_DB_USERNAME%/%WF_DB_PASSWORD%@%WF_DB_TNSNAME%" encrypted="no"/>
    </notification-->
    <!--jobStatusRepository class="oracle.reports.server.JobRepositoryDB">
    <property name="dbuser" value="$$REPO_DB_USERNAME$$"/>
    <property name="dbpassword" value="csf:$$CSF_ALIAS$$:$$REPO_DB_PASSWORD_KEYE$$"/>
    <property name="dbconn" value="$$REPO_DB_TNSNAME$$"/>
    </jobStatusRepository-->
    <connection idleTimeOut="15" maxConnect="50"/>
    <queue maxQueueSize="1000"/>
    <!--jobRecovery auxDatFiles="yes"/-->
    <pluginParam name="mailServer" value="%MAILSERVER_NAME%">
    <!--property name="enableSSL" value="yes"/-->
    <!--UserName and Password that can be used to connect to the mail server-->
    <!--property name="mailUserName" value="%MAIL_USERID%" /-->
    <!--property name="mailPassword" value="%MAIL_PASSWORD%"/-->
    </pluginParam>
    </server>
    [2011-10-02T23:31:51.431-04:00] [WLS_REPORTS] [TRACE:32] [REP-56025] [oracle.reports.server] [tid: 22] [userId: weblogic] [ecid: 0000JB7par79XbpSoQjc4m1EYIaI00000F,0] [SRC_CLASS: oracle.reports.utility.RWLogger] [APP: reports#11.1.1.2.0] [dcid: fa0c1bc817f5aeb4:7b3253ab:132c7c7f2e9:-8000-00000000000000fa] [SRC_METHOD: writeln] RWServer:startServer Reports Server is starting up.
    [2011-10-02T23:31:51.435-04:00] [WLS_REPORTS] [TRACE:16] [] [oracle.reports.server] [tid: 22] [userId: weblogic] [ecid: 0000JB7par79XbpSoQjc4m1EYIaI00000F,0] [SRC_CLASS: oracle.reports.utility.RWLogger] [APP: reports#11.1.1.2.0] [dcid: fa0c1bc817f5aeb4:7b3253ab:132c7c7f2e9:-8000-00000000000000fa] [SRC_METHOD: writeln] Multicast:registerReceiver Packet handler registered
    [2011-10-02T23:31:51.435-04:00] [WLS_REPORTS] [NOTIFICATION:16] [] [oracle.reports.server] [tid: 22] [userId: weblogic] [ecid: 0000JB7par79XbpSoQjc4m1EYIaI00000F,0] [APP: reports#11.1.1.2.0] [dcid: fa0c1bc817f5aeb4:7b3253ab:132c7c7f2e9:-8000-00000000000000fa] ServerPacketHandler:start ServerPacketHandler started successfully
    [2011-10-02T23:31:51.441-04:00] [WLS_REPORTS] [NOTIFICATION:16] [] [oracle.reports.server] [tid: 22] [userId: weblogic] [ecid: 0000JB7par79XbpSoQjc4m1EYIaI00000F,0] [APP: reports#11.1.1.2.0] [dcid: fa0c1bc817f5aeb4:7b3253ab:132c7c7f2e9:-8000-00000000000000fa] SecurityHelper:start Security system rwJaznSec successfully started.
    No more error logged after this line. but in-process server just hung up indefinitely when I tried stating via the em and also via getserverinfo URL.
    In rwserver.conf: I have defined the following for custom destination
    /opt/oracle/Middleware/user_projects/domains/Repdomain/config/fmwconfig/servers/WLS_REPORTS/applications/reports_11.1.1.2.0/configuration/rwserver.conf
    <destination destype="rcpfile" class="com.ubizen.og.offline.reporting.oracle.RcpDestination">
    <property name="user" value="tomcat"/>
    <property name="destype" value="rcpfile"/>
    </destination>

  • How to put check box in a table format at the out put ?  Urgent issue...

    Hi,
    I am working an assignment to assign multiple roles for multiplr user.
    In selection screen we have to enter mutiple EMPNO from ..to
    1)  in second screen we will get the empno, First name, last name,  Position,
        From  date, To date, Sap user ID, Email id in the table formate with first
        column  with Check box.
    2) In second screen below the table I have to place the multiple roles just like in
       the step  loop format and below this one Execute button should be there.
    If we select the multiple employees or single employee and place the multiple roles or single roles and if I click the execute button then the multiple roles will be assigned to the multiple employees. The empno and roles will come from table and step loop to internal table and the same will pass to the BDC.
    For this requirement I prepered recording for Transaction PFCG. But I can't understand how to design the second screen that table format and the step loop format. Can anybody give any idea or any coding to design  the second screen.
    and how to meet the requirement. This is urgent issue. Good SDN points will be reworded.
    Witing for kind response.
    Thanks in advance.
    Bansidhar

    Hi upendra
    There are slight changes in the sivas code.Where is the data coming into the table.If its from a Model Node then iterate each element of the source node get that value compare and set the corresponding value in the element of the node binded to table.
    Create a boolean attribute "select" in the table node and bind it to checked property of the check box.
    for(int i=0;i<wdContext.node<tablenode>()..size();i++)
    if(wdContext.node<tablenode>().get<tablenode>ElementAt(i).select())
    wdContext.node<tablenode>().get<tablenode>ElementAt(i).set<yourattribute>(true);
    else
    wdContext.node<tablenode>().get<tablenode>ElementAt(i).set<yourattribute>(false);
    See the attribute is boolean so pass true or false as a values in setter methods.
    Regards
    Kalyan

  • Very Very Urgent Issue: Restricted Key Figure does not return any data

    Hi all,
    Please help me solving this urgent issue.
    created customer exit variable on characterstics version and also
    other customer exit variable on Value type.
    I coded that in variable exit. Problem is when I include these in
    restrickted keyfigure My query does not return me any data.
    But if I remove from restrickted key firgure and put it as normal
    charaterstics I see the variable is getting populated.
    Also in RSRT the SQl generated when these are included in RKF is not
    correct.
    I debugged and know they are getting populated. As when included in RKF
    I can also see the values of customer exit variables from information
    tab.
    I also know that there is data in cube for those restrictions.
    I posted one OSS Notes regarding this urgent issue. But got no reply from SAP.
    FYI: We are using BEx 3.5 Browser SAP GUI 6.4 Patch 20 BW Patch 11
    Thanks
    SAP BW
    **Please do not post the same question twice: Very Urgent Issue: Restricted Key Figure does not return any data

    Hi,
    Everyone out there this is very urgent. If someone can help me solving this problem.
    We are using BEx 3.5 Browser SAP GUI 6.4 Patch 20 BW Patch 11.
    I posted one oss notes also regarding this issue. But got no reply from SAP.
    So, Please help me solving this issue.
    Thanks
    SAP BW

  • Urgent issue in user-exit

    hi friends,
    one urgent issue regarding user-exits;
    i have the requirement like this:
    if any one of these fields ZPBSTQTY2, ZPCSTQTY2, ZPBKTQTY2, ZPCKTQTY2 and ZPBFRQTY2 in table S505 is GT 0, then i need to pass a value 'X' to two flags present in that table.
    then i have to update it thru transaction VA01.
    Plz suggest some solution for this.
    Thanks
    Praveen

    SDAPO001 Activating Sourcing Subitem Quantity Propagation
    SDTRM001 Reschedule schedule lines without a new ATP check
    V45A0002 Predefine sold-to party in sales document
    V45A0003 Collector for customer function modulpool MV45A
    V45A0004 Copy packing proposal
    V45E0001 Update the purchase order from the sales order
    V45E0002 Data transfer in procurement elements (PRreq., assembly)
    V45L0001 SD component supplier processing (customer enhancements)
    V45P0001 SD customer function for cross-company code sales
    V45S0001 Update sales document from configuration
    V45S0003 MRP-relevance for incomplete configuration
    V45S0004 Effectivity type in sales order
    V45W0001 SD Service Management: Forward Contract Data to Item
    V46H0001 SD Customer functions for resource-related billing
    V60F0001 SD Billing plan (customer enhancement) diff. to billing plan
    V45A0001 Determine alternative materials for product selection
    And also you can write your code in MV45AFZZ
    <b>Reward points</b>
    Regards

  • Urgent issue, Suddenly no data is extracted Once I create new infopack

    Hi,
    I have an urgent issue and need help.
    We were loading data after activating business content. Every thing worked fine and the delta load was also smooth.
    However, in order to start everything afresh, I deleted all the info package, deleted the "Intialization option for the source system" AND then created my infopackage for Full upload with initialize option.
    In this case the extractor didn't find any data. Please see the following log from the monitor "status " Tab.
    "No data available
    Diagnosis
    The data request was a full update.
    In this case, the corresponding table in the source system does not
    contain any data.
    System response
    Info IDoc received with status 8.
    Procedure
    Check the data basis in the source system."
    This is not correct since we were loading data ( full and delta ) successfully before and there are data in the system. This is most probably to do with the delta queue initialization in the source system.
    We were looading data from datassource 0CRM_SALES_ORDER_I.
    Please help, we are really stuck.
    Thanks
    Arunava

    hi Anurava,
    take a look oss note 692195, i think authorization issue
    Activities : 0CRM_SALES_ACT_1
    oss 692195
    Question 2 : On executing transaction RSA3 I get records but I find 0
    records when I load data from BW request.(No Data Available).
    How can I extract data in this case?
    Suggestion 2: First check if there are any entries in the table
    CRMD_ORDER_INDEX.Only if there are entries in this table you can
    extract records.
    If this is not the case then,
    It is possible that the user does not have sufficient
    authorities for extraction of  the relevant objects.
    Additionally, please review and implement the following notes
    615670
    161570
    150315
    618953
    If you are in the release 4.0 then
    To do BW extraction with the user please see that the following
    authorization object exists(display mode is enough):
    CRM_ACT, CRM_OPP, CRM_LEAD, CRM_SAO, CRM_SEO, CRM_CO_SE, CRM_CO_SC
    CRM_CO_SA, CRM_CON_SE, CRM_CMP, CRM_ORD_OP, CRM_ORD_LP, CRM_ORD_PR
    CRM_ORD_OE, CRM_CO_PU, CRM_CO_PD, CRM_ORD_PO
    (all these objects are linked to transaction crmd_order).

  • URGENT ISSUE: Line In Lag

    URGENT ISSUE: Line In Lag? Hello everyone, for Christmas I got a brand new computer with Windows 7 and a Soundblaster X-Fi card. I got this new computer to record music.
    I was horrified to find out that when I record guitar, vocals, or anything else through the Line in there is a MASSIVE lag that makes it IMPOSSIBLE to record! I have been looking for a fix for this for two months now. Some people with Realtek sound cards are saying there is a way to eliminate the lag with the Realtek control center program, others claim ASIO4ALL can eliminate the lag but I've had no?luck with that. I've tried tons of things to only find that the lag still persists
    I AM NOT THE ONLY ONE WITH THIS PROBLEM! THERE ARE HUNDREDS OF MUSICIANS EXPERIENCING THIS! I am very desperate, recording music is what I li've for, and with Windows 7 I can't do that. I am begging Creative or someone to help me. Release a patch, anything..... Musicians worldwide are in an uproar, just do a google search on this topic to see how many people are experiencing this!
    PLEASE HELP!!
    Sorry for the caps, thanks for your time

    ?Hi -XM-,
    Please don't?assume all kinds of lag issue to be the one and same problem. It's like saying every flu-like?symptom?is caused by the same?strain of virus. Which X-Fi card do you have exactly, the X-Fi Xtreme series or the?Titanium series?Are you doing a single track or multi-track recording? How massi've is the lag?
    If your Soundblaster X-Fi card came preinstalled or distributed?along with your new computer, please contact the respecti've computer vendor for assistance. Sound cards distributed in this manner are usually OEM models specially customized by the vendor, therefore any support?requests?should be directed to them.
    However if?the sound card was purchased separately in a Creative?retail box, please contact our Customer Support using this email form.

  • IPhone 4 reception issues are not design related! Proof inside this topic!

    Hello,
    I conducted some very strict tests to verify the reception bug some people are reporting.
    *Test 1:* Holding the iPhone 4 at a specific and precise position with a plastic protection and the left hand covering the bottom left corner making sure both antenna parts are connected by my hand.
    *Test 2:* Holding the iPhone 4 at a specific and precise position WITHOUT any plastic protection and the left hand covering the bottom left corner making sure both antenna parts are connected by my hand, making sure my left hand is perfectly dry.
    *Test 3:* Holding the iPhone 4 at a specific and precise position WITHOUT any plastic protection and the left hand covering the bottom left corner making sure both antenna parts are connected by my hand, making sure my left hand is wet (wetting it before the test)
    *Tests duration:* 2 full minutes.
    Here are the results:
    *Test 1:* Full reception (5 bars), EDGE data network working. Calls are working perfectly as well as data operations (Safari).
    *Test 2:* Full reception (5 bars), EDGE data network working. Calls are working perfectly as well as data operations (Safari).
    *Test 3*: Full reception (5 bars), EDGE data network working. Calls are working perfectly as well as data operations (Safari).
    Geographic location: Paris (France), Bastille district, inside my apartment. Note that I don't get 3G on this location, wathever phone I use (Veryfied with HTC Magic, iPhone 3G and iPhone 4, it's all the same on this aspect).
    *So same exact result for all three tests!*
    *_So what does it mean?_*
    It either means that not all iPhone 4 are affected by this issue (as mine is not affected), or that this issue is not simply related to how you hold your phone and does involve also other elements, like the phone baseband firmware not dealing well with some GSM network configurations (different frequencies...etc) when adding noise (which is what your hand do when holding the phone) or something else.
    This could give credits to the AppleInsider theory that it's related to how the BaseBand firmware is dealing with some GSM network situations and so that it's software related and that a fix is coming soon (see: http://www.appleinsider.com/articles/10/06/25/deathgrip_hysteria_may_end_monday_with_ios_401.html).
    But it can also mean that it's still purely hardware related and that it's a production fault that affects only some units but not all.
    But it's clearly not a design fault, otherwise all units would be affected and so I would be able to reproduce it with mine, which is not the case (as demonstrated by the tests I conducted).
    _*My advice to those who are affected:*_
    1) Wait a week to see if a software fix get released (as apparently, according to AppleInsider, it may come this very monday as part of an iOS 4.0.1 update), or at least for a confirmation that it's not a software issue in some GSM network configurations.
    2) If it's confirmed that it's a production issues on some units, then get your phone exchanged.

    Well documented post.
    After reading through all the reports I found myself intentionally holding the phone in the "Death-grip".
    I went out that evening and used the phone perfectly fine all day, holding it with a few things, which is actually the way I hold it anyway when texting / msging etc.
    I have a lot of faith that Apple with resolve this with a software update, and hope the fault is related to the BaseBand firmware reported in the appleinsider.
    I am angered by everyone accepting the bloggers so-called "OFFICIAL RESPONSE" as Apples 'Official Response'.
    There is no way, that Apple (Steve Jobs), would use that response via email, back to a single customer.
    Officially... Apple will direct their response to the news directly, or at least something on their website.
    People need to stop jumping on the "Steve Jobs told us to just hold it differently" band-wagon, and wait for something thats actually "OFFICIAL"...
    As i've said in previous posts, just because the news and this blogger has put the word "Official" next to it, does not make it so...
    Rant over...

  • Hi guys, pls help! iMovie crashes sometime on tiltes or transitions or export, pls see the error report export below, thnx for looking.

    Hi guys, pls help! iMovie crashes sometime on tiltes or transitions or export, pls see the error report export below, thnx for looking.
    Process:         iMovie [239]
    Path: /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovie8
    Version:         8.0.6 (821)
    Build Info:      iMovieApp-8210000~16
    Code Type:       X86 (Native)
    Parent Process:  launchd [117]
    Date/Time:       2012-12-10 16:05:48.659 +0000
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          413560 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  231215 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID: C896B72D-2C04-428D-A58E-137974A49295
    Crashed Thread:  0 Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL /Applications/iMovie.app/Contents/MacOS/iMovie
    __TEXT 0000000000001000-0000000000335000 [ 3280K] r-x/rwx SM=COW /Applications/iMovie.app/Contents/MacOS/iMovie
    Application Specific Information:
    objc[239]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 ???                                   0x0ceb9398 0 + 216765336
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib            0x96222b5e __select_nocancel + 10
    1 libdispatch.dylib                       0x9ceabcc9 _dispatch_mgr_invoke + 642
    2 libdispatch.dylib                       0x9ceaa85f _dispatch_mgr_thread + 53
    Thread 2:: com.apple.NSURLConnectionLoader
    0 libsystem_kernel.dylib            0x96220c22 mach_msg_trap + 10
    1 libsystem_kernel.dylib            0x962201f6 mach_msg + 70
    2 com.apple.CoreFoundation            0x9683d9da __CFRunLoopServiceMachPort + 170
    3 com.apple.CoreFoundation            0x96846b04 __CFRunLoopRun + 1428
    4 com.apple.CoreFoundation            0x968461dc CFRunLoopRunSpecific + 332
    5 com.apple.CoreFoundation            0x96846088 CFRunLoopRunInMode + 120
    6 com.apple.Foundation           0x906ed0c4 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7 com.apple.Foundation           0x906e0e25 -[NSThread main] + 45
    8 com.apple.Foundation           0x906e0dd5 __NSThread__main__ + 1582
    9 libsystem_c.dylib                     0x9b92aed9 _pthread_start + 335
    10 libsystem_c.dylib                    0x9b92e6de thread_start + 34
    Thread 3:: QTKit: QTVisualContextImageProviderWorkLoop
    0 libsystem_kernel.dylib            0x96220c22 mach_msg_trap + 10
    1 libsystem_kernel.dylib            0x962201f6 mach_msg + 70
    2 com.apple.CoreFoundation            0x9683d9da __CFRunLoopServiceMachPort + 170
    3 com.apple.CoreFoundation            0x96846b04 __CFRunLoopRun + 1428
    4 com.apple.CoreFoundation            0x968461dc CFRunLoopRunSpecific + 332
    5 com.apple.CoreFoundation            0x96856f01 CFRunLoopRun + 129
    6 com.apple.QTKit                      0x94a96fde QTVisualContextImageProviderWorkLoop + 124
    7 libsystem_c.dylib                     0x9b92aed9 _pthread_start + 335
    8 libsystem_c.dylib                     0x9b92e6de thread_start + 34
    Thread 4:
    0 libsystem_kernel.dylib            0x96220c22 mach_msg_trap + 10
    1 libsystem_kernel.dylib            0x962201f6 mach_msg + 70
    2 com.apple.CoreFoundation            0x9683d9da __CFRunLoopServiceMachPort + 170
    3 com.apple.CoreFoundation            0x96846b04 __CFRunLoopRun + 1428
    4 com.apple.CoreFoundation            0x968461dc CFRunLoopRunSpecific + 332
    5 com.apple.CoreFoundation            0x96856f01 CFRunLoopRun + 129
    6 com.apple.FWAVCPrivate              0x02404763 _ZN3AVSL27AVCVideoServicesThreadStartEPNS_28AVCVideoServicesThreadParamsE + 254
    7 libsystem_c.dylib                     0x9b92aed9 _pthread_start + 335
    8 libsystem_c.dylib                     0x9b92e6de thread_start + 34
    Thread 5:: WebCore: LocalStorage
    0 libsystem_kernel.dylib            0x9622283e __psynch_cvwait + 10
    1 libsystem_c.dylib                     0x9b92ee21 _pthread_cond_wait + 827
    2 libsystem_c.dylib                     0x9b8df42c pthread_cond_wait$UNIX2003 + 71
    3 com.apple.JavaScriptCore              0x93f3be81 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4 com.apple.WebCore               0x9ade5501 ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 135
    5 com.apple.WebCore               0x9ade5454 WebCore::LocalStorageThread::threadEntryPoint() + 74
    6 com.apple.WebCore               0x9ade53b1 WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 17
    7 libsystem_c.dylib                     0x9b92aed9 _pthread_start + 335
    8 libsystem_c.dylib                     0x9b92e6de thread_start + 34
    Thread 6:
    0 libsystem_kernel.dylib            0x9622283e __psynch_cvwait + 10
    1 libsystem_c.dylib                     0x9b92ee78 _pthread_cond_wait + 914
    2 libsystem_c.dylib                     0x9b92ef7b pthread_cond_timedwait_relative_np + 47
    3 com.apple.CoreServices.CarbonCore   0x942693a7 TSWaitOnConditionTimedRelative + 178
    4 com.apple.CoreServices.CarbonCore   0x9426911d TSWaitOnSemaphoreCommon + 490
    5 com.apple.CoreServices.CarbonCore   0x94268f2e TSWaitOnSemaphoreRelative + 24
    6 com.apple.QuickTimeComponents.component      0x916b4516 0x910c8000 + 6210838
    7 libsystem_c.dylib                     0x9b92aed9 _pthread_start + 335
    8 libsystem_c.dylib                     0x9b92e6de thread_start + 34
    Thread 7:: jpegdecompress_MPLoop
    0 libsystem_kernel.dylib            0x9622283e __psynch_cvwait + 10
    1 libsystem_c.dylib                     0x9b92ee78 _pthread_cond_wait + 914
    2 libsystem_c.dylib                     0x9b8d682a pthread_cond_wait + 48
    3 com.apple.QuickTimeComponents.component      0x917d6553 0x910c8000 + 7398739
    4 libsystem_c.dylib                     0x9b92aed9 _pthread_start + 335
    5 libsystem_c.dylib                     0x9b92e6de thread_start + 34
    Thread 8:: JavaScriptCore::Marking
    0 libsystem_kernel.dylib            0x9622283e __psynch_cvwait + 10
    1 libsystem_c.dylib                     0x9b92ee21 _pthread_cond_wait + 827
    2 libsystem_c.dylib                     0x9b8df42c pthread_cond_wait$UNIX2003 + 71
    Thread 9:: JavaScriptCore::BlockFree
    0 libsystem_kernel.dylib            0x9622283e __psynch_cvwait + 10
    1 libsystem_c.dylib                     0x9b92ee21 _pthread_cond_wait + 827
    2 libsystem_c.dylib                     0x9b8df3e0 pthread_cond_timedwait$UNIX2003 + 70
    3 com.apple.JavaScriptCore              0x93f3becc ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    4 com.apple.JavaScriptCore              0x94189c33 JSC::Heap::blockFreeingThreadMain() + 323
    5 com.apple.JavaScriptCore              0x94189c6f JSC::Heap::blockFreeingThreadStartFunc(void*) + 15
    6 libsystem_c.dylib                     0x9b92aed9 _pthread_start + 335
    7 libsystem_c.dylib                     0x9b92e6de thread_start + 34
    Thread 10:
    0 libsystem_kernel.dylib            0x9622283e __psynch_cvwait + 10
    1 libsystem_c.dylib                     0x9b92ee78 _pthread_cond_wait + 914
    2 libsystem_c.dylib                     0x9b92ef7b pthread_cond_timedwait_relative_np + 47
    3 com.apple.CoreServices.CarbonCore   0x942693a7 TSWaitOnConditionTimedRelative + 178
    4 com.apple.CoreServices.CarbonCore   0x9426911d TSWaitOnSemaphoreCommon + 490
    5 com.apple.CoreServices.CarbonCore   0x94268f2e TSWaitOnSemaphoreRelative + 24
    6 com.apple.CoreServices.CarbonCore   0x9429be53 AIOFileThread(void*) + 1019
    7 libsystem_c.dylib                     0x9b92aed9 _pthread_start + 335
    8 libsystem_c.dylib                     0x9b92e6de thread_start + 34
    Thread 11:
    0 libsystem_kernel.dylib            0x9622302e __workq_kernreturn + 10
    1 libsystem_c.dylib                     0x9b92cccf _pthread_wqthread + 773
    2 libsystem_c.dylib                     0x9b92e6fe start_wqthread + 30
    Thread 12:
    0 libsystem_kernel.dylib            0x9622302e __workq_kernreturn + 10
    1 libsystem_c.dylib                     0x9b92cccf _pthread_wqthread + 773
    2 libsystem_c.dylib                     0x9b92e6fe start_wqthread + 30
    Thread 13:
    0 libsystem_kernel.dylib            0x9622302e __workq_kernreturn + 10
    1 libsystem_c.dylib                     0x9b92cccf _pthread_wqthread + 773
    2 libsystem_c.dylib                     0x9b92e6fe start_wqthread + 30
    Thread 14:: JavaScriptCore::Marking
    0 libsystem_kernel.dylib            0x9622283e __psynch_cvwait + 10
    1 libsystem_c.dylib                     0x9b92ee21 _pthread_cond_wait + 827
    2 libsystem_c.dylib                     0x9b8df42c pthread_cond_wait$UNIX2003 + 71
    Thread 15:: JavaScriptCore::BlockFree
    0 libsystem_kernel.dylib            0x9622283e __psynch_cvwait + 10
    1 libsystem_c.dylib                     0x9b92ee21 _pthread_cond_wait + 827
    2 libsystem_c.dylib                     0x9b8df3e0 pthread_cond_timedwait$UNIX2003 + 70
    3 com.apple.JavaScriptCore              0x93f3becc ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    4 com.apple.JavaScriptCore              0x94189c33 JSC::Heap::blockFreeingThreadMain() + 323
    5 com.apple.JavaScriptCore              0x94189c6f JSC::Heap::blockFreeingThreadStartFunc(void*) + 15
    6 libsystem_c.dylib                     0x9b92aed9 _pthread_start + 335
    7 libsystem_c.dylib                     0x9b92e6de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000001  ebx: 0xbfffe5ac  ecx: 0x00000da0  edx: 0x0ce724a8
    edi: 0x0e0f0000  esi: 0x0cebf1b4  ebp: 0x0cec9d00  esp: 0x0ce72408
    ss: 0x00000023  efl: 0x00010216  eip: 0x0ceb9398   cs: 0x0000001b
    ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
    cr2: 0x1d13b878
    Logical CPU: 1
    Binary Images:
    0x1000 -   0x334ffc  com.apple.iMovie8 (8.0.6 - 821) <CD0B8453-4663-7F8C-EFF4-926EAB254B2A> /Applications/iMovie.app/Contents/MacOS/iMovie
    0x3d2000 -   0x3e0fff  com.apple.opengl (1.7.7 - 1.7.7) <2D362F15-5EA6-37B6-9BCB-58F2C599ACDA> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x3e8000 -   0x421fe3  com.apple.MPEG2TSDecoder (1.0 - 84) <75EC884A-7300-87B1-7E3A-A2B156BD4D79> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
    0x459000 -   0x47afff  com.apple.iWidgets (1.0.0 - 24) /Applications/iMovie.app/Contents/Frameworks/iWidgets.framework/Versions/A/iWid gets
    0x48d000 -   0x530ff4  com.apple.DotMacKit (47 - 3.0.2L) <5C3FF2BA-7124-3DF9-B197-19DD4D543798> /Applications/iMovie.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0x596000 -   0x597ff7  com.apple.Helium (3.0.0 - 157) <22FD7CB4-024E-3065-EB67-262ABF99636E> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
    0x59d000 -   0x59efff +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <5FB2D0C9-D6D7-036E-F739-DA7CE5BAD36E> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
    0x5a4000 -   0x5d2fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <0D8984D3-BFCF-35A7-AA71-BEDC92126B7E> /usr/lib/libSystem.B.dylib
    0x5df000 -  0x1074ff6  com.apple.AppKit (6.7.3 - 1138.47) <D8CD06D7-F18C-39BE-BC68-B343F87F0469> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x154e000 - 0x1811fff  com.apple.security (7.0 - 55148.1) <77754898-4FCD-3CA3-9339-F1058C852806> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x1909000 - 0x1abdff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x1b3c000 - 0x1b9afff  com.apple.coreui (1.2.2 - 165.10) <C6B099D6-7F02-3971-99B9-E415308959CF> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x1bc9000 - 0x1bcdff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x1bd4000 - 0x1be2ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x1bea000 - 0x1c15fff  com.apple.GSS (2.2 - 2.0) <2C468B23-FA87-30B5-B9A6-8C5D1373AA30> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x1c2b000 - 0x1c74ff7  libGLU.dylib (??? - ???) <5EE0B644-FAD6-3E3C-A380-9B0CDA0B6432> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x1c82000 - 0x1c87ffd  libGFXShared.dylib (??? - ???) <1CA9B41B-2C61-38F8-ABAC-1D5511478F5C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x1c8d000 - 0x1c9afff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x1cab000 - 0x1ce7ffa  libGLImage.dylib (??? - ???) <504E7865-571E-38B4-A84A-D7B513AC84F5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x1cef000 - 0x1cf0ffd  libCVMSPluginSupport.dylib (??? - ???) <22B85645-AA98-372B-BB55-55DCCF0EC716> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x1cf5000 - 0x1cf8ffd  libCoreVMClient.dylib (??? - ???) <361CCFAF-8565-383F-915F-0B059C793E42> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x1cfd000 - 0x1d26ffe  com.apple.opencl (1.50.69 - 1.50.69) <2601993F-F3B3-3737-91AE-4A5795C52CD5> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x1d32000 - 0x1ddfff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x1e24000 - 0x1f56fe4 com.apple.Helium.HeliumRender (2.0.0 - 157) <DEA355F6-22DC-68D4-EA7A-EE06C0D7F150> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
    0x1faf000 - 0x1faffff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <859B5BCC-B5D9-370F-8B6C-1E2B242D5DCD> /usr/lib/libmx.A.dylib
    0x2400000 - 0x2430ff7  com.apple.FWAVCPrivate (52.47 - 47) <8E724EF3-79D6-3B0D-8A57-6E13DA3EACB5> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
    0x24b6000 - 0x25adffb libGLProgrammability.dylib (??? - ???) <FA509930-D201-372B-B787-18CBD8477D06> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x25d1000 - 0x25feff8  GLRendererFloat (??? - ???) <70ADE58D-B399-3279-9774-2D5929D5FCB1> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x47a5000 - 0x4912ffb  GLEngine (??? - ???) <D73F1031-6DD3-38EB-966B-7A2C9F17F023> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x4946000 - 0x4fd7fe3  libclh.dylib (4.0.3 - 4.0.3) <8A4B12EC-F8F1-3D5E-945D-56467F8F4476> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x508f000 - 0x5091fff com.apple.AddressBook.LocalSourceBundle (1.4 - 1090) <61BC69A7-F09E-3CD9-A4CD-FAB46898E9DD> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x5096000 - 0x5099ffe  com.apple.DirectoryServicesSource (1.4 - 1090) <D9ED3AB9-2F3E-3331-84B5-EDDDBBC1F371> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x5f9b000 - 0x5ff6fff com.apple.AddressBook.CardDAVPlugin (10.7.2 - 200) <8A30F13D-0ED4-32F5-829C-4FECEE3C535D> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x7612000 - 0x7612fff com.apple.iLMBAppDefPlugin (2.6.3 - 288.3.32) <2DD0403B-5608-3BE8-B005-27F92AC570F4> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x95c0000 - 0x95c1fff com.apple.iLMBFolderPlugin (2.6.3 - 288.3.32) <D85D3CB7-6A10-3F68-96E9-C9CC5A66255D> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x9672000 - 0x9679ff5  com.apple.iLMBAperturePlugin (2.6.3 - 288.3.32) <5E332CFA-0A13-3C06-AF16-EFCC1FDD2038> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x9680000 - 0x9689ffc com.apple.iLMBFinalCutPlugin (2.6.3 - 288.3.32) <46FDDF4E-4165-3923-B57A-21D38462C472> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x968f000 - 0x9692fff com.apple.iLMBGarageBandPlugin (2.6.3 - 288.3.32) <75D95F77-ED1C-31DD-B4D6-BACA044399C3> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x9698000 -  0x96a3ff3  com.apple.iLMBiMoviePlugin (2.6.3 - 288.3.32) <583F1438-3B57-3B81-AF28-FB82A82054B5> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x96aa000 - 0x96bdff7 com.apple.iLMBiPhoto8Plugin (2.6.3 - 288.3.32) <7A31CC42-9752-3B19-B3D2-7435CB7A0D50> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x96c5000 - 0x96cdff3 com.apple.iLMBiPhotoPlugin (2.6.3 - 288.3.32) <845CB0C1-6DF5-3D73-B914-ADCD529DE7E1> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x96d4000 - 0x96dcff3 com.apple.iLMBiTunesPlugin (2.6.3 - 288.3.32) <26B31C94-C68B-35D2-976D-53869C819FDD> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x96e3000 - 0x96e4ff7 com.apple.iLMBMoviesFolderPlugin (2.6.3 - 288.3.32) <046183A4-8B97-3CF4-929B-F73FE64B6276> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x96e9000 - 0x96ebff8 com.apple.iLMBPhotoBooth2Plugin (2.6.3 - 288.3.32) <96393C47-51C0-3A02-B182-A155B9DBD2A6> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0x96f0000 - 0x96f1ff7 com.apple.iLMBPhotoBoothPlugin (2.6.3 - 288.3.32) <B033393A-644E-32AB-85C4-77D1B30C0850> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0x9900000 - 0x9a56ff9 com.apple.iLMBAperture31Plugin (2.6.3 - 288.3.32) <F7E40BA5-4DB1-3486-96E8-1106CC60FD48> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x9a9e000 - 0x9c42ff5 com.apple.iLMBAperturePlugin2012 (2.6.3 - 288.3.32) <44BB86D6-86F9-3877-9137-CDF1DB927554> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin2012
    0x9c9c000 - 0x9df5ff9 com.apple.iLMBiPhoto9Plugin (2.6.3 - 288.3.32) <F8C6F271-ED94-35D9-A5A1-0BF62F6FAC27> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x9e3d000 - 0x9fe2ffd com.apple.iLMBiPhotoPlugin2012 (2.6.3 - 288.3.32) <01BA4581-21CB-37B1-A083-5B3A5717F2EC> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin2012
    0xa03d000 - 0xa0f4ff7  com.apple.iTunesAccess (10.6.3 - 10.6.3) <20F54184-69D0-468A-CEA5-1665192AF5BA> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0xaa93000 - 0xaa98fe2  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <864BA467-5F11-3B41-B261-894067B8209E> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0xaa9f000 - 0xaaa1fff  libCoreFSCache.dylib (??? - ???) <5B141DE1-6FC9-3155-833B-23A447A598AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0xaaa9000 - 0xaaa9ffb +cl_kernels (??? - ???) <59153EF5-3CBB-4296-AB67-C8CF34CA39E4> cl_kernels
    0xaec9000 - 0xaecaff0 +cl_kernels (??? - ???) <F13753ED-2573-43F6-A8C3-CBF139AA6CF6> cl_kernels
    0xc1e2000 - 0xc1e6ffb com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <D4092467-5BBE-3ED6-A493-7DB1EE8E6686> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xc1eb000 - 0xc1f0fff com.apple.audio.AppleHDAHALPlugIn (2.2.0 - 2.2.0f3) <BAD1E0E6-10E6-342C-BEB8-B1706F0CE2CF> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xc4cf000 - 0xc4cfff3 +cl_kernels (??? - ???) <582D73FD-C36E-49B0-849E-06D96A4954C9> cl_kernels
    0xc4ed000 -  0xc4f4ffe com.apple.AppleGVAHW.component (1.0 - 1) <B7C2F235-194D-36F8-8EAC-9A70B5A29B03> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0xcc40000 - 0xcc42fff com.apple.podcastproducer.ImageDiffer (1.3 - 245) <004DC137-08A6-3649-BFDB-C882309D6827> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0xcfe4000 - 0xcfe9ffb com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <A9023E7A-7A60-3EB9-9AB1-AAFC8C87B2C1> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0xdb1b000 - 0xdb33ff2 com.apple.applepixletvideo (1.2.30 - 1.2d30) <72A0B4BD-DB7A-3C7F-ADB9-6D059F7ABA2B> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xe5c4000 - 0xe5e5fe7 com.apple.AppleIntermediateCodec (2.0 - 542.4) <1999D33E-4FF4-3282-B357-D68A30427FB7> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xe700000 - 0xe766fff com.apple.AppleProResDecoder (3.0 - 542.6) <262D3868-74C4-38E6-8448-3BEB84721650> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0xe797000 - 0xe7d0ff3 com.apple.QuickTimeFireWireDV.component (7.7.1 - 2330) <8C6BCE18-BB4B-3507-AF89-433E582DB4F0> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xe92a000 - 0xe94ffff com.apple.QuartzComposer.ExtraPatches (4.0 - 236.7) <64765331-E282-397D-8DE7-6BB159782CA2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0xe95f000 - 0xe9abffb com.apple.audio.midi.CoreMIDI (1.8 - 42) <67FE17BA-C921-3D2D-AAC5-B5E9083CE004> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xeb00000 - 0xeb29fff  com.apple.audio.OpenAL (1.5.1 - 1.5.1) <66AB8BA7-6F8A-3D8C-9DAE-D82AF54139BB> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0xed00000 - 0xed3fff7 com.apple.AppleVAH264HW.component (3.0 - 3.0) <952FB556-4DBA-35E5-9390-0B944801C63A> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0xef3b000 - 0xf051ff3 com.apple.AppleGVAFramework (2.2.80 - 2.2.80) <D615A7A9-F326-3A95-AAFD-F9AFF8E55517> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x10f58000 - 0x10f84fff  com.apple.oxygene.layers.iDVDQCPatches (1.0.0 - 602.0.2) <2F6AD71A-EDFB-66DF-ACBD-46617FDB7C0E> /Applications/iMovie.app/Contents/Resources/iDVDQCPatches.plugin/Contents/MacOS /iDVDQCPatches
    0x111eb000 - 0x111efff7 +com.bensyverson.quartzcomposer.dvmatte (1.0 - 1.0) <DC961ABE-200A-E9E3-5CD2-7B98F129D0BF> /Applications/iMovie.app/Contents/Resources/Plugins/dvmatte.plugin/Contents/Mac OS/dvmatte
    0x28217000 - 0x282b6ff7  unorm8_rgba.dylib (1.50.69 - compatibility 1.0.0) <3A06E8EA-0335-348A-BCCB-21C3E94AED31> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
    0x2954f000 - 0x295f0ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <7A0427BD-4FB5-3F4E-A7F8-F760AD944283> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0x70000000 - 0x70141fff  com.apple.audio.units.Components (1.7.2 - 1.7.2) <44C7D574-F577-30B8-B74D-F2EF8A5A282A> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8effe000 - 0x8f7a3ffb  com.apple.GeForceGLDriver (7.18.18 - 7.1.8) <106B3686-32B8-3717-AAE1-95313E72034E> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8feca000 - 0x8fefcaa7  dyld (195.6 - ???) <60FD3471-A1D7-342E-99A7-3EDECDAEC6EC> /usr/lib/dyld
    0x90005000 - 0x90680fe5  com.apple.CoreAUC (6.16.11 - 6.16.11) <E52E2D54-138B-3F44-AA2C-309FB876DF6A> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90681000 - 0x9098bff3  com.apple.Foundation (6.7.2 - 833.25) <4C52ED74-A1FD-3087-A2E1-035AB3CF9610> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9098c000 - 0x90a5cffb  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <94798A2B-4C7A-30EA-9920-283451BDB9FA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90a97000 - 0x90ad9ff7  com.apple.CoreMedia (1.0 - 705.78) <D88AC852-8844-3B73-81C8-DF605F00AB40> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x90ada000 - 0x90ae2ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x90ae3000 - 0x90b35ff3  com.apple.ImageCaptureCore (3.0.3 - 3.0.3) <9C6A4134-0D1D-323F-BD07-1D88D258A7B4> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x90b3c000 - 0x90b44fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90b45000 - 0x90b7bff4  com.apple.LDAPFramework (3.2 - 120.2) <39DF72E3-CDAF-33CC-B2DA-67B8891A5CFF> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90b7c000 - 0x90c64fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <1841196F-68B5-309F-8ED1-6714B1DFEC83> /usr/lib/libxml2.2.dylib
    0x90cbf000 - 0x90d4cfe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90d4d000 - 0x90d58ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <EDA0F56F-CB2C-30BB-940D-C6A25B73C717> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90d59000 - 0x90d8fff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90d90000 - 0x90e08ff8  com.apple.CorePDF (3.1 - 3.1) <0074267B-F74A-30FC-8508-A14C821F0771> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x90e14000 - 0x90e24ff7  libCRFSuite.dylib (??? - ???) <94E040D2-2769-359A-A21B-DB85FCB73BDC> /usr/lib/libCRFSuite.dylib
    0x90e25000 - 0x90e42fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x90e9d000 - 0x90f80ff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x90f81000 - 0x90f86ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <943213F3-CC9B-328E-8A6F-16D85C4274C7> /usr/lib/system/libmacho.dylib
    0x90fa2000 - 0x90feaff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <68B92FEA-F754-3E7E-B5E6-D512E26144E7> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90feb000 - 0x90ff3ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <BB0C7B49-600F-3551-A460-B7E36CA4C4A4> /usr/lib/system/libcopyfile.dylib
    0x90ff4000 - 0x90ffdffb  com.apple.aps.framework (2.1 - 2.1) <498C8125-A32E-3554-B4B1-8F416623D45C> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x9102d000 - 0x9104fff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x910c7000 - 0x910c7fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x910c8000 - 0x91e18ffb  com.apple.QuickTimeComponents.component (7.7.1 - 2330) <91F3ABCA-3BB8-3B01-AA3F-37B3D798755A> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x91e1f000 - 0x91e87ff3  com.apple.ISSupport (1.9.8 - 56) <59225A65-41C1-35CA-9F29-229AC427B728> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x91e88000 - 0x91f1eff7  com.apple.LaunchServices (480.33 - 480.33) <5A4BF529-391E-3987-940E-287ACE56078A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91f1f000 - 0x92265fff  com.apple.MediaToolbox (1.0 - 705.78) <E6990E4A-B562-3051-86A6-B39E040BF766> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x92323000 - 0x92375ff7  libFontRegistry.dylib (??? - ???) <96E9602C-DFD3-3021-8090-60228CC80D26> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x92376000 - 0x9238bff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <1C8933A9-C7C6-36E9-9D8B-0EF08ACA3315> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9238d000 - 0x92395ff3  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <D7F6E875-263A-37B5-B403-53F76710538C> /usr/lib/system/liblaunch.dylib
    0x923ba000 - 0x923dbfff  com.apple.framework.internetaccounts (1.2 - 3) <5A5099CB-8F73-3425-BAB1-FF6CD624143C> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x923dc000 - 0x92463fff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EEC03CAB-7F79-3931-87FE-4DF0B767BF47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x92464000 - 0x92481ff3  com.apple.openscripting (1.3.3 - ???) <33713C0B-B7D5-37AA-87DB-2727FDCC8007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92635000 - 0x92669ff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x9266a000 - 0x92697ff9  com.apple.securityinterface (5.0 - 55022.4) <B59D9B2A-7FB8-32EC-B8D9-6D4DE76508F7> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x92698000 - 0x926e9ff9  com.apple.QuickLookFramework (3.2 - 500.16) <725FAE01-1597-38C7-841D-D9D83358921E> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x926ea000 - 0x926ecffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92713000 - 0x92b07ffb  com.apple.VideoToolbox (1.0 - 705.78) <BE955448-F79F-3136-A4AF-6EDBAFEDD9C2> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x92b59000 - 0x92cbbffb  com.apple.QuartzCore (1.7 - 270.4) <6BC84C60-1003-3008-ABE4-779EF7B4F524> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92e04000 - 0x92e73fff  com.apple.Heimdal (2.2 - 2.0) <2E1B8779-36D4-3C62-A67E-0034D77D7707> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x92e74000 - 0x92edcff7  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <FE3304C5-C000-3DA0-9E53-0E4CA074B73B> /usr/lib/libc++.1.dylib
    0x92edd000 - 0x92ee1ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
    0x92ef1000 - 0x92ef9fff  com.apple.AOSNotification (1.4.0 - 504.1) <DB0B29CD-8

    Hi,
    Please help.
    How did you manage to resolve this. I have similar issues.
    I have SAP_ALL and can run the reports without problems but users have error message
    general exception in deploy transformation for object "WEB_TEMPLATE"
    thanks

  • Urgent issue with Intrastat

    Hi All, we  have  very  urgent issue  with  intrastat report ''VE01''.
    There  is  many documents  with error Log-''The statistical value of the document item is zero.''.
    The pricing  settings looks OK and its impossible  to
    correct  those  documents with error.
    Any Idee how I could  correct them for  them  to  get  the  green status?
    Points  will be added  if  helpful
    Thanks and regards
    Luis

    Hello Luis,
    please check the VBRP-BRTWR. If this fiels is zero then you get an entry in the incompletion log.
    the message could be also occur if the GRWR is zero.
    Please check your pricing setting.
    Hope this will help to solve the problem.
    I f you are satisfied with the answer, please don't forget to give Reward Points.
    regards
    Claudia

  • Problem making jar..pls see the code.

    i have some class files in a folder.
    i created a batch file for making jar.
    and when i copy this jar file somewhere and write another batch file to run my java application its showing noclassfound error?.
    pls see the code below and tell me where did i go wrong?
    batch file making jar. 1
    jar cvf SpectrobesUploadSimulator.jar *.class
    pausebatch file to run the application 2
    java SpectrobesSimulator
    pausethe batch file 2 will run if i have the classes in the same directory but when i remove the classes and put the jar its not working.

    i gave the classpaths also
    set CLASSPATH=$CLASSPATH:.:Spectrobes.jar
    java SpectrobesSimulator
    pause

  • Urgent issue, BW Data extraction

    Hi,
      I have an urgent issue and need help.
      We were loading data after activating business content. Every thing worked fine and the delta load was also smooth.
      However, in order to start everything fresh. I deleted all the info package, deleted the "Intialization option for the source system"  AND then created my infopackage for Full upload with initialize option.
      In this case the extractor didn't find any data. I though it will bring all the data and this behavious put me in difficult situation. Please note that till this time everything was working fine.
    We were looading data from datassource 0CRM_SALES_ORDER_I

    Hi Anurava,
    What do you mean by <i>"Full upload with initialize"</i>?
    I couldn't understand what exaclty you meant by I "deleted all the info package, deleted the "Intialization option for the source system" Are you saying you deleted the requests from your ODS/Cube?
    Regards
    SS

  • Urgent issue: photo invalid format after conversion

    Hi,
    I have this urgent issue...I purchased and Ipod in USA and with camera connector I downloaded all the pictures taken (1700...). Came back to home, I connected the Ipod to my Ibook and I saw a message "optimizing ipod for mac" ... after this, only 67 photo are working. The other are all "invalid format" .... I also looked at the binaries of the image...it seems the ones invalid missed the jpeg header or information. Does anyone know what happens in this "optimization" and if there is something to come back? THank you so much!

    Hello All,
    Could anyone assist me with a fix for the problem ?
    Would appreciate it greatly.
    Thanks.

Maybe you are looking for

  • Passing data from an XML object to an itemRenderer

    I'm trying to color the background of a column in a datagrid and have found a sample file that illustrate the concept. However, the sample has data stored in an arrayCollection whereas mine is in an XML object. The problem is that the data in the sam

  • Radio group / Image issues: additional labels - how do I get rid of them?

    Hello experts, I'm having a little issue with a radio group in VC on SPS 11. The problem is that I need a radio group in a popup (not sure if that is relevant) - and I also can create this - but it creates a textfield (with a label that has the radio

  • What processors work with the Mac mini?

    Hello everyone! I've got the previous gen mini, and unless it is too expensive, I'd like to get a 7200 rpm HDD and a new processor. I can't seem to find what socket the mini uses or what processors will work. Any insight is appreciated! On a complete

  • Agent 18 Case is Awesome

    The agent 18 case is awesome.

  • How to export long formatted text from SAP to an excel Cell

    I have created an object(ZMM_TXT_PD) and an ID(Y01) using se75 transaction. With a Z program a store some lines in STXH table with object ZMM_TXT_PD and ID Y01. These texts are very long and formmated. Now I need another Z program in order to downloa