Problem trying to display generated objects

Hi,
I am trying to display generated objects in my Development 3.1 BW, this system does not have enough memory to work with a lot of data o processing.
I need to create an infopackage from an 8 Infosource, but when I select the option "show generated objects" the system show me the following error: STORAGE_PARAMETERS_WRONG_SET
The current program had to be terminated because of an               
error when installing the R/3 System.                                
The program had already requested 390086656 bytes from the operating 
system with 'malloc' when the operating system reported after a      
further memory request that there was no more memory space           
available.                                                           
The basis told me Parameters are correct with respect to a SAP note.
I want to know if there is another option to find the specific Infosource and create the Infopackage.
I appreciate your helps.
Regards,
Victoria

Hi ,
The only way to create infopackage is after the 8 infosource gets displayed.
The problem is with in the BW system...
this could be due to some temp table spaces..
Moreover chk whether u r able to search the other export datasources in BW.
thanks
Aamer

Similar Messages

  • Display generated objects in BW 7.0

    Dear Experts,
    I wanted to display generated objects in BW 7.0 In 3.x it was possible to activate this setting via "settings -> display generated objects". I cannot find the setting in the BW 7.0
    Can someone give me an advice?
    Thanks in advance.
    Martina

    Hi, have you checked if your 8* object is visible when you search for it?  If you can check and just let us know, have checked my end and it is visible but see your point re the option from Settings menu
    Thanks

  • Display Generated Objects Issue

    Hi,
    This is a weird situation. I am unable to view any of the Info sources or Info packages generated through "Generate Export Data source" option in ODS. We are doing a full upload into an ODS and later doing a delta from the ODS into a cube. If I right click on the ODS and manually select the option to update data target, it works fine, but I have to schedule the pack in a process chain.
    I have enabled the option "Show Generated Objects" in administrator workbench, still nothing shows up under data marts. I am using 3.0B version.
    Any help is appreciated.
    With Regards,

    Hi Anil,
    Thanks. I tried that, but it did not work.
    In the root of info sources, I selected "Insert Lost Nodes" option from context menu, which solved the problem.
    With Regards,

  • Display Generated Objects

    If froms the Tools menu I choose to show rather than hide Generated Objects what does this do? Thanks

    Hi Niten,
    it will show you the datasoures and infosources generated out of ods-objects and cubes starting with the 8....
    regards
    Siggi

  • Trying to display an object in a cmbo box

    i have a GUI that gets data from a MYSQL database and stores the data items in variables i defined. i wnat to load the data into text fields and combo boxes.
    the text fileds load and display the data fine but not in the combo box. i have the following code below that gets the size of the cmbo box (size 2, with the values null, male and female) and a for loop that gets each item from the cmbo box and if the item matches the item received from the MYSQL, add that item to the top of the cmbo box list and thend elete any duplicates and repaint the cmbo box
    //object variable that stores the gender value from the cmbo box
                Object temp_gender;
                //get number of items in the combo gender box
                int index = cmb_gender.getItemCount();
                for(int i = 0; index < i; i++)
                    //get item from cmbo box for gender
                    temp_gender = cmb_gender.getItemAt(i);
                    if(gender.equals(temp_gender.toString()));
                        //insert the item at the top of the list
                        cmb_gender.insertItemAt(temp_gender, 0);
                        //remove the item from its previous index position
                        cmb_gender.removeItemAt(i);
                        cmb_gender.repaint();
                }

    You have bad for statment
    int index = cmb_gender.getItemCount();
    This abow will return the number of items in the list.
    Because statement for will never made.
    for(int i = 0; index < i; i++)
    This is corect version :
    for(int i = 0; index > i; i++)

  • Display Generated ODS objects

    We are not able to display system generated infosources and infopackages in the Infosource DM (Datamart) application component.
    I have tried Settings --> Display Generated Objects, and set to Show, but this does not generate any application components.  This feature does work, however, in our other development and QA clients.
    Any thoughts?
    Thanks
    Chad

    Is the DM Application Component normally transported through to Production, or is it activated in the target client? 
    After further review of active Business Content in our production client, the Application Component DM is not shown as active.  Guess that could be the problem! 
    Please confirm if we can simply transport up the DM application component.
    Thanks!

  • Trying to use JDO objects as DTO over EJB???

    I have implemented the implemented the seralize interface in my JDO object
    classes. My JDO classes are only a data framework, I use them on both my
    EJB tier and I would like to use them on the web tier.... My thinking was to
    serialize the object graph and pass it between the EJB and web tier.... This
    seemed like a very good and easy way to painless move my object graph
    around. However, I am getting compile problems trying to compile the EJB
    methods.
    I have tried two variations on the method signature:
    public String testDeal (Deal myDeal) and
    public Deal testDeal (String name)
    where Deal is the root of my JDO object graph. The compile time error that
    results by trying to have a JDO enhanced class in the EJB method signature
    is shown below.
    IS THIS A LIMATION OF JDO or am I doing something wrong?
    Second question
    =============
    If I can't pass a JDO object as my Data Transfer object then I have to use
    my fall back idea.... I am currently sub-classing the JDO with a simple
    wrapper class. I can sucessfully pass these non-JDO classes as DTO's.....
    but I have a simple question.... What is an elegant way of using DTO's to
    populate a inheritance structure? This is not really a Java
    question....but my problem is that I have a list of a base class that I am
    carry around... the list can an one of many subclasses in it... I can easily
    determine the type of the class that I get out... but to then use this DTO
    to create an a JDO ojbect class instance without a case statement has me
    stumped... I hoped this was a common pattern and that someone had an
    elegent way to do this mapping..... I thought of a utility class or a
    logical to physical mapping structure similar to Struts action mapping, but
    I was wondering if there was a better way. Thanks for any suggestions.
    java.lang.ExceptionInInitializerError: java.util.MissingResourceException:
    Can't find bundle for base name javax.jdo.Bundle, locale en_US
    at
    java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:6
    95)
    at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:667)
    at java.util.ResourceBundle.getBundle(ResourceBundle.java:547)
    at javax.jdo.I18NHelper.loadBundle(I18NHelper.java:143)
    at javax.jdo.I18NHelper.<init>(I18NHelper.java:49)
    at javax.jdo.I18NHelper.getInstance(I18NHelper.java:61)
    at javax.jdo.spi.JDOImplHelper.<clinit>(JDOImplHelper.java)
    at aqueduct.Customer.<clinit>(Customer.java)
    at java.lang.reflect.Field.getLong(Native Method)
    at com.ibm.rmi.io.ObjectStreamClass.init(ObjectStreamClass.java:495)
    at
    com.ibm.rmi.io.ObjectStreamClass.lookupInternal(ObjectStreamClass.java:167)
    at com.ibm.rmi.io.ObjectStreamClass.lookup(ObjectStreamClass.java:120)
    at com.ibm.rmi.util.RepositoryId.createHashString(RepositoryId.java:627)
    at com.ibm.rmi.util.RepositoryId.createForJavaType(RepositoryId.java:786)
    at com.ibm.rmi.util.RepositoryId.createForAnyType(RepositoryId.java:871)
    at com.ibm.rmi.util.RepositoryId.createForAnyType(RepositoryId.java:855)
    at com.ibm.tools.rmic.iiop.Type.setRepositoryID(Type.java:990)
    at com.ibm.tools.rmic.iiop.CompoundType.initialize(CompoundType.java:733)
    at com.ibm.tools.rmic.iiop.ValueType.initialize(ValueType.java:241)
    at com.ibm.tools.rmic.iiop.ValueType.forValue(ValueType.java:101)
    at com.ibm.tools.rmic.iiop.CompoundType.makeType(CompoundType.java(Compiled
    Code))
    at
    com.ibm.tools.rmic.iiop.CompoundType$Method.<init>(CompoundType.java(Compile
    d Code))
    at
    com.ibm.tools.rmic.iiop.CompoundType.addAllMethods(CompoundType.java(Compile
    d Code))
    at com.ibm.tools.rmic.iiop.ValueType.initialize(ValueType.java:230)
    at com.ibm.tools.rmic.iiop.ValueType.forValue(ValueType.java:101)
    at com.ibm.tools.rmic.iiop.CompoundType.makeType(CompoundType.java(Compiled
    Code))
    at
    com.ibm.tools.rmic.iiop.CompoundType$Method.<init>(CompoundType.java(Compile
    d Code))
    at
    com.ibm.tools.rmic.iiop.CompoundType.addAllMethods(CompoundType.java:1279)
    at
    com.ibm.tools.rmic.iiop.RemoteType.isConformingRemoteInterface(RemoteType.ja
    va:207)
    at com.ibm.tools.rmic.iiop.RemoteType.initialize(RemoteType.java:156)
    at com.ibm.tools.rmic.iiop.RemoteType.forRemote(RemoteType.java:75)
    at
    com.ibm.tools.rmic.iiop.CompoundType.addRemoteInterfaces(CompoundType.java:1
    411)
    at
    com.ibm.tools.rmic.iiop.ImplementationType.initialize(ImplementationType.jav
    a:151)
    at
    com.ibm.tools.rmic.iiop.ImplementationType.forImplementation(ImplementationT
    ype.java:77)
    at com.ibm.tools.rmic.iiop.StubGenerator.getTopType(StubGenerator.java:128)
    at com.ibm.tools.rmic.iiop.Generator.generate(Generator.java:263)
    at sun.rmi.rmic.Main.doCompile(Main.java:547)
    at sun.rmi.rmic.Main.compile(Main.java:137)
    at sun.rmi.rmic.Main.main(Main.java:786)
    error: An error has occurred in the compiler; Please visit the URL
    http://www.ibm.com/java/jdk/support for information on
    investigating/reporting this problem. 1 error RMIC Command returns RC = 1.
    The problems which stopped RMIC are displayed, and have also been recorded
    in the log file.

    Brian,
    I have used this approach quite successfully with BEA WebLogic Server 7.0.
    The JDO enhanced class can act as both the DAO for persistence, and the DTO
    in its transient form. The client can rely on network class loading, so long
    as you package your EJB-JAR or EAR to contain the JDO jars.
    I think your compile problem is probably just a classpath issue.
    Ben
    "Brian Smith" <[email protected]> wrote in message
    news:[email protected]...
    >
    >
    >
    I have implemented the implemented the seralize interface in my JDO object
    classes. My JDO classes are only a data framework, I use them on both my
    EJB tier and I would like to use them on the web tier.... My thinking wasto
    serialize the object graph and pass it between the EJB and web tier....This
    seemed like a very good and easy way to painless move my object graph
    around. However, I am getting compile problems trying to compile the EJB
    methods.
    I have tried two variations on the method signature:
    public String testDeal (Deal myDeal) and
    public Deal testDeal (String name)
    where Deal is the root of my JDO object graph. The compile time errorthat
    results by trying to have a JDO enhanced class in the EJB method signature
    is shown below.
    IS THIS A LIMATION OF JDO or am I doing something wrong?
    Second question
    =============
    If I can't pass a JDO object as my Data Transfer object then I have to use
    my fall back idea.... I am currently sub-classing the JDO with a simple
    wrapper class. I can sucessfully pass these non-JDO classes as DTO's.....
    but I have a simple question.... What is an elegant way of using DTO's to
    populate a inheritance structure? This is not really a Java
    question....but my problem is that I have a list of a base class that I am
    carry around... the list can an one of many subclasses in it... I caneasily
    determine the type of the class that I get out... but to then use this DTO
    to create an a JDO ojbect class instance without a case statement has me
    stumped... I hoped this was a common pattern and that someone had an
    elegent way to do this mapping..... I thought of a utility class or a
    logical to physical mapping structure similar to Struts action mapping,but
    I was wondering if there was a better way. Thanks for any suggestions.
    java.lang.ExceptionInInitializerError: java.util.MissingResourceException:
    Can't find bundle for base name javax.jdo.Bundle, locale en_US
    at
    java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:6
    95)
    at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:667)
    at java.util.ResourceBundle.getBundle(ResourceBundle.java:547)
    at javax.jdo.I18NHelper.loadBundle(I18NHelper.java:143)
    at javax.jdo.I18NHelper.<init>(I18NHelper.java:49)
    at javax.jdo.I18NHelper.getInstance(I18NHelper.java:61)
    at javax.jdo.spi.JDOImplHelper.<clinit>(JDOImplHelper.java)
    at aqueduct.Customer.<clinit>(Customer.java)
    at java.lang.reflect.Field.getLong(Native Method)
    at com.ibm.rmi.io.ObjectStreamClass.init(ObjectStreamClass.java:495)
    at
    com.ibm.rmi.io.ObjectStreamClass.lookupInternal(ObjectStreamClass.java:167)
    >
    at com.ibm.rmi.io.ObjectStreamClass.lookup(ObjectStreamClass.java:120)
    at com.ibm.rmi.util.RepositoryId.createHashString(RepositoryId.java:627)
    at com.ibm.rmi.util.RepositoryId.createForJavaType(RepositoryId.java:786)
    at com.ibm.rmi.util.RepositoryId.createForAnyType(RepositoryId.java:871)
    at com.ibm.rmi.util.RepositoryId.createForAnyType(RepositoryId.java:855)
    at com.ibm.tools.rmic.iiop.Type.setRepositoryID(Type.java:990)
    at com.ibm.tools.rmic.iiop.CompoundType.initialize(CompoundType.java:733)
    at com.ibm.tools.rmic.iiop.ValueType.initialize(ValueType.java:241)
    at com.ibm.tools.rmic.iiop.ValueType.forValue(ValueType.java:101)
    atcom.ibm.tools.rmic.iiop.CompoundType.makeType(CompoundType.java(Compiled
    Code))
    at
    com.ibm.tools.rmic.iiop.CompoundType$Method.<init>(CompoundType.java(Compile
    d Code))
    at
    com.ibm.tools.rmic.iiop.CompoundType.addAllMethods(CompoundType.java(Compile
    d Code))
    at com.ibm.tools.rmic.iiop.ValueType.initialize(ValueType.java:230)
    at com.ibm.tools.rmic.iiop.ValueType.forValue(ValueType.java:101)
    atcom.ibm.tools.rmic.iiop.CompoundType.makeType(CompoundType.java(Compiled
    Code))
    at
    com.ibm.tools.rmic.iiop.CompoundType$Method.<init>(CompoundType.java(Compile
    d Code))
    at
    com.ibm.tools.rmic.iiop.CompoundType.addAllMethods(CompoundType.java:1279)
    at
    com.ibm.tools.rmic.iiop.RemoteType.isConformingRemoteInterface(RemoteType.ja
    va:207)
    at com.ibm.tools.rmic.iiop.RemoteType.initialize(RemoteType.java:156)
    at com.ibm.tools.rmic.iiop.RemoteType.forRemote(RemoteType.java:75)
    at
    com.ibm.tools.rmic.iiop.CompoundType.addRemoteInterfaces(CompoundType.java:1
    411)
    at
    com.ibm.tools.rmic.iiop.ImplementationType.initialize(ImplementationType.jav
    a:151)
    at
    com.ibm.tools.rmic.iiop.ImplementationType.forImplementation(ImplementationT
    ype.java:77)
    atcom.ibm.tools.rmic.iiop.StubGenerator.getTopType(StubGenerator.java:128)
    >
    at com.ibm.tools.rmic.iiop.Generator.generate(Generator.java:263)
    at sun.rmi.rmic.Main.doCompile(Main.java:547)
    at sun.rmi.rmic.Main.compile(Main.java:137)
    at sun.rmi.rmic.Main.main(Main.java:786)
    error: An error has occurred in the compiler; Please visit the URL
    http://www.ibm.com/java/jdk/support for information on
    investigating/reporting this problem. 1 error RMIC Command returns RC = 1.
    The problems which stopped RMIC are displayed, and have also been recorded
    in the log file.

  • Jsp, servlet & bean: trying to display records in a jsp

    Hello i'm trying to display records from my MYSQL database into particular fields allready designed in a jsp. Via servlets and beans i want the records in a jsp.
    I can get the resultset of the record, but can't get the resultset in de fields of the jsp.
    Here are my files:
    SERVLET
    package ...;
    import java.io.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    public class Zoekklantactie extends HttpServlet {
         ZoekklantBean ZoekklantBean = new ZoekklantBean();
         ZoekklantactieBean ZoekklantactieBean = new ZoekklantactieBean();
         DbBean db = new DbBean();
         public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
              verwerk(request, response);
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
         verwerk(request, response);
    public void verwerk(HttpServletRequest request, HttpServletResponse response) throws IOException {
         response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              String hachternaam = request.getParameter("hachternaam");
              String zoekklantnieuw = "SELECT hachternaam FROM klantgegevens WHERE hachternaam = ";
              String zoekklantnieuw2 = zoekklantnieuw + " '"+hachternaam+"' ";
              ResultSet rs = null;
                   //     out.println("debug 1<br>");
         /*     try {
                   //     Statement s;
                        db.connect();
                   //     s = db.getS();
                        rs = db.execSQL("SELECT hachternaam FROM klantgegevens WHERE hachternaam = 'Opgelder'");
                   //          out.println(rs.getString(1)+"hoi");
                        while (rs.next()) {
                   //                retrieve and print the values for the current row
                   //          out.println("debug1a --> "+rs.toString()+"<br>");
                             String str = rs.getString(1);
                   //          out.println("ROW = " + str );
                        } catch (SQLException e) {
                   //                TODO Auto-generated catch block
                   //          out.println("debug2 <br>"+e.toString());
                             e.printStackTrace();
                        } catch (ClassNotFoundException e) {
                   //                TODO Auto-generated catch block
                   //          out.println("debug3 <br>");
                             e.printStackTrace();
         /* ResultSet rs = null;
         out.println("debug 1<br>");
              try {
                   //     Statement s;
                   db.connect();
                   //     s = db.getS();
                   rs = db.execSQL("select * from klantgegevens where hachternaam = 'Opgelder'");
                   //          out.println(rs.getString(1)+"hoi");
                   while (rs.next()) {
                        rs.first();
                   //           retrieve and print the values for the current row
                        out.println("debug1a<br>");
                        String str = rs.getString(1);
                        System.out.println("ROW = " + str );
                   rs = (ResultSet) db.execSQL(zoekklantnieuw2);
                   out.print(rs.getString("hwoonplaats"));
                   out.print(zoekklantnieuw2);
              } catch (SQLException e) {
                   //                TODO Auto-generated catch block
                   out.println("debug2 <br>"+e.toString());
                   e.printStackTrace();
              } catch (ClassNotFoundException e) {
                   //                TODO Auto-generated catch block
                   out.println("debug3 <br>");
                   e.printStackTrace();
              if( hachternaam == "" ){
                   request.setAttribute("jesper",ZoekklantBean);
                   //          Get dispatcher with a relative URL
                   RequestDispatcher dis = request.getRequestDispatcher("Zoekklant.jsp");
                   //           include
                   try {
                        dis.include(request, response);
                   } catch (ServletException e) {
                        e.printStackTrace();
                   } catch (IOException e) {
                        e.printStackTrace();
                   //          or forward
                   try {
                        dis.forward(request, response);
                   } catch (ServletException e) {
                        e.printStackTrace();
                   } catch (IOException e) {
                        e.printStackTrace();
              else{
                   try {
                   //     Statement s;
                        db.connect();
                   //     s = db.getS();
                        rs = db.execSQL(zoekklantnieuw2.toString());
                   //          out.println(rs.getString(1)+"hoi");
                        while (rs.next()) {
                   //           retrieve and print the values for the current row
                   //          out.println("debug1a --> "+rs.toString()+"<br>");
                             String str = rs.getString(1);
                   //          out.println("ROW = " + str );
                   //          out.print(rs);
                        } catch (SQLException e) {
                   //                TODO Auto-generated catch block
                   //          out.println("debug2 <br>"+e.toString());
                             e.printStackTrace();
                        } catch (ClassNotFoundException e) {
                   //                TODO Auto-generated catch block
                   //          out.println("debug3 <br>");
                             e.printStackTrace();
                   request.setAttribute("jesper",ZoekklantactieBean);
                   //          Get dispatcher with a relative URL
                   RequestDispatcher dis = request.getRequestDispatcher("Zoekresultaatklant.jsp");
                   //          include
                   try {
                        dis.include(request, response);
                        } catch (ServletException e) {
                        e.printStackTrace();
                        } catch (IOException e) {
                        e.printStackTrace();
                   //          or forward
                   try {
                        dis.forward(request, response);
                        } catch (ServletException e) {
                        e.printStackTrace();
                        } catch (IOException e) {
                        e.printStackTrace();
    BEAN
    package ...;
    public class ZoekklantactieBean {
         private String hachternaam;
         private String hvoorletters;
         private String hgeslachtMan;
         private String hgeslachtVrouw;
         private String hgeboortePlaats;
         private String hgeboorteDatum;
         private String hnationaliteit;
         private String hsofinummer;
         private String hadres;
         private String hwoonplaats;
         private String hpostcode;
         private String htelefoonnummerPrive;
         private String htelefoonnummerMobiel;
         private String htelefoonnummerWerk;
         private String hemail;
         private String hburgelijkeStaat;
         private String hallimentatie;
         private String hrestduurAllimentatie;
         private Boolean hbetreftOversluiting;
         private String pachternaam;
         private String pvoorletters;
         private String pgeslachtMan;
         private String pgeslachtVrouw;
         private String pgeboortePlaats;
         private String pgeboorteDatum;
         private String pnationaliteit;
         private String psofinummer;
         private String padres;
         private String pwoonplaats;
         private String ppostcode;
         private String ptelefoonnummerPrive;
         private String ptelefoonnummerMobiel;
         private String ptelefoonnummerWerk;
         private String pemail;
         private String pburgelijkeStaat;
         private String pallimentatie;
         private String prestduurAllimentatie;
         private Boolean poversluiting;
         public void setHachternaam( String name )
         hachternaam = name;
         public String getHachternaam()
         return hachternaam;
         public void setHvoorletters( String name )
         hvoorletters = name;
         public String getHvoorletters()
         return hvoorletters;
         public void setHgeslachtMan( String gender )
         hgeslachtMan = gender;
         public String getHgeslachtMan()
         return hgeslachtMan;
         public void setHgeslachtVrouw( String gender )
         hgeslachtVrouw = gender;
         public String getHgeslachtVrouw()
         return hgeslachtVrouw;
         public void setHgeboortePlaats( String name )
         hgeboortePlaats = name;
         public String getHgeboortePlaats()
         return hgeboortePlaats;
         public void setHgeboorteDatum( String date )
         hgeboorteDatum = date;
         public String getHgeboorteDatum()
         return hgeboorteDatum;
         public void setHnationaliteit( String name )
         hnationaliteit = name;
         public String getHnationaliteit()
         return hnationaliteit;
         public void setHsofinummer( String number )
         hsofinummer = number;
         public String getHsofinummer()
         return hsofinummer;
         public void setHadres( String name )
         hadres = name;
         public String getHadres()
         return hadres;
         public void setHwoonplaats( String name )
         hwoonplaats = name;
         public String getHwoonplaats()
         return hwoonplaats;
         public void setHpostcode( String name )
         hpostcode = name;
         public String getHpostcode()
         return hpostcode;
         public void setHtelefoonnummerPrive( String number )
         htelefoonnummerPrive = number;
         public String getHtelefoonnummerPrive()
         return htelefoonnummerPrive;
         public void setHtelefoonnummerMobiel( String number )
         htelefoonnummerMobiel = number;
         public String getHtelefoonnummerMobiel()
         return htelefoonnummerMobiel;
         public void setHtelefoonnummerWerk( String number )
         htelefoonnummerWerk = number;
         public String getHtelefoonnummerWerk()
         return htelefoonnummerWerk;
         public void setHemail( String adress )
         hemail = adress;
         public String getHemail()
         return hemail;
         public void setHburgelijkeStaat( String name )
         hburgelijkeStaat = name;
         public String getHburgelijkeStaat()
         return hburgelijkeStaat;
         public void setHallimentatie( String number )
         hallimentatie = number;
         public String getHallimentatie()
         return hallimentatie;
         public void setHrestduurAllimentatie( String number )
         hrestduurAllimentatie = number;
         public String getHrestduurAllimentatie()
         return hrestduurAllimentatie;
         public void setHbetreftOversluiting( Boolean choise )
         hbetreftOversluiting = choise;
         public Boolean getHbetreftOversluiting()
         return hbetreftOversluiting;
         public void setPachternaam( String name )
         pachternaam = name;
         public String getPachternaam()
         return pachternaam;
         public void setPvoorletters( String name )
         pvoorletters = name;
         public String getPvoorletters()
         return pvoorletters;
         public void setPgeslachtMan( String gender )
         pgeslachtMan = gender;
         public String getPgeslachtMan()
         return pgeslachtMan;
         public void setPgeslachtVrouw( String gender )
         pgeslachtVrouw = gender;
         public String getPgeslachtVrouw()
         return pgeslachtVrouw;
         public void setPgeboortePlaats( String name )
         pgeboortePlaats = name;
         public String getPgeboortePlaats()
         return pgeboortePlaats;
         public void setPgeboorteDatum( String date )
         pgeboorteDatum = date;
         public String getPgeboorteDatum()
         return pgeboorteDatum;
         public void setPnationaliteit( String name )
         pnationaliteit = name;
         public String getPnationaliteit()
         return pnationaliteit;
         public void setPsofinummer( String number )
         psofinummer = number;
         public String getPsofinummer()
         return psofinummer;
         public void setPadres( String name )
         padres = name;
         public String getPadres()
         return padres;
         public void setPwoonplaats( String name )
         pwoonplaats = name;
         public String getPwoonplaats()
         return pwoonplaats;
         public void setPpostcode( String name )
         ppostcode = name;
         public String getPpostcode()
         return ppostcode;
         public void setPtelefoonnummerPrive( String number )
         ptelefoonnummerPrive = number;
         public String getPtelefoonnummerPrive()
         return ptelefoonnummerPrive;
         public void setPtelefoonnummerMobiel( String number )
         ptelefoonnummerMobiel = number;
         public String getPtelefoonnummerMobiel()
         return ptelefoonnummerMobiel;
         public void setPtelefoonnummerWerk( String number )
         ptelefoonnummerWerk = number;
         public String getPtelefoonnummerWerk()
         return ptelefoonnummerWerk;
         public void setPemail( String adress )
         pemail = adress;
         public String getPemail()
         return pemail;
         public void setPburgelijkeStaat( String name )
         pburgelijkeStaat = name;
         public String getPburgelijkeStaat()
         return pburgelijkeStaat;
         public void setPallimentatie( String number )
         pallimentatie = number;
         public String getPallimentatie()
         return pallimentatie;
         public void setPrestduurAllimentatie( String number )
         prestduurAllimentatie = number;
         public String getPrestduurAllimentatie()
         return prestduurAllimentatie;
         public void setPoversluiting( Boolean choise )
         poversluiting = choise;
         public Boolean getPoversluiting()
              return poversluiting;
    JSP
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="ErrorPage.jsp" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <jsp:useBean id = "db" scope = "request" class = "jesper.DbBean" />
    <jsp:useBean id = "ZoekklantactieBean" scope = "request" class = "jesper.ZoekklantactieBean" />
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Klantinvoer</title>
    <style type="text/css">
    <!--
    .style1 {font-family: Verdana, Arial, Helvetica, sans-serif}
    .style3 {font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; }
    -->
    </style></head>
    <body>
    <form id="Zoekklantactie" name="Zoekklantactie" method="post" action="Zoekklantactie">
    <table width="71%" height="447" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td width="20%"><span class="style1">Zoek klant </span></td>
    <td width="20%"><select name="select">
    <option>H. Patat</option>
    <option>B. Opgelder</option>
    <option>Y. de Koning</option>
    </select> </td>
    <td width="8%"> </td>
    <td width="18%"> </td>
    <td width="20%"> </td>
    <td width="14%"> </td>
    </tr>
    <tr>
    <td><span class="style3">Hoofdaanvrager</span></td>
    <td> </td>
    <td> </td>
    <td><span class="style3">Partner</span></td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Naam</span></td>
    <td><input type="text" name="hachternaam" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hachternaam" />"/></td>
    <td> </td>
    <td><span class="style1">Naam</span></td>
    <td><input type="text" name="pachternaam" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="pachternaam" />"/></td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Voorletters</span></td>
    <td><input type="text" name="hvoorletters" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hvoorletters" />"/></td>
    <td> </td>
    <td><span class="style1">Voorletters</span></td>
    <td><input type="text" name="pvoorletters" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="pvoorletters" />"/></td>
    <td> </td>
    </tr>
         <tr>
    <td><span class="style1">Geslacht</span></td>
    <td><span class="style1">
    <label>
    <input name="hgeslachtMan" type="radio" value="<jsp:getProperty name ="ZoekklantactieBean" property ="hgeslachtMan"/>Man" />
    Man
    <input name="hgeslachtMan" type="radio" value="<jsp:getProperty name ="ZoekklantactieBean" property ="hgeslachtVrouw"/>Vrouw" />
    Vrouw </label>
    </span></td>
    <td><span class="style1"></span></td>
    <td><span class="style1">Geslacht</span></td>
    <td><span class="style1">
    <label>
    <input name="pgeslachtMan" type="radio" value="<jsp:getProperty name ="ZoekklantactieBean" property ="pgeslachtMan" />Man" />
              Man
              <input name="pgeslachtMan" type="radio" value="<jsp:getProperty name ="ZoekklantactieBean" property ="pgeslachtVrouw" />Vrouw" />
              Vrouw </label></span></td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Geboortedatum</span></td>
    <td><input type="text" name="hgeboorteDatum" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hgeboorteDatum" />"/></td>
    <td> </td>
    <td><span class="style1">Geboortedatum</span></td>
    <td><input type="text" name="pgeboorteDatum" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="pgeboorteDatum" />"/></td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Geboorteplaats</span></td>
    <td><input type="text" name="hgeboortePlaats" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hgeboortePlaats" />"/></td>
    <td> </td>
    <td><span class="style1">Geboorteplaats
    </span></td>
    <td><span class="style1">
    <input type="text" name="pgeboortePlaats" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="pgeboortePlaats" />"/>
    </span></td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Nationaliteit</span></td>
    <td><input type="text" name="hnationaliteit" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hnationaliteit" />"/></td>
    <td> </td>
    <td><span class="style1">Nationaliteit</span></td>
    <td><input type="text" name="pnationaliteit" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="pnationaliteit" />"/></td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Sofinummer</span></td>
    <td><input type="text" name="hsofinummer" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hsofinummer" />"/></td>
    <td> </td>
    <td><span class="style1">Sofinummer</span></td>
    <td><input type="text" name="psofinummer" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="psofinummer" />"/></td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Postcode</span></td>
    <td><input type="text" name="hpostcode" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hpostcode" />"/></td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Adres</span></td>
    <td><input type="text" name="hadres" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hadres" />"/></td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Woonplaats</span></td>
    <td><input type="text" name="hwoonplaats" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hwoonplaats" />"/></td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Telefoon prive</span></td>
    <td><span class="style1">
    <input type="text" name="htelefoonnummerPrive" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="htelefoonnummerPrive" />"/></span></td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Telefoon mobiel </span></td>
    <td><span class="style1">
    <input type="text" name="htelefoonnummerMobiel" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="htelefoonnummerMobiel" />"/></span></td>
    <td> </td>
    <td><span class="style1">Telefoon mobiel</span></td>
    <td><span class="style1">
    <input type="text" name="ptelefoonnummerMobiel" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="ptelefoonnummerMobiel" />"/></span></td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Telefoon werk </span></td>
    <td><span class="style1">
    <input type="text" name="htelefoonnummerWerk" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="htelefoonnummerWerk" />"/></span></td>
    <td> </td>
    <td><span class="style1">Telefoon werk</span></td>
    <td><span class="style1">
    <input type="text" name="ptelefoonnummerWerk" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="ptelefoonnummerWerk" />"/></span></td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">E-mail</span></td>
    <td><input type="text" name="hemail" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hemail" />"/></td>
    <td> </td>
    <td><span class="style1">E-mail</span></td>
    <td><input type="text" name="pemail" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="pemail" />"/></td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Burgelijke staat </span></td>
    <td><select name="hburgelijkeStaat" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hburgelijkeStaat" />">
    <option selected="selected">gehuwd</option>
    <option>ongehuwd</option>
    <option>gescheiden</option>
    </select> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Allimentatie</span></td>
    <td><input type="text" name="hallimentatie" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hallimentatie" />"/></td>
    <td> </td>
    <td><span class="style1">Allimentatie</span></td>
    <td><input type="text" name="pallimentatie" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="pallimentatie" />"/></td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Restduur allimentatie </span></td>
    <td><input type="text" name="hrestduurAllimentatie" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hrestduurAllimentatie" />"/></td>
    <td> </td>
    <td><span class="style1">Restduur allimentatie </span></td>
    <td><input type="text" name="prestduurAllimentatie" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="prestduurAllimentatie" />"/></td>
    <td> </td>
    </tr>
    <tr>
    <td><span class="style1">Betreft een oversluiting? </span></td>
    <td><input type="checkbox" name="hbetreftOversluiting" value ="<jsp:getProperty name ="ZoekklantactieBean" property ="hbetreftOversluiting" />Betreft oversluiting" /></td>
    <td> </td>
    </tr>
    </table>
    </form>
    <form name="Terug" method="post" action="Menu.jsp"><input name="Terug" type="submit" value="Terug naar hoofdmenu" /></form>
    </body>
    </html>
    Package everywhere the same.
    Have commented some of the code, because i was trying to debug, but just couldn't figure it out.
    Tnx in advance.
    gr. bopgelder

    put your bean in a different package from servlet and include this
    package in your servlet like
    import yourbeanpackage.yourbean
    and then create object of bean and use it

  • Problem with Table display in Adobe Form of Web Dynpro ABAP

    Hi Team,
    I'm trying to display a table in Adobe Print Form (not interactive). The table is bound to the context node in the Web Dynpro ABAP where the cardinality is 0:N. I get a short dump. Don't know what to do here. I'm able to display individual fields from my context successfully. Looks like something is missing when I try to display a table. Any pointers to display a data table in Adobe? Any step by step example you know of where I can find out what I did wrong? Many thanks for your time
    We are on support pack SP06 on 2004S release.
    DUMP INFORMATION:
    Short text                                                               
        Access via 'NULL' object reference not possible.                 
    What happened?                                                           
        Error in the ABAP Application Program  The current ABAP program "CL_WD_ADOBE_SERVICES==========CP" had to be terminated because it has come across a statement that unfortunately cannot be executed.
    An exception occurred that is explained in detail below.                    
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not caught in procedure "CREATE_PDF" "(METHOD)", nor was it propagated by a RAISING clause.

    Hi Thomas,
    We upgraded our system(2004S) to SP10 so that we can use the ADOBE form printing in Web Dynpro ABAP but could not apply note 1034425 because of the validity constraints in SNOTE. All the pre-requisite notes are already in the system apart from one note 1029721 which talks about supporting input helps. We don't want to use input helps in our system and cannot upgrade to SP11 because of problems with Business functionality.
    Questions:
    1) Is note 1034425 absolutely dependent on 1029721?
    2) If NOT, can someone please correct the validity so that we can implement using SNOTE.
    3) Would it be OK if we manually apply the changes specified in 1034425 without implementing 1029721?
    4) If all of the above is not applicable, is there any other note which fixes the above mentioned short dump.
    Your help in this matter will greatly help us in using the ADOBE services provided by SAP WDA.
    Thanks much

  • Safari doesn't display an object with MIME type video/mp4

    So, I've got a little hiccup here. I put together a CV in html with samples you can click to bring up. Now, I don't make any claims to professional geekdom, but I try to be fairly html savvy, and since I'm sending this to the college IT guys, I want to do it right. So I'd like this thing to use valid w3c compliant html. Not too tough, fix some missing quotes and learn how to use the object tag instead of embed. Done.
    Well, here's the problem. I loaded it into Safari for testing, and a Quicktime file won't play. Now, it runs fine on Firefox. The obtuse and awkwardly lumped in IE version of the object works fine (tested in IE6, Win2K virtual machine). And the same file ran fine when I had it using an embed tag. Now it just brings up the Quicktime emblem, takes up the specified amount of space, and doesn't do anything.
    What did I do wrong? I've got the latest Quicktime and Safari, and I know it's standards compliant. Do I have to feed it some more specific type for an h.264 encoded mp4?
    Here's the code I used. The embed tag is the one that works, the object tag is the compliant one that doesn't. I'm guessing I'm missing a parameter or something. Any advice?
    <embed scale="1" src="files/Sabres.mp4" pluginspage="http://www.apple.com/quicktime/download/" autoplay="FALSE" volume="100" cache="TRUE" height="496" width="640">
    <object type="video/mp4" data="files/Sabres.mp4" height="496" width="640">
    <param name="controller" value="true">
    <param name="autoplay" value="false">
    Your browser cannot display this content. Click here to download it.
    </object>

    Tom and Kirk, thanks for your time. That would work, but since <embed> is a non-standard tag, I want to avoid it.
    Andy, I actually stopped by that site last night, and I did use it for the object code.
    My problem is that for some reason, what looks like a legitimate implementation of <object> isn't displaying in Safari. I know Firefox is a bit more forgiving of sloppy code, so I don't blame Safari for that one. I know Safari can display the file because it displayed it properly when I called it with embed. I'm just not sure what's wrong with the code that's making Safari not bring up the video. It knows it's Quicktime and loads the file, I know that, because it brings up the emblem and starts hoarding RAM when I bring it up in Safari, but it just holds there. I've tried a couple MIME types, including video/quicktime and video/mp4, both worked in Firefox, and video/h264 just as a shot in the dark, and both Safari and Firefox showed the alternate content.
    By the way, here's the full code I used to display the object, using Castro's cloaking technique for IE compatibility. I omitted it earlier because when I isolated the non-IE section alone in the body of the document it behaved the same as it did with the cloaking (working in FF, broken in Safari).
    <!--[if IE]>
    <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="496" width="640">
    <param name="src" value="files/Sabres.mp4" >
    <param name="controller" value="true">
    <param name="autoplay" value="false">
    </object>
    <![endif]-->
    <!--[if !IE]> <!-->
    <object type="video/mp4" data="files/Sabres.mp4" height="496" width="640">
    <param name="controller" value="true">
    <param name="autoplay" value="false">
    Your browser cannot display this content. Click here to download it.
    </object>
    <!--<![endif]-->
    Message was edited by: The Spine

  • Error trying to display a report file in FDM event script

    Hi
    I am trying to display a file (report) during an event script and receive an error "Object reference not set to an instance of an object" . The process works in version 9.3 but is generating this error during our upgrade testing on 11.1.2.2 (different hardware)
    The file (check report) is getting written correctly the \OutBox\Log directory. The file contains a standard Check Report with a file extension .pdf ( lngFileType = 31)
    We have no issues creating the file
    We try to display the file on the screen for the user using the following code which fails with the "Object reference not set to an instance of an object" error and also a message "Could not load XML file:" with the file name and path
    'Open report file in web client
    RES.PlngActionType = 4
    RES.PstrActionValue = strFileName
    Symptoms:
    We can open the same file as text with RES.PlngActionType = 1
    Everyone has rights to open/read a file in the directory
    File can be opened manually and appears correct
    Any help would be appreciated. I have not found similar issues on the forum. Support has offered no suggestions to date

    Hi and thanks for your response.
    Yes, we have tried all the various type of files ( ScriptActionTypes). The Type = 1 will open the file, but as a text stream without formatting, etc. If we try type = 3 we receive a different error message:
    Error: Invalid Report ID: 0
    Detail: Stacktrace:
    upsAppServerDM._clsAppServerDM.fPublishReport(lngReportID[Int32], lngPubFileType[Int32], strReportSQL[String], strSubReportSQL[String])
    Hyperion.FDM.Pages.ViewReportActionEvent.ExecuteReport(reportID[Int32], sqlStatement[String])
    Hyperion.FDM.Pages.ViewReportActionEvent.PreviewReport()
    Also, the Validation Report is enabled (we are using check with warnings - ID133), I have tried changing the default Web Settings from .PDF to .html and back again and tried the various other default options available under Web Settings.
    If we create a simple test text file, we can open the file as text (Type = 1)
    Here is the complete error message employing Type = 4 (XML)
    Error: Object reference not set to an instance of an object.
    Detail: Stacktrace:
    Hyperion.FDM.Pages.IntersectionSummaryCheck.FillTitleRow()
    Hyperion.FDM.Pages.IntersectionSummaryCheck.Page_Load(sender[Object], e[EventArgs])
    System.Web.UI.Control.OnLoad(e[EventArgs])
    Hyperion.FDM.Pages.BasePage.OnLoad(e[EventArgs])

  • PTSpy - trying to find an object in the Portal

    Hello,
    PTSpy is throwing this error:
    -2147024891 - Current User does not have sufficient permission to object with id = 202
    (full error at the end)
    I looked above to the sql and ran the query - of course nothing is found:
    Create query: '/* QUERY_USER_ACCESS:ANSI */ SELECT DISTINCT(b.ACCESSLEVEL) FROM PTOBJECTSECURITY b, PTVGroupMembership gm WHERE b.groupid = gm.groupid AND gm.userid=? AND b.classid=? AND b.objectid=? ORDER BY b.ACCESSLEVEL DESC'
    setInt, index: 0, value: 4762.
    setInt, index: 1, value: 47.
    setInt, index: 2, value: 202.
    How do I find the object that does not have permission it is looking for - in the Portal?
    Thanks,
    V
    Display: The following error occured when trying to display the HTML:
    com.plumtree.server.marshalers.PTException: -2147024891 - Error in function PTBaseObjectManager.Open (nObjectID == 202, bLockInitially == false): -2147024891 - Current User does not have sufficient permission to object with id = 202
    com.plumtree.server.marshalers.PTException: -2147024891 - Error in function PTBaseObjectManager.Open (nObjectID == 202, bLockInitially == false): -2147024891 - Current User does not have sufficient permission to object with id = 202
    at com.plumtree.openfoundation.util.XPException.GetInstance(String strErrorMsg, Exception e)
    at com.plumtree.server.impl.core.PTBaseObjectManager.Open(Int32 nObjectID, Boolean bLockInitially)
    at com.plumtree.portalpages.browsing.directory.DirModel.GetWebService(Int32 _nDataSourceID)
    at com.plumtree.portalpages.browsing.directory.DirModel.SupportsUpload(Int32 _nDataSourceID)
    at com.plumtree.portalpages.browsing.directory.documentsubmitsimple.DirCardSubmitSimpleView.DisplayJavascript()
    at com.plumtree.portalpages.browsing.directory.documentsubmitsimple.DirCardSubmitSimpleDP.DisplayJavaScriptFromChild()
    at com.plumtree.uiinfrastructure.form.AFormDP.Display(IWebData pageData)
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleDisplayPage(Redirect myRedirect, RequestData tempData)
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleRequest(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application)
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.DoService(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application)
    at com.plumtree.uiinfrastructure.web.XPPage.Service(HttpRequest httpRequest, HttpResponse httpResponse, HttpSessionState httpSession, HttpApplicationState httpApplication) in e:\buildroot\Release\httpmemorymanagement\6.1.x\dotNET\src\com\plumtree\uiinfrastructure\web\XPPage.cs:line 82
    at com.plumtree.portaluiinfrastructure.activityspace.PlumHandler.ProcessRequest(HttpContext context) in e:\buildroot\Release\portalui\6.1.x\ptwebui\portal\dotnet\prod\src\web\PlumHandler.cs:line 37
    at System.Web.CallHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    at System.Web.HttpApplication.ResumeSteps(Exception error)
    at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)
    at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
    at System.Web.HttpRuntime.ProcessRequest(HttpWorkerRequest wr)
    at System.Web.Hosting.ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)
    Caused by: com.plumtree.server.marshalers.PTException: -2147024891 - Current User does not have sufficient permission to object with id = 202
    at com.plumtree.server.impl.core.PTBase.ThrowException(String message, Int32 errorCode)
    at com.plumtree.server.impl.core.PTBaseObjectManager.VerifyObjectAccess(Int32 minAccessLevel, Int32 lObjectID)
    ... 18 more

    Hey Vivek, I couldn't agree with you more. It is definitely a hassle to try to find the broken object in statements like "Current User does not have sufficient permission to object with id = 202"
    I created a ticket with Plumtree about this 2 years ago and they informed me that because object IDs are not unique and have to be used in conjunction with a class ID that they can't perform a reliable search.
    Instead you must test each class ID and match it against the object ID to find your problem.
    Its a bit labor intense but there are only about 15 different class ID's to run through.
    I posted a list of our ID's in our portal team collab project and each time this situation comes up we just scan through the list using a URL

  • Unable to find generated objects in repository - Activating BE

    Hi,
    I´m  trying to migrate MAM from Mobile 7.0 to Mobile 7.1.
    I got to import the syncbos as data objects successfully. However, when I try to activate a Backend Adapter, the error: "Unable to find generated objects in repository" comes up.
    I applied the note number 1408036, which is to correct the issue, but it didn´t work (I´ve already re-started the server).  We working on Mobile 7.1 - SP08.
    Anyone has some clue for this problem?
    Thanks.

    Hi,
    have you done the [DOE inital setup|http://help.sap.com/saphelp_nwmobile71/helpdata/en/45/17a790d8000064e10000000a1553f7/frameset.htm]?
    have you activate the data object?
    if dont,please do that,
    than try to activate the backend adapter.
    regards,
    lakshman balanagu
    Edited by: lakshman balanagu on Dec 4, 2009 12:13 PM

  • URGENT ! JDEV 10.1.2 Problem with data control generated from session bean

    I got a problem with data control generated from session bean which return a collection of data transfer object.
    The dto's seem to be correct. The session bean load correctly the data into and the object's are plenty of data. Using the console to display the dto content is ok.
    When generating a data control from this session bean and associate the dto included in the collection only the first object level and one-to-one dto object are correctly setted in the data control. Object that represent collection into the dto (one-to-many foreign key) are setted as collection with an iterator but the structure of the object is not setted. I don't know how to associate this second level of collection with the dto bean class to obtain the attributes definition.
    I created a case with hr schema like the hrApp demo application in the tutorial with departments and employees table. I got the same problem.
    Is it a bug ?
    It exists a workaround to force the data control to understand the collection data structure ?
    Help is welcome ! this is urgent !!!

    we found the problem by assigning the child dto bean class to the node representing the iterator in the xml file corresponding to the master dto.

  • Help displaying Instructional Objectives 1-at-a-time using mouse down on a button on one screen.

    I am brand new to Captivate 6 and have encountered my first coding problem. I have six instructional objectives and would like to display them one at a time with a mouse click on a button. I would like some guidance either with making what I a trying to do work or in the alternative telling me what I should be doing instead. Here is what I tried to do.
    1. I created 6 instructional objectives on a single screen.
    2. Then I created a user variable "increment_objectives." It's starting value was set to 0.
    3. Next, I built an advanced conditional action. It contained seven conditional  statements, each built the same way. The purpose of the seventh was to move to the next slide after all instructional objectives were viewed.
    The advanced conditional action IF statement was:  If increment_objectives = x  then (where x varied from 0 to 7)
    The ACTION statements contained the names of the six instruction objectives (objective_1 through objective_6) and these were either shown or hidden, based upon the increment_objectives value.
    4. This advanced conditional action was attached to the enter frame on the slide and "no action" was on the exit frame on the slide.
    5. On a Button I attached an increment value that added 1 to increment_objectives variable.
    6. I set all frame objects to "duration of slide" turning off all timing increments.
    I had expected that this would increment the increment_objectives variable when the mouse was clicked and that the advanced actions conditional statements would be interpreted and display the objectives one at a time. How wrong I was. Not only did they not display, but after a few seconds, the screen would flip to the next slide.
    Can you offer me some help?
    Rod Wolford

    Hi Rod
    What did you use to trigger calling the Advanced Action? From what you just described, there is nothing to trigger the action. At least beyond the initial triggering upon entering the slide.
    Normally you want a Button or Click Box or other trigger to call the Advanced Action after each interaction.
    Hope this helps a smidge... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

Maybe you are looking for