Sql Devloper 4.0.0.13 - problems with displaying user data types

Hi,
I have installed new version of sqldeveloper and have discovered some problems with displaying user data types. The data that is described as VARCHAR2 are displayed with ‘???’.
The problem persist in table view, script output and exported files.
My type is described as follows:
create or replace TYPE "DPTY_ADRESA" AS OBJECT
  ID_DPSF_OPCINE                                         NUMBER,
  ID_DPSF_MJESTA                                        NUMBER,
  OPCINA                                            VARCHAR2(100),
  MJESTO                                            VARCHAR2(100),
  ULICA                                 VARCHAR2(200),
  BROJ                                   VARCHAR2(20),
  SPRAT                VARCHAR2(20),
  OSTALO                             VARCHAR2(100),
  CONSTRUCTOR FUNCTION dpty_adresa RETURN SELF AS RESULT
add MEMBER FUNCTION dajAdresu RETURN VARCHAR2 cascade;
when make select column from table that contains this type I get next results:
CASE 1:
SQLDeveloper Version 3.2.20.09; Build MAIN-09.87; JDK 1.6.0_43; Windows 7 64 bit
Select:
select id, adresalokacija
from dptr_saglasnosti
where id = 1;
Result:
        ID ADRESALOKACIJA
         1 COMP.DPTY_ADRESA(124,4913,'TRAIK','TURBE','BABANA','3452','0',NULL)
END CASE 1;
CASE 2:
SQLDeveloper Version 4.0.0.13; Build MAIN-13.80; JDK 1.7.0_40; Windows 7 64 bit
Select1:
select id, adresalokacija
from dptr_saglasnosti
where id = 1;
Result1:
ID ADRESALOKACIJA
         1 COMP.DPTY_ADRESA(124,4913,'???','???','???','???','???',NULL)    
But if I select one element it is displayed normal.
Select2:
select id, a.adresalokacija.opcina
from dptr_saglasnosti a
where id = 1;
Result2:
ID ADRESALOKACIJA.OPCINA
         1 TRAVNIK                  
END CASE 2;
I have tried this scenario on three different pc with same output.
Pleas help me to get rid of the '???' in result.
Best Regards,
Omer

  I tried on SQLDeveloper Version 4.0.0.13; Build MAIN-13.80; JDK 1.7.0_45; Windows 7 64 bit; NLS setting is default
all data can show,No ??? in result
Test step as following:
create or replace TYPE "DPTY_ADRESA" AS OBJECT
  ID_DPSF_OPCINE                                         NUMBER,
  ID_DPSF_MJESTA                                        NUMBER,
  OPCINA                                            VARCHAR2(100),
  MJESTO                                            VARCHAR2(100),
  ULICA                                 VARCHAR2(200),
  BROJ                                   VARCHAR2(20),
  SPRAT                VARCHAR2(20),
  OSTALO                             VARCHAR2(100),
  CONSTRUCTOR FUNCTION dpty_adresa RETURN SELF AS RESULT
alter TYPE "DPTY_ADRESA" add MEMBER FUNCTION dajAdresu RETURN VARCHAR2 cascade;
CREATE TABLE dptr_saglasnosti (
adresalokacija        DPTY_ADRESA,
  id    number);
  INSERT INTO dptr_saglasnosti VALUES (
  DPTY_ADRESA (65,225,'Vrinda Mills', '1-800-555-4412','sss','aaaa','eeeee','attta'),1 );
select id, adresalokacija from dptr_saglasnosti where id = 1;
ID ADRESALOKACIJA
1    HRCP.DPTY_ADRESA(65,225,'Vrinda Mills','1-800-555-4412','sss','aaaa','eeeee','attta')

