Non-sense error message trying to create view

Greetings All,
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production on Windows 2008R2
I am getting an error while trying to create a view. The error makes no sense in that no attempt to change a user name or password as the error message being produced suggests.
I can execute the entire select statement fine, I get results back.
If I comment out the line indicated as being in error, the problem moves to the line prior to the one commented out. The 4 lines prior to the line indicated by the error message are similar. The error is occurring on the last of the 5 similar lines of code.
If I move all 5 lines further up in the code the error moves accordingly.
The function validate_number (near where the error is identified) under certain conditions will issue a execute immediate 'alter session set nls_numeric_characters = ''.,''';
The column number identified in the error message is 2 spaces prior to the validate_number function call.
Below is the syntax for the creation of the view, the error message is at the bottom.
The numbers to the far left indicate the line number. I put 2 blank lines before and after the line of code identified by the error message.
The error points to the 2-spaces in front of the VALIDATE_NUMBER function call on line 350. just before the sql code ==> validate_number(Spend_Qty,'')),0) <==
Thanks for your time,
Bob
CREATE OR REPLACE VIEW REPORT_STAGING_V AS
-  SELECT
-    SPEND_STAGING.INPUT_FILE_ID,
-    SPEND_STAGING.SPEND_ID,
-    SPEND_STAGING.SPEND_DOC_NUM,
-    SPEND_STAGING.SPEND_DOC_ITM_NUM,
-    SPEND_STAGING.SPEND_DOC_YR_NUM,
-    SPEND_STAGING.ACCT_PYBL_INV_DOC_NUM,
-    SPEND_STAGING.ACCT_PYBL_INV_FSCL_YR_NUM,
-    SPEND_STAGING.COMPANY_CODE,
-    SPEND_STAGING.ACCT_PYBL_INV_LN_ITM_NUM,
-    SPEND_STAGING.SPEND_DOC_TYPE_CD,
-    SPEND_STAGING.SPEND_MTHD_TXT,
-    NVL(SPEND_STAGING.SRC_SYS_CD, '<BLANK>') SRS_SYS_CD,
-    SPEND_STAGING.SPEND_SAVING_DT,
-    SPEND_STAGING.SPEND_SAVING_FSCL_WK_NUM,
-    SPEND_STAGING.SPEND_SAVING_FSCL_MTH_NUM,
-    SPEND_STAGING.SPEND_SAVING_FSCL_QTR_NUM,
-    SPEND_STAGING.SPEND_SAVING_FSCL_YR_NUM,
-    SPEND_STAGING.MTRL_GRP_CD,
-    SPEND_STAGING.MTRL_GRP_DESC_TXT,
-    SPEND_STAGING.MTRL_GRP_LVL_1_TXT,
-    SPEND_STAGING.MTRL_GRP_LVL_2_TXT,
-    SPEND_STAGING.MTRL_GRP_LVL_3_TXT,
-    SPEND_STAGING.MTRL_GRP_LVL_4_TXT,
-    SPEND_STAGING.MTRL_GRP_LVL_5_TXT,
-    SPEND_STAGING.MTRL_GRP_LVL_6_TXT,
-    SPEND_STAGING.MTRL_GRP_LVL_7_TXT,
-    SPEND_STAGING.MTRL_GRP_LVL_8_TXT,
-    SPEND_STAGING.GL_ACCT_NUM,
-    SPEND_STAGING.GL_ACCT_DESC,
-    SPEND_STAGING.COST_CENTR_CD,
-    SPEND_STAGING.PRFT_CENTR_CD,
-    SPEND_STAGING.FUNCNL_AREA_CD,
-    SPEND_STAGING.PURCH_GRP_CD,
-    SPEND_STAGING.PURCH_GRP_NAM,
-    SPEND_STAGING.PURCH_ORG_CD,
-    SPEND_STAGING.PURCH_ORG_NAM,
-    SPEND_STAGING.REGION_CODE,
-    SPEND_STAGING.VNDR_ACCT_ROOT_NUM,
-    SPEND_STAGING.VNDR_CORP_NAM,
-    SPEND_STAGING.VNDR_CORP_TICKER_SYMBL_CD,
-    SPEND_STAGING.BUYPOINT_VNDR_ACCT_NUM,
-    SPEND_STAGING.BUYPOINT_VNDR_FIRST_NAM,
-    SPEND_STAGING.PAYPOINT_VNDR_ACCT_NUM,
-    SPEND_STAGING.PAYPOINT_VNDR_FIRST_NAM,
-    SPEND_STAGING.SPEND_PYMNT_TERM_CD,
-    SPEND_STAGING.SPEND_PYMNT_TERM_DESC,
-    SPEND_STAGING.SPEND_PYMNT_BSLN_DT,
-50  SPEND_STAGING.SPEND_PYMNT_CLRNG_DT,
-    SPEND_STAGING.CONTRACTUAL_PYMNT_TERM_DY_CNT,
-    SPEND_STAGING.VNDR_MTRL_NUM,
-    SPEND_STAGING.MTRL_ID_1280,
-    SPEND_STAGING.MTRL_DESC,
-    SPEND_STAGING.BAT_NUM,
-    SPEND_STAGING.SPCL_STOCK_IND,
-    SPEND_STAGING.INVTY_MVMNT_TYPE_CD,
-    SPEND_STAGING.GOODS_RCPNT_NAM,
-    SPEND_STAGING.MFG_PART_NUM,
-    SPEND_STAGING.PLANT_CD,
-    SPEND_STAGING.PLANT_DESC,
-    SPEND_STAGING.STORAGE_LOC_CD,
-    SPEND_STAGING.STORAGE_LOC_DESC,
-    SPEND_STAGING.UNLOADING_PT_DESC,
-    SPEND_STAGING.PO_NUM,
-    SPEND_STAGING.PO_LN_ITM_NUM,
-    SPEND_STAGING.PO_LN_ITM_LAST_CHNG_DT,
-    SPEND_STAGING.PO_DOC_DT,
-    SPEND_STAGING.PO_TYPE_CD,
-    SPEND_STAGING.PO_TYPE_DESC,
-    SPEND_STAGING.PO_UOM_CD,
-    SPEND_STAGING.PO_PYMNT_TERM_CD,
-    SPEND_STAGING.ASGND_ACCT_CTGRY_TYPE_CD,
-    SPEND_STAGING.PO_SHORT_TXT,
-    SPEND_STAGING.GR_MTRL_DOC_TXT,
-    SPEND_STAGING.ACCT_PYBL_INV_ITM_TXT,
-    SPEND_STAGING.PO_RCPT_INV_HST_DOC_POST_DT,
-    SPEND_STAGING.APPRTN_NUM,
-    SPEND_STAGING.REQTN_TRK_NUM,
-    SPEND_STAGING.REQTN_LN_NUM,
-    SPEND_STAGING.REQTN_LN_ITM_NUM,
-    SPEND_STAGING.REQTN_PERSN_ACCT_ID,
-    SPEND_STAGING.NTWRK_NUM,
-    SPEND_STAGING.NTWRK_CTGRY_CD,
-    SPEND_STAGING.PROJ_NAM,
-    SPEND_STAGING.WBS_ELMNT_NAM,
-    SPEND_STAGING.CPTL_PO_IND,
-    LU_GAC_STAGING.TIER_SUPPLIER,
-    CASE
-      WHEN SPEND_STAGING.PRCRMNT_RPTNG_LVL_3_TXT = 'GAC'
-      AND LU_GAC_STAGING.PO_SHORT_TXT            = SPEND_STAGING.PO_SHORT_TXT
-      AND SPEND_STAGING.SRC_SPLR_NAM            IS NULL
-      THEN LU_GAC_STAGING.TIER_SUPPLIER
-      ELSE SRC_SPLR_NAM
-    END SRC_SPLR_NAM,
-    SPEND_STAGING.TAX_CD,
-    SPEND_STAGING.TAX_CD_DESC,
-    SPEND_STAGING.TAX_JURISDICTION_TXT,
-    SPEND_STAGING.MTRL_DOC_PRCS_UOM_QTY,
-100 SPEND_STAGING.MTRL_DOC_UNIT_OF_ENTRY_QTY,
-    SPEND_STAGING.PO_LN_ITM_QTY,
-    SPEND_STAGING.PO_LN_ITM_NET_PRC_UNIT_QTY,
-    SPEND_STAGING.PO_LN_ITM_NET_PRC_USD_AMT,
-    SPEND_STAGING.PO_LN_ITM_NET_PRC_DC_AMT,
-    SPEND_STAGING.PO_LN_ITM_NET_PRC_BDGT_USD_AMT,
-    SPEND_STAGING.PO_LN_ITM_TOT_USD_AMT,
-    SPEND_STAGING.SPEND_USD_AMT,
-    SPEND_STAGING.SPEND_DOC_CURNCY_AMT,
-    SPEND_STAGING.SPEND_LOCAL_CURNCY_AMT,
-    SPEND_STAGING.SPEND_BDGT_USD_AMT,
-    SPEND_STAGING.SPEND_QTY,
-    SPEND_STAGING.SPEND_QTY_UOM_CD,
-    SPEND_STAGING.SPEND_UNIT_OF_ENTRY_QTY,
-    SPEND_STAGING.SPEND_UNIT_OF_ENTRY_UOM_CD,
-    SPEND_STAGING.SPEND_DC_FX_MTH_CNVRSN_FCT_VAL,
-    SPEND_STAGING.SPEND_DC_FX_BDG_CNVRSN_FCT_VAL,
-    SPEND_STAGING.CMPNY_LOCAL_CURNCY_CD,
-    SPEND_STAGING.DOC_CURNCY_CD,
-    SPEND_STAGING.TRANSTN_TYPE_CD,
-    SPEND_STAGING.ACCT_ASGNMT_SEQ_NUM,
-    SPEND_STAGING.GLPCA_LN_ITM_REC_NUM,
-    SPEND_STAGING.PCA_REF_DOC_NUM,
-    SPEND_STAGING.CO_DOC_NUM,
-    SPEND_STAGING.CO_FSCL_YR_NUM,
-    SPEND_STAGING.CO_LN_ITM_NUM,
-    SPEND_STAGING.VNDR_REF_DOC_NUM,
-    SPEND_STAGING.SAVING_MTHD_TXT,
-    SPEND_STAGING.SAVING_CMNT_TXT,
-    SPEND_STAGING.SAVING_COND_NUM,
-    SPEND_STAGING.SAVING_COND_ITM_NUM,
-    SPEND_STAGING.SAVING_COND_TYPE_CD,
-    SPEND_STAGING.SAVING_COND_TYPE_DESC,
-    SPEND_STAGING.SAVING_COND_CURNCY_CD,
-    SPEND_STAGING.SAVING_COND_PRC_UNIT_UOM_CD,
-    SPEND_STAGING.SAVING_COND_PRC_UNIT_QTY,
-    SPEND_STAGING.SAVING_COND_RTE_USD_AMT,
-    SPEND_STAGING.SAVING_COND_CURNCY_CNVRSN_VAL,
-    SPEND_STAGING.SAVING_COND_CURNCY_BDGT_CNVRSN,
-    SPEND_STAGING.PO_TRANSTN_COND_DC_AMT,
-    SPEND_STAGING.PO_TRANSTN_COND_USD_AMT,
-    SPEND_STAGING.SAVING_RTE_PER_USD_AMT,
-    SPEND_STAGING.SAVING_PER_USD_AMT,
-    SPEND_STAGING.SAVING_PER_BDGT_USD_AMT,
-    SPEND_STAGING.AVOIDANCE_USD_AMT,
-    SPEND_STAGING.AVOIDANCE_BDGT_USD_AMT,
-    SPEND_STAGING.SAVING_USD_AMT,
-    SPEND_STAGING.SAVING_BDGT_USD_AMT,
-    SPEND_STAGING.NO_FX_SAVING_USD_AMT,
-    SPEND_STAGING.NO_FX_AVOIDANCE_USD_AMT,
-150 SPEND_STAGING.TOT_REDUCTN_USD_AMT,
-    SPEND_STAGING.TOT_REDUCTN_BDGT_USD_AMT,
-    SPEND_STAGING.TOT_NO_FX_REDUCTN_USD_AMT,
-    SPEND_STAGING.PAYMENTNET_TRANSTN_NUM,
-    SPEND_STAGING.PAYMENTNET_TRANSTN_LN_ITM_NUM,
-    SPEND_STAGING.ROW_CRTE_GMT_DTTM,
-    SPEND_STAGING.ROW_MODIFY_GMT_DTTM,
-    SPEND_STAGING.ROW_CRTE_MST_DTTM,
-    SPEND_STAGING.ROW_MODIFY_MST_DTTM,
-    SPEND_STAGING.PRCRMNT_DIRECTOR_NAM,
-    SPEND_STAGING.PRCRMNT_PLANT_DSGNTN,
-    SPEND_STAGING.PRCRMNT_RPTNG_LVL_1_TXT,
-    SPEND_STAGING.PRCRMNT_RPTNG_LVL_2_TXT,
-    SPEND_STAGING.PRCRMNT_RPTNG_LVL_3_TXT,
-    SPEND_STAGING.SPEND_CAT_ID,
-    SPEND_STAGING.SPEND_RULE_ID,
-    SPEND_STAGING.TRANSACTION_DATE,
-    SPEND_STAGING.SPEND_AMOUNT,
-    SPEND_STAGING.ITEM_DESCRIPTION,
-    SPEND_STAGING.SUPPLIER_ID,
-    CASE
-      WHEN SPEND_STAGING.SOURCE ='SPEND'
-      THEN 'Spend and Savings'
-      WHEN SPEND_STAGING.SOURCE ='TRAVEL'
-      THEN 'Travel'
-      ELSE NULL
-    END SOURCE,
-    SPEND_STAGING.SUPPLIER_NUMBER,
-    SPEND_STAGING.TRAVEL_PERSNO,
-    SPEND_STAGING.TRIP,
-    SPEND_STAGING.TRAVEL_DOC,
-    SPEND_STAGING.TRAVEL_EXPTY,
-    SPEND_STAGING.TRAVEL_EXP_TYPE_DESC,
-    SPEND_STAGING.TRAVLE_CREDIT_CARD_TRAN_DESC TRAVEL_CREDIT_CARD_TRAN_DESC,
-    SPEND_STAGING.COUNTRY_CODE,
-    SPEND_STAGING.TRAVEL_INFO,
-    SPEND_STAGING.TRAVEL_ID,
-    SPEND_STAGING.TRAVEL_DOCUMENT_NUMBER,
-    SPEND_STAGING.TRAVEL_LAST_NAME_FIRST_NAME,
-    SPEND_STAGING.TRAVEL_TRIP_REASON,
-    SPEND_STAGING.TRAVEL_TRIP_STATUS,
-    SPEND_STAGING.TRAVEL_RATE,
-    SPEND_STAGING.FINANCE_ORG,
-    SPEND_STAGING.ASSOCIATED_MG_CODE,
-   SPEND_STAGING.COUNTRY_DESC,
-   SPEND_STAGING.TRAVEL_ID_DESC_BANKCARD,
-    SPEND_STAGING.COMPANY_CODE_DESC,
-    SPEND_STAGING.COST_CENTER_DESC,
-    'Q'||TO_CHAR(SPEND_STAGING.TRANSACTION_DATE,'Q') QUARTERNAME,
-    TO_CHAR(SPEND_STAGING.TRANSACTION_DATE,'YYYY') YEARNAME,
-200 CASE
-      WHEN SPEND_STAGING.SRC_SYS_CD = 'P-CARD'
-      THEN SS2.CLEANSED_PARENT_NAME
-      ELSE SS1.CLEANSED_PARENT_NAME
-    END CLEANSED_PARENT_NAME,
-    CASE
-      WHEN SPEND_STAGING.SRC_SYS_CD = 'P-CARD'
-      THEN SS2.cleansed_name_1
-      ELSE SS1.cleansed_name_1
-    END CLEANSED_NAME1,
-    CASE
-      WHEN SPEND_STAGING.MTRL_ID_1280 IS NULL
-       AND SPEND_STAGING.VNDR_MTRL_NUM IS NOT NULL
-      THEN SPEND_STAGING.VNDR_MTRL_NUM
-      WHEN SPEND_STAGING.MTRL_ID_1280 IS NULL
-       AND SPEND_STAGING.VNDR_MTRL_NUM IS NULL
-       AND SPEND_STAGING.MFG_PART_NUM  IS NOT NULL
-      THEN SPEND_STAGING.MFG_PART_NUM
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EFM'
-       AND SPEND_STAGING.PO_TYPE_CD         = 'ZAR'
-       AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280||'-MIX'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EWM'
-       AND SPEND_STAGING.PO_TYPE_CD          = 'ZAR'
-       AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-MIX'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EWM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZSA'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-ASMBLY'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EFM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZSA'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-ASMBLY'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EFM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZST'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-TEST'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EWM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZST'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-TEST'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EFM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZBI'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-250   THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-BURN-IN'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EWM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZBI'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-BURN-IN'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EFM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZRJ'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-REJECT'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EWM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZRJ'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-REJECT'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EFM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZPR'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-PROBE'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EWM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZPR'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-PROBE'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EFM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZEF'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-ENG'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EWM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZEF'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-ENG'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EFM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZEM'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-ENG'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EWM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZEM'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-ENG'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EFM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZEU'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-300   THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-ENGWFR'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EWM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZEU'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-ENGWFR'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EFM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZSF'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-WFR'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EWM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZSF'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-WFR'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EFM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZEF'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-ENG'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EWM'
-      AND SPEND_STAGING.PO_TYPE_CD          = 'ZEF'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-ENG'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EFM'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-POTypeCode'
-      WHEN SPEND_STAGING.MTRL_GRP_LVL_4_TXT = 'EWM'
-      AND SPEND_STAGING.MTRL_ID_1280       IS NOT NULL
-      THEN SPEND_STAGING.MTRL_ID_1280
-        ||'-POTypeCode'
-      ELSE SPEND_STAGING.MTRL_ID_1280
-    END ReportingPartNum,
-    LU_PCARD_STAGING.COST_CENTR_CD PCARD_COST_CENTR_CD,
-    LU_PCARD_STAGING.CTY_NAM PCARD_CTY_NAM,
-    LU_PCARD_STAGING.DISABLE_LINE PCARD_DISABLE_LINE,
-    LU_PCARD_STAGING.DISABLED_OWNED_BIZ_FLG PCARD_DISABLED_OWNED_BIZ_FLG,
-    LU_PCARD_STAGING.DIVERSITY_VNDR_FLG PCARD_DIVERSITY_VNDR_FLG,
-    LU_PCARD_STAGING.FIELD PCARD_FIELD,
-    LU_PCARD_STAGING.GL_ACCT_NUM PCARD_GL_ACCT_NUM,
-    LU_PCARD_STAGING.HUB_ZONE_SMALL_BIZ_CONCERN_FLG PCARD_HUB_ZONE,
-    LU_PCARD_STAGING.MINORITY_OWNED_BIZ_FLG PCARD_MINORITY_OWNED_BIZ_FLG,
-    NVL(validate_number(Po_Ln_Itm_Net_Prc_Usd_Amt,'')/DECODE(validate_number(Po_Ln_Itm_Net_Prc_Unit_Qty,''),0,1,validate_number(Po_Ln_Itm_Net_Prc_Unit_Qty,'')),0) po_unit_price_per_1_usd,
-    NVL(validate_number(Po_Ln_Itm_Net_Prc_Dc_Amt,'') /DECODE(validate_number(Po_Ln_Itm_Net_Prc_Unit_Qty,''),0,1,validate_number(Po_Ln_Itm_Net_Prc_Unit_Qty,'')),0) po_unit_price_per_1_doc_cur,
-    NVL(validate_number(Spend_Bdgt_Usd_Amt,'')       /DECODE(validate_number(Spend_Qty,''),0,1,                 validate_number(Spend_Qty,'')),0)                  spend_up_per_1_usd_budgt_rate,
-    NVL(validate_number(Spend_Usd_Amt,'')            /DECODE(validate_number(Spend_Qty,''),0,1,                 validate_number(Spend_Qty,'')),0)                  spend_up_per_1_usd_mon_rate,
-350 NVL(validate_number(Spend_Doc_Curncy_Amt,'')     /DECODE(validate_number(Spend_Qty,''),0,1,                 validate_number(Spend_Qty,'')),0)                  Spend_UP_per_1_Doc_Curr,
-    TO_CHAR(TRANSACTION_DATE,'MM-YYYY') MONTH_YEAR,
-    LU_PCARD_STAGING.MTRL_GRP_CD PCARD_MTRL_GRP_CD,
-    LU_PCARD_STAGING.PAYMENTNET_TRANSTN_LN_ITM_NUM PCARD_PAY_TRANSTN_LN_ITM_NUM,
-    LU_PCARD_STAGING.PAYMENTNET_TRANSTN_NUM PCARD_PAY_TRANSTN_NUM,
-    LU_PCARD_STAGING.PAYMENTNET_TRANSTN_POST_DT PCARD_PAY_TRANSTN_POST_DT,
-    LU_PCARD_STAGING.PCARD_INV_AMT PCARD_INV_AMT,
-    LU_PCARD_STAGING.PCARD_INV_CURNCY_CD PCARD_INV_CURNCY_CD,
-    LU_PCARD_STAGING.PCARD_INV_DT PCARD_INV_DT,
-    LU_PCARD_STAGING.PCARD_INV_LN_ITM_AMT PCARD_INV_LN_ITM_AMT,
-    LU_PCARD_STAGING.PCARD_INV_LN_ITM_TAX_AMT PCARD_INV_LN_ITM_TAX_AMT,
-    LU_PCARD_STAGING.PCARD_INV_LN_ITM_TAX_CD PCARD_INV_LN_ITM_TAX_CD,
-    LU_PCARD_STAGING.PCARD_INV_REF_NUM PCARD_INV_REF_NUM,
-    LU_PCARD_STAGING.PCARD_INV_TAX_AMT PCARD_INV_TAX_AMT,
-    LU_PCARD_STAGING.PCARD_MERCHANT_NAM PCARD_MERCHANT_NAM,
-    LU_PCARD_STAGING.PCARD_OWNR_ID PCARD_OWNR_ID,
-    LU_PCARD_STAGING.PCARD_SHORT_TXT PCARD_SHORT_TXT,
-    LU_PCARD_STAGING.PCARD_SRC_FILE_NAM PCARD_SRC_FILE_NAM,
-    LU_PCARD_STAGING.PLANT_CD PCARD_PLANT_CD,
-    LU_PCARD_STAGING.PURCH_GRP_CD PCARD_PURCH_GRP_CD,
-    LU_PCARD_STAGING.RCPNT_ID PCARD_RCPNT_ID,
-    LU_PCARD_STAGING.REQTN_CRTE_BY_ID PCARD_REQTN_CRTE_BY_ID,
-    LU_PCARD_STAGING.REQTN_LN_ITM_NUM PCARD_REQTN_LN_ITM_NUM,
-    LU_PCARD_STAGING.REQTN_NUM PCARD_REQTN_NUM,
-    LU_PCARD_STAGING.SERV_DISABLE_VETERAN_BIZ_FLG PCARD_SERV_DIS_VET_BIZ_FLG,
-    LU_PCARD_STAGING.STATE_CD PCARD_STATE_CD,
-    LU_PCARD_STAGING.STATE_CD,
-    LU_PCARD_STAGING.VETERAN_OWNED_BIZ_FLG PCARD_VETERAN_OWNED_BIZ_FLG,
-    LU_PCARD_STAGING.VNDR_ACCT_NUM PCARD_VNDR_ACCT_NUM,
-    LU_PCARD_STAGING.WOMAN_OWNED_BIZ_FLG PCARD_WOMAN_OWNED_BIZ_FLG2,
-    DENSE_RANK() OVER (ORDER BY NVL(TO_CHAR(TRANSACTION_DATE, 'YYYYMM'),'190010') DESC) AS DATE_RANK,
-    LU_PRICE_BY_UNIT_STAGING.MTRL_GRP PBU_MTRL_GRP,
-    LU_PRICE_BY_UNIT_STAGING.MTRL_GRP_DES PBU_MTRL_GRP_DES,
-    LU_PRICE_BY_UNIT_STAGING.MTRL_ID PBU_MTRL_ID,
-    LU_PRICE_BY_UNIT_STAGING.PLANT PBU_PLANT,
-    LU_PRICE_BY_UNIT_STAGING.PLANT_DESC PBU_PLANT_DESC,
-    LU_PRICE_BY_UNIT_STAGING.SUPPLIER PBU_SUPPLIER,
-    LU_PRICE_BY_UNIT_STAGING.DESCRIPTION PBU_DESCRIPTION,
-    LU_PRICE_BY_UNIT_STAGING.UOM PBU_UOM,
-    LU_PRICE_BY_UNIT_STAGING.CONTENT_VOLUME PBU_CONTENT_VOLUME,
-    LU_PRICE_BY_UNIT_STAGING.UOM_CONTENT_VOLUME PBU_UOM_CONTENT_VOLUME,
-    LU_PRICE_BY_UNIT_STAGING.CONTENT_WEIGHT PBU_CONTENT_WEIGHT,
-    LU_PRICE_BY_UNIT_STAGING.UOM_CONTENT_WT PBU_UOM_CONTENT_WT,
-    LU_PRICE_BY_UNIT_STAGING.PRICE__PACKAGE PBU_PRICE__PACKAGE,
-    LU_PRICE_BY_UNIT_STAGING.PRICE_PER_UOM_WT PBU_PRICE_PER_UOM_WT,
-    LU_PRICE_BY_UNIT_STAGING.PRICE_PER_UOM_VOL PBU_PRICE_PER_UOM_VOL,
-    LU_PRICE_BY_UNIT_STAGING.COMMON_NAME PBU_COMMON_NAME,
-    LU_GAC_UOM_REFERENCE_STAGING.LU_GAC_UOM_REFERENCE_ID,
-    LU_GAC_UOM_REFERENCE_STAGING.FSL_PART_NUMBER,
-    LU_GAC_UOM_REFERENCE_STAGING.SUPPLIER LU_GAC_SUPPLIER,
-400 LU_GAC_UOM_REFERENCE_STAGING.DESCRIPTION LU_GAC_DESCRIPTION,
-    LU_GAC_UOM_REFERENCE_STAGING.GAC_MAT_SUBGROUP LU_GAC_MAT_SUBGROUP ,
-    LU_GAC_UOM_REFERENCE_STAGING.ACTUAL_FILL LU_GAC_ACTUAL_FILL,
-    LU_GAC_UOM_REFERENCE_STAGING.COMMON__UOM LU_GAC_COMMON_UOM,
-    LU_GAC_UOM_REFERENCE_STAGING.PACKAGE LU_GAC_PACKAGE
-  FROM
-    SPEND_STAGING,
-    SUPPLIER_STAGING SS1,
-    SUPPLIER_STAGING SS2,
-    LU_GAC_STAGING,
-    lu_card_code_staging,
-    LU_PCARD_STAGING,
-    LU_PRICE_BY_UNIT_STAGING,
-    LU_GAC_UOM_REFERENCE_STAGING
-  WHERE SS1.SUPPLIER_ID(+)                     = SPEND_STAGING.SUPPLIER_ID
-  AND SS2.PCARD_INV_REF_NUM(+)             = SPEND_STAGING.PCARD_INV_REF_NUM
-  AND SS2.PAYMENTNET_TRANSTN_NUM(+)        = SPEND_STAGING.PAYMENTNET_TRANSTN_NUM
-  AND SS2.PAYMENTNET_TRANSTN_LN_ITM_NUM(+) =
-    SPEND_STAGING.PAYMENTNET_TRANSTN_LN_ITM_NUM
-  AND lu_card_code_staging.card_code(+)          = spend_staging.travel_id
-  AND lu_gac_staging.po_short_txt(+)             = spend_staging.po_short_txt
-  AND LU_PCARD_STAGING.PCARD_INV_REF_NUM(+)      = SPEND_STAGING.PCARD_INV_REF_NUM
-  AND LU_PCARD_STAGING.PAYMENTNET_TRANSTN_NUM(+) =
-    SPEND_STAGING.PAYMENTNET_TRANSTN_NUM
-  AND LU_PCARD_STAGING.PAYMENTNET_TRANSTN_LN_ITM_NUM(+) =
-    SPEND_STAGING.PAYMENTNET_TRANSTN_LN_ITM_NUM
-  AND LU_PRICE_BY_UNIT_STAGING.MTRL_ID(+)             = SPEND_STAGING.MTRL_ID_1280
-  AND LU_PRICE_BY_UNIT_STAGING.PLANT(+)               = SPEND_STAGING.PLANT_CD
-  AND lu_gac_uom_REFERENCE_STAGING.fsl_part_number(+) =
-431 SPEND_STAGING.MTRL_ID_1280;Error at Command Line:350 Column:112
Error report:
SQL Error: ORA-01031: insufficient privileges
01031. 00000 - "insufficient privileges"
*Cause:    An attempt was made to change the current username or password
without the appropriate privilege. This error also occurs if
attempting to install a database without the necessary operating
system privileges.
When Trusted Oracle is configure in DBMS MAC, this error may occur
if the user was granted the necessary privilege at a higher label
than the current login.
*Action:   Ask the database administrator to perform the operation or grant
the required privileges.
For Trusted Oracle users getting this error although granted the
the appropriate privilege at a higher label, ask the database
administrator to regrant the privilege at the appropriate label.
Edited by: Snyds on May 24, 2012 7:46 AM

