Invalid Java Packages

Hi Guys,
hope somebody can help me to find out why these packages are invalid.
I try to use a barcode plsql script wich references the barcode types in the library:
http://sourceforge.net/projects/barcode4j/files/barcode4j-2.0-bin.zip
All or/krysalis/barcode4j Java Classes don't work.
Where could be the problem?
I am working on Version 11.2.0.1.0 Windows 2003 Server
Testmachine on Version 9.2.0.8.0 Windows 2000 Server
Also I am not sure how to reference the following:
V_IMAGETYPE varchar2(100) := 'image/jpeg';
V_FONTPATH varchar2(100) := 'C:\\WINDOWS\\Fonts';
Is this valid for Windows?
Thanks
Marcel

Hi,
Before performing just go through the pages all through and check whether it refers to your issue and go head else check in metalink.
Refer to :
http://www.ubtools.com/jira/browse/QA-40
http://www.askrenzo.com/oracle/DBMS_SQLPA_invalid.html
HTH
- Pavan Kumar N
Oracle 9i/10g - OCP
http://oracleinternals.blogspot.com/

Similar Messages

  • Java Package Invalid?

    Recently I have upgraded Oracle database to 10g from 9i.
    How to check whether any java code is invalid in backend

    Here:
    Re: Java Package Invalid?

  • Invalid Java code from oracg

    I'm having a problem with oracg generating invalid Java code using XDK for Java 9.2.0.5.0 on Solaris 8.
    Specifically, oracg generates invalid Type names for elements that have both attributes and complexTypes; at least, that's where I'm having problems with it.
    I've included my test case in this posting. I have defined the following structure in test.xsd:
    <test lang="en">
    <table border="0">
    <tr>
    <td>blah</td>
    </tr>
    </table>
    </test>
    Then, oracg generates an add method for TestType as:
    public void addTable(TestType.Lang.Table thetable)
    It doesn't seem to realize that Lang is an attribute, and
    it puts it in the type path. This happens throughout the TestType.java file.
    Please advise.
    Thanks,
    -Darren
    P.S. I'm using "oracle-xdk-9.2.0.5.0/bin/oracg -schema test.xsd -outputDir src -package test"
    ========
    test.xsd
    ========
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema targetNamespace="http://xmlns/test" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns/test" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
    <xs:complexType name="testType" mixed="false">
    <xs:choice maxOccurs="unbounded">
    <xs:element name="table" nillable="false">
    <xs:complexType mixed="false">
    <xs:sequence maxOccurs="unbounded">
    <xs:element name="tr" nillable="false">
    <xs:complexType mixed="false">
    <xs:sequence maxOccurs="unbounded">
    <xs:element name="td" nillable="true"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:sequence>
    <xs:attribute name="border" type="xs:nonNegativeInteger" use="optional" default="1"/>
    <xs:attribute name="cellspacing" type="xs:nonNegativeInteger" use="optional" default="2"/>
    <xs:attribute name="cellpadding" type="xs:nonNegativeInteger" use="optional" default="2"/>
    </xs:complexType>
    </xs:element>
    </xs:choice>
    <xs:attribute name="lang" use="optional" default="en">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:minLength value="1"/>
    <xs:maxLength value="10"/>
    <xs:enumeration value="en"/>
    <xs:enumeration value="es"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:attribute>
    </xs:complexType>
    <xs:element name="test" type="testType" nillable="false"/>
    </xs:schema>
    =============
    TestType.java
    =============
    /* DO NOT EDIT THIS FILE - it is machine-generated */
    /* File: TestType.java - generated by XML Class Generator version 2.0.0 at Mon Jun 30 13:26:33 PDT 2003 */
    package test.types;
    import oracle.xml.parser.schema.*;
    import oracle.xml.parser.v2.*;
    import oracle.xml.classgen.CGXSDElement;
    import oracle.xml.classgen.InvalidContentException;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class TestType extends CGXSDElement
    static final String name = "testType";
    static final String namespace = "http://xmlns/test";
    protected TestType.Lang alang;
    public void setLang(TestType.Lang thelang)
    throws IllegalArgumentException
    this.alang = thelang;
    super.addAttribute("lang" , thelang.getNodeValue());
    public static class Lang extends CGXSDElement
    public Lang(XSDDataValue elemValue)
    throws InvalidContentException
    try
    Hashtable h = XSDSimpleType.getBuiltInDatatypes();
    XSDSimpleType baseType = (XSDSimpleType)h.get("string");
    type = XSDSimpleType.derivedFrom(baseType,"string", " ");
    XSDSimpleType stype = (XSDSimpleType)type;
    stype.setFacet("maxLength","10");
    stype.setFacet("minLength","1");
    stype.setFacet("enumeration","en");
    stype.setFacet("enumeration","es");
    String nodeValue = elemValue.getLexicalValue();
    stype.validateValue(nodeValue);
    super.setNodeValue(nodeValue);
    catch (Exception e)
    throw new InvalidContentException("Error: Invalid value.");
    public Lang(String value)
    throws InvalidContentException
    try
    Hashtable h = XSDSimpleType.getBuiltInDatatypes();
    XSDSimpleType baseType = (XSDSimpleType)h.get("string");
    type = XSDSimpleType.derivedFrom(baseType,"string", " ");
    XSDSimpleType stype = (XSDSimpleType)type;
    stype.setFacet("maxLength","10");
    stype.setFacet("minLength","1");
    stype.setFacet("enumeration","en");
    stype.setFacet("enumeration","es");
    stype.validateValue(value);
    super.setNodeValue(value);
    catch (Exception e)
    throw new InvalidContentException("Error: Invalid value.");
    public void addTable(TestType.Lang.Table thetable)
    throws InvalidContentException
    super.addElement(thetable);
    public static class Table extends CGXSDElement
    static final String name = "table";
    static final String namespace = "http://xmlns/test";
    public Table()
    super();
    public void setType(TestType.Lang.Table.Table_Type elemtype)
    throws IllegalArgumentException
    this.type = elemtype;
    public void print(XMLOutputStream out)
    throws IOException
    super.printAttributes(out, name, namespace);
    public static class Table_Type extends CGXSDElement
    static final String name = "Table_Type";
    static final String namespace = "http://xmlns/test";
    protected Integer aborder;
    protected Integer acellspacing;
    protected Integer acellpadding;
    public void setBorder(Integer theborder)
    throws IllegalArgumentException
    this.aborder = theborder;
    super.addAttribute("border" , theborder);
    public Integer getBorder()
    throws IllegalArgumentException
    return this.aborder;
    public void setCellspacing(Integer thecellspacing)
    throws IllegalArgumentException
    this.acellspacing = thecellspacing;
    super.addAttribute("cellspacing" , thecellspacing);
    public Integer getCellspacing()
    throws IllegalArgumentException
    return this.acellspacing;
    public void setCellpadding(Integer thecellpadding)
    throws IllegalArgumentException
    this.acellpadding = thecellpadding;
    super.addAttribute("cellpadding" , thecellpadding);
    public Integer getCellpadding()
    throws IllegalArgumentException
    return this.acellpadding;
    public void addTr(TestType.Lang.Table.Table_Type.Tr thetr)
    throws InvalidContentException
    super.addElement(thetr);
    public static class Tr extends CGXSDElement
    static final String name = "tr";
    static final String namespace = "http://xmlns/test";
    public Tr()
    super();
    public void setType(TestType.Lang.Table.Table_Type.Tr.Tr_Type elemtype)
    throws IllegalArgumentException
    this.type = elemtype;
    public void print(XMLOutputStream out)
    throws IOException
    super.printAttributes(out, name, namespace);
    public static class Tr_Type extends CGXSDElement
    static final String name = "Tr_Type";
    static final String namespace = "http://xmlns/test";
    public void addTd(TestType.Lang.Table.Table_Type.Tr.Tr_Type.Td thetd)
    throws InvalidContentException
    super.addElement(thetd);
    public static class Td extends CGXSDElement
    static final String name = "td";
    static final String namespace = "http://xmlns/test";
    public Td()
    super();
    public void setType(TestType.Lang.Table.Table_Type.Tr.Tr_Type.Td.Td_Type elemtype)
    throws IllegalArgumentException
    this.type = elemtype;
    public void print(XMLOutputStream out)
    throws IOException
    super.printAttributes(out, name, namespace);
    public static class Td_Type extends CGXSDElement
    static final String name = "Td_Type";
    static final String namespace = "http://xmlns/test";
    public void addText(String text)
    super.addElement(new String(text));
    public void addCDATA(String text)
    super.addElement(new String(text));
    public Vector getChildElements()
    return super.getChildElements();
    public void print(XMLOutputStream out)
    throws IOException
    super.print(out);
    public void validate(XMLSchema schema)
    public Vector getChildElements()
    return super.getChildElements();
    public void print(XMLOutputStream out)
    throws IOException
    super.print(out);
    public void validate(XMLSchema schema)
    public Vector getChildElements()
    return super.getChildElements();
    public void print(XMLOutputStream out)
    throws IOException
    super.print(out);
    public void validate(XMLSchema schema)
    public Vector getChildElements()
    return super.getChildElements();
    public void print(XMLOutputStream out)
    throws IOException
    super.print(out);

    Malaya_Kishore wrote:
    Inorder to get the advantages of latest features of Java1.6 [*performance, security*, etc], the code needs to be recompiled using JDK1.6Why do you think that?
    As I understand it you have two types of "latest features". Bug fixes, JVM updates and the like in which case recompiling will have no affect. API or language updates, when you will not simply recompile but update your code base to make use off.
    The only thing I can think of that a simple recompile would help with is if the compiler updates. I'd guess this would be minimal .
    Edited by: mlk on 22-Aug-2008 09:40

  • Import Java package in JSP

    I hope this is an appropriate forum for this query.
    I want to be able to access a user-created Java package in JSP.
    I have this code:
    <%@page import="TPClass.*" %>
    <%
    xxx = TPClass
    session.setAttribute("response",xxx.GetTPResponse());
    %>
    The error display points to TPClass in the import statement with the message "TPClass not found".
    TPClass files are in the same location as the other project files.
    I have creatyed and compiled the TPClass package.
    Is there more I need to do?
    Brenton

    I think you are very new to java....
    anyway
    <%@page import="class name with full qualified package name"%>
    like
    <%@page import="com.x1.x2.TPClass"%>
    <%
    TPClass cls =new TPClass();
    //then do whatever you want...
    %>
    hope u understand now.....

  • JAVA PACKAGES and JSP

    i Have two problems one is i am designing a website which consists of a form. I am trying to write the Connectiviy and all other insert statements in seperate java packages and include them in JSP files.
    i Have two java packages one is DBUtil(having two java files both dealing with connectovity) and another one is StudentUtIl which has java files that open the connections with database connection and insert data into DB., I am having a big Problem here. How can i call the function in the other java package in the files in this java package. i have openDB()and Close() in the other Db and i want to call these functions in JAVA classes in the other package. How to include a package. Both these packages are in the same File system mounted on a Local directory

    Thank you for the reply. I am giving the code i have given the full class name . and now it is giving the following error :
    Cannot reference a non-static method connectDB() in a static context.
    I am also giving the code. Please do help me on this. i am a beginner in java.
    import java.sql.*;
    import java.util.*;
    import DButil.*;
    public class StudentManager {
    /** Creates a new instance of StudentManager */
    public StudentManager() {
    Connection conn = null;
    Statement cs = null;
    public Vector getStudent(){
    try{
    dbutil.connectDB();
    String Query = "Select St_Record, St_L_Name, St_F_Name, St_Major, St_Email_Address, St_SSN, Date, St_Company, St_Designation";
    cs = conn.createStatement();
    java.sql.ResultSet rs = cs.executeQuery(Query);
    Vector Studentvector = new Vector();
    while(rs.next()){
    Studentinfo Student = new Studentinfo();
    Student.setSt_Record(rs.getInt("St_Record"));
    Student.setSt_L_Name(rs.getString("St_L_Name"));
    Student.setSt_F_Name(rs.getString("St_F_Name"));
    Student.setSt_Major(rs.getString("St_Major"));
    Student.setSt_Email_Address(rs.getString("St_Email_Address"));
    Student.setSt_Company(rs.getString("St_Company"));
    Student.setSt_Designation(rs.getString("St_Designation"));
    Student.setDate(rs.getInt("Date"));
    Studentvector.add(Student);
    if( cs != null)
    cs.close();
    if( conn != null && !conn.isClosed())
    conn.close();
    return Studentvector;
    }catch(Exception ignore){
    return null;
    }finally {
    dbutil.closeDB();
    import java.sql.*;
    import java.util.*;
    public class dbutil {
    /** Creates a new instance of dbutil */
    public dbutil() {
    Connection conn;
    public void connectDB(){
    conn = ConnectionManager.getConnection();
    public void closeDB(){
    try{
    if(conn != null && !conn.isClosed())
    conn.close();
    }catch(Exception excep){
    The main error is occuring at the following lines connectDB() and closeDB() in the class student manager. The class dbutil is in an another package.with an another file called connectionManager which establishes the connection with DB. The dbutil has the openconnection and close connection methods. I have not yet written the insert statements in StudentManager. PLease do Help me

  • NoClassDefFound error when using custom Java package in scripting QPAC

    Hi,
    I compiled a little Java-package (.jar), which contains a class that uses
    com.adobe.workflow.datatype.form.FormDataTypeInstanceImpl.
    I put my library in the lib folder of JBoss (...\server\all\lib).
    Then I'm was trying to invoke my custom class in the scripting QPAC. But I'm constantly getting the error message
    NoClassDefFound com\adobe\workflow\datatype\form\FormDataTypeInstanceImpl. I already put
    adobe-wkf.jar (and various others) in the lib folder of JBoss. Without ever succeeding. Unfortunately.
    I'm going mad about this.
    Is there a way to address a custom package in the scripting QPAC, which uses
    FormDataTypeInstanceImpl?
    Steve

    Removing the LiceCycle jars from the lib folder did not work. I still get the same error message.
    What I wanted to do is provide some basic utilities, without having to spend a lot of time designing QPAC user interfaces.
    My utility class contains methods like this one:
    @param 
    pFormData
    @return
    @throws 
    ParserConfigurationException
    @throws 
    SAXException
    @throws 
    IOException
    public static 
    org.w3c.dom.Document formToXml
    FormDataTypeInstanceImpl pFormData
    throws 
    ParserConfigurationException, SAXException, IOException 
    byte
    data = pFormData.getXFAData
    InputStream objXMLInputStream = 
    new 
    ByteArrayInputStream
    data
    // create new Document object
    DocumentBuilderFactory objFactory = DocumentBuilderFactory.newInstance
    DocumentBuilder objBuilder = objFactory.newDocumentBuilder
    org.w3c.dom.Document objDocument = objBuilder.parse
    objXMLInputStream
    return 
    objDocument;
    Even without ever invoking the aforementioned method, I get the error
    NoClassDefFound: FormDataTypeInstanceImpl. Which is pretty weird.
    Do I have to write my own classloader?
    Steve

  • How to find classes in a java package

    i am writing a java IDE. i want to extract all class names from a java package eg. java.lang (through coding). how can i do that.
    Thanks in advance

    File file = new File("path to your jar file");
    JarFile jf = new JarFile(file);
    Enumeration e = jf.entries();
    ZipEntry ze = null;
    while(e.hasMoreElements()){
    ze = (ZipEntry) e.nextElement();
    ze.toString(); // gives you the file name
    you have to understand java.util.jar java.util.zip packages for working with jar/zip files.
    Hope this helps

  • Invalid Java Home

    I am trying to install WebLogic on a 64-bit Cent-OS server. I have read instructions all over the place but no matter what I try I keep getting the error message "Invalid Java Home" when I get to the JDK selection section. I have tried the interactive mode and the graphic mode with the same results. I don't seem to be able to generate a log file either. What home am I suppose to be pointing this to? I have the installation jar file in the following location:
    /oracle/software/WebLogic_Server/wls1035_generic.jar
    I have the JAVA_HOME set to /usr/java/jre1.6.0_18 and the PATH set to $JAVA_HOME/bin:$PATH or /usr/java/jre1.6.0_18/bin:/usr/local/bin:/bin:/usr/bin:/home/emgc/bin. I have also verified that there is plenty of space available.
    Any assistance would be greatly appreciated!

    Your JAVA_HOME env variable seems to be pointing to a JRE home directory ( /usr/java/jre1.6.0_18 ) instead of a JDK home directory (which should be something like /usr/java/jdk1.6.0_18 )
    It might be a documentation issue, or there could be some issue with the currently installed Sun JDK and you should consider using JRockit 64 bit instead.

  • How to import java package in form 10g

    hello
    i have make a java package but its not looking so far possible to include it in java import list, how i can import it in form 10 g

    hi,
    if classpath does not work you can try to add your jar file at this registry key :
    HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_DevSuiteHome\FORMS_BUILDER_CLASSPATH
    Engin.

  • Problem with Java-Packages in JavaFX-Scripts

    Hello!
    What I'm trying to do is using a class I've built in my project in a JavaFX-Script, my problem is that the compiler keeps telling me my package wouldn't exist.
    My filestructure is basically the following:
    src
    |-com.foo.java
    |-- MyClass.java
    |-com.foo.javafx
    |-- MyFXScript.fx
    I've tried importing the package or just writing the fully qualified classname when trying to create an instance, the messages didn't differ. I'm not at home right now so I don't remember the exact compiler-message, but it was something like "Package does not exist: com.foo.java".
    Any ideas? :-)
    Kind regards,
    Joshua
    Edited by: gnrx on Jan 12, 2009 5:55 AM

    It works on my system.
    MyClass.java
    package com.foo.java;
    public class MyClass {
        @Override
        public String toString() {
            return "My Class";
    MyFXScript.fx
    package com.foo.javafx;
    import com.foo.java.*;
    var myClass = new MyClass();
    println(myClass);standard-run:
    My Class
    browser-run:
    jws-run:
    midp-run:
    run:
    BUILD SUCCESSFUL (total time: 3 seconds)

  • Java packages and dependency

    When java was being developed, what was the philosophy behind allowing packages to be mutually dependent?

    Hello Steve,
    The Acyclic Dependencies Principle tells us that no cycles should exit in a model depicting the dependencies between packages. From what I can gather this is useful when developing large software systems, as each package becomes a viable work unit for an engineer or small group of engineers to control as a series of releases. If the ADP is not complied with, cycles may exist in the dependencies between packages. If a change is made to one of those packages within a cycle, then an ugly situation develops as the repercussions of the change are looped through the cycle back to its source and so on.
    The thing is though, during my readings I came across a statement that said Java packages were mutually dependent. I was just wanting to know why a language that utilises object oriented technology, left the practice of the ADP up to the descretion of the developer? Is the full implementation of ADP on a software system an ideal world scenario?
    Anders.

  • Java package and c++ header files

    What is the difference between importing java package and including header files in c++?

    I do not know .. have been away from C/C++ for a long time...
    As much as I remember you can only import one header file each time... also when you import a header file you can just call methods from the header file automatically ...
    However I could be very wrong on this .. really lost touch from C/C++ ...
    regards,
    Sim085

  • Error occured while running .java package in BPEL

    Hi All,
    I'm trying to run .java package which is using RIDC components (GET_FILE) option.
    I have set my local IP address in the config.cfg file also and restarted.
    Still i'm getting below error in Jdeveloper when I run the package.....
    oracle.stellent.ridc.protocol.ProtocolException: Unable to initialize connection idc://tgreenspence:4444
    *     at oracle.stellent.ridc.protocol.intradoc.socket.SocketConnectionManager.initializeConnection(SocketConnectionManager.java:35)*
    *     at oracle.stellent.ridc.protocol.intradoc.socket.SocketConnectionManager.initializeConnection(SocketConnectionManager.java:22)*
    *     at oracle.stellent.ridc.protocol.impl.SimpleConnectionPool.acquireConnection(SimpleConnectionPool.java:44)*
    *     at oracle.stellent.ridc.IdcClient.sendRequest(IdcClient.java:151)*
    *     at test.TestRIDC.TestRIDCGetFile.main(TestRIDCGetFile.java:52)*
    Caused by: oracle.stellent.ridc.protocol.ProtocolException: java.net.ConnectException: Connection timed out: connect
    *     at oracle.stellent.ridc.protocol.intradoc.socket.SocketConnection.connect(SocketConnection.java:52)*
    *     at oracle.stellent.ridc.protocol.intradoc.socket.SocketConnectionManager.initializeConnection(SocketConnectionManager.java:33)*
    *     ... 4 more*
    Caused by: java.net.ConnectException: Connection timed out: connect
    *     at java.net.PlainSocketImpl.socketConnect(Native Method)*
    *     at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)*
    *     at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)*
    *     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)*
    *     at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)*
    at java.net.Socket.connect(Socket.java:529)
    *     at java.net.Socket.connect(Socket.java:478)*
    *     at java.net.Socket.<init>(Socket.java:375)*
    *     at java.net.Socket.<init>(Socket.java:189)*
    *     at oracle.stellent.ridc.protocol.intradoc.socket.SocketConnection.createSocket(SocketConnection.java:126)*
    *     at oracle.stellent.ridc.protocol.intradoc.socket.SocketConnection.connect(SocketConnection.java:44)*
    *     ... 5 more*
    What will be the solution ??
    Thanks,
    Nir

    take the code out of bpel. run it standalone. does it work?
    -ryan

  • Just Starting out with java packages

    Hello,
    I'm a beginner and I'm starting out with java packages.
    I wrote two simple .java files, one test program and one containing a simple class.
    Both files are compiling without errors but When I run the program I get an error NoClassDeffoundError.
    I use the import <package> statement And I think I'm using the CLASSPATH variable correctly.
    SET CLASSPATH=d:\nopol
    path for the .java containing the test class is:
    d:\nopol\utilities \myapp.
    In the test file I use "import utilities.myapp.*.
    I would be very happy if anyone could help me
    Thanks beforehand
    Nopol.

    The test file should be in d:\nopol, if it's not a part of your package utilities.myapp. Everything should be compiled from d:\nopol, the test class with "javac ClassName.java" and the class in the package with "javac utilities/myapp/ClassName.java".
    Your classpath seems fine for now, though. But yes, do add the period there, otherwise you could run into problems later.

  • Problem finding native methods in java packages

    Hi,
    I have a java class which uses some native methods written in OCamL. I wrote a C file which calls the OCamL code, and created the corresponding shared library using the jni. I then tested my java file and everything works fine, I can nicely call the OCamL functions. However, I need this java file to be included in a package, but whenever I add the line:
    package somepackage;
    on top of the java code, my java file simply doesn't seem to find the C and OCamL implementation anymore :
    javac -cp :./path/of/somepackage
    -Djava.library.path=/full/path/of/somepackage MyProgram args
    Exception in thread "main" java.lang.UnsatisfiedLinkError:functionName
    at somepackage.ClassName.functionName(NativeMethod)
    I have of course put everything (java, C, .h , libsomelibrary.so, and OCamL files) in a directory called somepackage, and written another java file which creates an instance of the first one from outside the package, imports the package, and calls its methods in main(). It just doesn't work anymore.
    I then added a simple hello-world function (not C nor OCamL code) to the java file inside the package. And when invoked from outside, it worked. Question is then... Am I forgetting something to be done, in order to get C and CamL files efectively included in the java package (same as "package somepackage;" in C or OCaml, perhaps)??? Why isn't the java file able to find them inside its very own directory (having into account that without the package definition it worked well)?
    Thanks,
    PS Im using jsdk 1.4.1 on lunyx redhat 8.0

    Did you change the name of the function in the library, too?
    If the function name was
    "Java_YourClass_functionname",
    it should be now
    "Java_path_to_your_package_YourClass_functionname".

Maybe you are looking for

  • How to Cancel a Sale Order without cancelling the subsequent document.

    Dear All,              I want to cancel sale order but the sale order have a subsequent document is there is any soulution that when i cancel the sale order all the subsequent document, outbound delivery and invoice cancelled in jn\ust one step, if n

  • Acrobat Pro 9 Shared Review

    I'm evaluating a copy of acrobat 9 pro and I am trying to create a shared review on our internal network. I can create the shared review and everything works fine except that the toolbar to publish the comments is not there. The toolbar shows initial

  • TECHNICAL SPEC

    Hi everyone i have a report and a design of technical spec but i dont know how to create a technical spec.as of now its urgent for me to complete the technical spec.please if any one of u can help me in creating i will be thankul to u.please post ur

  • CO27, MF60 with serial number

    Hi Everyone, Does anybody know whether we can post goods issue for component with serial number using t-code CO27 and MF60... if can, how? I know MB1A and MB1B works with serial number. Best Regards, Bin

  • IPhoto 11 9.4.2 and PSE 9.0.3 crops

    I am using iPhoto 11 9.4.2 and PSE 9.0.3.  Whenever I crop an image in PSE and view in iPhoto, the image only shows a maximum zoom to the bottom left corner.  Is there any way to avoid this?  Very frustrating to have to go back and duplicate to view.