ADS: com.adobe.ProcessingException: Class not found exception while loading

Hi All,
While i'm trying to activate FORM (Interactive Form in Transaction SFP), i'm getting error -
ADS: com.adobe.ProcessingException: Class not found exception while loading class SAPForm, classpath: /usr/sap/AHS/DVEBMGS00/exe/jstart7 1.jar/usr/sap/AHS/DVEBMGS00/exe.
Could anyone let me know the way to resolve this issue.
Thanks and Regards,
Sunil

Many Thanks for the reply-It's working now
I added the MySQL connector in the following manner
1)Open the Tom Cat server console by Selecting 'Servers' in Package Explorer
2)Right Click 'Tomcat v5.5 at localhost.server'
3)Select 'Open Launch Configuration' under 'General Information'
4)Select the 'Classpath' tab in the Edit configuration window that opens
5)Select 'Add External Jars' and add the required connector

Similar Messages

  • Error ADS: com.adobe.ProcessingException:Could not retrieve(200101)getting

    Hi,
    In our development system CD2(ECC backend system) when I am acessing t-code PHAP_CATALOG_PA->Category Group/Category/Template>Zero Harm>DRA JKSW2>Preview --->Print Layout giving below error.Here PD7( Dev portal ) is acting as frontend.
    Error :
    ADS: com.adobe.ProcessingException: Could not retrieve(200101)
    Message no. FPRUNX001
    Diagnosis
    An error occurred when Adobe Document Services (ADS) was launched.
    System Response
    Error message
    Procedure
    When troubleshooting, follow the steps described in SAP Note 944221.
    First check the connection to ADS. You can use the program FP_PDF_TEST_00 to do this. From SAP NetWeaver Release 7.0, the program FP_CHECK_DESTINATION_SERVICE must also run successfully (both with and without the checkbox selected on the selection screen). If this program does not run successfully, there is a error in the configuration.
    Please help in this case.
    Regards
    Nilesh

    Hi,
    Perform the ADS configuration check as specified in : http://help.sap.com/saphelp_nwmobile71/helpdata/en/43/f0638873b56bede10000000a11466f/frameset.htm
    You need to check all the configuration steps to makesure everything is setup right. Also, try after restarting your Java engine where ADS is installed. Check your ADS RFC connection using SM59 tcode, and check whether ADSUSER and ADS_AGENT are not locked.
    Try and let know.
    Regards,
    Shahid.

  • ADS com.adobe.ProcessingException : Could not retrieve credential for alias

    Hi,
    I have configured ADS in NW730 EP system which is connected to ECC 6.0 system.
    When i perform the configuration tests in SA38 as per note 944221 ,
    i get the following error when executing FP_TEST_IA_01
    ADS com.adobe.ProcessingException : Could not retrieve credential for alias : ReadersRights(200.101)
    I have installed the credentials in the \usr\sap\<SID>\SYS\global\AdobeDocumentServices\TrustManagerService\trust\credentials
    Please help me with the situation

    Hi Florian,
    In my case the NW is 731. In NWA / Configuration / Infrastructure / Adobe Document Services / Documento Security, I put the pfx file through Manage P12 files... After this I added ReaderRights Alias and password that SAP sent me with pfx file.
    But after configured this alert message appear:
    "Could not retrieve the expiry date of the selected credential. This means that either the entered password is incorrect, or no JCE (unrestricted version) installation is available. See SAP note 1294782 for further details"
    I think that this is my problem. I think that because this message that FP_TEST_IA_01 report doesn't run. I've already updated JCE files and password is correct because SAP sent me.
    Regards,
    Alexandre

  • Class not Found Exception while running an EJB

    I have created and published a EJB in Oracle 8i (in a particular
    schema) by running the deployejb tool supplied. The ejb was
    published successfully. On running the client program I get an
    error saying that the mybeans's HomeHelper class cannot be
    found. This error occurs when there is a lookup to the home
    interface of the bean. The exception thrown says Reasons are
    unknown. On checking the objects of type 'JAVA CLASS' I found
    that the homeHelper class object had been created automatically
    be the deploy process. What is the reason for the class not
    found exception and what can I do to correct it. ?
    The code for the beans is as given below :
    Home Interface
    package mituser ;
    import javax.ejb.*;
    import java.rmi.RemoteException;
    public interface MITUserHome extends EJBHome {
    public MITUser create()
    throws CreateException, RemoteException;
    Remote Interface
    package mituser ;
    import javax.ejb.EJBObject;
    import java.rmi.RemoteException;
    public interface MITUser extends EJBObject {
    public int validateUserName (String username)
    throws java.sql.SQLException, RemoteException;
    public int validatePassword (String username, String password)
    throws java.sql.SQLException, RemoteException;
    public String validateSearchAccess (String username, String
    password)
    throws java.sql.SQLException, RemoteException;
    Bean
    package mituserServer ;
    import java.sql.*;
    import java.rmi.RemoteException;
    import javax.ejb.*;
    public class MITUserBean implements SessionBean {
    SessionContext ctx;
    public void ejbCreate() throws CreateException,
    RemoteException {
    public void ejbActivate() {
    public void ejbPassivate() {
    public void ejbRemove() {
    public void setSessionContext(SessionContext ctx) {
    this.ctx = ctx;
    public int validateUserName (String username) throws
    SQLException, RemoteException
    int count = 0 ;
    Connection conn =
    new oracle.jdbc.driver.OracleDriver().defaultConnection ();
    PreparedStatement ps =
    conn.prepareStatement ("select count(username) from
    useraccountinfo where username = ?");
    try {
    ps.setString (1, username);
    ResultSet rset = ps.executeQuery ();
    if (!rset.next ())
    throw new RemoteException ("no registered user with User
    Name " + username);
    count = rset.getShort(1) ;
    return count ;
    } finally {
    ps.close();
    public int validatePassword (String username, String password)
    throws SQLException, RemoteException
    int count = 0 ;
    Connection conn =
    new oracle.jdbc.driver.OracleDriver().defaultConnection ();
    PreparedStatement ps =
    conn.prepareStatement ("select count(username) from
    useraccountinfo where username = ? and password = ?");
    try {
    ps.setString (1, username);
    ps.setString(2, password);
    ResultSet rset = ps.executeQuery ();
    if (!rset.next ())
    throw new RemoteException ("Invalid Password ");
    count = rset.getShort(1) ;
    return count ;
    } finally {
    ps.close();
    public String validateSearchAccess (String username, String
    password) throws SQLException, RemoteException
    String searchaccess = "" ;
    Connection conn =
    new oracle.jdbc.driver.OracleDriver().defaultConnection ();
    PreparedStatement ps =
    conn.prepareStatement ("select searchprofileaccess from
    useraccountinfo where username = ? and password = ?");
    try {
    ps.setString (1, username);
    ps.setString(2, password);
    ResultSet rset = ps.executeQuery ();
    if (!rset.next ())
    throw new RemoteException ("Access Denied for " +
    username );
    searchaccess = rset.getString(1) ;
    return searchaccess ;
    } finally {
    ps.close();
    Client program
    import mituser.MITUser;
    import mituser.MITUserHome;
    import oracle.aurora.jndi.sess_iiop.ServiceCtx;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import java.util.Hashtable;
    public class Client {
    public static void main (String [] args) throws Exception {
    int count = 0 ;
    String access = "" ;
    if (args.length != 4) {
    System.out.println("usage: Client serviceURL objectName
    user password");
    System.exit(1);
    String serviceURL = args [0];
    String objectName = args [1];
    String user = args [2];
    String password = args [3];
    Hashtable env = new Hashtable();
    env.put(Context.URL_PKG_PREFIXES, "oracle.aurora.jndi");
    env.put(Context.SECURITY_PRINCIPAL, user);
    env.put(Context.SECURITY_CREDENTIALS, password);
    env.put(Context.SECURITY_AUTHENTICATION,
    ServiceCtx.NON_SSL_LOGIN);
    Context ic = new InitialContext(env);
    MITUserHome home = (MITUserHome)ic.lookup (serviceURL +
    objectName);
    MITUser testBean = home.create ();
    count = testBean.validateUserName("MITA");
    if (count > 0 )
    System.out.println ("Valid User");
    else
    System.out.println ("Invalid User");
    count = testBean.validatePassword("MITA", "MITA");
    if (count > 0 )
    System.out.println ("Valid Password");
    else
    System.out.println ("Invalid Password");
    access = testBean.validateSearchAccess("MITA", "MITA");
    if ( access.equalsIgnoreCase("YES") )
    System.out.println ("Search Access Available");
    else
    System.out.println ("Search Access Denied");
    The Descriptor file
    // MIT UserBean EJB deployment descriptor
    SessionBean mituserServer.MITUserBean {
    BeanHomeName = "test/mitUserJDBCBean";
    RemoteInterfaceClassName = mituser.MITUser;
    HomeInterfaceClassName = mituser.MITUserHome;
    AllowedIdentities = {MIT};
    SessionTimeout = 20;
    StateManagementType = STATEFUL_SESSION;
    RunAsMode = CLIENT_IDENTITY;
    TransactionAttribute = TX_REQUIRED;
    Batch File for deploying the ejb
    @echo off
    if (%ORACLE_HOME%)==() goto usage
    if (%ORACLE_SERVICE%)==() goto usage
    if (%JDK_CLASSPATH%)==() goto usage
    @echo on
    set CLASSPATH=.;%ORACLE_HOME%\lib\aurora_client.jar;%ORACLE_HOME%
    \jdbc\lib\classes111.zip;%ORACLE_HOME%\sqlj\lib\translator.zip;%
    ORACLE_HOME%\lib\vbjorb.jar;%ORACLE_HOME%\lib\vbjapp.jar;%
    JDK_CLASSPATH%
    javac -g mituser\MITUser.java
    javac -g mituser\MITUserHome.java
    javac -g mituserServer\MITUserBean.java
    jar cf0 mituser.jar mituser\MITUser.class
    mituser\MITUserHome.class mituserServer\MITUserBean.class
    javac -g Client.java
    call deployejb -republish -temp temp -u mit -p mit -s %
    ORACLE_SERVICE% -descriptor mituser.ejb mituser.jar
    @echo off
    goto done
    :usage
    @echo -------------------------------------------------------
    @echo Following are the requirements to run this script
    @echo set ORACLE_HOME to installed Oracle home
    @echo set ORACLE_SERVICE to the CORBA service name of
    your databae
    @echo for example sess_iiop://localhost:2481:ORCL
    @echo set JDK_CLASSPATH to the full path of your JDK
    classes.zip
    @echo -------------------------------------------------------
    :done
    Batch file for running the cleint program
    @echo off
    if (%ORACLE_HOME%)==() goto usage
    if (%ORACLE_SERVICE%)==() goto usage
    if (%JDK_CLASSPATH%)==() goto usage
    @echo on
    set CLASSPATH=.;%ORACLE_HOME%\lib\aurora_client.jar;%ORACLE_HOME%
    \jdbc\lib\classes111.zip;%ORACLE_HOME%\sqlj\lib\translator.zip;%
    ORACLE_HOME%\lib\vbjorb.jar;%ORACLE_HOME%\lib\vbjapp.jar;%
    JDK_CLASSPATH%;server_generated.jar
    java Client %ORACLE_SERVICE% /test/mitUserJDBCBean mit mit
    @echo off
    goto done
    :usage
    @echo -------------------------------------------------------
    @echo Following are the requirements to run this script
    @echo set ORACLE_HOME to installed Oracle home
    @echo set ORACLE_SERVICE to the CORBA service name of
    your databae
    @echo for example sess_iiop://localhost:2481:ORCL
    @echo set JDK_CLASSPATH to the full path of your JDK
    classes.zip
    @echo -------------------------------------------------------
    :done
    I know this is not strictly to do with JDBC but there appears to
    be no discussion forum for EJB
    Hoping for a response soon as it us very URGENT
    Thanks
    Mita
    null

    I have created and published a EJB in Oracle 8i (in a particular
    schema) by running the deployejb tool supplied. The ejb was
    published successfully. On running the client program I get an
    error saying that the mybeans's HomeHelper class cannot be
    found. This error occurs when there is a lookup to the home
    interface of the bean. The exception thrown says Reasons are
    unknown. On checking the objects of type 'JAVA CLASS' I found
    that the homeHelper class object had been created automatically
    be the deploy process. What is the reason for the class not
    found exception and what can I do to correct it. ?
    The code for the beans is as given below :
    Home Interface
    package mituser ;
    import javax.ejb.*;
    import java.rmi.RemoteException;
    public interface MITUserHome extends EJBHome {
    public MITUser create()
    throws CreateException, RemoteException;
    Remote Interface
    package mituser ;
    import javax.ejb.EJBObject;
    import java.rmi.RemoteException;
    public interface MITUser extends EJBObject {
    public int validateUserName (String username)
    throws java.sql.SQLException, RemoteException;
    public int validatePassword (String username, String password)
    throws java.sql.SQLException, RemoteException;
    public String validateSearchAccess (String username, String
    password)
    throws java.sql.SQLException, RemoteException;
    Bean
    package mituserServer ;
    import java.sql.*;
    import java.rmi.RemoteException;
    import javax.ejb.*;
    public class MITUserBean implements SessionBean {
    SessionContext ctx;
    public void ejbCreate() throws CreateException,
    RemoteException {
    public void ejbActivate() {
    public void ejbPassivate() {
    public void ejbRemove() {
    public void setSessionContext(SessionContext ctx) {
    this.ctx = ctx;
    public int validateUserName (String username) throws
    SQLException, RemoteException
    int count = 0 ;
    Connection conn =
    new oracle.jdbc.driver.OracleDriver().defaultConnection ();
    PreparedStatement ps =
    conn.prepareStatement ("select count(username) from
    useraccountinfo where username = ?");
    try {
    ps.setString (1, username);
    ResultSet rset = ps.executeQuery ();
    if (!rset.next ())
    throw new RemoteException ("no registered user with User
    Name " + username);
    count = rset.getShort(1) ;
    return count ;
    } finally {
    ps.close();
    public int validatePassword (String username, String password)
    throws SQLException, RemoteException
    int count = 0 ;
    Connection conn =
    new oracle.jdbc.driver.OracleDriver().defaultConnection ();
    PreparedStatement ps =
    conn.prepareStatement ("select count(username) from
    useraccountinfo where username = ? and password = ?");
    try {
    ps.setString (1, username);
    ps.setString(2, password);
    ResultSet rset = ps.executeQuery ();
    if (!rset.next ())
    throw new RemoteException ("Invalid Password ");
    count = rset.getShort(1) ;
    return count ;
    } finally {
    ps.close();
    public String validateSearchAccess (String username, String
    password) throws SQLException, RemoteException
    String searchaccess = "" ;
    Connection conn =
    new oracle.jdbc.driver.OracleDriver().defaultConnection ();
    PreparedStatement ps =
    conn.prepareStatement ("select searchprofileaccess from
    useraccountinfo where username = ? and password = ?");
    try {
    ps.setString (1, username);
    ps.setString(2, password);
    ResultSet rset = ps.executeQuery ();
    if (!rset.next ())
    throw new RemoteException ("Access Denied for " +
    username );
    searchaccess = rset.getString(1) ;
    return searchaccess ;
    } finally {
    ps.close();
    Client program
    import mituser.MITUser;
    import mituser.MITUserHome;
    import oracle.aurora.jndi.sess_iiop.ServiceCtx;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import java.util.Hashtable;
    public class Client {
    public static void main (String [] args) throws Exception {
    int count = 0 ;
    String access = "" ;
    if (args.length != 4) {
    System.out.println("usage: Client serviceURL objectName
    user password");
    System.exit(1);
    String serviceURL = args [0];
    String objectName = args [1];
    String user = args [2];
    String password = args [3];
    Hashtable env = new Hashtable();
    env.put(Context.URL_PKG_PREFIXES, "oracle.aurora.jndi");
    env.put(Context.SECURITY_PRINCIPAL, user);
    env.put(Context.SECURITY_CREDENTIALS, password);
    env.put(Context.SECURITY_AUTHENTICATION,
    ServiceCtx.NON_SSL_LOGIN);
    Context ic = new InitialContext(env);
    MITUserHome home = (MITUserHome)ic.lookup (serviceURL +
    objectName);
    MITUser testBean = home.create ();
    count = testBean.validateUserName("MITA");
    if (count > 0 )
    System.out.println ("Valid User");
    else
    System.out.println ("Invalid User");
    count = testBean.validatePassword("MITA", "MITA");
    if (count > 0 )
    System.out.println ("Valid Password");
    else
    System.out.println ("Invalid Password");
    access = testBean.validateSearchAccess("MITA", "MITA");
    if ( access.equalsIgnoreCase("YES") )
    System.out.println ("Search Access Available");
    else
    System.out.println ("Search Access Denied");
    The Descriptor file
    // MIT UserBean EJB deployment descriptor
    SessionBean mituserServer.MITUserBean {
    BeanHomeName = "test/mitUserJDBCBean";
    RemoteInterfaceClassName = mituser.MITUser;
    HomeInterfaceClassName = mituser.MITUserHome;
    AllowedIdentities = {MIT};
    SessionTimeout = 20;
    StateManagementType = STATEFUL_SESSION;
    RunAsMode = CLIENT_IDENTITY;
    TransactionAttribute = TX_REQUIRED;
    Batch File for deploying the ejb
    @echo off
    if (%ORACLE_HOME%)==() goto usage
    if (%ORACLE_SERVICE%)==() goto usage
    if (%JDK_CLASSPATH%)==() goto usage
    @echo on
    set CLASSPATH=.;%ORACLE_HOME%\lib\aurora_client.jar;%ORACLE_HOME%
    \jdbc\lib\classes111.zip;%ORACLE_HOME%\sqlj\lib\translator.zip;%
    ORACLE_HOME%\lib\vbjorb.jar;%ORACLE_HOME%\lib\vbjapp.jar;%
    JDK_CLASSPATH%
    javac -g mituser\MITUser.java
    javac -g mituser\MITUserHome.java
    javac -g mituserServer\MITUserBean.java
    jar cf0 mituser.jar mituser\MITUser.class
    mituser\MITUserHome.class mituserServer\MITUserBean.class
    javac -g Client.java
    call deployejb -republish -temp temp -u mit -p mit -s %
    ORACLE_SERVICE% -descriptor mituser.ejb mituser.jar
    @echo off
    goto done
    :usage
    @echo -------------------------------------------------------
    @echo Following are the requirements to run this script
    @echo set ORACLE_HOME to installed Oracle home
    @echo set ORACLE_SERVICE to the CORBA service name of
    your databae
    @echo for example sess_iiop://localhost:2481:ORCL
    @echo set JDK_CLASSPATH to the full path of your JDK
    classes.zip
    @echo -------------------------------------------------------
    :done
    Batch file for running the cleint program
    @echo off
    if (%ORACLE_HOME%)==() goto usage
    if (%ORACLE_SERVICE%)==() goto usage
    if (%JDK_CLASSPATH%)==() goto usage
    @echo on
    set CLASSPATH=.;%ORACLE_HOME%\lib\aurora_client.jar;%ORACLE_HOME%
    \jdbc\lib\classes111.zip;%ORACLE_HOME%\sqlj\lib\translator.zip;%
    ORACLE_HOME%\lib\vbjorb.jar;%ORACLE_HOME%\lib\vbjapp.jar;%
    JDK_CLASSPATH%;server_generated.jar
    java Client %ORACLE_SERVICE% /test/mitUserJDBCBean mit mit
    @echo off
    goto done
    :usage
    @echo -------------------------------------------------------
    @echo Following are the requirements to run this script
    @echo set ORACLE_HOME to installed Oracle home
    @echo set ORACLE_SERVICE to the CORBA service name of
    your databae
    @echo for example sess_iiop://localhost:2481:ORCL
    @echo set JDK_CLASSPATH to the full path of your JDK
    classes.zip
    @echo -------------------------------------------------------
    :done
    I know this is not strictly to do with JDBC but there appears to
    be no discussion forum for EJB
    Hoping for a response soon as it us very URGENT
    Thanks
    Mita
    null

  • Class not found exception while creating event EDN

    I get the following exception while using the SOA tutorial for sending events
    java.lang.ClassNotFoundException: oracle.fabric.common.FabricException
    the JAVA_HOME is set to
    /oracle/javahome/jdk1.6.0_20
    ORACLE_HOME is set to
    /oracle/fmwhome/Oracle_SOA1
    PATH is set to
    /oracle/javahome/jdk1.6.0_20/bin:/oracle/fmwhome/wlserver_10.3/server/bin:/oracle/fmwhome/modules/org.apache.ant_1.7.1/bin:/oracle/javahome/jdk1.6.0_20/jre/bin:/oracle/javahome/jdk1.6.0_20/bin:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/oracle/bin
    Any ideas what could be the issue?

    I get the following exception while using the SOA tutorial for sending events
    java.lang.ClassNotFoundException: oracle.fabric.common.FabricException
    the JAVA_HOME is set to
    /oracle/javahome/jdk1.6.0_20
    ORACLE_HOME is set to
    /oracle/fmwhome/Oracle_SOA1
    PATH is set to
    /oracle/javahome/jdk1.6.0_20/bin:/oracle/fmwhome/wlserver_10.3/server/bin:/oracle/fmwhome/modules/org.apache.ant_1.7.1/bin:/oracle/javahome/jdk1.6.0_20/jre/bin:/oracle/javahome/jdk1.6.0_20/bin:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/oracle/bin
    Any ideas what could be the issue?

  • WebLogic Class not found Exception while calling XA-APIs

              Hi,
              Any oone have any information about the following exception I get while calling xa-apis while using Oracle 8.1.7 thin jdbc driver.
              Thanks - Sanjay
              ** 2001-01-25 18:13:08.989
              *** SESSION ID:(24.98) 2001-01-25 18:13:08.977
              java.lang.ClassNotFoundException: weblogic.transaction.internal.XidImpl
              at java.io.ObjectInputStream.inputObject(ObjectInputStream.java)
              at java.io.ObjectInputStream.readObject(ObjectInputStream.java)
              at java.io.ObjectInputStream.readObject(ObjectInputStream.java)
              at
              oracle.jdbc.xa.server.OracleWrapXAResource.deserializeObject(OracleWrapX
              AResource.java)
              at
              oracle.jdbc.xa.server.OracleWrapXAResource.start(OracleWrapXAResource.ja
              va)
              java.lang.NullPointerException
              at
              oracle.jdbc.xa.server.OracleWrapXAResource.start(OracleWrapXAResource.ja
              va)
              

              Hi Sanjay and Vel,
              We have been running internal test suites using the Oracle 8.1.7 thin driver,
              and did not run into this problem. I suspect this may be related to the database
              setup or environment. We would also like to understand why it happens. I would
              suggest either of you to report this problem to Oracle support and see whether
              they could shed some light on this.
              -- Priscilla Fung, BEA Systems, Inc.
              "Vel" <[email protected]> wrote:
              >
              >Hello Sanjay.
              >I'm having the same problem.
              >Did u find why that happened? If yes, pls let me know.
              >Thanks in advance.
              >Vel
              >"Sanjay" <[email protected]> wrote:
              >>
              >>Hi,
              >>Any oone have any information about the following exception I get while
              >>calling xa-apis while using Oracle 8.1.7 thin jdbc driver.
              >>Thanks - Sanjay
              >>
              >>** 2001-01-25 18:13:08.989
              >>*** SESSION ID:(24.98) 2001-01-25 18:13:08.977
              >>java.lang.ClassNotFoundException: weblogic.transaction.internal.XidImpl
              >> at java.io.ObjectInputStream.inputObject(ObjectInputStream.java)
              >> at java.io.ObjectInputStream.readObject(ObjectInputStream.java)
              >> at java.io.ObjectInputStream.readObject(ObjectInputStream.java)
              >> at
              >>oracle.jdbc.xa.server.OracleWrapXAResource.deserializeObject(OracleWrapX
              >>AResource.java)
              >> at
              >>oracle.jdbc.xa.server.OracleWrapXAResource.start(OracleWrapXAResource.ja
              >>va)
              >>java.lang.NullPointerException
              >> at
              >>oracle.jdbc.xa.server.OracleWrapXAResource.start(OracleWrapXAResource.ja
              >>va)
              >>
              >
              

  • ADS: com.adobe.ProcessingException: XMLFM Exception  in ABAP Webdynpro

    Hi All,
         When I test the ABAP Webdynpro with Adobe form embeded in it. I get very unreliable results.  When trying to bring up the forms, sometimes, it comes up the 2nd attempt, sometimes after several attempts.
    And the error message is :
    ADS: com.adobe.ProcessingException: XMLFM Exception - PDF render operation exception, reason code: 20484 : Font Helvetica_Normal_Normal could not be found(200,101)
    I have checked several notes: 944221, 717568 etc........but no use.
    I also have checked the test programes in SA38, user account, sicf services and destinations. It seems everything is ok except the program FP_CHECK_DESTINATION_SERVICE in SA38. The test result is the same as the unreliable result of the ABAP webdynpro app.
    Any usefull hints to solve this problem..thanks in advance

    Hello,
    the message tells you about one (of possible many) problem. You must maintain your fonts to fix the message. Or there is a single option (I use this when I am in a hurry and don´t have access to the customers basis) - change the fonts: Use for example Myriad Pro, that always worked for me.
    Use this help: http://help.sap.com/saphelp_nwmobile71/helpdata/en/37/504b8cbc2848a494facfdc09a359b1/frameset.htm
    or wander around for other useful hints and tips.
    Regards, Otto

  • ADS: com.adobe.ProcessingException: PDF is not interactive

    Hi All,
    I have a ECC 6.0 ABAP SP12Stack installation and a seperate NW04s SP13 Portal installation. I have done all the configuration steps of ADS integration on those 2 systems.
    I developed a WebDynpro application and used the interactive form object referring to a simple  Adobe form created with transaction SFP. As I test the Webdynpro ABAP application I get the following error "ADS: com.adobe.ProcessingException: PDF is not interactive.  Data can only be imported into interactive forms.(201501)" in UPDATE_PDF method of class CL_WD_ADOBE_SERVICES. Do you have any idea for the reason of this error?
    Best Regards,

    Hi.
    Can it be applied to AS Java version too? Our system was updated from SPS12 to SPS16, and the following problem comes up:
    com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Processing exception during a "MergeData" operation.
    Request start time: Wed Oct 08 16:49:20 BRT 2008 com.adobe.ProcessingException: PDF is not interactive. Data can only be
    imported into interactive forms. Exception Stack Trace: com.adobe.ProcessingException: PDF is not interactive. Data can only be
    imported into interactive forms. at com.adobe.ads.remote.EJB_PDFAgent.importFormData(Unknown Source) at
    com.adobe.ads.operation.MergeData.execute(Unknown Source) at com.adobe.ads.operation.ADSOperation.doWork(Unknown
    Source) at com.adobe.ads.request.Request.processOperations(Unknown Source) at com.adobe.ads.request.Request.process
    (Unknown Source) at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source) at
    com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source) at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120) at
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke
    (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at
    java.lang.reflect.Method.invoke(Method.java:324) at
    com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126) at
    com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157) at
    com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79) at
    com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92) at
    SoapServlet.doPost(SoapServlet.java:51) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet
    (HttpHandlerImpl.java:401) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386) at
    com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364) at
    com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039) at
    com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265) at
    com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) at
    com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175) at
    com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process
    (ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run
    (MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at
    java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute
    (SingleThread.java:102) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
        at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:400)
        at com.sap.tc.webdynpro.pdfobject.core.PDFObject.inputPDF(PDFObject.java:4003)
        at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentInputPDFHandler.handle(PDFDocumentInputPDFHandler.java:139)
        at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentProcessor.process(PDFDocumentProcessor.java:52)
        at com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentInteractiveFormHandlingContext.execute(PDFDocumentInteractiveFormHandlingContext.java:100)
    The Interactive Form was working well before the update. As soon as we set our patched Web Dynpro development environment to use an ADS not yet patched, it works perfectly.
    Regards,
    Douglas Frankenberger

  • System Error:ADS :com.adobe processingException:XMLFM Exception during render Exception

    Dear All, We have configured ADS in DEV and QAS it is working fine. We have done the same configuration in PRD but it is giving the following error when we execute the program FP_CHECK_DESTINATION_SERVICE: SYSTEM ERROR: ADS: com.adobe.ProcessingException: com.adobe.ProcessingException: XMLFM Exception during render: org.omg.CORBA.COMM_FAILURE(200,101). Exception of class CX_FP_RUNTIME_INTERNAL System Info : SAP ECC EHP6 SAP NW 7.31 Kindly suggest some solution. Regards, Mustafa

    HI
    Note 944221 - Troubleshooting if problems occur in forms processing
    Note 717568 - FPRUNX001, 002 or 004 with output of PDF-based forms
    Note "959462 - ISR/Adobe/Web Dynpro Java: Configuration problems"
    Note 1288500 - HR-RU: ADS: XMLFM Exception-P(200101) message no.FPRUNX001
    Note 1143442 - Shift report: Error "ADS: XMLFM Exception"
    AND YOU CAN CHACK AGAINST FOLLOWING Problem:
    1). Check the JCO RFC from Java to ABAP server.
    2). Check the ADS connection in SM59.
    Check the document more troubleshooting steps
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30ec0508-9438-2c10-f393-a41fb255698d?QuickLink=index&overridelayout=true
    http://forums.sdn.sap.com/thread.jspa?threadID=842415

  • Error "ADS: com.adobe.ProcessingException: X Exception - P(200101)"

    Hi folks,
    I created a new Adobe Interactive Form which is quite simple. There's just a header and the personal number of an employee to be printed. I binded a structure (contains 10 fields) to the context and de-activated all of the fields except  the field personel_number (defined as CHAR8).
    The form is ok when it's execuded by TA SFP.
    Running the form via a print program it aborts with "ADS: com.adobe.ProcessingException: X Exception - P(200101)".
    When I deactivate the personel_number in the context the form the error does not occur.
    The ADS works well. FP_CHK_REPORT and FP_PDF_TEST_00 report no problems.
    My problem is quite similar to [ADS: com.adobe.ProcessingException: com.adobe.Processin(200101); just the other way round.
    Regards,
    Steffen

    I fixed the problem on my own. There were probably 2 bugs:
    1. I deleted the form, the interface and the ddic objects. Then I started from scratch that means creating again ddic objects and the interface. When I created the form I recognized the layout type "standard form". I'm quite sure that this option was not selectable on form I deleted.
    2. It also could have been that the data structure of the context contained wrong data e.g. a numeric field contained non-numeric stuff (X'00')
    Maybe these informations are helpful for somebody.
    Regards,
    Steffen

  • ADS-error: com.adobe.ProcessingError: File not found error wr(200101).

    hi.
    When i run report "FP_TEST_00" the message "ADS-error: com.adobe.ProcessingError: File not found error wr(200101)." is appear.
    What wrong?
    regards
    Denis

    hello
    server.0.log is contains:
    #1.5#0030482F2F6000610000001B00000F2400042DC1D654F8A4#1176210454659#/System/Server#com.adobe/AdobeDocumentServices#com.adobe.AdobeDocumentServices#ADSUSER#300#SAP J2EE Engine JTA Transaction : [93bffffff9cffffff9200031]#server02_CEM_154901650#Guest#72c01b60e76411dbb9900030482f2f60#SAPEngine_Application_Thread[impl:3]_30##0#0#Error#1#com.adobe.AdobeDocumentServices#Plain###Processing exception during a "Render" operation.
    Request start time: Tue Apr 10 19:07:34 GMT+06:00 2007
    com.adobe.ProcessingError: No <Render><Output><XDC> specified
         at com.adobe.Render.execute(Unknown Source)
         at com.adobe.BaseADSRequest.doWork(Unknown Source)
         at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:159)
    : Trans(Tue Apr 10 19:07:34 GMT+06:00 2007)#

  • Error : class not found exception : com.mysql.jdbc.driver in Eclipse Tool

    Hi
    I have impoted project file in eclipse in new machine using option import from existing workbence . When i stat to debug this project ,
    i am getting error as class not found exception : com.mysql.jdbc.driver . my project folder already consist of mysql .jar file in /web appls/web-inf folder.
    Application is running successfully in other machine from where i took the application file. As this error appeared I also added jar file into project path as Project ---->properties-- build java path---libraries----add external jar file.
    kindly hep me.

    Sounds like an eclipse question - not a JDBC one.
    But since eclipse is telling you it can't find it then it means it is not in the eclipse path. So you must add it. (The fact that it is somewhere is irrelevant - all that matters is it is not in the class path.)

  • ADS: com.adobe.ProcessingException: XMLFM Exception - P(200101)

    Hi,
    Exception       SYSTEM_ERROR
    Message ID:          FPRUNX                     Message number:           001
    Message:
    ADS: com.adobe.ProcessingException: XMLFM Exception - P(200101)
    I am getting the above error while executing adobe forms function module.
    Any ideas.
    Regards,
    Thiyagu

    the J2EE User Management Engine has a configuration for setting an expiry date for passwords. Because of this setting, you can get an error after the password expires. (see documentation at http://help.sap.com/saphelp_nw2004s/helpdata/en/b5/16c43bdd3da244a1d3372a77b5f83f/frameset.htm) This could be a reason here.
    Try this:
    Check the user ADSUser in the Visual Admin: -> Server -> Service -> Security provider -> UserManagement tab
    -> ADSUser
    Enter a password again and check 'No password change is required'.

  • ADS: com.adobe.ProcessingException:XMLFM Exception - T(200101)

    Hi ,
    we have two IDES.one is ECC5 & the other is ECC6.Again they access a
    common Java Instance for ADS.We have configure the ADS as per the
    standard documentation by SAP. ADS on ECC5 is working fine. But on ECC
    6 system, when we see the print preview for report FP_TEST_00 we get
    following error--
    Exception SYSTEM_ERROR
    Message ID: FPRUNX
    Message number : 001
    Message : ADS: com.adobe.ProcessingException:XMLFM Exception - T
    (200101)
    any usefull hints to solve this problem..thanks in advance

    1)when i execute FP_PDF_TEST_00 at se38 its run fine and shows that
    222bytes transferred
    2)when i execute FP_CHECK_DESTINATION_SERVICE AT SE38 without clicking the destination service connection-ADS  it works fine.But when i execute FP_CHECK_DESTINATION_SERVICE AT SE38  clicking the destination service connection-ADS  its shows the following error
    SYSTEM ERROR:com.adobe.ProcessException:Parser Configuration error while extracting properties from form template
    3)Again in search of the defaulttrace.trc i went to usr/sap/<SID>/<INSTANCE>/j2ee/cluster/server0/log/
    folder but i find so many defaulttrace.trc files.Like defaulttrace 1.trc, defaulttrace 11.trc,defaulttrace 13.trc etc.Could you plz tell me which .trc file i have to check & what to check???

  • Error Info... FPRUNX 001: ADS: com.adobe.ProcessingException:

    Anyone every run into this error after saving a PO?
    Error Info...   FPRUNX 001: ADS: com.adobe.ProcessingException: com.adobe.Processin
    The full message is:
    System ID....   PR3
    Client.......   100
    User.........  ELBURGD
    Transaction..   ME21N
    Update key...   4EC42600E07900E1E10080000A14402B
    Generated....   17.11.2011, 06:09:20
    Completed....   17.11.2011, 06:09:24
    Error Info...   FPRUNX 001: ADS: com.adobe.ProcessingException: com.adobe.Processin
    Using SM13 it says:
    Function Module:  RV_MESSAGE_UPDATE
    Status:                  Update was Terminated
    Class:                   FPRUNX      Number: 001
    FPRUNX 001: ADS: com.adobe.ProcessingException: com.adobe.Processin
    This happens seemingly randomly in production after the user saves a PO.  They'll create a PO, save it, get the PO number , start a new PO and a message box pops up saying: 
    Express document 'Update was terminated' received from author 'xxxx xxxxx'
    If the user goes back to the PO to look it up, the PO does not exist.  If the user creates a new PO (or recreates the one that failed to commit to the database), it'll save with no trouble... same print settings, same everything.  This leads me to believe the problem isn't with the PO form but with the ADS.  The PO form is custom and works without error in dev and QA.  I do believe the users are setting the message options to Print Immediately.
    I am unable to recreate the problem in dev or QA, and it appears randomly in production.  I've run the ADS test programs in production and they come back without errors.
    Has anyone run into this before?  Are there some settings on the ADS that might need to be adjusted?  I don't think this is form related since we're able to recreate the same PO and save without error immediately afterwards, but could this be a form problem?
    I am open to any and all experiences you've encounted, and any suggestions you may have.
    Jeff Kulbeth

    Recently I had the same error with Adobe Form. In my case there were a few problems regarding data binding and data format. In a Form there was unresolved data binding warning and data format mismatch with one field - Form interface contained variable of type decimal and in the Form content that variable was bound to the field of type numeric with data format integer. Adobe Form with such kind of issues can be activated without errors but during Form call you get error FPRUNX001
    So my advice would be to consider things like:
    Resolve data binding warnings. Its in the Report palette witch by default is located in the bottom left corner of the vertical palettes bar.
    Check that Form interface data types match with Form content fields data formats in data binding sub-menu.
    Also in your Form calling application you can trace ADS by using these function modules:
    FP_GET_LAST_ADS_ERRSTR - provides texts about the cause of the error
    FP_GET_LAST_ADS_TRACE - provides a trace of the Adobe document services

Maybe you are looking for

  • Logic Ex7 motu896 & Lacie drive ?problems!

    I just picked up an 896, all works fine but i can't get it to record to my Lacie drive (250G). The sound is messed up, Glich and pops and stuff and then i get an Error message "Error while trying to sync audio and midi" Logic records fine to my G4 ha

  • Error when activate analytic view (join tables)-Exception during activation

    Dear guru, I suffered an error showed "Exception during activation" when activate a newly created analytic view. I used two tables, one is NASDAQDAILY, one is NYSEDAILY. Private attribute are "DATE, STOCK(NYSE.STOCK), STOCK_1(NASDAQ.STOCK" Measure ar

  • Data Cache Error

    Hi Experts, Im new in this forum and please tell me if Im in the wrong Forum. I think the problem Im facing is a data cache one. The Scenario is a proxy -> Web Sevice. Synchronous. The Symptoms are: problems in the ESR. when im testing my scenario I

  • Upload a txt file,read that file,display po details using BAPI

    hi GURUS, CL_GUI_FRONTEND_SERVICES=>gui_upload to retrieve the file (upload the file). HOW TO USE THIS??? GV MORE DETAILS PLEASE...I WANT TO read TEST PO DATA.txt file Can you give me example how the test data( Header data and Item level data is used

  • How to set up port mapping in airport extreme?

    I just buy a Ip cam (d link) which need to set up port forwarding for outside access. What can I do?  My ISP is netvigator. How to set up and input which address to the airport utility? Please help. Thanks!