Arabic XML reports running slowly

Dear All,
We are currently on 11.5.10.2.
We recently migrated our DB character set to AR8MSWIN1256.
There are some custom Arabic reports in the HR module. These are XML based. All the Arabic reports are taking long time to open the parameter form.
Please help to resolve the problem.
Regards,
Abid

All the Arabic reports are taking long time to open the parameter form.Enable trace to find out why it takes that long.

Similar Messages

  • My application's page(sql report) run slowly

    Hi,All
    I have a apex with 3.2.1 version, on my WIN7 OS.
    The application can run normally,
    But sometimes the page sumbit very slowly,about need waiting 2 or 3 minutes (Most of time it runs normal)
    My reports is sql report, and not complicacy.
    These reports all connect remote db,and general select only 1-8 tables
    So i want to ask why they runs slowly
    Any one help me ,very thanks.
    saven

    Hi,Jari
    Apex version is apex 3.2.1
    Database version and release 11G release2
    server architecture i think is embedded PL/SQL.
    My apex address is here ----http://localhost:8080/apex/f?p=4550:1:3085321679475823::::FSP_AFTER_LOGIN_URL:\f?p=4500|1000|84584318503228\
    one of error is : IBMPC/WIN_NT-8.1.0
    expect your help
    saven

  • After analyze report run slowly!!

    Dear all,
    please help me how is it happen
    I run this in sql
    DBMS_Stats.Gather_Schema_Stats('user');
    and i expect the performance will be better than before but the real world the report was tak 30 sec it take now 15 minute (not all report but tow only)
    i want to resolve this problem
    thanx

    still report is slowly but now i put the query and execution plan may be I have to modify the query
    -----the query is-----------
    SELECT
    W.ORG, W.BRN, W.GDEPT, W.SITE, W.DIV, W.BRD,
    W.MGR,
    W.RESERVDATE,
    W.BOOKEDBY,
    W.REPDUR,
    W.RESERVNO RESERVNO,
    SUBSTR(W.RESERVNO, 1, 1) RESORD,
    W.CUSTNAME,
    W.PHONE,
    W.MDL,
    W.REGNO,
    W.SERVICE,
    W.REPAIRDESC,
    W.APPOINTMENT,
    W.TEAM,
    W.ARRTIME,
    W.COLTIME,
    W.JOBNO,
    W.DELY,
    W.READYTIME,
    W.DELVTIME,
    W.CANCELTIME,
    DECODE(W.STATUS,'A','Active','C','Cancel',w.status) Status,
    S.ENAME SERVKM,
    T.DES,
    -- C.COM_TY_CODE COM_CAT,
    RC.COMP_CODE COMP_CODE,
    CA.COM_TY_CODE C_CAT,
    RC.REMARK,
    'WWW' W
    FROM WS_WORK_LOADING W, WS_RESERV_COMPLAINTS RC, CC_SERVICES S, WS_TEAMS T, WS_COMPLAINTS CA
    WHERE
    RC.COMP_CODE = CA.COM_CODE(+)
    AND W.ORG = RC.ORG(+)
    AND W.BRN = RC.BRN(+)
    AND W.SITE = RC.SITE(+)
    AND W.GDEPT = RC.GDEPT(+)
    AND W.RESERVNO = RC.RESERVNO(+)
    --SERVICE || W_LOADING
    AND S.BRD(+) = W.BRD
    AND S.DIV(+) = W.DIV
    AND S.DOP_CODE(+) = W.SERVICE
    AND S.MDL(+) = W.MDL
    AND S.MGR(+) = W.MGR
    --W_LOADING || TEAMS
    AND W.ORG = T.ORG
    AND W.BRN = T.BRN
    AND W.GDEPT = T.GDEPT
    AND W.SITE = T.SITE
    AND W.TEAM = T.CODE
    -- PARAMETERS
    AND W.ORG = :P_ORG
    AND W.BRN = :P_BRN
    AND W.GDEPT = :P_GDEPT
    AND W.SITE = :P_SITE
    AND(
    APPOINTMENT BETWEEN TO_DATE(:P_FROM_H,'DD-MM-YYYY HH12-MI AM') AND TO_DATE(:P_TO_H,'DD-MM-YYYY HH12-MI AM')
    OR(
    (W.ORG, W.BRN, W.SITE,W.JOBNO) IN (SELECT JB.ORG,JB.BRN,JB.SITE,JB.JOBNO FROM WS_JOBS JB WHERE JB.JST_TYP='1' AND SUBSTR(JB.RESERVNO,1,1) = 'N')
    AND (APPOINTMENT BETWEEN TO_DATE(:P_FROM_H,'DD-MM-YYYY HH12-MI AM') AND TO_DATE(:P_TO_H,'DD-MM-YYYY HH12-MI AM') AND DELVTIME IS NULL AND STATUS <> 'C')
    OR (DELVTIME BETWEEN TO_DATE(:P_FROM_H,'DD-MM-YYYY HH12-MI AM') AND TO_DATE(:P_TO_H,'DD-MM-YYYY HH12-MI AM'))
    AND (APPOINTMENT BETWEEN TO_DATE(:P_FROM_H,'DD-MM-YYYY HH12-MI AM') AND TO_DATE(:P_TO_H,'DD-MM-YYYY HH12-MI AM')) --*******
    OR (APPOINTMENT BETWEEN TO_DATE(:P_FROM_H,'DD-MM-YYYY HH12-MI AM') AND TO_DATE(:P_TO_H,'DD-MM-YYYY HH12-MI AM') )
    AND CANCELTIME BETWEEN TO_DATE(:P_FROM_H,'DD-MM-YYYY HH12-MI AM') AND TO_DATE(:P_TO_H,'DD-MM-YYYY HH12-MI AM')
    ORDER BY
    SUBSTR(RESERVNO, 1, 1) DESC,
    TO_CHAR(W.APPOINTMENT,'yyyymmdd') DESC ,
    TO_CHAR(W.APPOINTMENT,'HH12:MI AM')
    ----------end of query----------------------
    and the executio plan is
    Step     Description
    1     Rows were retrieved using the index WL_SIT_FK_INDXX
    2     Rows from table WS_WORK_LOADING were accessed using rowid got from an index
    3     Rows were retrieved by performing a sequential read of all index records in W_D_O_INDX3
    4     Rows were retrieved using the unique index OP_PK
    5     For each row retrieved by step 3, the operation in step 4 was performed to find a matching row
    6     VIEW PUSHED PREDICATE was performed on CC_SERVICES
    7     For each row returned by step 2 get the matching row from step 6 If there are not matching rows from step 6 return nulls for those columns
    8     Rows were retrieved using the unique index TM_PK
    9     Rows from table WS_TEAMS were accessed using rowid got from an index
    10     For each row retrieved by step 7, the operation in step 9 was performed to find a matching row
    11     Rows were retrieved using the index WS_RESERV_COMP_PK
    12     Rows from table WS_RESERV_COMPLAINTS were accessed using rowid got from an index
    13     For each row returned by step 10 get the matching row from step 12 If there are not matching rows from step 12 return nulls for those columns
    14     Rows were retrieved using the unique index WS_COMPLAINTS_PK
    15     Rows from table WS_COMPLAINTS were accessed using rowid got from an index
    16     For each row returned by step 13 get the matching row from step 15 If there are not matching rows from step 15 return nulls for those columns
    17     Rows were retrieved using the unique index JOB_PK
    18     Rows from table WS_JOBS were accessed using rowid got from an index
    19     For the rows returned by step 16 filter out rows depending on the results returned by step 18
    20     The results where sorted to support the ORDER BY clause
    21     Rows were returned by the SELECT statement
    many thanx

  • Crystal Report Running Slowly

    Hi Guys,
    I am facing  a problem while running crystal reports in SAP B1 8.8.
    When i run any crystal report within SAP  it is taking so much time to display the output (say  nearly a Minute). But if a run the PLD means then i am getting the output with in  seconds.So  if any of u guys  faced this probelm means pl tell me any solution ???
    Regards,
    P.V

    Hi Vamsi
    The slowness of your report might be because when you design the report and if you tried to print it then the path of your local printer will get saved within your report file. When you add this report to a distant database and try to load the report , the report will try to find this local printer path saved in it. This I think makes the report to load very slowly.
    So what You should do is that while designing your report you got to your page setup and check the "No Printer" option on the top.
    Vivek
    Edited by: viveksr on Sep 2, 2011 7:08 AM

  • Arabic numbers issue in XML Report

    Dear Experts,
    I have one arabic xml report, when i ran the report it showing english numbers, instead of arabic numbers.But in the output i should get arabic numbers.
    Please find the attachment of xml template and output.
    could any one help me on this, its urgent.
    Thanks in advance.
    Best Regards
    Amar

    Dear Experts,
    I have one arabic xml report, when i ran the report it showing english numbers, instead of arabic numbers.But in the output i should get arabic numbers.
    Please find the attachment of xml template and output.
    could any one help me on this, its urgent.
    Thanks in advance.
    Best Regards
    Amar

  • XML Report with EXCEL output errors out intermittently

    Hi Gurus,
    We have a custom XML report running for a particular user for whom it is failing intermittently.
    The program does not return any error in log file.
    I also checked the OPP log file but coud not find any issues / errors.
    But Standard manager log file has the below error when the request fails :
    Process monitor session started : 14-SEP-2012 10:25:30*
    Found running request 2823013 attached to dead manager process.*
    Setting request status to completed.*
    fdugpi has recovered SRW driver value*
    Found dead process: spid=(3076), cpid=(236068), ORA pid=(65), manager=(0/0)*
    Starting STANDARD Concurrent Manager               : 14-SEP-2012 10:25:31*
    Process monitor session ended : 14-SEP-2012 10:25:31*
    Please help me out to figure out what is the issue here. Also the standard manager process has died and got restarted.
    We are on 12.1.3 application version with 11gR1 database
    Regards,
    Ram

    You can use BI publisher for your requirement -
    Create a Concurrent program which is based on the executable 'XDODTEXE'
    The Short_Name of the concurrent program should be the same as the data_definition short_name from Xml Publisher responsibility.
    You can go through the link provided by Alex for creating the UI Template and the data template.
    Cheers,
    VB

  • XML Report in Arabic login in Oracle apps

    Hi,
    I have created a XML report in Oracle apps, the data is coming properly from english login.
    But when we login from Arabic Login then report does not show any data.
    The data does not come even after hard coding the values.
    Any clue for the issue..
    Below is the main query in the report.
    SELECT
    PAC1.PAYROLL_ID ,
    PAC1.PAYROLL_ACTION_ID ,
    HR_PAYROLLS.DISPLAY_PERIOD_NAME(PAC1.PAYROLL_ACTION_ID) PERIOD_NAME,
    PRO.PAYROLL_NAME
    ,TO_CHAR(SYSDATE,'DD-MM-YYYY') REPORT_DATE1
    FROM pay_payrolls_f pro,
    pay_payroll_actions pac1
    ,PER_TIME_PERIODS_V V
    WHERE pac1.payroll_id = pro.payroll_id (+)
    AND pac1.effective_date BETWEEN pro.effective_start_date (+) AND pro.effective_end_date (+)
    AND DECODE( PAC1.ACTION_TYPE, 'H', NVL(pay_payroll_actions_pkg.decode_cheque_type(pac1.business_group_id), HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE', PAC1.ACTION_TYPE)), 'T', DECODE(instrb(PAC1.LEGISLATIVE_PARAMETERS,'SLA_MODE=Y'), 0, HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER', 'GL'), NULL, HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER', 'GL'), HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER', 'SLA')) , HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE', PAC1.ACTION_TYPE)) = 'Run'
    AND PAC1.Payroll_id = 61--:P_PAYROLL_ID
    AND PAC1.time_period_id = V.time_period_id
    AND to_char(v.start_date,'MM-YYYY') = '01-2013'--:P_MONTH

    in the next time use EBS related forums - https://forums.oracle.com/forums/category.jspa?categoryID=3
    BTW
    looks like that for Arabic language you haven't some data
    in your main query you have PER_TIME_PERIODS_V which based on HR_LOOKUPS which depend on session language
    CREATE OR REPLACE VIEW HR_LOOKUPS
    where FLV.LANGUAGE = userenv('LANG')
    ...so check data in HR_LOOKUPS for Arabic language
    you can check it by query without PER_TIME_PERIODS_V
    also you can modify your main query like
    select t.PAYROLL_ID,
           t.PAYROLL_ACTION_ID,
           t.PERIOD_NAME,
           t.PAYROLL_NAME,
           t.REPORT_DATE1
      from (SELECT PAC1.PAYROLL_ID,
                   PAC1.PAYROLL_ACTION_ID,
                   HR_PAYROLLS.DISPLAY_PERIOD_NAME(PAC1.PAYROLL_ACTION_ID) PERIOD_NAME,
                   PRO.PAYROLL_NAME,
                   TO_CHAR(SYSDATE, 'DD-MM-YYYY') REPORT_DATE1,
                   PAC1.time_period_id
              FROM pay_payrolls_f pro, pay_payroll_actions pac1
             WHERE pac1.payroll_id = pro.payroll_id(+)
               AND pac1.effective_date BETWEEN pro.effective_start_date(+) AND
                   pro.effective_end_date(+)
               AND DECODE(PAC1.ACTION_TYPE,
                          'H',
                          NVL(pay_payroll_actions_pkg.decode_cheque_type(pac1.business_group_id),
                              HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE',
                                                       PAC1.ACTION_TYPE)),
                          'T',
                          DECODE(instrb(PAC1.LEGISLATIVE_PARAMETERS, 'SLA_MODE=Y'),
                                 0,
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'GL'),
                                 NULL,
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'GL'),
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'SLA')),
                          HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE',
                                                   PAC1.ACTION_TYPE)) = 'Run'
               AND PAC1.Payroll_id = 61 --:P_PAYROLL_ID
            ) t
      left outer join PER_TIME_PERIODS_V V
        on (t.time_period_id = V.time_period_id AND
           to_char(v.start_date, 'MM-YYYY') = '01-2013' --:P_MONTH
           )

  • How to run an XML Report from Oracle Forms 10G

    Hello Friends,
    I am in need of showing a xml report output through a button press trigger in Oracle Forms10G.
    I have designed the report in XML Publisher and the report looks fine.I found few scripts useful in running the Oracle Report from Oracle forms10G like Run_Report_Object.But I am not aware of any script that could run a XML report and show the output directly from a Form.
    All I want is to run a XML report from an Oracle Form with a button press trigger and show the output in an html version.
    Can this be achieved?
    If so, Kindly advise as this is an immediate work.
    Regards,
    Badrul.

    Hi,
    If I am not wrong the XML publisher is same as BI publisher ...
    There is one document which explains how to integrate using web service
    You want to check this
    http://www.oracle.com/technology/products/xml-publisher/docs/Forms_BIP_v22.pdf
    or you can also try web.show_document ..

  • My MacBook Pro is running slowly. I run Mountain Lion on it.  I received the following report from Etrecheck.  Can someone help me decipher it and provide me with steps to fix the slow speed?

    My MacBook Pro is running slowly. I run Mountain Lion on it.  I received the following report from Etrecheck.  Can someone help me decipher it and provide me with steps to fix the slow speed?
    Problem description:
    slow computer
    EtreCheck version: 2.0.11 (98)
    Report generated November 15, 2014 2:57:16 PM EST
    Hardware Information: ℹ️
      MacBook Pro (15-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,1
      1 2.3 GHz Intel Core i7 CPU: 4-core
      4 GB RAM
      BANK 0/DIMM0
      2 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 4000 - VRAM: 384 MB
      NVIDIA GeForce GT 650M - VRAM: 512 MB
      Color LCD 1440 x 900
    System Software: ℹ️
      OS X 10.8.5 (12F45) - Uptime: 6 days 7:45:47
    Disk Information: ℹ️
      TOSHIBA MK5065GSXF disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      disk0s1 (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 499.25 GB (25.67 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      HL-DT-ST DVDRW  GS31N 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
      Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Applications/Rowmote Helper.app
      [loaded] com.regularrateandrhythm.driver.RowmoteIREmu (1.0 - SDK 10.8) Support
      /System/Library/Extensions
      [not loaded] com.smarttech.iokit.SMARTBoard (11) Support
      [not loaded] com.tectona.driver.PL2303 (1.3.0) Support
      [loaded] com.webroot.driver.WebrootSecureAnywhere (54 - SDK 10.7) Support
    Problem System Launch Agents: ℹ️
      [failed] com.apple.accountsd.plist
      [failed] com.apple.AirPlayUIAgent.plist
      [failed] com.apple.coreservices.appleid.authentication.plist
      [failed] com.apple.lookupd.plist
      [failed] com.apple.printtool.agent.plist
      [failed] com.apple.scopedbookmarkagent.xpc.plist
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.coresymbolicationd.plist
      [failed] com.apple.wdhelper.plist
    Launch Agents: ℹ️
      [loaded] com.oracle.java.Java-Updater.plist Support
      [running] com.smarttech.boardservice.plist Support
      [running] com.smarttech.floatingtools.plist Support
      [running] com.smarttech.ink.plist Support
      [running] com.smarttech.SBWDKService.plist Support
      [running] com.smarttech.smartnotification.plist Support
      [running] com.smarttech.systemtrayicon.plist Support
      [running] com.webroot.WRMacApp.plist Support
      [running] com.webroot.WRMacBackNSync.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [running] com.regularrateandrhythm.rowmotehelperaide.plist Support
      [running] com.webroot.security.mac.plist Support
      [running] com.webroot.webfilter.mac.plist Support
    User Launch Agents: ℹ️
      [loaded] com.google.keystone.agent.plist Support
      [running] com.spotify.webhelper.plist Support
    User Login Items: ℹ️
      Garmin Express Service UNKNOWN (missing value)
      iTunesHelper ApplicationHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Dropbox Application (/Applications/Dropbox.app)
      Spotify Application (/Applications/Spotify.app)
      Google Chrome ApplicationHidden (/Applications/Google Chrome.app)
      Rowmote Helper Application (/Applications/Rowmote Helper.app)
    Internet Plug-ins: ℹ️
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
      FlashPlayer-10.6: Version: 15.0.0.223 - SDK 10.6 Support
      npwebroot: Version: 2.0.15 Support
      AdobePDFViewerNPAPI: Version: 11.0.06 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.223 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.06 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.1
      SharePointBrowserPlugin: Version: 14.4.5 - SDK 10.6 Support
      Unity Web Player: Version: UnityPlayer version 4.5.1f3 - SDK 10.6 Support
      Silverlight: Version: 5.1.20513.0 - SDK 10.6 Support
      JavaAppletPlugin: Version: Java 7 Update 51 Check version
    Safari Extensions: ℹ️
      Password Manager
      webfilter
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Flip4Mac WMV  Support
      Java  Support
      SMART Board  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          3% WindowServer
          2% iPhoto
          2% mds
          2% mdworker
          1% Google Chrome
    Top Processes by Memory: ℹ️
      382 MB Mail
      275 MB WebProcess
      107 MB Google Chrome
      103 MB WindowServer
      99 MB Google Chrome Helper
    Virtual Memory Information: ℹ️
      270 MB Free RAM
      1.50 GB Active RAM
      1.30 GB Inactive RAM
      1.22 GB Wired RAM
      20.97 GB Page-ins
      8.64 GB Page-outs

    Hi Linc
    I hope this is what you were after.  Looking forward to hearing your feedback.
    Thanks, Susanna.
    11/16/14 12:36:02.738 PM com.apple.XType.FontHelper[91728]: FontHelper:  message received. (<dictionary: 0x7fbb9b606ce0> { count = 2, contents =
      "query" => <string: 0x7fbb9b605720> { length = 109, contents = "com_apple_ats_name_postscript == "Roboto-Regular" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
      "restricted" => <bool: 0x7fff7912f320>: true
    11/16/14 12:36:02.738 PM com.apple.XType.FontHelper[91728]: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    11/16/14 12:36:02.878 PM com.apple.XType.FontHelper[91728]: FontHelper:  message received. (<dictionary: 0x7fbb9a41d950> { count = 2, contents =
      "query" => <string: 0x7fbb9a41d2e0> { length = 108, contents = "com_apple_ats_name_postscript == "Roboto-Medium" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
      "restricted" => <bool: 0x7fff7912f320>: true
    11/16/14 12:36:02.878 PM com.apple.XType.FontHelper[91728]: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    11/16/14 12:36:02.889 PM com.apple.XType.FontHelper[91728]: FontHelper:  message received. (<dictionary: 0x7fbb9b102580> { count = 2, contents =
      "query" => <string: 0x7fbb9b100580> { length = 107, contents = "com_apple_ats_name_postscript == "Roboto-Light" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
      "restricted" => <bool: 0x7fff7912f320>: true
    11/16/14 12:36:02.889 PM com.apple.XType.FontHelper[91728]: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    11/16/14 12:36:02.898 PM com.apple.XType.FontHelper[91728]: FontHelper:  message received. (<dictionary: 0x7fbb9a41d1d0> { count = 2, contents =
      "query" => <string: 0x7fbb9a41d2e0> { length = 106, contents = "com_apple_ats_name_postscript == "Roboto-Bold" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
      "restricted" => <bool: 0x7fff7912f320>: true
    11/16/14 12:36:02.898 PM com.apple.XType.FontHelper[91728]: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    11/16/14 12:36:03.000 PM kernel[0]: memorystatus_thread: idle exiting pid 91723 [cfprefsd]
    11/16/14 12:36:03.784 PM com.apple.launchd[1]: (com.apple.sleepservicesd[91721]) Exited: Killed: 9
    11/16/14 12:36:03.000 PM kernel[0]: memorystatus_thread: idle exiting pid 91721 [SleepServicesD]
    11/16/14 12:36:08.471 PM com.apple.launchd.peruser.501[159]: (com.apple.tccd[91730]) Exited: Killed: 9
    11/16/14 12:36:08.000 PM kernel[0]: memorystatus_thread: idle exiting pid 91730 [tccd]
    11/16/14 12:36:09.592 PM com.apple.launchd[1]: (com.apple.xpcd.F5010000-0000-0000-0000-000000000000[91727]) Exited: Killed: 9
    11/16/14 12:36:09.000 PM kernel[0]: memorystatus_thread: idle exiting pid 91727 [xpcd]
    11/16/14 12:36:13.129 PM com.apple.launchd[1]: (com.apple.XType.FontHelper[91728]) Exited: Killed: 9
    11/16/14 12:36:13.000 PM kernel[0]: memorystatus_thread: idle exiting pid 91728 [XType.FontHelper]
    11/16/14 12:36:14.996 PM com.apple.launchd[1]: (com.apple.sleepservicesd[91739]) Exited: Killed: 9
    11/16/14 12:36:14.000 PM kernel[0]: memorystatus_thread: idle exiting pid 91739 [SleepServicesD]
    11/16/14 12:36:20.120 PM com.apple.launchd[1]: (com.apple.cfprefsd.xpc.daemon[76618]) Exited: Killed: 9
    11/16/14 12:36:20.000 PM kernel[0]: memorystatus_thread: idle exiting pid 76618 [cfprefsd]
    11/16/14 12:36:23.433 PM com.apple.launchd.peruser.501[159]: (com.apple.cfprefsd.xpc.agent[76616]) Exited: Killed: 9
    11/16/14 12:36:23.000 PM kernel[0]: memorystatus_thread: idle exiting pid 76616 [cfprefsd]
    11/16/14 12:36:26.261 PM com.apple.launchd[1]: (com.apple.sleepservicesd[91752]) Exited: Killed: 9
    11/16/14 12:36:26.000 PM kernel[0]: memorystatus_thread: idle exiting pid 91752 [SleepServicesD]
    11/16/14 12:36:37.691 PM com.apple.launchd[1]: (com.apple.sleepservicesd[91764]) Exited: Killed: 9
    11/16/14 12:36:38.000 PM kernel[0]: memorystatus_thread: idle exiting pid 91764 [SleepServicesD]
    11/16/14 12:36:48.938 PM com.apple.launchd[1]: (com.apple.sleepservicesd[91777]) Exited: Killed: 9
    11/16/14 12:36:49.000 PM kernel[0]: memorystatus_thread: idle exiting pid 91777 [SleepServicesD]
    11/16/14 12:37:01.000 PM kernel[0]: memorystatus_thread: idle exiting pid 91788 [SleepServicesD]
    11/16/14 12:37:00.821 PM com.apple.launchd[1]: (com.apple.sleepservicesd[91788]) Exited: Killed: 9
    11/16/14 12:37:04.000 PM kernel[0]: memorystatus_thread: idle exiting pid 91706 [distnoted]
    11/16/14 12:37:15.656 PM com.apple.launchd[1]: (com.apple.sleepservicesd[91795]) Exited: Killed: 9
    11/16/14 12:37:15.000 PM kernel[0]: memorystatus_thread: idle exiting pid 91795 [SleepServicesD]
    11/16/14 12:37:27.016 PM ReportCrash[91819]: Failed to create CSSymbolicatorRef for Webroot SecureAnywhere[264]
    11/16/14 12:37:27.125 PM ReportCrash[91819]: Failed to create dSYM-less CSSymbolicatorRef for Webroot SecureAnywhere[264]
    11/16/14 12:37:27.487 PM com.apple.launchd.peruser.501[159]: (com.webroot.WRMacApp[264]) Job appears to have crashed: Segmentation fault: 11
    11/16/14 12:37:30.336 PM com.apple.launchd[1]: (WSDaemon[61]) Exited abnormally: Broken pipe: 13
    11/16/14 12:37:34.295 PM WindowServer[79]: CGXDisableUpdate: UI updates were forcibly disabled by application "iPhoto" for over 1.00 seconds. Server has re-enabled them.
    11/16/14 12:37:34.594 PM WindowServer[79]: reenable_update_for_connection: UI updates were finally reenabled by application "iPhoto" after 1.30 seconds (server forcibly re-enabled them after 1.00 seconds)
    11/16/14 12:37:37.648 PM ReportCrash[91819]: Saved crash report for Webroot SecureAnywhere[264] version 8.0.7.78 (8.0.7.78) to /Users/landerson/Library/Logs/DiagnosticReports/Webroot SecureAnywhere_2014-11-16-123737_lukes-MacBook-Pro.crash
    11/16/14 12:37:42.660 PM WindowServer[79]: CGXDisableUpdate: UI updates were forcibly disabled by application "iPhoto" for over 1.00 seconds. Server has re-enabled them.
    11/16/14 12:37:43.632 PM WindowServer[79]: reenable_update_for_connection: UI updates were finally reenabled by application "iPhoto" after 1.97 seconds (server forcibly re-enabled them after 1.00 seconds)
    11/16/14 12:37:50.783 PM WSDaemon[91822]: CGSRegisterConnectionNotifyProc called with invalid connection
    11/16/14 12:38:09.909 PM Problem Reporter[91853]: launch_msg returned m

  • SSRS Report queries begin running slowly, have to stop and start report server to restore performance

    We have had a production issue crop up twice now where reports begin running slowly seemingly at random.  
    When this happens we can see from running SQL Profiler that the report queries are taking an extremely long time to execute.  The same queries when run directly in management studio run quickly.  
    Initially I suspected parameter sniffing, and tried using OPTION (RECOMPILE) in the reports, as well as clearing out the particular query from the plan cache and running the SQL in SSMS to try and get a better plan etc but no amount of jiggery pokery by
    me could get the queries to run any faster.
    The really weird thing - is that stopping and starting the report server via the reporting services configuration manager instantly cures the problem.  
    I'd really love to know - why this might be?  Is it something to do with the report server closing and re-opening its connections to the database? That's the only sort of thing I can think of...any ideas? Anyone? Any suggestions would be much appreciated.
    LucasF

    Hi LucasF,
    In your scenario, usually we can monitor the execution log in Report Database. If you run below query, you can get the results how long the report takes to render (TimeRendering), how long to process the report(TimeProcessing) and how long to retrieve data
    from Database(TimeData). You can check the starttime and endtime to know the total time for executing a report.
    SELECT TOP1000 *FROM[ReportServer].[dbo].[ExecutionLog2]
    More details information, please reference to similar thread below:
    Steps for troubleshooting a slow SSRS 2014 server
    Troubleshooting Reports: Report Performance
    In SQL Server Reporting Services, a job will be created by SQL Server Agent if any of the following processes is underway:
    query execution on a remote or local database server
    report processing
    report rendering
    To cancel a job that is running on the report server, we can cancel the job directly or reduce the report execution time-out value in the SQL Server Management Studio and then will stop query execution. Please refer to the steps below:
    Open SQL Server Management Studio, and connect to "Reporting Services".
    Under the Report Server node, right-click on the "Jobs" folder and select "Refresh". Then, right-click on "Jobs" again and click "Cancel All Jobs".
    Right-click on the Report Server node and open the "Server Properties" dialog.
    Click the "Execution" option, and set the "Limit report execution to the following number of seconds:" to a much smaller number. After this issue is resolved, this configuration should revert to the previous state.  
    Reference:
    Managing a Running Process
    Setting Time-out Values for Report and Shared Dataset Processing
    In addition, we can also use the KILL Transact-SQL statement to terminate a normal connection by terminating the transactions that are associated with the specified session ID. For the details information, you can refer to:
    KILL (Transact-SQL)
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Barcode's in R12.1.1 xml report output's (English and Arabic)

    Dear Frednds,
    we are using R12.1.1 and we need to get the barcode output's (in place of numbers) in out xml report output's.
    We need it in English report and also in Arabic reports (it has seperate arabic template file)
    Please let us know the method?
    Regards,
    DB

    Desar Hussein,
    1) we have downloaded and installed the Font Code128bWinLarge.ttf on windows PC.
    2)Set the barcode font for the required field in the rtf Template.
    3) Copied the font file, Code128bWinLarge.ttf to $OA_JRE_TOP/lib/fonts
    4) Copied xdo.cfg file from our local desktop where we have BI publisher installed to
    $OA_JRE_TOP/lib Directory.
    5)added these lines locating barcode font location ($OA_JRE_TOP/lib/fonts
    /Code128bWinLarge.ttf)accordingly.
    Now For English reports we are getting the barcode
    But for Arabic reports we are getting junk characters
    so is there any other font available for Arabic barcode.Plerase suggest
    Regards,
    DB

  • XML Report Arabic letter not coming in Report

    Hi all
    when i try to generate xml report from Concurrent,
    the arabic letter coming as ??????????? in report.
    Can any one help me in this issue...

    Hi ,
    Can you check the below link
    http://prsync.com/oracle/non-english-characters-appears-as---in--bi-publisher-pdf-output--27505/
    May be helpful for you.
    Thanks,
    Ananth

  • Macbook Pro 2009 runs slowly and freezes. Can someone look at this Etrecheck report and tell me what's wrong?

    Macbook Pro 2009 runs slowly and freezes. Can someone look at this Etrecheck report and tell me what's wrong?
    Hardware Information:
              MacBook Pro (13-inch, Mid 2009)
              MacBook Pro - model: MacBookPro5,5
              1 2.26 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              NVIDIA GeForce 9400M - VRAM: 256 MB
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 6 days 16:17:8
    Disk Information:
              FUJITSU MJA2160BH FFS G1 disk0 : (160.04 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        MacBook HD (disk0s2) /: 159.18 GB (29.38 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              HL-DT-ST DVDRW  GS23N 
    USB Information:
              Apple Inc. Built-in iSight
              Apple Internal Memory Card Reader
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.spsys.driver.IOKitDriver          (1.0.0d1)
              com.parallels.kext.usbconnect          (8.0 18615.948847)
              com.parallels.kext.hypervisor          (8.0 18615.948847)
              com.parallels.kext.hidhook          (8.0 18615.948847)
              com.parallels.kext.netbridge          (8.0 18615.948847)
              com.parallels.kext.vnic          (8.0 18615.948847)
              com.parallels.filesystems.prlufs          (2010.12.28)
    Startup Items:
              StartupComponent: Path: /Library/StartupItems/StartupComponent
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [System] com.adobe.fpsaud.plist 3rd-Party support link
              [System] com.fitbit.galileod.plist 3rd-Party support link
              [System] com.spsecure.daemon.plist 3rd-Party support link
    Launch Agents:
              [System] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [System] com.spsecure.useragent.plist 3rd-Party support link
    User Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [not loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [not loaded] [email protected]
              [not loaded] com.google.keystone.agent.plist 3rd-Party support link
    User Login Items:
              iTunesHelper
              AdobeResourceSynchronizer
              Dropbox
              EvernoteHelper
              Fitbit Connect Menubar Helper
              Google Chrome
    Internet Plug-ins:
              Flip4Mac WMV Plugin: Version: 2.4.4.2 3rd-Party support link
              FlashPlayer-10.6: Version: 11.9.900.170 - SDK 10.6 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              AdobePDFViewerNPAPI: Version: 11.0.06 - SDK 10.6 3rd-Party support link
              AdobePDFViewer: Version: 11.0.06 - SDK 10.6 3rd-Party support link
              Flash Player: Version: 11.9.900.170 - SDK 10.6 Outdated! Update
              QuickTime Plugin: Version: 7.7.3
              OfficeLiveBrowserPlugin: Version: 12.3.6 3rd-Party support link
              AmazonMP3DownloaderPlugin101750: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 3rd-Party support link
              Silverlight: Version: 5.1.20913.0 - SDK 10.6 3rd-Party support link
              iPhotoPhotocast: Version: 7.0
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    User Internet Plug-ins:
              Move-Media-Player: Version: npmnqmp 071503000004 3rd-Party support link
              fbplugin_1_0_3: Version: (null) 3rd-Party support link
    3rd Party Preference Panes:
              Flash Player  3rd-Party support link
              MacFUSE  3rd-Party support link
    Bad Fonts:
              None
    Old Applications:
              Microsoft AutoUpdate:          Version: 2.3.6 - SDK 10.4 3rd-Party support link
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              /Library/Application Support/Microsoft/MERP2.0
                        Microsoft Error Reporting:          Version: 2.2.9 - SDK 10.4 3rd-Party support link
                        Microsoft Ship Asserts:          Version: 1.1.4 - SDK 10.4 3rd-Party support link
              SLLauncher:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              Amazon MP3 Downloader:          Version: INFO_PLIST_VERSION - SDK 10.4 3rd-Party support link
    Time Machine:
              Skip System Files: NO
              Auto backup: YES
              Time Machine not configured!
    Top Processes by CPU:
                  37%          prl_vm_app
                  10%          WindowServer
                   9%          Google Chrome
                   1%          hidd
                   1%          Agent
    Top Processes by Memory:
              602 MB          prl_vm_app
              115 MB          Google Chrome
              82 MB          Google Chrome Helper
              82 MB          Mail
              70 MB          Microsoft Word
    Virtual Memory Information:
              137 MB          Free RAM
              782 MB          Active RAM
              718 MB          Inactive RAM
              1.50 GB          Wired RAM
              23.02 GB          Page-ins
              1.21 GB          Page-outs

    Hey greytdogs,
    I would give some of the suggestions in this link a shot:
    OS X Mavericks: If your Mac runs slowly
    http://support.apple.com/kb/PH13895
    Welcome to Apple Support Communities!
    Sincerely,
    Delgadoh

  • "Run Report" form error befor running XML report

    I created XML report (Concurret Programs with Output Format XML), created XML file as Data definition and RTF template, and will Output in Excel. When open Run Request and choose XML report, before Parametr form is opened, get 2 error:
    FRM-41084: Error getting Group Cell
    FRM-41072: Cannot create Group req_layout
    Help me, where is Problem?
    Edited by: Sega99 on 2010.26.1 02:41

    hi
    Please post u r thread in report forum. thanks.
    Sarah

  • Customized XML Report error in Arabic Instance

    Dear All,
    A Customized XML Report works perfectly without error in English Instance, where as in the Arabic Instance it throws the below error.
    In the English Instance, if we select both languages in  language settings in SRS window while submitting the report, only Language( American English, Territory:AMERICA ) is working , Language (Arabic, Territory:UNITED ARAB EMIRATES) is having error.
    Application Ver: 12.1.3
    Module: custom
    Today I registered one new report it works perfectly in both instances. (Arabic/English), the settings of DD, Template are same for both.
    Kindly suggest me where can be the error.
    ﺕﻼﻣﺎﻌﻤﻟﺍ
    '61'=p_PAYROLL_ID
    '4980'=p_TIME_PERIOD_ID
    '4549'=P_PERSON_ID
    Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing
    : APPLLCSP Environment Variable set to
    : Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are
    8ARABIC_UNITED ARAB EMIRATES.UTF
    :ﺮﺴﻟﺍ ﺔﻤﻠﻛ ﻞﺧﺩﺃ
    ﻞﻛﺍﺭﻭﺃ ﺄﻄﺧ ﺙﺪﺣ :0300-REP
    ﻲﻠﺧﺍﺩ ﺄﻄﺧ :0069-REP
    :ﺄﻄﺧ ﺩﻮﺟﻭ ﻊﻣ  ﺀﺎﻬﻧﻹﺍ ﻢﺗ:ﺔﻳﺭﺎﺠﻟﺍ ﺔﻔﻴﻇﻮﻟﺍ ﺀﺎﻬﻧﺇ ﻢﺗ :57054-REP
    ﻞﻛﺍﺭﻭﺃ ﺄﻄﺧ ﺙﺪﺣ :300-REP
    2013 52:32:13 7 11 ﺲﻴﻤﺨﻟﺍ Report Builder: Release 10.1.2.3.0 - Production on
    .c) 1982, 2005, Oracle.  All rights reserved) Copyright

    Hi,
    Please see notes:
    11i-12 How To Perform Quick Checks for REP-3000: Internal Error Starting Oracle Toolkit (Doc ID 364838.1)
    Master Note : Comprehensive REP-3000 Troubleshooting and Overview Guide (Doc ID 200474.1)
    Guide to Solving Report Issues REP-XXX in Procurement (REP-0069, REP-1814, REP-1212, REP-0756, REP-1416, REP-1247, REP-736, REP-0759) (Doc ID 1535982.1)
    Thanks &
    Best Regards,

Maybe you are looking for

  • Delivery is not possible as per Schedule line dates

    Hi Gurus, The schedule lines insales order are for eaxample--- 01.12.2008  -   10 pieces (quantity) 15.12.2008  -   10 10.01.2009  -   10 25.01.2009  -   10 Tried to deliver the quantity 10 dated 15.12.2008 in the last after all the materials pertain

  • Down Payment request reversal

    Frnd I have below situation. I have created down payment request for 1000$ for one vendor. then when i go to FBL1N and execute it with onlny noted item selection, it show me credit balance of 1000$ and red dot which i expected, since it s not cleared

  • Create a view based on a view

    I am editing a created view, VIEW_B. When I looked at the code, it is selecting from another view, VIEW_A. VIEW_A : Select * from Emp VIEW_B : Select * from VIEW_A where sal > 1000 Is it advisable to continue having a view selecting from another view

  • LCD projector connection to ibook G4

    can someone please let me know what kind of cable is needed for a Hitachi LCD projector? the "media" personel at the hospital where i work are trying to use a USB to USB connection , which isn't working. There is a male 3 x 5 prong in the back of the

  • Report of shopping cart

    Hi SRM Guru, Does anyone knows a report that will show the list of shopping that were created on year 2008 and 2009 that has not created Purchase order? Please help....