Checking for privileges was the first thing I did.
User has create view and create any view.
Also has alter session privilege which is needed within the validate_number function (see below).
I was able to create the view you suggested.
I believe there is a privilege problem, just cant figure which.
create or replace function validate_number(p_number      in varchar2,
                                           p_format_mask in varchar2)
return number
AUTHID CURRENT_USER is
  v_number number;
  v_mask   varchar2(100) := '999999999999999999999.00000000000000000000';
  cursor get_number_masks is
  select mask,upper(is_i18n) is_i18n from cm_master.format_mask
  where type = 'NUMBER' order by sequence, is_i18n; 
begin
  if p_format_mask is not null then
    begin
      return to_number(p_number, p_format_mask);   
    exception
      when others then null;
    end;
  end if;
  for a in get_number_masks
  loop
    if a.is_i18n = 'Y' then
      -- We are applying an international number format mask
      begin
        -- Attempt #1
        -- Set the decimal to a ',' and the group separator to a '.'
        execute immediate 'alter session set nls_numeric_characters = '',.''';
        v_number := to_number(ltrim(rtrim(to_char(to_number(p_number, a.mask),v_mask))),v_mask);
        execute immediate 'alter session set nls_numeric_characters = ''.,''';
        return v_number;
      exception
        when others then
          -- First Attempt Failed - Attempt #2
          -- Set the decimal to a ',' and the group separator to a ' '
          begin
            execute immediate 'alter session set nls_numeric_characters = '', ''';
            v_number := to_number(ltrim(rtrim(to_char(to_number(p_number, a.mask),v_mask))),v_mask);
            execute immediate 'alter session set nls_numeric_characters = ''.,''';
            return v_number;
          exception
            when others then
              -- Second Attempt Failed - Attempt #3
              -- Set the decimal to a '.' and the group separator to a ' '
              begin
                execute immediate 'alter session set nls_numeric_characters = ''. ''';
                v_number := to_number(ltrim(rtrim(to_char(to_number(p_number, a.mask),v_mask))),v_mask);
                execute immediate 'alter session set nls_numeric_characters = ''.,''';
                return v_number;
              exception
                when others then null;
              end;
          end;
      end;
    else
      begin
        return to_number(p_number, a.mask);
      exception
        when others then null;
      end;
    end if;
  end loop;
  return null;
