Creation of pricing formulaes in j2ee using IPC tool imme

Hi
Gurus , i am new to formulas creation in j2ee with in  ipc tool, please can give me details about that, possible any helpful documents to my mail id :shashi0611 yahoo.com

Hi Shashidhar,
Please refer to the OSS note 809820 for complete understanding of IPC pricing user exits. There is a good document attached to the note.
Do not forget to reward the useful answers
Regards,
Paul Kondaveeti

Similar Messages

  • Can I automate the creation of a cluster in LabView using the data structure created in an autogenerated .CSV, C header, or XML file?

    Can I automate the creation of a cluster in LabView using the data structure created in an auto generated .CSV, C header, or XML file?  I'm trying to take the data structure defined in one or more of those files listed and have LabView automatically create a cluster with identical structure and data types.  (Ideally, I would like to do this with a C header file only.)  Basically, I'm trying to avoid having to create the cluster by hand, as the number of cluster elements could be very large. I've looked into EasyXML and contacted the rep for the add-on.  Unfortunately, this capability has not been created yet.  Has anyone done something like this before? Thanks in advance for the help.  
    Message Edited by PhilipJoeP on 04-29-2009 04:54 PM
    Solved!
    Go to Solution.

    smercurio_fc wrote:
    Is this something you're trying to do at runtime? Clusters are fixed data structures so you can't change them programmatically. Or, are you just trying to create some typedef cluster controls so that you can use them for coding? What would your clusters basically look like? Perhaps another way of holding the information like an array of variants?
    You can try LabVIEW scripting, though be aware that this is not supported by NI. 
     Wow!  Thanks for the quick response!  We would use this cluster as a fixed data structure.  No need to change the structure during runtime.  The cluster would be a cluster of clusters with multiple levels.  There would be not pattern as to how deep these levels would go, or how many elements would be in each.   Here is the application.  I would like to be able to autocode a Simulink model file into a DLL.  The model DLL would accept a Simulink bus object of a certain data structure (bus of buses), pick out which elements of the bus is needed for the model calculation, and then pass the bus object.  I then will take the DLL file and use the DLL VI block to pass a cluster into the DLL block (with identical structure as the bus in Simulink).  To save time, I would like to auto generate the C header file using Simulink to define the bus structure and then have LabView read that header file and create the cluster automatically.   Right now I can do everything but the auto creation of the cluster.  I can manually build the cluster to match the Simulink model bus structure and it runs fine.  But this is only for an example model with a small structure.  Need to make the cluster creation automated so it can handle large structures with minimal brute force. Thanks!  

  • In a future version of ibook author would be very useful to provide for the creation of shared content online. Teachers can collaborate on the creation of a text. Very useful for teachers to collaborate in the network. sharing sharing sharing

    in a future version of ibook author would be very useful to provide for the creation of shared content online.
    Teachers can collaborate on the creation of a text. Very useful for teachers to collaborate in the network. sharing sharing sharing

    As always, feel free to use the 'Provide iBooks Author Feedback' menu item for features you'd like added in the future, etc. 
    http://www.apple.com/feedback/ibooks-author.html

  • Variant Creation in SAP BI To be used information broadcasting

    Dear Friends,
                            I want to create a VARIANT in SAP BI 7.0 Which is to be used in information broadcasting. I found One Document Named as "Variant Creation In SAP BI to be used in Information Broadcasting.pdf",in SDN Forums. I Couldn't able to Understand the Given Steps in it.
      Could any one of You Please send me the Procedure how to create a Variant.I should also see the "Determine from Variants" button in Work book precalculation Tab,which i am not able to see it currently under "Workbook Precalculation".
    Waiting for ur reply.
    Thanks in advance
    Regards
    Singam Bhaskar Reddy

    Hi,
    Even I have gone through the SDN document. It is clearly explained step by step. If you follow the same document thoroughly you will be able to see Determine From Variants radio button properly.
    Try to understand the document.....you will get the solution.
    Regards,
    Suman

  • Correct JDBC url using IPC protocol

    What is correct url to connect to db with orcl SID using IPC protocol? Couldn't find this in documentation....
    jdbc:oracle:oci:@[WHAT GOES HERE?]

    If you are having problems with TCP then you should find and fix those problems. Many thousands of others use TCP with, and without, Glassfish and it works just fine for them. That indicates you have an issue with one, or more of those four things I ask you to provide but chose not to.
    Fix would be to upgrade DB to 12.1.0.2 or downgrade to 11, where I haven't got any problems with connection pool.
    SHOW US (don't just tell us):
    1. WHAT you are doing - that means posting the code and ALL relevant info about TNSNAMES and other properties/settings being used such as connection pool settings.
    2. HOW you are doing it - that means showing a copy of the console that shows the LAUNCH and EXECUTION of the code
    3. WHAT results you get - that means showing a copy of the console showing any results or exceptions you are getting
    4. WHAT results you expected to get
    You should also do basic troublshooting:
    1. confirm that you can connect to the DB without using JDBC
    2. confirm that you can connect and work properly WITHOUT using a connection pool
    That other link you provided shows pool settings that are pretty much guaranteed to cause the pool to close connections. An idle timeout of only 60 seconds greatly increases the possibility that a connection that is checked out of the pool and still in use may get closed if it isn't returned to the pool properly.
    This link describes the attirbutes  and their defaults:
    https://docs.oracle.com/cd/E19316-01/820-4338/abhcy/index.html
    You are using SEVERAL non-default settings - and you are having a problem. That suggests you should go back to the defaults and test again.
    We can NOT see your computer screen or SEE what you are doing. We can NOT debug code that we can't see.
    Are you a bot? Or are you using some replay templates? Have you read my first post? Do I ask for help in debug any code? What code you are taking about? I ask for proper url using OCI driver over IPC protocol.
    This is my tnsnames.ora
    ORCL_IPC =
      (DESCRIPTION =
        (ENABLE = BROKEN)
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(Key = ORCL))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = ORCL)
    and jdbc config
    <jdbc-connection-pool validation-table-name="DUAL" datasource-classname="oracle.jdbc.pool.OracleDataSource" max-pool-size="50" res-type="javax.sql.DataSource" steady-pool-size="10" statement-cache-size="100" name="c2onlinePool" statement-timeout-in-seconds="30" is-connection-validation-required="true" idle-timeout-in-seconds="7200" max-wait-time-in-millis="10000" validate-atmost-once-period-in-seconds="60">
          <property name="driverClass" value="oracle.jdbc.OracleDriver"></property>
          <property name="user" value="***"></property>
          <property name="url" value="jdbc:oracle:thin:@127.0.0.1:1521/orcl"></property>
          <property name="password" value="***"></property>
          <property name="portNumber" value="1521"></property>
          <property name="databaseName" value="orcl"></property>
          <property name="serverName" value="127.0.0.1"></property>
    </jdbc-connection-pool>
    which is working (I'm testing with ping from glassfish web console), I just want to switch to IPC protocol.
    I tried with
    jdbc:oracle:oci:@(DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY = LISTENER))(CONNECT_DATA=(SERVICE_NAME=orcl)))
    jdbc:oracle:oci:@(DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=ORCL)))
    but every time JVM crashes with stackoverflow, as soon as I click on ping in console.
    Maybe it's just another driver bug. I have similar situation with thin driver - version 12.1.0.1 didn't work, but version 12.1.0.2 worked ok.

  • BAPI for Creation of the Project in ECC using Standard Templates

    Hi,
    I want BAPI for Creation of the Project in ECC using project id and project standard template ID
    and BAPI for Updating of project and WBS element  using  project id and WBS element ID

    One idea is to write a wrapper FM that is remote enabled and internally call BBP_PD_CTR_CREATE for your own use.

  • Announcement: Super 4.00 - a suite of EJB/J2EE monitoring/admin tools.

              Announcement: Super 4.00 - a suite of EJB/J2EE monitoring/admin tools.
              Acelet is the leader in J2EE tools area. If you google "j2ee tools",
              "j2ee logging", "j2ee scheduler" or alike, you will find Acelet
              is at the top of the result.
              Super 4.00 comes with:
              SuperEnvironment
              SuperLogging
              SuperPeekPoke
              SuperReport
              SuperScheduler
              SuperStress
              and SuperPatrol, as a schedule job.
              The evaluation edition can be anonymously downloaded from:
              http://www.ACElet.com.
              Super is a component based monitor and administration tool
              for EJB/J2ee. It provides built-in functionality as well as
              extensions, as SuperComponents. Users can install
              SuperComponents onto it, or uninstall them from it.
              Super has the following functions:
              * A J2EE monitor.
              * A gateway to J2EE/EJB servers from different vendors.
              * A framework holding user defined SuperComponents.
              * A full-featured J2EE logging and J2EE tracing tool for centralized,
              chronological logging.
              * An EJB tool for Peeking and Poking attributes from EJBs.
              * An EJB Stress test tool.
              * A J2EE global environment tool.
              * A J2EE report tool.
              * A J2EE Scheduler tool.
              * A J2EE Business patrol tool.
              It is written entirely in the Java(TM) programming language.
              The current version support:
              * JOnAS 2.4 and 2.6
              * SunONE 7.0
              * Universal servers.
              * Weblogic 6.1, 7.0 and 8.1
              * Websphere 4.0 and 5.0.2
              * jBoss 3.0 and 3.2
              ********** What is new:
              Version 4.00 November, 2003
              Enhancement:
              1. Support for both native protocol (RMI-IIOP) mode and HTTP/HTTPS
              (with/without proxy) protocol mode for SuperEnvironment,
              SuperLogging, SuperReport and SuperScheduler.
              2. SuperLogging 4.00: tracing can work on both live database and retired database.
              3. SuperReport 3.00: works for both live database and retired database.
              4. SuperScheduler 3.00: add URL job type (for Servlet/JSP). Add DoerTalker Table
              Panel.
              Bug fix:
              1. SuperScheduler 3.00: Interval change did not take effect until restart Super.
              Version 3.00 July, 2003
              Enhancement:
              1. SuperLoggingLibrary 3.00: New implementation for change scope adding "Smart"
              scope,
              with enhancements and bug fixes.
              2. SuperLoggingLibrary 3.00: Support mail server which requires user name and
              password.
              Add MenuTreePanel.
              3. Improved GUI and document.
              4. Add support to WebLogic 8.1.
              Bug fix:
              1. SuperScheduler 2.0: Fix a bug in FutureView for Hourly and Minutely.
              2. SuperScheduler 2.0: Startup should never be reported as missed.
              3. SuperScheduler 2.0: Could not reset job for existing task in some situation.
              Version 2.20 Jan. 2003
              Enhancement:
              1. Add desktop and start menu shortcuts for MS-Windows.
              2. Add support for SunONE 7, JOnAS 2.6 and jBoss 3.0.
              3. SuperLogging 2.40: Add new sendAlarmEmail() method.
              4. SuperScheduler 1.40: Add SuperSchedulerEJB for managing when
              direct database is not practical; Allow user to choose
              favorite logging software; Add Last day as Monthly
              repeating attribute.
              Change:
              1. Change Unusual to PatrolAlarm. The name "Unusual" was misleading.
              Bug fix:
              1. SuperEnvironment 1.31: Bug fix: if database is broken, could not
              open Environment Manager.
              2. SuperLogging client 1.52: Annoying exception thrown when you use
              JDK 1.4 (the program runs okay).
              3. SuperPeekPoke 1.61: Fix bug where input object contains
              java.lang.Double and alike.
              4. SuperScheduler 1.40: Bug fixes in: Memory leak; Reporting
              PatrolAlarm for SuperPatrol; Composite task with members;
              Non-scheduled run on other host; Around edges of last
              days in Monthly with holiday policy.
              Version 2.10 July 2002
              Enhancement:
              1. SuperScheduler 1.3: Add Future View to check future schedule in
              both text and Gantt-chart mode.
              2. SuperScheduler 1.3: Add graphic Gantt view for monitoring task's
              activities.
              3. SuperEnvironment 1.3: uses new graphic package adding print and
              preference facilities.
              4. SuperPeekPoke 1.6: uses new graphic package adding print and
              preference facilities.
              5. SuperStress 1.21: uses new graphic package.
              Bug fix:
              1. SuperStress 1.21: fixed graphic related bugs.
              Version 2.01 June 2002
              Enhancement:
              1. Add options for Look & Feel.
              2. Preference is persistent now.
              Bug fix:
              1. Installation for WebLogic 7.0: extEnv may not be installed on the
              right place, so SuperLibrar on the server side was not loaded and
              causes other problems.
              Version 2.00 June 2002
              Enhancement:
              1. SuperScheduler 1.2: All copies of SuperScheduler refresh themselves
              when any Doer causes things to change.
              2. SuperScheduler 1.2: Support default HTML browser for reading HTML document.
              3. SuperReport 1.2: Support default HTML browser for reading HTML document.
              4. Support WebLogic 7.0.
              5. SuperEnvironment 1.21: Database Panel appears when it is necessary.
              6. SuperEnvironment 1.21: New SuperEnvironment tour.
              Bug fix:
              1. WebSphere Envoy did not always list all JNDI names.
              Version 1.90 May 2002
              Enhancement:
              1. Rewritten SuperLogging engine. Add Alarm Email on SuperLogging.
              2.Rewritten SuperScheduler allowing multiple Doers. Add support to holiday policy,
              effective period. Add Patrol job type as SuperPatrol.
              3. Add support for both JOnAS and jBoss.
              4. Add more elements on Report criteria.
              Change:
              1. Now, both left and right mouse clicks are the same on Table Panel: toggle ascend
              and descend.
              2. New log database.
              Bug fix:
              1. Alert email should be sent once in the interval, regarding number of servers
              in the clustering.
              2. Minor bug fixes to make errors handled better on SuperLogging.
              3. If withFileInfo or withTimestamp are changed alone, Style Panel did not save
              them.
              4. Rewritten SuperLogging and SuperScheduler with many bug fixes.
              Version 1.80 March 2002
              Enhancement:
              1. Add new component: SuperScheduler
              Bug fix:
              1. SuperLogging: Verbose should ignore class registration.
              2. SuperLogging-tracing: an exception was thrown if the java class without package
              name.
              Version 1.70 January 2002
              Enhancement:
              1. SuperLogging: Scope can dynamically change both for upgrade to downgrade (for
              weblogic 6.1, need download an application).
              2. Add alias names for log threshold as new Java suggests.
              3. New component: SuperReport.
              Change:
              1. SuperLogging: Log database parameters are specified in a properties file, instead
              of EJB's deployment descriptor. It is more convenient and it avoids some potential
              problems. No change for development, easier for administration.
              Bug fix:
              1. Add Source Path Panel now accepts both directory and jar file.
              2. Bug in SuperEnvironment example (for version 1.60 only).
              Version 1.60 December 2001
              Enhancement:
              1. SuperPeekPoke and SuperStress can use user defined dynamic argument list.
              2. Add timeout parameter to logging access.
              3. New installation program with A). Easy install. B). Remote command line install.
              4. Support EJB 2.0 for Weblogic 6.1.
              5. Support SuperPeekPoke, SuperEnvironment and SuperStress for Websphere 4.0 (SuperLogging
              was supported since version 1.5).
              Change:
              1. Poke: argument list is set at define time, not invoke time.
              2. Default log database change to server mode from web server mode, booting performance
              to 10-20 times.
              Bug fix:
              1. If the returned object is null, Peek did not handle it correctly.
              2. If the value was too big, TimeSeries chart did not handle it correctly. Now
              it can handle up to 1.0E300.
              3. Help message was difficult to access in installation program.
              4. Source code panel now both highlights and marks the line in question (before
              it was only highlight using JDK 1.2, not JDK 1.3).
              5. Delete an item on PeekPoke and add a new one generated an error.
              Version 1.50 August, 2001
              Enhancement:
              1. Source code level tracing supports EJB, JSP, java helper and other
              programs which are written in native languages (as long as you
              write correct log messages in your application).
              2. Redress supports JSP now.
              3. New installation with full help document: hope it will be easier.
              4. Support WebSphere 4.0
              Version 1.40 June, 2001
              Enhancement:
              1. Add SuperEnvironment which is a Kaleidoscope with TableView, TimeSeriesView
              and PieView for GlobalProperties.
              GlobalProperties is an open source program from Acelet.
              2. SuperPeekPoke adds Kaleidoscope with TableView, TimeSeriesView and PieView.
              Changes:
              1. The structure of log database changed. You need delete old installation and
              install everything new.
              2. The format of time stamp of SuperLogging changed. It is not locale dependent:
              better for report utilities.
              3. Time stamp of SuperLogging added machine name: better for clustering environment.
              Bug fix:
              1. Under JDK 1.3, when you close Trace Panel, the timer may not be stopped and
              Style Panel may not show up.
              Version 1.30 May, 2001
              Enhancement:
              1. Add ConnectionPlugin support.
              2. Add support for Borland AppServer.
              Version 1.20 April, 2001
              Enhancement:
              1. Redress with option to save a backup file
              2. More data validation on Dump Panel.
              3. Add uninstall for Super itself.
              4. Add Log Database Panel for changing the log database parameters.
              5. Register Class: you can type in name or browse on file system.
              6. New tour with new examples.
              Bug fix:
              1. Redress: save file may fail.
              2. Install Bean: some may fail due to missing manifest file. Now, it is treated
              as foreign beans.
              3. Installation: Both installServerSideLibrary and installLogDatabase can be worked
              on the original file, do not need copy to a temporary directory anymore.
              4. PeekPoke: if there is no stub available, JNDI list would be empty for Weblogic5-6.
              Now it pick up all availble ones and give warning messages.
              5. Stress: Launch>Save>Cancel generated a null pointer exception.
              Changes:
              1. installLogDatabase has been changed from .zip file to .jar file.
              2. SuperLogging: If the log database is broken, the log methods will not try to
              access the log database. It is consistent with the document now.
              3. SuperLogging will not read system properties now. You can put log database
              parameters in SuperLoggingEJB's deployment descriptor.
              Version 1.10 Feb., 2001
              Enhancement:
              1. Re-written PeekPoke with Save/Restore functions.
              2. New SuperComponent: SuperStress for stress test.
              3. Set a mark at the highlighted line on<font size=+0> the Source Code
              Panel (as a work-a-round for JDK 1.3).</font>
              4. Add support for WebLogic 6.0
              Bug fix:
              1. Uninstall bean does physically delete the jar file now.
              2. WebLogic51 Envoy may not always list all JNDI names. This is fixed.
              Version 1.00 Oct., 2000
              Enhancement:
              1. Support Universal server (virtual all EJB servers).
              2. Add Lost and Found for JNDI names, in case you need it.
              3. JNDI ComboBox is editable now, so you can PeekPoke not listed JNDI name (mainly
              for Envoys which do not support JNDI list).
              Version 0.90: Sept, 2000
              Enhancement:
              1. PeekPoke supports arbitrary objects (except for Vector, Hashtable
              and alike) as input values.
              2. Reworked help documents.
              Bug fix:
              1. Clicking Cancel button on Pace Panel set 0 to pace. It causes
              further time-out.
              2. MDI related bugs under JDK 1.3.
              Version 0.80: Aug, 2000
              Enhancement:
              1. With full-featured SuperLogging.
              Version 0.72: July, 2000
              Bug fix:
              1. Ignore unknown objects, so Weblogic5.1 can show JNDI list.
              Version 0.71: July, 2000
              Enhancement:
              1. Re-worked peek algorithm, doing better for concurent use.
              2. Add cacellable Wait dialog, showing Super is busy.
              3. Add Stop button on Peek Panel.
              4. Add undeploy example button.
              Bug fix:
              1. Deletion on Peek Panel may cause error under JDK 1.3. Now it works for both
              1.2 and 1.3
              Version 0.70: July, 2000
              Enhancement:
              1. PeekPoke EJBs without programming.
              Bug fix:
              1. Did not show many windows under JDK 1.3. Now it works for both 1.2 and 1.3
              Changes:
              1. All changes are backward compatible, but you may need to recompile monitor
              windows defined by you.
              Version 0.61: June, 2000
              Bug fix:
              1. First time if you choose BUFFER as logging device, message will not show.
              2. Fixed LoggingPanel related bugs.
              Version 0.60: May, 2000
              Enhancement:
              1. Add DATABASE as a logging device for persistent logging message.
              2. Made alertInterval configurable.
              3. Made pace for tracing configurable.
              Bug fix:
              1. Fixed many bugs.
              Version 0.51, 0.52 and 0.53: April, 2000
              Enhancement:
              1. Add support to Weblogic 5.1 (support for Logging/Tracing and
              user defined GUI window, not support for regular monitoring).
              Bug fix:
              1. Context sensitive help is available for most of windows: press F1.
              2. Fix installation related problems.
              Version 0.50: April, 2000
              Enhancement:
              1. Use JavaHelp for help system.
              2. Add shutdown functionality for J2EE.
              3. Add support to Weblogic 4.5 (support for Logging/Tracing and
              user defined GUI window, not support for regular monitoring).
              Bug fix:
              1. Better exception handling for null Application.
              Version 0.40: March, 2000
              Enhancement:
              1.New installation program, solves installation related problems.
              2. Installation deploys AceletSuperApp application.
              3. Add deploy/undeploy facilities.
              4. Add EJB and application lists.
              Change:
              1.SimpleMonitorInterface: now more simple.
              Version 0.30: January, 2000
              Enhancement:
              1. Add realm support to J2EE
              2. Come with installation program: you just install what you want
              the first time you run Super.
              Version 0.20: January, 2000
              Enhancement:
              Add support to J2EE Sun-RI.
              Change:
              1. Replace logging device "file" with "buffer" to be
              compliant to EJB 1.1. Your code do not need to change.
              Version 0.10: December, 1999
              Enhancement:
              1. provide SimpleMonitorInterface, so GUI experience is
              not necessary for developing most monitoring applications.
              2. Sortable table for table based windows by mouse
              click (left or right).
              Version 0.01 November., 1999:
              1. Bug fix: An exception thrown when log file is large.
              2. Enhancement: Add tour section in Help information.
              Version 0.00: October, 1999
              Thanks.
              

  • SAP J2EE Engine -Config Tool authentication test(LDAP only)

    Hello. Can i know what causes the directory server authentication test(LDAP only) in the SAP J2EE Engine config Tool to fail to authenticate.
    Error message i got was: authentication failed: Unprocessed Continuation Reference(s).
    Please advise.

    Hi,
    what kind of directory server are you using?
    I'm not sure but it is possible that your ds uses referrals returns a referral to your client and the client does not follow them. Do you have any referrals configured?
    Cheers

  • J2EE Visual Admin tool

    Hi fellow XI'ers,
    I want to install J2EE Visual Admin tool on my laptop, but all information I can find is that I have to go to C drive \usr\sap\C11\JC00\j2ee\admin and run go.bat but...this folder does not exists on my laptop...I guess I have to install locally Netweaver or WAS? And where do I find installation files?
    Best Regards,
    Margaret

    hi,
    no:)
    all you have to do is to copy the folder:
    usr\sap\C11\JC00\j2ee\admin
    to your laptop and you can use it
    maybe you just have to change one path
    in one of he files but try with copying first
    Regards,
    michal

  • Error / fails to connect Oracle data source using deploy tool

    Hi,
    I want to deploy SAP AS on my company's J2EE application. I deployed the application using Deploy Tool successfully. The application is started without error.
    When I tried connecting the log on page.  I got error in LogViewer:
    Error while accessing porting layer for ORACLE database via getDatabaseHost().
    Relatives : com.sap.sql.jdbc.direct.DirectConnectionFactory
    Resource Bundlename : com.sap.sql.log.OpenSQLResourceBundle
    Source : /System/Database/sql/jdbc/direct
    Argument Objs : ORACLE,getDatabaseHost(),
    Where to look for debugging errors?
    -- Joe

    Hi Markus,
    I changed to Vendor SQL and set Initial Connection to 1.
    On Monitor tab, I see a green line running across the screen. 
    I believe this proves that the connection has been established.
    Thanks a lot!
    -- Joe

  • Photoshop CS4 "Program Error" when using Text tool

    Hello. I was having problems with Photoshop displaying a "Program Error" every so often, so I deleted the preference file and all seemed good. But after deleting the preference file for my Photoshop CS4 and re-launching Photoshop, the text tool causes Photoshop to display a Program Error when using the tool. It never did this before. Should I reinstall Photoshop? I am using a Powermac G5 running 10.5.8. I have already tried repairing the disk permissions.
    Thanks

    Thats kinda what I thought too, but the problem started happening randomly. It started when we were trying to use photomerge with large photos. The program just started giving the program errors. I still think it may be a font problem, but without going through my 2000+ fonts and disabling them one by one, how can I resolve this issue?
    Thanks

  • Using Text Tool Freezes Photoshop CC 2014.2 x64 release

    I have just updated Photoshop CC to 2014.2.0 -- 20140926.r.236 x64 release. Now I am experiencing an issue when I use the text tool to just type a few words on a new document or layer. The application seems to freeze up as soon as I start typing? I wait several minutes with nothing happening and have to resort to using the Windows task manger to kill the photoshop processes. This did not happen before I updated to this release?? Please advise how to fix this if possible to [email protected].
    I'm using Windows 7 x64
    Here's the system info reported from Photoshop:
    Adobe Photoshop Version: 2014.2.0 20140926.r.236 2014/09/26:23:59:59 x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:7, Stepping:10 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1
    Physical processor count: 2
    Processor speed: 3000 MHz
    Built-in memory: 8189 MB
    Free memory: 1413 MB
    Memory available to Photoshop: 7161 MB
    Memory used by Photoshop: 80 %
    3D Multitone Printing: Disabled.
    Windows 2x UI: Disabled.
    Highbeam: Enabled.
    Image tile size: 128K
    Image cache levels: 2
    Font Preview: Medium
    TextComposer: Latin
    Display: 1
    Display Bounds: top=0, left=0, bottom=1024, right=1280
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Normal
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    NumGLGPUs=1
    glgpu[0].GLVersion="3.0"
    glgpu[0].GLMemoryMB=1024
    glgpu[0].GLName="ATI Radeon HD 4800 Series "
    glgpu[0].GLVendor="ATI Technologies Inc."
    glgpu[0].GLVendorID=4098
    glgpu[0].GLDriverVersion="8.850.0.0"
    glgpu[0].GLRectTextureSize=8192
    glgpu[0].GLRenderer="ATI Radeon HD 4800 Series "
    glgpu[0].GLRendererID=37952
    glgpu[0].HasGLNPOTSupport=1
    glgpu[0].GLDriver="aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atium d64.dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm6 4.dll"
    glgpu[0].GLDriverDate="20110419000000.000000-000"
    glgpu[0].CanCompileProgramGLSL=1
    glgpu[0].GLFrameBufferOK=1
    glgpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="3.30"
    glgpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[2147 483647]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[32]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[16]
    glgpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[16]
    glgpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[16384]
    glgpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[16384]
    glgpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[128]
    glgpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[29]
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    glgpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    glgpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    License Type: Subscription
    Serial number: 96040090050480634073
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\
    Temporary file path: C:\Users\Home\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
    F:\, 2.73T, 1.89T free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\Plug-Ins\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Plug-ins\
    Installed components:
    A3DLIBS.dll A3DLIB Dynamic Link Library 9.2.0.112
    ACE.dll ACE 2014/08/12-23:42:09 79.557478 79.557478
    adbeape.dll Adobe APE 2013/02/04-09:52:32 0.1160850 0.1160850
    AdbePM.dll PatchMatch 2014/09/07-21:07:38 79.558079 79.558079
    AdobeLinguistic.dll Adobe Linguisitc Library 8.0.0
    AdobeOwl.dll Adobe Owl 5.2.4
    AdobePDFL.dll PDFL 2014/08/18-15:13:12 79.512424 79.512424
    AdobePIP.dll Adobe Product Improvement Program 7.2.1.3399
    AdobeXMP.dll Adobe XMP Core 2014/08/20-09:53:02 79.156797 79.156797
    AdobeXMPFiles.dll Adobe XMP Files 2014/08/20-09:53:02 79.156797 79.156797
    AdobeXMPScript.dll Adobe XMP Script 2014/08/20-09:53:02 79.156797 79.156797
    adobe_caps.dll Adobe CAPS 8,0,0,13
    AGM.dll AGM 2014/08/12-23:42:09 79.557478 79.557478
    ahclient.dll AdobeHelp Dynamic Link Library 1,8,0,31
    amtlib.dll AMTLib (64 Bit) 8.0.0.122212002 BuildVersion: 8.0; BuildDate: Wed Jul 30 2014 15:59:34) 1.000000
    ARE.dll ARE 2014/08/12-23:42:09 79.557478 79.557478
    AXE8SharedExpat.dll AXE8SharedExpat 2013/12/20-21:40:29 79.551013 79.551013
    AXEDOMCore.dll AXEDOMCore 2013/12/20-21:40:29 79.551013 79.551013
    Bib.dll BIB 2014/08/12-23:42:09 79.557478 79.557478
    BIBUtils.dll BIBUtils 2014/08/12-23:42:09 79.557478 79.557478
    boost_date_time.dll photoshopdva 8.0.0
    boost_signals.dll photoshopdva 8.0.0
    boost_system.dll photoshopdva 8.0.0
    boost_threads.dll photoshopdva 8.0.0
    cg.dll NVIDIA Cg Runtime 3.0.00007
    cgGL.dll NVIDIA Cg Runtime 3.0.00007
    CIT.dll Adobe CIT 2.2.6.32411 2.2.6.32411
    CITThreading.dll Adobe CITThreading 2.2.6.32411 2.2.6.32411
    CoolType.dll CoolType 2014/08/12-23:42:09 79.557478 79.557478
    dvaaudiodevice.dll photoshopdva 8.0.0
    dvacore.dll photoshopdva 8.0.0
    dvamarshal.dll photoshopdva 8.0.0
    dvamediatypes.dll photoshopdva 8.0.0
    dvametadata.dll photoshopdva 8.0.0
    dvametadataapi.dll photoshopdva 8.0.0
    dvametadataui.dll photoshopdva 8.0.0
    dvaplayer.dll photoshopdva 8.0.0
    dvatransport.dll photoshopdva 8.0.0
    dvaui.dll photoshopdva 8.0.0
    dvaunittesting.dll photoshopdva 8.0.0
    dynamiclink.dll photoshopdva 8.0.0
    ExtendScript.dll ExtendScript 2014/01/21-23:58:55 79.551519 79.551519
    icucnv40.dll International Components for Unicode 2013/02/25-15:59:15 Build gtlib_4.0.19090
    icudt40.dll International Components for Unicode 2013/02/25-15:59:15 Build gtlib_4.0.19090
    igestep30.dll IGES Reader 9.3.0.113
    imslib.dll IMSLib DLL 7.0.0.154
    JP2KLib.dll JP2KLib 2014/06/28-00:28:27 79.254012 79.254012
    libifcoremd.dll Intel(r) Visual Fortran Compiler 10.0 (Update A)
    libiomp5md.dll Intel(R) OpenMP* Runtime Library 5.0
    libmmd.dll Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler 12.0
    LogSession.dll LogSession 7.2.1.3399
    mediacoreif.dll photoshopdva 8.0.0
    MPS.dll MPS 2014/08/18-23:43:19 79.557676 79.557676
    pdfsettings.dll Adobe PDFSettings 1.04
    Photoshop.dll Adobe Photoshop CC 2014 15.2
    Plugin.dll Adobe Photoshop CC 2014 15.2
    PlugPlugExternalObject.dll Adobe(R) CEP PlugPlugExternalObject Standard Dll (64 bit) 5.0.0
    PlugPlugOwl.dll Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit) 5.2.0.46
    PSArt.dll Adobe Photoshop CC 2014 15.2
    PSViews.dll Adobe Photoshop CC 2014 15.2
    SCCore.dll ScCore 2014/01/21-23:58:55 79.551519 79.551519
    ScriptUIFlex.dll ScriptUIFlex 2014/01/20-22:42:05 79.550992 79.550992
    svml_dispmd.dll Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler 12.0
    tbb.dll Intel(R) Threading Building Blocks for Windows 4, 2, 2013, 1114
    tbbmalloc.dll Intel(R) Threading Building Blocks for Windows 4, 2, 2013, 1114
    TfFontMgr.dll FontMgr 9.3.0.113
    TfKernel.dll Kernel 9.3.0.113
    TFKGEOM.dll Kernel Geom 9.3.0.113
    TFUGEOM.dll Adobe, UGeom© 9.3.0.113
    updaternotifications.dll Adobe Updater Notifications Library 8.0.0.14 (BuildVersion: 1.0; BuildDate: BUILDDATETIME) 8.0.0.14
    VulcanControl.dll Vulcan Application Control Library 5.0.0.82
    VulcanMessage5.dll Vulcan Message Library 5.0.0.82
    WRServices.dll WRServices Fri Mar 07 2014 15:33:10 Build 0.20204 0.20204
    wu3d.dll U3D Writer 9.3.0.113
    Required plug-ins:
    3D Studio 15.2 (2014.2.0 x001)
    Accented Edges 15.2
    Adaptive Wide Angle 15.2
    Angled Strokes 15.2
    Average 15.2 (2014.2.0 x001)
    Bas Relief 15.2
    BMP 15.2
    Camera Raw 8.6
    Camera Raw Filter 8.6
    Chalk & Charcoal 15.2
    Charcoal 15.2
    Chrome 15.2
    Cineon 15.2 (2014.2.0 x001)
    Clouds 15.2 (2014.2.0 x001)
    Collada 15.2 (2014.2.0 x001)
    Color Halftone 15.2
    Colored Pencil 15.2
    CompuServe GIF 15.2
    Conté Crayon 15.2
    Craquelure 15.2
    Crop and Straighten Photos 15.2 (2014.2.0 x001)
    Crop and Straighten Photos Filter 15.2
    Crosshatch 15.2
    Crystallize 15.2
    Cutout 15.2
    Dark Strokes 15.2
    De-Interlace 15.2
    Dicom 15.2
    Difference Clouds 15.2 (2014.2.0 x001)
    Diffuse Glow 15.2
    Displace 15.2
    Dry Brush 15.2
    Eazel Acquire 15.2 (2014.2.0 x001)
    Embed Watermark 4.0
    Entropy 15.2 (2014.2.0 x001)
    Export Color Lookup Tables NO VERSION
    Extrude 15.2
    FastCore Routines 15.2 (2014.2.0 x001)
    Fibers 15.2
    Film Grain 15.2
    Filter Gallery 15.2
    Flash 3D 15.2 (2014.2.0 x001)
    Fresco 15.2
    Glass 15.2
    Glowing Edges 15.2
    Google Earth 4 15.2 (2014.2.0 x001)
    Grain 15.2
    Graphic Pen 15.2
    Halftone Pattern 15.2
    HDRMergeUI 15.2
    HSB/HSL 15.2
    IFF Format 15.2
    IGES 15.2 (2014.2.0 x001)
    Ink Outlines 15.2
    JPEG 2000 15.2
    Kurtosis 15.2 (2014.2.0 x001)
    Lens Blur 15.2
    Lens Correction 15.2
    Lens Flare 15.2
    Liquify 15.2
    Matlab Operation 15.2 (2014.2.0 x001)
    Maximum 15.2 (2014.2.0 x001)
    Mean 15.2 (2014.2.0 x001)
    Measurement Core 15.2 (2014.2.0 x001)
    Median 15.2 (2014.2.0 x001)
    Mezzotint 15.2
    Minimum 15.2 (2014.2.0 x001)
    MMXCore Routines 15.2 (2014.2.0 x001)
    Mosaic Tiles 15.2
    Multiprocessor Support 15.2 (2014.2.0 x001)
    Neon Glow 15.2
    Note Paper 15.2
    NTSC Colors 15.2 (2014.2.0 x001)
    Ocean Ripple 15.2
    OpenEXR 15.2
    Paint Daubs 15.2
    Palette Knife 15.2
    Patchwork 15.2
    Paths to Illustrator 15.2
    PCX 15.2 (2014.2.0 x001)
    Photocopy 15.2
    Photoshop 3D Engine 15.2 (2014.2.0 x001)
    Photoshop Touch 14.0
    Picture Package Filter 15.2 (2014.2.0 x001)
    Pinch 15.2
    Pixar 15.2 (2014.2.0 x001)
    Plaster 15.2
    Plastic Wrap 15.2
    PLY 15.2 (2014.2.0 x001)
    PNG 15.2
    Pointillize 15.2
    Polar Coordinates 15.2
    Portable Bit Map 15.2 (2014.2.0 x001)
    Poster Edges 15.2
    PRC 15.2 (2014.2.0 x001)
    Radial Blur 15.2
    Radiance 15.2 (2014.2.0 x001)
    Range 15.2 (2014.2.0 x001)
    Read Watermark 4.0
    Render Color Lookup Grid NO VERSION
    Reticulation 15.2
    Ripple 15.2
    Rough Pastels 15.2
    Save for Web 15.2
    ScriptingSupport 15.2
    Shake Reduction 15.2
    Shear 15.2
    Skewness 15.2 (2014.2.0 x001)
    Smart Blur 15.2
    Smudge Stick 15.2
    Solarize 15.2 (2014.2.0 x001)
    Spatter 15.2
    Spherize 15.2
    Sponge 15.2
    Sprayed Strokes 15.2
    Stained Glass 15.2
    Stamp 15.2
    Standard Deviation 15.2 (2014.2.0 x001)
    STL 15.2 (2014.2.0 x001)
    Sumi-e 15.2
    Summation 15.2 (2014.2.0 x001)
    Targa 15.2
    Texturizer 15.2
    Tiles 15.2
    Torn Edges 15.2
    Twirl 15.2
    U3D 15.2 (2014.2.0 x001)
    Underpainting 15.2
    Vanishing Point 15.2
    Variance 15.2 (2014.2.0 x001)
    Virtual Reality Modeling Language | VRML 15.2 (2014.2.0 x001)
    Water Paper 15.2
    Watercolor 15.2
    Wave 15.2
    Wavefront|OBJ 15.2 (2014.2.0 x001)
    WIA Support 15.2 (2014.2.0 x001)
    Wind 15.2
    Wireless Bitmap 15.2 (2014.2.0 x001)
    ZigZag 15.2
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash: NONE
    Installed TWAIN devices: NONE
    http://feedback.photoshop.com/photoshop_family/topics/using-text-tool-freezes-photoshop-cc -2014-2-0-20140926-r-236-x64-release/replies/14873829 

    Check out this other thread I started
    http://feedback.photoshop.com/photoshop_family/topics/using-text-tool-freezes-photoshop-cc -2014-2-0-20140926-r-236-x64-release?utm_source=notification&utm_medium=email&utm_campaign =new_reply&utm_content=reply_button&reply[id]=14914157#reply_14914157
    There it's help there.  I've not totally solved my problem but others seemed to have.
    Richard

  • Aperture 3 keeps crashing on me, consistently. More frequently after using Burn tool or skin smoothing - and even more often when I feather. What can I do? I already upgraded my RAM. I'm at a loss!

    Aperture 3 keeps crashing on me, consistently. More frequently after using Burn tool or skin smoothing - and even more often when I feather. What can I do? I already upgraded my RAM. I'm at a loss!

    4) When my computer crashes, once it starts again, it says "repairing" ... but I am not familiar with reparing permissions -- can you explain how I might do that?
    If you are running OS X Lion, then you can restart your computer and then press and hold the 'Option' key immediately after you hear the start up 'gong' (usually heard when grey screen shows as it restarts).
    You should see at least two Disks to choose from. Choose 'Recovery Disk' and wait for it to load, then choose 'Disk Utility' option in the Utilities dialog.
    Once Disk Utility loads, do the following:
    1 - In the left hand pane, choose your system partition (usually called either 'Macintosh HD' or 'Macintosh SSD'). Note - don't choose the actual hard drive listed above the partition when using Disk Utility in OS X Lion as this doesn't offer options for repairing due to it including the Recovery Disk you have loaded in memory.
    2 - Click the 'First Aid' tab
    3 - Click the 'Repair Disk Permissions' button in lower portion of main pane and allow to complete. Ideally, you will get a final message in main pane saying Disk Permissions are repaired.
    4 - At lower right of same pane, click the 'Repair Disk' button and allow to complete. Ideally, you will get a final message indicating that Disk Repair is completed and all appears to be good.
    5 - Quit Disk Utility > Close Utilities dialog window > Click 'Restart' button (confirm as needed).
    You should boot straight into the system partition when complete.
    Note - any red text in the main pane text while running the repairs will be issues and you will need to follow the advice given or post back.
    If you are running Snow Leopard; then (as David mentions) boot from your first OS X reinstall disc and run the Disk Utility the same way; except you select the actual hard drive listed at top of left pane (not the partition below it). This is because Snow Leopard does not use a 'Recovery Disk' partition and repairs can be run on the HD or SSD itself.
    Hope that helps.

  • Error while building  the eclipse using exadel tool

    hi all
    i m facing a problem while building project using eclipse tool called(exadel ).it gives error like "integarted external building tool error - : variable references non existent resource :${workspace_loc:/my project not found}".
    so if anybody have idea about above pls let me know

    This problem come directly from your Exadel or Eclipse IDE itself.
    It means that a directory (which is your project directory) is not available in your worspace dir.
    usually workspace dir is inside your user home dir.
    check to see whether this folder exisits or not.

  • Addon not starting - help needed in using ExtensionPackage tool

    Hi,
    I have deployed my addon using Lightweight Deployment in 9.1 PL00.
    When starting my addon, I get the error: SapProject1 has stopped working.
    What may be the issue?
    I packaged my addon using ExtensionPackage tool. In the SBO compatibility tab, we need to give the  version like 910.000.00. How should I check I my exact version number? In SAP application->Help->About SAP Business One, it shows version as 9.10.105, but in ExtensionPackage tool, I am supposed to write as nnn.nnn.nn. So how should I mention there?
    Secondly, in the Register 32-Bit Microsoft COM DLLs tab, should I select the DLLs: Interop.SAPbobsCOM.dll and Interop.SAPbouiCOM.dll ?
    Please guide me. I am trying to do it for first time.
    Thanks.

    I have never ran the DocCheck from the command prompt, so I really don't know how to do it, but I do run it succesfully using ant (build tool from apache - jakarta, if you use tomcat you already have it installed).
    So.. if you do use ant.. this will help:
    <target name="doccheck" depends="prepare">
         <javadoc
              packagenames="${packages}"
                    destdir="${doccheck.home}"
              doclet="com.sun.tools.doclets.doccheck.DocCheck"
              docletpath="${doccheck.path}" >
              <classpath refid="project.classpath"/>
              <sourcepath refid="project.classpath"/>
         </javadoc>
    </target>If you don't use it.. I guess I was of no help, sorry.
    Ylan

Maybe you are looking for

  • How to chek virus in file using JAVA progs.

    I want to write a java program, which will read or fetch file name and check for virus by using some antivirus and if the file is not infected then it must return boolean true otherwise false. But I don't know how to write the code means I know how t

  • Reg  QM business process flow

    Hi All, Cud U pls let me know the business process flow in QM( Quality Management )??? Pls its really very ugent for me...PLSSSS Thanx in Advance

  • Logistics Execution Question

    Hi GURUS!!.. Urgent We are currently in the Blueprinting phase and the major factor is that the client needs to know if "vanilla SAP 6.0" could solve these problems or do we need SAP APO for the same. If not both, then is there specific "add on" for

  • [b]Install bi beans samples on 10g :  Error when Migrating CS_OLAP.SHAW[/b]

    I have a problem to install the common schema. The problem occur when executing the script : 3_create_aw.sql which call the program _migrateaw.pro, the error is : The Analytic Workspace version is: 10.1.0.3.0 Migrating CS_OLAP.SHAW... ERROR : SYS.AWX

  • Flash files in a container

    Hello I hope someone can guide me in the right direction. I am producing a cd in Flash. I want my flash files to play inside of a container/frame. The container will be viewed as a red bar at the top and bottom of the flash, containing my play, pause