Similar Messages

  • Problem with displaying chart data

    Hello everybody,
    I have problem with displaying chart data correctly. I'm using a cartesian chart with DateTimeAxis. The stockdata I'm using is for half a year and
    with ticks for every day. The problem is, that Flex displays the data of february in march together with the data of march. I have added a picture
    to show the result. The second column of the grid is for february and the third for march.
    Could anybody help me with this problem. Thanks in advance.
    Thomas

    Hi Chris,
    thanks for your reply. Here you get the source code:
    The following method creates the LineChart:
            public function init():void
                model.upperChart = this;
                model.upperChartStyle.setChartViewStyle(this);
                this.hAxis = new MyDateTimeAxis();
                model.upperChartData.configureHAxis(this.hAxis);
                this.vAxis = new LinearAxis();
                model.upperChartData.configureVAxis(this.vAxis);           
                this.vAxisTitle = new Label();
                this.vAxisTitle.text = model.upperChartData.getVAxisTitle();
                model.upperChartStyle.setVAxisTitleLabelStyle(this.vAxisTitle);
                this.vAxisTitle.x = 10
                this.vAxisTitle.y = 0;
                this.addChild(this.vAxisTitle);
                this.myChart = new CartesianChart();
                //remove default datatip
                this.myChart.showDataTips = false;
                this.myChart.x = 10;
                this.myChart.y = 0;
                this.myChart.width = 768; 
                this.myChart.height = 196;
                model.upperChartStyle.setChartStyle(this.myChart);
                this.addChild(this.myChart);
                //Remove line shadow
                this.myChart.seriesFilters = null;
                this.myChart.horizontalAxis = this.hAxis;
                this.myChart.verticalAxis = this.vAxis;
                this.hAxisRenderer = new AxisRenderer();
                model.upperChartData.configureHAxisRenderer(this.hAxisRenderer);
                this.hAxisRenderer.axis = this.hAxis;        
                model.upperChartStyle.setHAxisRendererStyle(this.hAxisRenderer);
                this.myChart.horizontalAxisRenderers.push(this.hAxisRenderer);
                this.vAxisRenderer = new AxisRenderer();
                model.upperChartData.configureVAxisRenderer(this.vAxisRenderer);
                this.vAxisRenderer.axis = this.vAxis;
                model.upperChartStyle.setVAxisRendererStyle(this.vAxisRenderer);
                this.myChart.verticalAxisRenderers.push(this.vAxisRenderer);
                model.upperChartStyle.setVAxisDataLabelStyle(this.vAxisMinLabel);
                this.addChild(this.vAxisMinLabel);   
                model.upperChartStyle.setSeriesStyle(model.upperChartData.series, model.upperChartData.shares);           
                this.myChart.dataProvider = model.upperChartData.dataProvider;
                this.myChart.series = model.upperChartData.series;
    The data for dataprovider and series you can see in attached file dataprovider.xml.
    xfield is equivalent to timestamp
    yfield is equivalent to absolute
    I think the problem could be the configuration of the datetimeaxis. The following method shows the parameter for the datetimeaxis:
            public function configureHAxis(axis:MyDateTimeAxis):void
                axis.parseFunction = UtilityClass.parseYYYYMMDDHHNNSSString2Date;
                axis.dataUnits = "days";
                axis.dataInterval = 1;
                axis.title = "";
                axis.minimum = new Date(UtilityClass.parseYYYYMMDDHHNNSSString2Date("2009-01-07 00:00:00").time);
                axis.maximum = new Date(UtilityClass.parseYYYYMMDDHHNNSSString2Date("2009-07-06 00:00:00").time);
    And finally you get the function, that I'm using for string to date conversion:
            public static function parseYYYYMMDDHHNNSSString2Date(input:String):Date
                var result:Date = new Date();
                var year:Number = Number(input.substring(0,4));
                var month:Number = Number(input.substring(5,7));
                var date:Number = Number(input.substring(8,10));
                var hours:Number = Number(input.substring(11,13));
                var minutes:Number = Number(input.substring(14,16));
                var seconds:Number = Number(input.substring(17,19));           
                result.setUTCFullYear(year);
                result.setUTCMonth(month-1);
                result.setUTCDate(date);
                result.setUTCHours(hours);
                result.setUTCMinutes(minutes);
                result.setUTCSeconds(seconds);
                return result;           
    I hope that will help to locate the reason for the wrong chart visualization.
    Thanks for any help.

  • Problem with custom validated data types using domain on 11g

    Hi,
    I ' m on a migration process from 10 to 11 and I notice that a custom domain didn't work correctly anymore
    to be more specific every time that I was submiting a page a was getting an error cannot convert from myclass to oracle.jbo.domain.String
    I search the forum and I saw a similar problem
    Cannot convert type class java.lang.String to class oracle.jbo.domain.Clob
    at which Frank says that it is a known bug and suggests a work around.
    I use the workaround and it worked but some more issues came up:
    1. If the validation fails I get the error that I throw at the validate method not in a popup with just my message
    but in the whole window with the whole error stack, meaning that my custom validation is not handled like native ADF validation errors by
    the framework (at 10.1.3.4 worked OK)
    2 If i dont give a value at the attribute in the validation phase mdata variable is not null but is length is zero (at 10.1.3.4 its value was null)
    public class AFM implements DomainInterface, Serializable {
    public AFM(String val) {
    mData = new String(val);
    validate();
    private String mData;
    protected void validate() {
    // ### Implement custom domain validation logic here. ###
    mData==null // returns false
    mData.length()==0 // returns true
    3. Can i force validation only for new or updated values? I saw that the validation process is taking place every time a row is fetched.
    This is not only a performance issue, the bigger problem is that if a fetched from the DB value fails the validation an error is return but the
    user cannot change the value to correct it.
    TIA
    Tilemahos

    since i don't get any answer I wonder if i should have use a more provocative title like
    "custom domains in 11g don't work"
    is it true?
    Tilemahos

  • Problem with display of data of xml in excel2002

    Hi!
    Good day!I have 2 files.1 .dtd file and another one is .xml file.my xml file is displaying in IExprorer with tree order.but when i open the same .xml file in excel2002,all the data is not displaying in arranged order.even fields are also not following tree order.
    I want my xml file should be displayed in excel 2002 with arranged order.All of my fileds should be displayed in the order and data also should be in the order.
    not only my own file,any other file i take,it's opening in the excel2002 with improper arrangement columns and data also not displaying in order.
    can anybody plz solve it?
    thanks in advance....
    latha

    have a look at jexcill API : http://www.andykhan.com/jexcelapi/
    It works fine to generated excel files.

  • Problems with displaying read data from a .lvm file

    Hi all.
    I aquire data with the PCMCIA card 6036E. I aquire online in Labview 7 and store the data in a .lvm file. When i try to display the same data i aquired before with the "read .lvm file" express vi, the waveform chart redraws itself after an undefined time, sometimes it redraws faster and sometimes it takes longer. WHY? i have only one header per aquisition and if i restart the aquisition a new file is written! I tried almost everything. Is this a bug from labview 7?
    I really appreciate your help.
    best regards,
    Bernd

    Hi Khalid,
    Here is a simplified version of my VI and also 2 .lvm files from the logged data. Sorry for the size, but I aquire with a sample rate of 20 kS/s and my main frequency is only 0.3 Hz. In the 6MB file I aquired a little more than 3 periods. When you run the VI with this file at the beginning it redraws very often and very fast, then after some time it draws about 1 period and then it redraws again and so on. I want that the hole data from this file is displayed at once. The 900kB file is aquired with 10kS/s and about 1.5 periods. This is the last size the displaying is working with. You think it is possible that the VI only works until 1MB? But my data usually is much bigger than that. I hope you can use the data because it is
    zipped, but otherwise it wouldnt be possible to post it.
    Thank you very much for your help, I really appreciate it!
    Best regards,
    Bernd
    Attachments:
    simplified_VI_for_offline_data_display.vi ‏79 KB
    2004-07-01_Messung9.zip ‏191 KB
    2004-07-01_Messung4.zip ‏680 KB

  • Problem with displaying the data from Database on swf file.

    Hi ,
      I am new to flash.Thanks in Advance Please help me....
    Actually my requirement is my application consists a button(submit_Btn) when we click on the button(submit_Btn), each time it must to database(through servlet) and brings the data from database and places it on the flash swf file.Here my problem is for the first time when we click on the button it goes to database and place the data(which was returned from database) on the swf file.Next  when we click on the button for the second time(or anytime) it is not going  and bringing the new data from database(if some data is modified in database or not),Infact it is showing the old data(the data that was collected from previous ClickListener) only on the swf file and it is also not showing any complile time or run time error.
    my Code looks like this:
    submit_Btn.addEventListener(MouseEvent.CLICK,onCheck2);
    function onCheck2(evnt:MouseEvent):void {
    var xmlLoader:URLLoader = new URLLoader();
        var xmlurl:String = "http://localhost:8888/xmlServlet";
        var xmlrequest:URLRequest = new URLRequest(xmlurl);
    xmlLoader.dataFormat = URLLoaderDataFormat.TEXT;
    xmlLoader.addEventListener(Event.COMPLETE, xmlcompleteHandler);
    xmlLoader.load(xmlrequest);
    function xmlcompleteHandler(event:Event):void {
        var loader:URLLoader = URLLoader(event.target);
        var succData:String=loader.data;
            var xmlData:XML = new XML();
            var xmlList:XMLList;
            xmlData = XML(loader.data);
            xmlList = xmlData.children();
            for (var i=0; i<xmlList.length(); i++) {
                for (var n=0; n<xmlData.UserHumanap[i].HumanapDot.length(); n++) {
                        var x_coordinate:Number = xmlData.UserHumanap[i].HumanapDot[n].@x;
                        var y_coordinate:Number = xmlData.UserHumanap[i].HumanapDot[n].@y;
                        var point2:Point = new Point(x_coordinate,y_coordinate);
                        var circle:Sprite = new Sprite();
                        circle.graphics.beginFill(0x00ff00);
                        circle.graphics.drawCircle(point2.x,point2.y,3);   //Placing the data as dots on the swf file
    Thanks in Advance.......Please Help me..........
    its Urgent..........
    Thanks,
    Swarthi

    Checkout following line in your code
    var xmlurl:String = "http://localhost:8888/xmlServlet";
    now change it to
    var xmlurl:String = "http://localhost:8888/xmlServlet?random="+String(MAth.random());
    I think you will get the point now

  • Help : Getting Problem with CLOBand BLOB data types

    Hi All
    could any one suggest me that i store maximum data in oracle data type for that which data type i have to use?
    Thanks
    Edited by: Ajay Patel on Oct 3, 2008 11:13 PM

    Hi,
    Don't go for BLOB as its suggested to take for Non text files for that data type.
    Try to use CLOB, which will be useful for your requirement.
    I don't have idea on PHP..
    But for you understand purpose....!! demo
    15:30:12 zug7_real>CREATE TABLE TBLSAVEDPROPOSAL
    15:30:12   2  (
    15:30:12   3  TEXTCONTENT CLOB
    15:30:12   4  );
    Table created.
    15:30:14 zug7_real>INSERT INTO TBLSAVEDPROPOSAL VALUES(3, '<HTML>France is in Eu
    rope.</HT');
    INSERT INTO TBLSAVEDPROPOSAL VALUES(3, '<HTML>France is in Europe.</HT')
    ERROR at line 1:
    ORA-00913: too many values
    15:30:37 zug7_real>INSERT INTO TBLSAVEDPROPOSAL VALUES('<HTML>France is in Europ
    e.</HT');
    1 row created.
    15:30:42 zug7_real>select * from TBLSAVEDPROPOSAL;
    TEXTCONTENT
    <HTML>France is in Europe.</HT
    15:30:51 zug7_real>desc TBLSAVEDPROPOSAL
    Name                                      Null?    Type
    TEXTCONTENT                                        CLOB- Pavan Kumar N

  • Adobe Reader becomes unresponsive when loading a PDF on a network with redirected user data.

    I have a client with redirected user data, including application data, that is experiencing poor performance of Adobe Reader when trying to view PDF's. They are not using roaming profiles but do have redirected user data and documents on a server. One of the client's sites has direct file access to the domain with a small network pipe of 20MB. I expect the slow load of the PDF's but not the actual "application is unresponsive" behavior. If you wait for 10-15 minutes, then it seems to behave okay.
    I know that previous versions of adobe reader had problems with redirected data. Here are a couple of the threads I found talking about this issue.
    http://forums.adobe.com/thread/754379
    http://forums.adobe.com/thread/391738
    Does anyone know the official adobe word on their minimum recommended bandwidth requirements for redirected data? Do they not support redirection at all? I have tested Adobe 9,10 and 11 with the same problems.  Local files still have problems with redirected user data but local users with local files have no problem. Alternate PDF programs still take time to load the file over the network but do not seem to have the application hang problems. Any ideas or suggestions?

    in AS2, use getURL("data/pdf/nameoffile.pdf",
    "_blank");

  • Problem with displaying BLOB images on JSP page using a servlet

    hi. I have a big problem with displaying BLOB images using JSP. I have a servlet that connects to the oracle database, gets a BLOB image , reads it, and then displays it using a BinaryStream. The problem is , this works only when i directly call that servlet, that is http://localhost:8080/ImageServlet. It doesn't work when i try to use that servlet to display my image on my JSP page (my JSP page displays only a broken-image icon ) I tried several coding approaches with my servlet (used both Blob and BLOB objects), and they work just fine as long as i display images explicitly using only the servlet.
    Here's what i use : ORACLE 10g XE , Eclipse 3.1.2, Tomcat 5.5.16 , JDK 1.5
    here is one of my image servlet's working versions (the essential part of it) :
                   BLOB blob=null;
              rset=st.executeQuery("SELECT * FROM IMAGES WHERE ID=1");
              while (rset.next())
                   blob=((OracleResultSet)rset).getBLOB(2);
              response.reset();
              response.setContentType("image/jpeg");
              response.addHeader("Content-Disposition","filename=42.jpeg");
                    ServletOutputStream ostr=response.getOutputStream();
                   InputStream istr=blob.getBinaryStream(1L);
                    int size=blob.getBufferSize();
              int len=-1;
                    byte[] buff = new byte[size];
                         while ((len=istr.read( buff ))!=-1 ) {
                   ostr.write(buff,0,len);
             response.flushBuffer();
             ostr.close(); and my JSP page code :
    <img src="/ImageServlet" border="0"  > If you could just tell me what i'm doing wrong here , or if you could show me your own solutions to that problem , i would be very greatful ,cos i'm realy stuck here , and i'm rather pressed for time too. Hope someone can help.

    I turns out that it wasn't that big of a problem after all. All i had to do was to take the above code and place it into another JSP page instead of into a servlet like i did before. Then i just used that page as a source for my IMG tag in my first JSP. It works perfectly well. Why this doesn't work for servlets i still don't know, but it's not a problem form me anymore . Ofcourse if someone knows the answer , go ahead and write. I would still appriceatte it.
    here's the magic tag : <img src="ImageJSP.jsp" border="0"  > enjoy : )

  • Problem with display driver

    Hello,
    Im using Photoshop CC and when it starts up it sometimes gives me this error message:
    'Problem with display driver and has temporary disabled enhancements which use graphics hardware.'
    What does this mean?
    Then it tells me to download the latstest software and gives me a link to an Adobe site that tells me nothing about a sollution.
    About my mac:
    MacBook Pro
    Intel Core i7
    2,2 GHz
    4 cores
    8 GB RAM
    AMD Radeon HD 6750M
    Thanks a bunch!

    Here you go:
    Adobe Photoshop Version: 14.2 (14.2 20131211.r.515 2013/12/11:23:00:00) x64
    Operating System: Mac OS 10.9.1
    System architecture: Intel CPU Family:6, Model:42, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2200 MHz
    Built-in memory: 4096 MB
    Free memory: 2266 MB
    Memory available to Photoshop: 3136 MB
    Memory used by Photoshop: 80 %
    Image tile size: 1024K
    Image cache levels: 4
    Font Preview: Medium
    TextComposer: Latin
    The GPU Sniffer crashed on 10/01/2014 at 09:05:58
    Display: 1
    Main Display
    Display Bounds: top=0, left=0, bottom=900, right=1440
    OpenGL Drawing: Enabled.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    AIFCoreInitialized=1
    AIFOGLInitialized=1
    OGLContextCreated=1
    NumGPUs=1
    gpu[0].OGLVersion="2.1"
    gpu[0].MemoryMB=1024
    gpu[0].RectTextureSize=16384
    gpu[0].Renderer="AMD Radeon HD 6750M OpenGL Engine"
    gpu[0].RendererID=16915206
    gpu[0].Vendor="ATI Technologies Inc."
    gpu[0].VendorID=4098
    gpu[0].HasNPOTSupport=1
    gpu[0].CompileProgramGLSL=1
    gpu[0].TestFrameBuffer=1
    gpu[0].OCLPresent=1
    gpu[0].OCLVersion="1.2 (Aug 24 2013 21:03:27)"
    gpu[0].CUDASupported=0
    gpu[0].OCLBandwidth=1.89051e+10
    gpu[0].glGetString[GL_SHADING_LANGUAGE_VERSION]="1.20"
    gpu[0].glGetProgramivARB[GL_FRAGMENT_PROGRAM_ARB][GL_MAX_PROGRAM_INSTRUCTIONS_ARB]=[4096]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_UNITS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS]=[16]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS]=[16]
    gpu[0].glGetIntegerv[GL_MAX_TEXTURE_IMAGE_UNITS]=[16]
    gpu[0].glGetIntegerv[GL_MAX_DRAW_BUFFERS]=[8]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_UNIFORM_COMPONENTS]=[3072]
    gpu[0].glGetIntegerv[GL_MAX_FRAGMENT_UNIFORM_COMPONENTS]=[3072]
    gpu[0].glGetIntegerv[GL_MAX_VARYING_FLOATS]=[128]
    gpu[0].glGetIntegerv[GL_MAX_VERTEX_ATTRIBS]=[16]
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_PROGRAM]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_ARB_FRAGMENT_SHADER]=1
    gpu[0].extension[AIF::OGL::GL_EXT_FRAMEBUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_RECTANGLE]=1
    gpu[0].extension[AIF::OGL::GL_ARB_TEXTURE_FLOAT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_OCCLUSION_QUERY]=1
    gpu[0].extension[AIF::OGL::GL_ARB_VERTEX_BUFFER_OBJECT]=1
    gpu[0].extension[AIF::OGL::GL_ARB_SHADER_TEXTURE_LOD]=1
    License Type: Subscription
    Serial number:
    Application folder: /Applications/Adobe Photoshop CC/
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Macintosh HD, 697.8G, 107.2G free
    Required Plug-ins folder: /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Required/Plug-Ins/
    Primary Plug-ins folder: /Applications/Adobe Photoshop CC/Plug-Ins/
    Installed components:
       adbeape.framework   adbeape   3.4.0.29366   0.1160850
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.3.2.31983   79.546835
       adobe_caps.framework   adobe_caps   7.0.0.21   1.248010
       AdobeACE.framework   AdobeACE   2.20.02.31977   79.548223
       AdobeAGM.framework   AdobeAGM   4.30.29.31977   79.548223
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.03.31977   79.548223
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   79.548223
       AdobeCoolType.framework   AdobeCoolType   5.15.00.31977   79.548223
       AdobeCrashReporter.framework   AdobeCrashReporter   7.0.1  
       AdobeExtendScript.framework   AdobeExtendScript   4.5.5.31983   79.546835
       AdobeJP2K.framework   AdobeJP2K   1.2.2.31977   79.248139
       AdobeLinguistic.framework      19061  
       AdobeMPS.framework   AdobeMPS   5.8.1.31977   79.535029
       AdobeOwl.framework   AdobeOwl   5.0.24   79.547804
       AdobePDFL.framework   AdobePDFL   11.0.0.31977   79.508720
       AdobePDFSettings.framework   AdobePDFSettings   1.4  
       AdobePIP.framework   AdobePIP   7.0.0.1786  
       AdobeScCore.framework   AdobeScCore   4.5.5.31983   79.546835
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   79.154911   79.154911
       AdobeXMPFiles.framework   AdobeXMPFiles   79.154911   79.154911
       AdobeXMPScript.framework   AdobeXMPScript   79.154911   79.154911
       ahclient.framework   ahclient   1.8.0.31  
       aif_core.framework   AdobeAIF   5.0.00   79.534508
       aif_ocl.framework   AdobeAIF   5.0.00   79.534508
       aif_ogl.framework   AdobeAIF   5.0.00   79.534508
       AlignmentLib.framework   xcode   Copyright © 2013 Adobe Systems Incorporated  
       amtlib.framework   amtlib   7.0.0.249  
       boost_date_time.framework   boost_date_time   7.0.0.0  
       boost_signals.framework   boost_signals   7.0.0.0  
       boost_system.framework   boost_system   7.0.0.0  
       boost_threads.framework   boost_threads   7.0.0.0  
       Cg.framework   NVIDIA Cg     
       CIT.framework   CIT   2.1.6.30929   151865
       CITThreading.framework   CITThreading   2.1.6.30929   151865
       dvaaudiodevice.framework   dvaaudiodevice   7.0.0.0  
       dvacore.framework   dvacore   7.0.0.0  
       dvamarshal.framework   dvamarshal   7.0.0.0  
       dvamediatypes.framework   dvamediatypes   7.0.0.0  
       dvaplayer.framework   dvaplayer   7.0.0.0  
       dvatransport.framework   dvatransport   7.0.0.0  
       dvaunittesting.framework   dvaunittesting   7.0.0.0  
       dynamiclink.framework   dynamiclink   7.0.0.0  
       FileInfo.framework   FileInfo   79.154511   79.154511
       filter_graph.framework   AdobeAIF   5.0.00   79.534508
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       LogSession.framework   LogSession   2.1.2.1785  
       mediacoreif.framework   mediacoreif   7.0.0.0  
       patchmatch.framework   patchmatch   1.2.00.31977   79.542390
       PlugPlugOwl.framework   PlugPlugOwl   4.2.0.36  
       UpdaterNotifications.framework   UpdaterNotifications   7.0.1.102   "7.0.1.102"
       WRServices.framework        
    Required plug-ins:
       3D Studio 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 14.2, Copyright © 2014 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       Angled Strokes 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 8.3 (141), Copyright © 2013 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Camera Raw Filter 8.3 (141), Copyright © 2013 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 14.2 x001  ©2002-2014 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 14.2 x001  ©2003-2014 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 14.2 x001  ©1997-2014 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Entropy 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 14.2 x001  ©1990-2014 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 14.2 x001  ©2001-2014 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 14.2, Copyright © 2002-2014 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 14.2, Copyright © 2002-2014 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 14.2, Copyright © 2001-2014 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Measurement Core 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mezzotint 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 14.2 x001  ©1990-2014 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 14.2 x001  ©1990-2014 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 14.2, Copyright © 2014 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 14.2 x001  ©1989-2014 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Photoshop 3D Engine 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Photoshop Touch CC (14.2.0.0) ©1993-2014 Adobe Systems Incorporated - from the file “PSDX.plugin”
       Picture Package Filter 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 14.2 x001  ©1989-2014 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 14.2 x001  ©1989-2014 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 14.2 x001  ©2003-2014 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 14.2, Copyright © 1999-2014 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 14.2, Copyright © 2014 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shake Reduction 14.2, Copyright © 2014 Adobe Systems Incorporated - from the file “Shake Reduction.plugin”
       Shear 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 14.2 x001  ©1993-2014 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       STL 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Sumi-e 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Summation 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Underpainting 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 14.2, Copyright © 1991-2014 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wavefront|OBJ 14.2 x001  ©2006-2014 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 14.2 x001  ©1989-2014 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 14.2, Copyright © 2003-2014 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
       Adobe Exchange
    Installed TWAIN devices: NONE

  • I have a early 2011 Macbook pro 13 inch, I'm running Lion 10.7.4, and i want to upgrade to 10.8 Mountain Lion. Is it safe for my computer or are people experiencing problems with displays and Battery life?

    I have a early 2011 Macbook pro 13 inch, I'm running Lion 10.7.4, and i want to upgrade to 10.8 Mountain Lion. Is it safe for my computer or are people experiencing problems with displays and Battery life?
    Do Not post stuff about how Airplay doesnt work, because i dont have Apple TV and dont need to hear about it.

    If you have an external drive equal to or larger than your internal HD, clone your internal to it with either Carbon Copy Cloner or Super Duper. Test the clone to make sure it's bootable. Then upgrade either one. Try it out first.

  • How can I debug a problem with the 3g data connection on my iPhone 4s?

    This question didn't get any answers in the "Using iPhone" forum. Thought I would re-ask here. Note, I had to reset the network again today 2 days after the last reset:
    I've been having intermittent problems with my 3g data connection on my iPhone 4s on ATT. Whenever this happens I see full bars etc, but can't browse from safari or get any data in other apps. My wife's iPhone 4 right next to me has no issues at all. Switching on/off airplane mode and turning off/on Cellular Data does not help. The only thing that helps is resetting the Network Settings or hard restarting the phone.
    I figured my problems were hardware related so I took my phone in for a replacement the other day. Things started out fine but after I upgraded it to 5.01 and restored my backup and now I am back to having the same issue today. I assume the issue is with something coming from my backup / restore but is there any way for me to pinpoint what could be causing the issue. I have a lot of apps, I'd rather not have to reinstall and set them all backup manually, but I would if I knew that would fix the problem... but for all I know one of the apps could be causing it.
    Anyone have any logs I can check or testing I can do on my end?
    Thanks!

    Unfortunately, Apple does not make any logs available to the average schmoe (like us) for networking, kernel dumps, or anything else (assuming, of course, it is not jailbroken).
    Your best bet is to take it back into the store. Ask them to look at the notes in GCRM regarding the last time this occured, then explain after upgrading to 5.01 it is occuring again. Then ask them for a phone swap since it is a reoccuring issue and doesn't sound like an OS/SW issue. Good luck!

  • Error message in time machine: "There was a problem with the user name or the password of the network

    I have been unable to back up my macbook to my time capsule for some time now. I received the following error message (translated from Swedish) when trying to back up using time machine:
    "The network's volume could not be placed on the desktop. There was a problem with the user name or the password for the network.
    Open system preferences and go to Time Machine. Select the volume for security backup again and state the correct user name and password."
    I have confirmed the network password, and also tried with resetting the password. I have not idea what else to do. Any help is much appreciated.
    Best regards,
    John

    I have been unable to back up my macbook to my time capsule for some time now. I received the following error message (translated from Swedish) when trying to back up using time machine:
    "The network's volume could not be placed on the desktop. There was a problem with the user name or the password for the network.
    Open system preferences and go to Time Machine. Select the volume for security backup again and state the correct user name and password."
    I have confirmed the network password, and also tried with resetting the password. I have not idea what else to do. Any help is much appreciated.
    Best regards,
    John

  • Problem with a Dynpro field (type numc)

    hi everybody.
    I'm developping a ModulPool application in wich i have 2 RadioButtons with 2 textbox fields.
    What i pretend to do is, when the user clicks a radiobutton and strikes Intro, enable the corresponding textbox field and disable the other one.
    My code runs fine, but i have a little problem. When I loop the screen table, to set the appropiate value to the 'input' property, in this case, when i try to disable it (input = '0'), I get a zero character in that field. This field has NUMC type, i'm sure this is the problem
    'cos i've got no problem with the other field (type char). But i can't solve it.
    Anybody's got an idea?
    Thanks

    What you are seeing is the normal behavior of a numeric field represented by the SAPgui.  This is how all numeric fields are displayed via SAPgui.  If you don't want to see the 0,  then you just change the field type to CHAR and handle accordingly.
    Regards,
    Rich Heilman

  • Charm: BP problem with the user

    Hi!
    I have problem with the user for the usage of ChaRM.
    When I try to set the the (urgent) correction in Development i get the following error.
    There is no valid business partner assigned to your user.
    Meanwhile the appropriate BP-entry for the user exists:
    External BP number: <SID> <CLNT> <user name>
    Identification number: <SID> <installation number> <user name>
    Furthermore I have the following error, when I try to approve the change request:
    Partner 141 (Change-Manager) is neither an employee nor an organizational unit
    I would be great to get some help here.
    Thank you
    regards
    Thom

    Hi Thomm,
    1. There is no valid business partner assigned to your user.
       In BP under identification tab,
       ID type    idenification number
      CRM001 <SID> <installation number><CLNT><username>
    2.Partner 141 (Change-Manager) is neither an employee nor an organizational unit
    Assign the BP role as "Employee" for Change Manager
    regards
    Naveen

Maybe you are looking for

  • How to restore a time machine backup from a corrupted disk

    Hi. I have quite a problem. I recently downgraded to os x 10.5.4 due to the requirements of Digidesign's Pro Tools. I did so with a clean install in order to have the most optimized computer possible without loads of unused data. I had backed up my d

  • Start web dispacher on linux

    Hello all, I want to start the WebDispacher ( NW 7.0 EhP3, Java system) The Error is: 3> startsap all X01 Trying to start SID database ... Log file: /home/sidadm/startdb.log Starting Startup Agent sapstartsrv OK Instance Service on host sid started s

  • Issue sorting dates in export to excel

    After exporting to excel, the end-user wants to sort on a date characteristic (posting date), using excel functionalities. This gives an incorrect result: 01.01.2006 01.01.2007 01.02.2006 01.02.2007 If we sort on a time characteristic (calendar day),

  • Downloaded and installed Camera_Raw_5_7_updater on CS4 to enable NEC files, does not work, what am Idoing wrong?

    Folks, I have just downloaded Camera_Raw_5_7_updater in order to enble NEC files in CS4, instalation went fine, but still can't open NEC's any suggestions?

  • LR 4.4 will not load

    I have downloaded LR Beta 4.4 and have not been able to install in on my iMac (10.7.5).  I've tried this twice but to no avail.  I can't get past the Installer.  "Continue" is grayed out.  Anyone else have this problem and if so, what have you done a