exception
  when others then return null;
end validate_number;Edited by: Snyds on May 24, 2012 7:48 AM

Similar Messages

  • On ECC, got these ERROR messages ACTIVATING a created View. Any hints?

    Hi,
    In creating a view on ECC, I got these messages while activating the View:
    VIEW ZVIEWXXX was not activated
    Check view ZVIEWXXX (MARK001/09.01.10/19:18)
    View allows read-only access only. Maintenance not possible.
    'Display using Data Browser only' was set automatically
    The view ignores client-dependency of the base tables
    Key field MBEWH-BWKEY missing
    Key field MBEWH-BWTAR missing
    Key field MBEWH-LFGJA missing
    Key field MBEWH-LFMON missing
    All fields are evaluated as key field
    Field name MATNR not unique
    Field MARA-LAEDA (Type conflict in selection condition)
    Operator   is not allowed in a selection condition.
    Field MARA-AENAM (Type conflict in selection condition)
    Link the selection conditions with AND or OR
    Operator   is not allowed in a selection condition.
    1.  Any hints to help  fix these problems?
    Ok, I went ahead and added the following fields in the error message :
    MBEWH-BWKEY
    MBEWH-BWTAR
    MBEWH-LFGJA
    MBEWH-LFMON
    2. Now, after this, the error reduced to the following below. But why am I being forced to add fields that I do not need?
        (I also removed the condition)
    VIEW ZVIEWXXX was not activated
    Check view ZVIEWXXX (MARK001/09.01.10/19:18)
    View allows read-only access only. Maintenance not possible.
    'Display using Data Browser only' was set automatically
    Field name MANDT not unique
    View ZVIEWXXX is not consistent
    ============================================================
    End of activation of worklist
    ============================================================
    3. Ok, So, why do I still have the above errors, the view is still not activating.
    Thanks
    Edited by: AmandaBaah on May 10, 2010 1:43 AM
    Edited by: AmandaBaah on May 10, 2010 2:05 AM

    Hi Lynn,
        Found your problem.
    View Field Table Field Data Element
    MANDT MARA MANDT MANDT
    MATNR MARA MATNR MATNR
    ERSDA MARA ERSDA ERSDA
    ERNAM MARA ERNAM ERNAM
    LAEDA MARA LAEDA LAEDA
    AENAM MARA AENAM AENAM
    MANDT MBEWH MANDT MANDT
    MATNR MBEWH MATNR MATNR
    STPRS MBEWH STPRS STPRS
    PEINH MBEWH PEINH PEINH
    VKSAL MBEWH VKSAL VKSAL
    BWKEY MBEWH BWKEY BWKEY
    BWTAR MBEWH BWTAR BWTAR_D
    LFGJA MBEWH LFGJA LFGJA
    LFMON MBEWH LFMON LFMON
    The basic function of a view is to join two or more tables. So when you join tables, the common data based on your join condition is fetched. Therefore if you have mapped mandt from mara to mandt to mbewh, then data will be fetched from both tables on the same condition. Therefore in your final result, you will have only 1 mandt field.
    In your view, there are several problems. You only need to have 1 MANDT and 1 MATNR.
    What the view will do is that it will fetch all records from MARA and then fetch all records from MBWEH where MANDT and MATNR match.
    So the revised view should be
    MANDT MARA MANDT MANDT
    MATNR MARA MATNR MATNR
    ERSDA MARA ERSDA ERSDA
    ERNAM MARA ERNAM ERNAM
    LAEDA MARA LAEDA LAEDA
    AENAM MARA AENAM AENAM
    MANDT MBEWH MANDT MANDT delete
    MATNR MBEWH MATNR MATNR delete
    STPRS MBEWH STPRS STPRS
    PEINH MBEWH PEINH PEINH
    VKSAL MBEWH VKSAL VKSAL
    BWKEY MBEWH BWKEY BWKEY
    BWTAR MBEWH BWTAR BWTAR_D
    LFGJA MBEWH LFGJA LFGJA
    LFMON MBEWH LFMON LFMON
    This should solve your problems.
    Regards.

  • Portal runtime error when trying to create new Iviews in EP

    Hi
    Require an Urgent help
    getting portal runtime error when trying to create a new iView in portal. I am unable to create a single iView  in portal.
    It was working before please see this error message
      Portal Runtime Error
    An exception occurred while processing a request for :
    iView : com.sap.portal.appintegrator.sap.WebDynproPageBuilder
    Component Name : com.sap.portal.appintegrator.sap.WebDynproPageBuilder
    Error occurs during the rendering of jsp component.
    Exception id: 05:20_12/01/08_0004_17115850
    See the details for the exception ID in the log file
    AM Iworking on NW2004s sp11. I was able to create iViews on this system before
    let me know where to check the log file also. Points will be awarded
    Thank you
    Krishna Kanth
    Edited by: siddi siddi on Jan 13, 2008 12:05 AM

    Krishna Kanth,
    logs can be read from nwa, if you hv the relevant access or get portal admin to pass the defaulttrace file to you. Login to nwa, navigate to Monitoring-Logs and traces and select (either default trace or last 24hrs) to view the logs. hope this helps
    prachi

  • Error when trying to create a JCO Destination

    Hi
    I receives the following error when trying to creat a JCO Destination, clicking on the button in the host:port/webdynpro/dispatcher/sap.com/tcwdtools/Explorer
    I get the following error:
    Error stacktrace:
    java.lang.NullPointerException
         at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.checkStatus(SystemLandscapeFactory.java:880)
         at com.sap.tc.webdynpro.services.sal.sl.api.WDSystemLandscape.checkStatus(WDSystemLandscape.java:469)
         at com.sap.tc.webdynpro.tools.sld.NameDefinition.updateJCODestinations(NameDefinition.java:272)
         at com.sap.tc.webdynpro.tools.sld.NameDefinition.updateNavigation(NameDefinition.java:237)
         at com.sap.tc.webdynpro.tools.sld.NameDefinition.wdDoInit(NameDefinition.java:144)
         at com.sap.tc.webdynpro.tools.sld.wdp.InternalNameDefinition.wdDoInit(InternalNameDefinition.java:223)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doInit(DelegatingView.java:61)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.view.View.initController(View.java:274)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:540)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:398)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:555)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:422)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:130)
         at com.sap.tc.webdynpro.progmodel.view.InterfaceView.initController(InterfaceView.java:43)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:540)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:398)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.makeVisible(ViewManager.java:620)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.performNavigation(ViewManager.java:263)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.navigate(ClientApplication.java:740)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:350)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:640)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:251)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:391)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:265)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:345)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:323)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:865)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:240)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Any ideas?
    Regards
    Kay-Arne

    Hi,
    Have you configured your SLD? Check JCO Destination error out or search for "com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.checkStatus" in the SDN forums.
    Best regards,
    Vladimir

  • Error while trying to create a new company

    Hey All
    I found an error while trying to create a new company.
    the Error like - No matching Records Found - [ODBC -2028]
    This can generate only database but not any tables in that database.
    Please help me.
    Thanking you
    Hepil Doshi

    Hello,
    I would prefer local language instead of US english.....
    My tips.
    1. DID you tried to Not apply the UDO/UDF things?
    2. Do not log in to the database, start from
    3. Please post the error message itself....
    4. If you are running on MS SQL 2005 server (not express) , You can start SQL profiler, and monitor the New Database creation.... you will see in profielr where is the error message and which tables / data is missing.
    If i know well,
    When you create a new company, the SBO-COMMON database is used to deploy the new database....
    If you get stock, reinstall your sbo-common from the last applyied patch..... (Detach SBO-common, move the files another directory, and start upgarder.exe).
    Regards,
    J.

  • Error when trying to create a site collection

    Hi, 
    I receive the following error when trying to create a site collection in sharepoint 2013. Any ideas of what I can do to resolve?
    Sorry, something went wrong
    Failed to call GetTypes on assembly Microsoft.AnalysisServices.SharePoint.Integration, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91. Method 'ParseLogFileEntry' in type 'Microsoft.AnalysisServices.SharePoint.Integration.ConnectionUsageDefinition'
    from assembly 'Microsoft.AnalysisServices.SharePoint.Integration, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' does not have an implementation. Method 'ParseLogFileEntry' in type 'Microsoft.AnalysisServices.SharePoint.Integration.RequestUsageDefinition'
    from assembly 'Microsoft.AnalysisServices.SharePoint.Integration, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' does not have an implementation. Method 'ParseLogFileEntry' in type 'Microsoft.AnalysisServices.SharePoint.Integration.LoadUsageDefinition'
    from assembly 'Microsoft.AnalysisServices.SharePoint.Integration, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' does not have an implementation. Method 'ParseLogFileEntry' in type 'Microsoft.AnalysisServices.SharePoint.Integration.UnloadUsageDefinition'
    from assembly 'Microsoft.AnalysisServices.SharePoint.Integration, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' does not have an implementation.
    thanks,
    Sherazad

    Hi  ,
    Based on the error message, please check whether you have installed the spPowerPivot.msi add-in on each of your SharePoint server, and ran the configuration wizard, make sure that the powerpivotwebapplicationsolution.wsp
    is deployed correctly.
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Eric Tao
    TechNet Community Support

  • Installation Problem error when trying to create WSDL resource in OSB proje

    Hi everybody!
    I'm getting following error while trying to create a WSDL resource in OSB console:
    Caused By: com.bea.wli.sb.common.UserException: Diagnostics for WSDL send-sms/resources/teasdf
    WARNING: <0> Installation Problem??? Couldn't load messages: Can't find bundle for base name org.apache.xmlbeans.impl.regex.message, locale en_US
    at com.bea.wli.sb.resources.wsdl.helpers.WsdlEntryHelper.createEntry(WsdlEntryHelper.java:644)
    at com.bea.wli.sb.resources.wsdl.helpers.WsdlEntryHelper.createEntry(WsdlEntryHelper.java:687)
    at com.bea.wli.sb.management.configuration.WsdlConfiguration.createEntry(WsdlConfiguration.java:64)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.alsb.console.support.ConsoleSideMBeanInvocationHandler.__invoke(ConsoleSideMBeanInvocationHandler.java:113)
    at com.bea.alsb.console.support.ConsoleSideMBeanInvocationHandler.invoke(ConsoleSideMBeanInvocationHandler.java:71)
    at $Proxy187.createEntry(Unknown Source)
    at com.bea.alsb.console.resources.wsdl.WsdlRepositoryHelper.createEntry(WsdlRepositoryHelper.java:183)
    at com.bea.alsb.console.resources.wsdl.actions.EditWsdlAction.execute(EditWsdlAction.java:88)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2044)
    at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:91)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2116)
    at com.bea.alsb.console.common.base.SBConsoleRequestProcessor.processActionPerform(SBConsoleRequestProcessor.java:91)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853)
    at com.bea.alsb.console.common.base.SBConsoleRequestProcessor.process(SBConsoleRequestProcessor.java:191)
    at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631)
    at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158)
    at com.bea.console.internal.ConsoleActionServlet.process(ConsoleActionServlet.java:256)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
    at com.bea.console.internal.ConsoleActionServlet.doGet(ConsoleActionServlet.java:133)
    at com.bea.alsb.console.common.base.SBConsoleActionServlet.doGet(SBConsoleActionServlet.java:49)
    at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199)
    at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1129)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:687)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal(ScopedContentCommonSupport.java:142)
    at com.bea.portlet.adapter.scopedcontent.StrutsStubImpl.processAction(StrutsStubImpl.java:76)
    at com.bea.portlet.adapter.NetuiActionHandler.raiseScopedAction(NetuiActionHandler.java:111)
    at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:181)
    at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:167)
    at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiContent.java:225)
    I couldn't find anything related to this error in this forum or the web.
    Thank you in advance,
    Daniel.

    Can you post your WSDL here please.

  • Getting error when trying to create Exchange Connector in System Center Service Manager 2012

    Getting error when trying to create Exchange Connector in System Center Service Manager 2012
    The connection to the server was unsuccessful. Please check the server name and/or credentials entered.
    Additional Information: The server URL is not accessible or the user does not have permission to access it (message: The request failed. The remote server returned an error: (401) Unauthorized.
    Warm Regards, Pramod Kumar Singh Manager-IT

    Someone sorted out this issue by installing API 1.2 and copying the dll files to the service manager server ,service folder and replacing it with API 2.0 dll files.
    Also, your question is related to SCSM, please post at SCSM forum if you have further question.
    Juke Chou
    TechNet Community Support

  • I get this error when trying to create a ringtone - iTunes could not connec

    I get this error when trying to create a ringtone:
    "iTunes could not connect to the iTunes Store - an unknown error occurred (11556)"
    But I CAN connect - if I click on the iTunes Store, it connects right away.
    I want to make a ringtone from a song that I purchased, but all I get is the same error message.
    iTunes 9.2.2, Ireland iTunes Store.

    have you seen this KB article: http://support.apple.com/kb/HT1398 ?
    JGG

  • Solution to stop error when trying to create a portfolio

    Hi all,
    I finally found a way to make a portfolio in acrobat pro 9. The problems I was having were explained in the thread titled "Acrobat pro 9 has a stop error when trying to create a portfoloi"
    It seems ther is another way to do this, by selecting 'combine' and then 'merge files into a single pdf' rather than 'assemble pdf portfolio'.
    The merge option also gives the choice of making a pdf package and does not result in a stop error with authplay.dll.
    So much for Adobe support who conuld not tell me this or respond to support requests.
    All I have to do now is to remember to not click on 'assemble pdf portfolio' when I want to assemble a pdf portfolio but "merge files into a single pdf" when I want to assemble a pdf portfolio.
    I would still like to hear from Adobe why acrobat pro 9 has a stop error with authplay.dll.
    I feel a lot happier now.

    I read through the pdf wth your emails to/from customer support. I'll have to defer to someone else because it seems you have tried what I would suggest.
    If someone else does not respond with a better plan and you are willing to spend a bit more time before writing off Acrobat 9, I would try the process below one last time. (If you are using a CS suite, while authplay.dll is found in each of the directories, it does not appear that the issue extends to the other programs.)
    1. Using Add/Remove Programs, uninstall all Adobe Acrobat and Reader software and uninstall the Adobe Flash Player Active X and Adobe Flash Player Plugin. If you have it, uninstall Adobe Air.
    2. In C:\Documents and Settings\(your profile name)\Application Data\Adobe, delete the Acrobat and Adobe PDF folders if they still exist.
    3. Reinstall only Acrobat 9.
    4. From Acrobat, run the updater Help > Check for Updates and install all updates.
    5. Verify Adobe Acrobat is now version 9.2: Help > About Adobe Acrobat Pro  (If for any reason it is not 9.2, use the update on http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows
    6. Test
    Message was edited by: Anna Nmty
    While searching for a solution, I just saw your post over at acrobatusers.com (http://www.acrobatusers.com/forums/aucbb/viewtopic.php?id=15765). Looks like my advice was largely a duplicate, although your event log indicates Acrobat did not update properly.

  • All CX traffic dropped on data plane with error message 'Unable to create policy params (policy-params-failed)

    Problems with CX dropping all traffic - error message: Unable to create policy params (policy-params-failed) seen when issuing cli cmd show opdata framedrop on CX.
    Data hits ASA Service Policy and is redirected to CX, but no traffic is passed (user experience is timeout in browser).
    Problem started after SW upgrade - present running versions:
    ASA version: 9.1.5(21)
    CX version: 9.3.3.1 (13)
    Have tried to disable all policies and create a 'permit any any' policy, which at present is the only activve policy - still same problem.
    Any suggestions?

    If i am using 11G andrtp is 11g but on rtp side if they configure SSL, is it mandatory to do it from our side also?No it not mandatory to enable SSL at your end however you have to configure identity and trsut at your end.
    Any update on my regular question(The main forum question)?You mentioned that you are posting message from 10g to 11g and as per log you are sending it to URL - https://dev-nog.server:443/b2b/transportServlet
    So few things which I see as a problem are-
    1. You should use URL https://hostname:soa_server_ssl_port/b2b/httpReceiver instead of https://dev-nog.server:443/b2b/transportServlet
    2. SOA server SSL port should be enabled (SSL should be enabled on SOA server)
    3. You should configure wallet at 10g side to contain trust cert of 11g server
    Regards,
    Anuj

  • 500 internal server error when trying to create users

    I am getting a 500 internal server error when trying to create users. What is the cause? We tried reinstalling the latest java jdk release and that didn't help.

    Check whether your DBControl or ASControl service is still running or crashed. EM is not able to connect to the Management Server.
    For instance in Windows, you may see that the Servise is not started. Then check for error logs in $ORACLE_HOME/sysman/logs for any related error messages in the log files

  • Get error message could not create library/application support

    get error message "could not create library/application support" when trying to install Creative Cloud.

    Check your user permissions on the Library folder.
    Mylenium

  • I get an error message trying to open App Store. I tried reinstallingthe v10.6.7 combo update. It did not help. Any ideas?

    I get an error message trying to open App Store. I tried reinstallingthe v10.6.7 combo update. It did not help. Any ideas?

    Process:         App Store [841]
    Path:            /Applications/App Store.app/Contents/MacOS/App Store
    Identifier:      com.apple.appstore
    Version:         1.0.1 (63)
    Build Info:      Firenze-630000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [115]
    Date/Time:       2011-05-07 17:03:00.804 -0400
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          145504 sec
    Crashes Since Last Report:           49
    Per-App Interval Since Last Report:  46 sec
    Per-App Crashes Since Last Report:   49
    Anonymous UUID:                      E3951867-2697-467B-A295-1ECB29108EF1
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    *** Terminating app due to uncaught exception 'CIKernelNilArgument', reason: 'CISourceInCompositing: sourceIn: nil value for argument #1 (dst)'
    *** Call stack at first throw:
              0   CoreFoundation                      0x00007fff846bd7b4 __exceptionPreprocess + 180
              1   libobjc.A.dylib                     0x00007fff862f40f3 objc_exception_throw + 45
              2   CoreFoundation                      0x00007fff846bd5d7 +[NSException raise:format:arguments:] + 103
              3   CoreFoundation                      0x00007fff846bd564 +[NSException raise:format:] + 148
              4   QuartzCore                          0x00007fff87dddd17 -[CIKernel apply:to:params:] + 232
              5   QuartzCore                          0x00007fff87dddb40 -[CIKernel apply:to:options:] + 343
              6   QuartzCore                          0x00007fff87ddd9e7 -[CIFilter apply:] + 214
              7   QuartzCore                          0x00007fff87de03bb -[CISourceInCompositing outputImage] + 246
              8   Foundation                          0x00007fff87340488 -[NSObject(NSKeyValueCoding) valueForKey:] + 420
              9   QuartzCore                          0x00007fff87dd9e5c -[CIFilter valueForKey:] + 39
              10  App Store                           0x0000000100025d76 0x0 + 4295122294
              11  App Store                           0x000000010001d610 0x0 + 4295087632
              12  App Store                           0x000000010001da65 0x0 + 4295088741
              13  AppKit                              0x00007fff82d62c49 -[NSView _drawRect:clip:] + 3390
              14  AppKit                              0x00007fff82d618bc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1325
              15  AppKit                              0x00007fff82d61c26 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
              16  AppKit                              0x00007fff82d86bea -[NSToolbarItemViewer _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 301
              17  AppKit                              0x00007fff82d61c26 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
              18  AppKit                              0x00007fff82d61c26 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
              19  AppKit                              0x00007fff82d61c26 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
              20  AppKit                              0x00007fff82d5ff8e -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 767
              21  AppKit                              0x00007fff82d5fab0 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
              22  AppKit                              0x00007fff82d5c362 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
              23  AppKit                              0x00007fff82cd5b9a -[NSView displayIfNeeded] + 969
              24  AppKit                              0x00007fff82c8771a -[NSWindow _setFrameCommon:display:stashSize:] + 1895
              25  AppKit                              0x00007fff82c9dadc -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 787
              26  AppKit                              0x00007fff82c9d77a -[NSWindow orderWindow:relativeTo:] + 94
              27  AppKit                              0x00007fff82c69770 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1726
              28  AppKit                              0x00007fff82c6788d loadNib + 226
              29  AppKit                              0x00007fff82c66f9d +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 763
              30  AppKit                              0x00007fff82c66bd2 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 326
              31  AppKit                              0x00007fff82c64153 NSApplicationMain + 279
              32  App Store                           0x0000000100001a1c 0x0 + 4294973980
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff88ec95d6 __kill + 10
    1   libSystem.B.dylib                       0x00007fff88f69cd6 abort + 83
    2   libstdc++.6.dylib                       0x00007fff801f45d2 __tcf_0 + 0
    3   libobjc.A.dylib                         0x00007fff862f7d29 _objc_terminate + 100
    4   libstdc++.6.dylib                       0x00007fff801f2ae1 __cxxabiv1::__terminate(void (*)()) + 11
    5   libstdc++.6.dylib                       0x00007fff801f2b16 __cxxabiv1::__unexpected(void (*)()) + 0
    6   libstdc++.6.dylib                       0x00007fff801f2bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    7   libobjc.A.dylib                         0x00007fff862f4192 object_getIvar + 0
    8   com.apple.CoreFoundation                0x00007fff84715969 -[NSException raise] + 9
    9   com.apple.AppKit                        0x00007fff82c879dc -[NSWindow _setFrameCommon:display:stashSize:] + 2601
    10  com.apple.AppKit                        0x00007fff82c9dadc -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 787
    11  com.apple.AppKit                        0x00007fff82c9d77a -[NSWindow orderWindow:relativeTo:] + 94
    12  com.apple.AppKit                        0x00007fff82c69770 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1726
    13  com.apple.AppKit                        0x00007fff82c6788d loadNib + 226
    14  com.apple.AppKit                        0x00007fff82c66f9d +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 763
    15  com.apple.AppKit                        0x00007fff82c66bd2 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 326
    16  com.apple.AppKit                        0x00007fff82c64153 NSApplicationMain + 279
    17  com.apple.appstore                      0x0000000100001a1c 0x100000000 + 6684
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff88e9412a kevent + 10
    1   libSystem.B.dylib                       0x00007fff88e95ffd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff88e95cd4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff88e957fe _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff88e95128 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff88e94fc5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff88e94f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff88e9535c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff88e94fc5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff88e94f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff88e9535c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff88e94fc5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff711552d8  rcx: 0x00007fff5fbff378  rdx: 0x0000000000000000
      rdi: 0x0000000000000349  rsi: 0x0000000000000006  rbp: 0x00007fff5fbff390  rsp: 0x00007fff5fbff378
       r8: 0x00007fff71158a40   r9: 0x0000000000000063  r10: 0x00007fff88ec5616  r11: 0x0000000000000202
      r12: 0x00007fff84742b09  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000001
      rip: 0x00007fff88ec95d6  rfl: 0x0000000000000202  cr2: 0x00007fff70055fd0
    Binary Images:
           0x100000000 -        0x100044fff  com.apple.appstore 1.0.1 (63) <0AC57744-4504-88C0-AAF1-C3A10BAAA06E> /Applications/App Store.app/Contents/MacOS/App Store
           0x100065000 -        0x10018bfff  com.apple.CommerceKit 1.0 (60.2) <A0754534-B2DE-605F-0CEE-3036DE52AE7D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld
        0x7fff801a8000 -     0x7fff80225fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff8026f000 -     0x7fff80eeafef  com.apple.WebCore 6533.21 (6533.21.1) <A7433C61-B507-BDB0-9CA8-1A3A2A699B2F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff80f01000 -     0x7fff80f05ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <49E6AF5D-AF9B-67CF-A6B8-C79F6BA8A627> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff80f06000 -     0x7fff80f1cfef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff80f1d000 -     0x7fff80f6cfef  libTIFF.dylib ??? (???) <F0F7F0B7-7253-F88F-9E2D-FA3770143758> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff80f6d000 -     0x7fff812a1fff  com.apple.CoreServices.CarbonCore 861.34 (861.34) <B5680539-CB31-6C6D-C0AD-606D4D46E7F5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff81359000 -     0x7fff81423ff7  com.apple.installframework 595 (595.1) <4803A535-192D-FB89-1A9F-CD1611E61910> /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install
        0x7fff81424000 -     0x7fff81465ff7  com.apple.MediaKit 10.4 (486) <5ABA1213-744C-5C65-CA8E-84BE866DB7B4> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff815bd000 -     0x7fff815f9fe7  libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <1E041185-131C-C237-C250-38BE933A269A> /usr/lib/libcurl.4.dylib
        0x7fff81630000 -     0x7fff81820fef  com.apple.JavaScriptCore 6533.20 (6533.20.20) <5626170D-00AE-33B1-03FF-256E9794150D> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff81845000 -     0x7fff818c4fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1CF0AE2D-0E85-D41B-EC2D-8CFD298AB5A0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff818c5000 -     0x7fff8199dfe7  com.apple.DiscRecording 5.0.8 (5080.4.1) <41A9AC05-7247-599C-7CED-89BACB63CDB6> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8199e000 -     0x7fff819d8fff  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
        0x7fff819d9000 -     0x7fff81aabfe7  com.apple.CFNetwork 454.11.12 (454.11.12) <B1C9008A-4A5D-609D-5D10-C93DAD6FFB4C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff81aac000 -     0x7fff81abbfff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff81abc000 -     0x7fff81acdff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff81ace000 -     0x7fff822d8fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8233a000 -     0x7fff82346fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
        0x7fff82347000 -     0x7fff8242dfef  com.apple.DesktopServices 1.5.10 (1.5.10) <B7E00D85-F971-D85B-0217-482E15E9E924> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8242e000 -     0x7fff8243bfe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <45B5B514-7CEB-38A9-F34A-1D96F010EC42> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8243c000 -     0x7fff824f1fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff824fa000 -     0x7fff82522fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff82523000 -     0x7fff82583fe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff826ef000 -     0x7fff829edfff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff82c62000 -     0x7fff83658fff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff83659000 -     0x7fff8368cfff  libTrueTypeScaler.dylib ??? (???) <6EFBF3B7-E4D5-E6AE-5A7D-22F37E288737> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8368d000 -     0x7fff8368dff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff83695000 -     0x7fff8372fff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <55B528A6-0C88-6CB8-152B-A34A440FACFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff83730000 -     0x7fff8373dff7  com.apple.AppleFSCompression 24.4 (1.0) <DDA39C71-6379-2844-B217-2995B61EA768> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8373e000 -     0x7fff838bcff7  com.apple.WebKit 6533.21 (6533.21.1) <E954BB9E-51DC-9B68-5312-E1507329A9B3> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff838bd000 -     0x7fff838bffff  libRadiance.dylib ??? (???) <73257486-8E94-E758-1A5A-5B521F27EE12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff83e15000 -     0x7fff83e15ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff83e16000 -     0x7fff83e4bff7  com.apple.DiskManagement 3.4 (355) <E362D004-EFC9-A0FD-DFD6-EB0B697927D7> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff83e4c000 -     0x7fff83e6dfff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff83e6e000 -     0x7fff83f85fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff840b6000 -     0x7fff840b6ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff840b7000 -     0x7fff840cdfe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <F006B2C9-C03F-F863-1FBB-952EC77AE699> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff840ce000 -     0x7fff840fdfff  com.apple.framework.Admin 4.5 (4.5) <8F5A3803-7C4F-16DA-1B74-B9A1EF92614B> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff841f0000 -     0x7fff8421bff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff8421c000 -     0x7fff84264ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff84265000 -     0x7fff8426aff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff843d8000 -     0x7fff8450dff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <AFAB42A2-A3A8-83D8-D583-613625706690> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8450e000 -     0x7fff845c7fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff8460c000 -     0x7fff84783fe7  com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff84784000 -     0x7fff84789fff  libGIF.dylib ??? (???) <1B9DCB7F-CD1D-B23F-8AC6-5292B94A4D0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8478a000 -     0x7fff8478bff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8478c000 -     0x7fff847a5fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff847a6000 -     0x7fff84868fef  libFontParser.dylib ??? (???) <363E2A8A-CEFE-9A74-E677-C240B27A4FC6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff84869000 -     0x7fff84869ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff848cd000 -     0x7fff8496dfff  com.apple.LaunchServices 362.2 (362.2) <87E172DB-2C0E-E2E5-2A75-FB4284AECDAF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff849d7000 -     0x7fff849d7ff7  com.apple.Carbon 150 (152) <C0E61968-57F3-6EE1-8524-32A18955BAF0> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff849d8000 -     0x7fff84a2dff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff84a3a000 -     0x7fff84bf8fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2C6ECACF-CD56-1714-6F63-CB6F5EE7A1E2> /usr/lib/libicucore.A.dylib
        0x7fff84bf9000 -     0x7fff84c77ff7  com.apple.CoreText 3.151.8 (???) <5DCD6BD9-63FB-767E-5993-5AEBE890145B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff84c78000 -     0x7fff84c87fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff84c88000 -     0x7fff84cd1ff7  com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff84ce6000 -     0x7fff84e9efef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <EFB373AE-FE02-40C4-ABDC-09D61AFD25EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff84f98000 -     0x7fff84f98ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff84f99000 -     0x7fff84f9cff7  com.apple.securityhi 4.0 (36638) <EABABBA8-AB59-599A-1884-0010C059DE62> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff84f9d000 -     0x7fff84fdafff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff84fdb000 -     0x7fff84feffff  libGL.dylib ??? (???) <0FA671EB-6FA0-BA97-C00A-C42247C22B26> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff84ff0000 -     0x7fff84ff4ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff84ff5000 -     0x7fff8502efef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <F8E0672F-C0B4-B161-E50D-A1405D14F21C> /usr/lib/libcups.2.dylib
        0x7fff8502f000 -     0x7fff85044ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff85045000 -     0x7fff850f5fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff850f6000 -     0x7fff85137fff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff85138000 -     0x7fff8557bfef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8557c000 -     0x7fff859a7fef  com.apple.RawCamera.bundle 3.6.4 (561) <C4AB0054-B2C8-246E-0F17-98F4BD5BE94C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff859a8000 -     0x7fff85aa8fef  com.apple.DiskImagesFramework 10.6.5 (289) <B4C7A42F-241C-F3C7-8977-18B620CB66D9> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff85aa9000 -     0x7fff85bcafe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff85bcb000 -     0x7fff85bddfe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff85c62000 -     0x7fff85c7dff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff85c8d000 -     0x7fff85cd7ff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff86016000 -     0x7fff8603cfe7  libJPEG.dylib ??? (???) <AD42F658-7C32-EEE5-8341-A8EE6476BF46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8603d000 -     0x7fff8607aff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8607b000 -     0x7fff860beff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <2C596A24-8B86-79D6-1A8E-5E8FFB6A1558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff860bf000 -     0x7fff8610eff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff86118000 -     0x7fff8611dfff  libGFXShared.dylib ??? (???) <878C429B-44D4-875C-1A35-4FD8C6152695> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8611e000 -     0x7fff86159fff  com.apple.AE 496.4 (496.4) <55AAD5CA-7160-7899-1C68-562ED8160DF7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8615a000 -     0x7fff8615bff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <BE4E577D-87EC-8FD0-5341-AE99CE4ADC99> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8615c000 -     0x7fff8621dfef  com.apple.ColorSync 4.6.6 (4.6.6) <EC6C8119-23F6-A96E-47A3-5CD31E462AE3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff862ea000 -     0x7fff863a0fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <99CB3A0F-64CF-1D16-70CD-8AED2EF06C30> /usr/lib/libobjc.A.dylib
        0x7fff863b3000 -     0x7fff863fcfef  libGLU.dylib ??? (???) <0FCD57C5-D7AA-F2DD-D2EC-C1C8B931F65C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff863fd000 -     0x7fff86411ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff86428000 -     0x7fff86459fff  libGLImage.dylib ??? (???) <6925991A-9B1B-B9FA-645A-807F9BCC3DE7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8645a000 -     0x7fff8649bfef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff86707000 -     0x7fff86708fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff86709000 -     0x7fff8672eff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8672f000 -     0x7fff8686dfff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8686e000 -     0x7fff868c0ff7  com.apple.HIServices 1.8.2 (???) <80D63B54-3F43-080C-038A-70038D9AF325> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff868c1000 -     0x7fff86919fff  com.apple.PackageKit 1.1.1 (90.2) <8233491E-BF22-0170-64F1-51FD02C22008> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff8691a000 -     0x7fff86929fff  com.apple.opengl 1.6.12 (1.6.12) <29482652-1E44-1C47-428F-1209AA65336D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff86972000 -     0x7fff86992ff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff86be5000 -     0x7fff86c1ffff  com.apple.bom 10.0 (164) <E5C9AFBD-68C1-197E-72B0-B43295DC87DC> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff86c2e000 -     0x7fff86c31fff  com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff86c32000 -     0x7fff86c3dfff  com.apple.CrashReporterSupport 10.6.7 (258) <BB0B9A08-6CEC-0500-5BD1-C18E1465E406> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff86c3e000 -     0x7fff86c54fff  com.apple.ImageCapture 6.0.2 (6.0.2) <06E4103B-9BE4-7EAD-B532-89FC5EB06ED4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff86c55000 -     0x7fff86d12fff  com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff86d1d000 -     0x7fff86d40fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff86edb000 -     0x7fff86eddfff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff86ef7000 -     0x7fff8717ffef  com.apple.security 6.1.2 (55002) <015C9A08-3D07-9462-8E91-DB1924349621> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff871bb000 -     0x7fff872d4fef  libGLProgrammability.dylib ??? (???) <C4BB281B-629D-08ED-2991-3D51671B0B02> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff872d5000 -     0x7fff872dbff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff872dc000 -     0x7fff87323ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87324000 -     0x7fff875a7fe7  com.apple.Foundation 6.6.6 (751.53) <476E617B-B59B-53DE-991D-98C1993BCBCE> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff878ec000 -     0x7fff878f3fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff878f4000 -     0x7fff87902ff7  libkxld.dylib ??? (???) <F90EDFE8-708A-3046-E403-A3B536FCFA43> /usr/lib/system/libkxld.dylib
        0x7fff87952000 -     0x7fff8796fff7  libPng.dylib ??? (???) <0C232C1E-49C8-F7A9-9634-DF2BDA1AB722> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8798c000 -     0x7fff87997ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff87998000 -     0x7fff87a02fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff87a03000 -     0x7fff87a4ffff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff87dc7000 -     0x7fff88164fe7  com.apple.QuartzCore 1.6.3 (227.36) <6FD8E129-135E-2F89-E9F0-A3CD0C6FCEF1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff883a1000 -     0x7fff883a7ff7  com.apple.CommerceCore 1.0 (9) <4C66D962-91B5-F25C-A6FF-DFD5F924A0DD> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff883a8000 -     0x7fff88485fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff88589000 -     0x7fff8860eff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8860f000 -     0x7fff8869ffff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff886a0000 -     0x7fff886abff7  com.apple.bsd.ServiceManagement 1.3 (1.3) <CEB99ECF-4C55-C3DF-EE64-35903BF7B690> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff886ac000 -     0x7fff886b2fff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <C863C133-EA3E-5403-FC44-FDC9F236DC98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff886ef000 -     0x7fff88dec06f  com.apple.CoreGraphics 1.545.0 (???) <F0A5F62D-4C66-5B1F-4F13-322932915901> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff88ded000 -     0x7fff88e79fef  SecurityFoundation ??? (???) <8A74D45E-9FE9-DD58-42F5-C7474FFDD0C1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff88e7a000 -     0x7fff8903bfff  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
        0x7fff89046000 -     0x7fff89047ff7  libScreenReader.dylib ??? (???) <D3F1AD64-E49E-D3D5-012C-676429061F83> /usr/lib/libScreenReader.dylib
        0x7fff89048000 -     0x7fff89048ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff89049000 -     0x7fff8904fff7  IOSurface ??? (???) <6AF28EC1-BCC4-9F65-AF7D-ABE60B91072A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff890ed000 -     0x7fff890f0ff7  libCoreVMClient.dylib ??? (???) <00C97B96-8D3B-45EB-F503-DB49712DC42D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.06 GHz, 4 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.5
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD5000AAKS-40V6A0, 465.76 GB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000
    USB Device: USB Audio CODEC, 0x08bb  (Texas Instruments Japan), 0x2900, 0xfd140000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd110000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000
    USB Device: Hub, 0x0409  (NEC Corporation), 0x005a, 0xfa130000
    USB Device: deskjet 3500, 0x03f0  (Hewlett Packard), 0x7304, 0xfa131000
    USB Device: IEEE-1284 Controller, 0x067b  (Prolific Technology, Inc.), 0x2305, 0xfa134000
    USB Device: EPSON Scanner, 0x04b8  (Seiko Epson Corp.), 0x0131, 0xfa132000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa120000
    FireWire Device: OEM ATA Device 00, G-TECH, Up to 800 Mb/sec

  • Error message: " Couldn't create Java Virtual Machine"

    Hi,
    I recently downloaded from IBM rational application developer for websphere software v 7.5. The installation was successful. But when I try to open it, the error message:"could not create the Java virtual Machine".
    I am working on Windows Xp pro. and java is automatically updated the current version jre 1.6/
    even I tried to run eclipse from the directory c:/programfiles/IBM/SDP still same problem.
    Please some one help me how to fix it.
    Thanks.

    Do you resolve the problem? If so what was the fix?
    I have been getting the Java Virtual Machine Launcher error message “Could not create the virtual machine” when attempting to run an Oracle application that uses JNLP via a browser. Even clicking on componets such as javaw.exe produces the error message. In conjunction with receiving the error message, the application that I am working with will not launch.
    I had JRE 5u10 and J2RE 1.4.2u13 installed and thought that installing JDK 5u17 may resolve the issue. I removed JRE 5u10 and J2RE 1.4.2u13 and installed JDK 5u17 (and the included JRE 5u17.) The error message was still there.
    I have unistalled (via Add/Remove programs) and reinstalled (via both Win off-line and on-line) JDK 5u17 and JRE 5u17 many times.
    During the uninstalls I have received a Java Web Start 1.5.0_17 bad installation – error invoking JVM error message.
    I have restarted the machine also.
    There are some remains of J2RE 1.4.2u13 still on the machine –even after the 1.4.2u13 uninstall. The Java\j2re1.4.2_13\lib folder remains.
    I am running Win XP SP2 and IE6 SP2.
    Note: I cannot use Java 6 since the application that I am working with is Java 5 based.

Maybe you are looking for

  • Two different projects spliced together over each other some how?

    Greetings everyone, I thought forum users might be interested in this one. I don't use the forum often so I don't know the history but has anybody ever had two different projects spliced together over each other some how? For example, I was tweaking

  • OSM 7.0.3 PIP Error in SIEntryPoint.Xquery

    Hi All, I have created one new function component and in SIENTRY Point.Xquery, i am getting below error:- or in #...pdateOrder($automator, "false"#: Variable $automator has not been declared. . File[null (actual location resolved to [])] Line[186] Co

  • Issue in Importing Cleansing package in to Repository through Repo Manager

    Hi, For using Data Quality, we have installed the cleansing package installble into our server. It has created all the ZIP/DAT Files in to the ...DataQuality\Datacleanse directory. After that while importing into Metadata through Repository Manager,

  • Vector fingerprint

    Im trying to make a vector fingerprint, a simple one. I´ve always used the pen tool before for making things like that, but the result im getting every time is just an uneven fingerprint with a lot of edges, any tips?

  • Can any one tell me where I can find the methodtracer class

    I am trying to compile the Bean Box withing the BDK and have got to a stage where I can not compile further because I am missing the class MethodTracer. Does anyone know where I can find this class. Thank you