Where is ibuPromptManager class?

Hello friends,
[Apps 11.5.10 - DB 10g]
Module: iSupport. When we create a Service Request (iburcr01.jsp) , we need to identify the product and fill certain fields corresponding to custom flexfield. I'm trying to set default values for each flexfield item, but having a look at jsp code, the only code about retrieving information to fill "something" in the screen was this piece of code :
if (ibuRegionName != null)
ibuPrompts = ibuPromptManager.getPrompts(_connection, ibuRegionName, _context.getLangCode());
It sound like it retrieves prompts from AK attributes for the Region iburegionName but:
- ibuRegionName is not declared in the jsp
- I suppose ibuPromptManager is a class, but I couldn't find it in my server....
May be this is not the way to set initial values for flexfield items because searching for loading flexfield references, I've found "check code" for those FF on line 318 and followings of ibuSRIdentifyProblem.jsp and it seems to be a fill code for standar items , type of problem i.e., through comands like out.println(RendererUtil.textInput(... but below these, it's where it's supposed the flexfields item must be filled.. and I can't see where...
Can you see it?
Thanks,
Jose.

It in Java SE.Where in the Java SE??? I have it included in my CLASSPATH, and I have looked through the various JAR files, and I cannot find it! What JAR should I include???

Similar Messages

  • Where are Java classes in Forms running

    Hi,
    I've got a question concerning the architecture of Java in Forms.
    There are two possibilities to deploy Java classes for the use in Forms:
    1. As a jar archive, defined in formsweb.cfg
    The archives definied in parameter archive_jini are downloaded when the form is called for the first time. The Java class is then running in a JRE on the client.
    2. In the codebase, not archived.
    The Java class has to be placed in the Forms codebase (%9iDS_HOME%\forms90\java), with the full package structure (e. g. oracle\forms\demos\beans\Hyperlink.class).
    My question is: Where will the class run in the second configuration? I suppose, on the server side. Am I right?
    Thanks for your help.
    Andreas

    NO in that case it still runs in the browser JVM, using Jars or classes in this case only effects the downloading and caching - not the execution location.
    Java code is only executed on the application server if you have used the Java importer feature to create PL/SQL stubs.

  • Where are java classes stored?

    Does anyone where the java classes are physically stored?
    Is there any mechanism for getting them out?
    null

    Thanks, Irian,
    in the meantime I have found another solution. For Windows it works using environment variable IDE_USER_DIR.
    Create a new directory for the runtime files, e.g. C:\sqldevtemp
    Add environment variable IDE_USER_DIR with the value of "C:\sqldevtemp".
    Close SQL Developer, move (or copy if you want) all files from the old folder to the new folder and start SQL Developer again.
    Done.

  • Where does a class reside?

    I confess, I'm new. I'm trying to learn Java progrmming and in the book "Teach Yourself Java in 21 Days" it says that an instance can reference and update class variables. Where are these class variables? Okay, they reside on a hard drive somewhere but does an instance have update authorization to the hard drive? or is the class held in memory somewhere and when and instance updates the class it is only in memory? It would not make sence if you are creating a dozen instances of the same class to keep going out to the hard drive for the creation of every instance.
    I'd appreciate any light you can shed on the subject.
    Thanks,
    Byron in Seattle

    You hit the nail on the head; it would be way too costly to run java having to read class file definitions from the hard drive every time you use one.
    Here's how it works:
    When you start java, all of the classes in the java software version you are using (1.3, 1.4, etc) are automatically loaded into memory along with the Java Virtual Machine (JVM)
    Next, everything in your classpath (well, not everything, but all .class files) will be loaded into memory.
    After that, classes can be 'bootstrapped' by using Class.forName(...)

  • Problem creating package structure and where is my .class file??????

    Working on Tomcat I have my folder structure like this...
    webapps
    ->app_root
    ->WEB-INF
    ->classes
    ->src
    -> .java files
    ->META_INF
    In the command prompt i compile using this
    c:\Program Files\Apache Tomcat 4.0\webapps\Murthy\WEB-INF\classes>javac -d src\*.java
    and in my java files I have the package structure mentioned as
    package com.acme;
    after compiling i expected this to happen for me.
    webapps
    ->app_root
    ->WEB-INF
    ->classes (in WEB-INF)
    ->com (in classes)
    ->acme (in com)
    -> .class files (in acme)
    ->src (in WEB-INF)
    -> .java files(In src)
    ->META_INF
    The funiest part for me started he when i compiled the file
    c:\Program Files\Apache Tomcat 4.0\webapps\Murthy\WEB-INF\classes>javac -d src\one.java
    It compiled successfully without giving me any error but no package structure was created and THERE IS NO one.class file anywhere in my system.....Then how did it compile my file and where is the .class file.
    I think am worng somewhere but unable to locate it.
    Can somebody pull me out of thiss stuf??? Need to do it fast.
    Thanx.

    c:\Program Files\Apache Tomcat 4.0\webapps\Murthy\WEB-INF\classes>javac -d src\*.java
    The command you posted does not have a source file specification. You are telling the compiler to put the .class files in src\*.java but you are not specifying any .java files. It looks like your command should be javac -d . src\*.java

  • Where we define Class.forName("drivername")

    Hi all,
    anybody please tell me where we define Class.forName("drivername").
    please answer with details.
    please reply soon.
    Thanks
    amitindia

    private void loadDrivers(Properties props) {
    String driverClasses = props.getProperty("drivers");
    StringTokenizer st = new StringTokenizer(driverClasses);
    while (st.hasMoreElements()) {
    String driverClassName = st.nextToken().trim();
    try {
    Driver driver = (Driver)
    Class.forName(driverClassName).newInstance();
    DriverManager.registerDriver(driver);
    drivers.addElement(driver);
    catch (Exception e) {
    log(".... " +
    driverClassName + ", ..: " + e);
    }

  • How can I learn where a missing class resides?

    I'm going thru a tutorial that autogenerates a few small Java source files in a small project. They SHOULD compile without error, but don't, apparently because various classes are referenced and are not present on my PC.
    How can I learn where they are? How can I get the needed classes, and can I trust the files I find, assuming I find them out on the web somewhere.
    The message of the moment (produced by NetBeans 4.1) is:
    "class com.sun.xml.rpc.tools.ant.Wscompile cannot be found"
    I plugged that classname into Google, and found someone wonder in a forum where this class is, then reply to his own question saying he found it in jaxrpc-impl.jar
    Maybe that's right. Now I have to find this Jar file.
    Hopefully there's a better way to find this stuff!
    Any advice appreciated.

    That's how you do it.
    In this case, I believe that the jar is part of the JAX_RPC functionality (recently renamed to JAX_WS), and a copy is included with Sun's Application Server - and also other downloadable packages, but I don't know exactly which others.
    The class is part of the umbrella J2EE system.

  • Where deploy Java class in XI 3.0?

    Hi all,
      I have created a Java class for Jco connection and I have created .jar file.
    At this point where must I copy .jar file in XI server???
    And what activities must I do for using my classes with message mapping???
    Thans in advance,
          Michele.

    Michele,
    We are facing a quite similar situation with XI 3.0.  What we've found is that the only methods available for integrating Java code is either
    a) Import a JAR archive into a specific software component
    b) Create a Java proxy to a J2EE environment where you
    implement your Java as EJBs.
    We're still investigating these and other possible options.
    Perhaps you need to install your JAR archive into each of the relevant components (I'm not sure if this works.)
    Another possible alternative could be to identify where the JRE is installed on your XI server and deploy your classes in the lib extensions. (i.e. put your jar file in something like C:\j2sdk1.4.2_04\jre\lib\ext and restart the server) You should then be able to access these from anywhere, though I'm not sure what SAP would say about this solution.
    HTH,
    Patrick Parsons

  • 8.1.7 LoadJava. Where do the class files get Stored

    I am using an 8.1.7 Database. I have class files in my database that were loaded using loadjava. I want to extract these class files to do a binary comparison. Does anyone know where a users schema the actual class files are stored. In 9i i believe that they are stored in CREATE$JAVA$LOB$TABLE but they aren't stored there in my 8.1.7 database. Where should i be looking in an 8.1.7 database???
    Cheers
    Paul

    found a solution. In case it is of interest to anyone, using enterprise manager from a 9i client, connected to my 8.1.7 database, and under, schema--> user-->source types--> java classes. for each class, select the class and there is an option to export the class on the RHS. Selecting this, can export class files to hard drive.

  • Where find java classes corresponding to message mapping and interfaces ?

    Hi
    Forum,
    when i create my objects in Repository, like Message interface and messgae mapping, correspoding to them, java class in created,  where can i see these java classes in the XI's file system,

    Hi sudeep,
    During the installation of Xi we select a database.So all the objetcs and related things that we create in IR and ID will be saved in the database only.I dont know how to check the .class file for each object...
    Check these weblogs from sravya where she has given you the table names where the IR and ID objects are stored:
    /people/sravya.talanki2/blog/2007/01/11/ripping-off-sap-xi-stack-133sharing-the-goodies-of-abap-api146s
    /people/sravya.talanki2/blog/2005/12/02/sxicache--ripped-off
    /people/sravya.talanki2/blog/2006/12/28/skelton-of-mapping-runtime-in-sap-xi
    regards
    BILL

  • Where does the class for useBean go?

    I'm having trouble in jsp when I try to do a useBean. WebLogic can't seem to find my class. Where should the bean that I am trying to use go, and how should I refer to it in the .jsp file that needs to use it? Do I need to import the bean class?
    I have the following structure:
    proj_home
    '-->all .jsp and html files
    '---->Classes
    '------->com
    '----------->company
    '-------------->project
    '----------------->all class files for the project
    '---->src
    '------->com
    '----------->company
    '-------------->project
    '--------------->all source files for the project
    '---->WEB-INF
    Currently the bean is named UserData. It is in package com.company.project.
    I tried placing the UserData.class file everywhere I could think of but that didn't help.
    I then tried to import it into the bean that uses it like this:
    <jsp:directive.page import="com.company.project.UserData"/>
    But that gives me errors saying this:
    ...jsp_servlet\__savename.java:17: package com.company.project.ejb does not exist import com.company.project.ejb.UserData; //[ /SaveName.jsp; Line: 1]
    Well it does exist, but under the CLASSES directory.
    HELP!

    I was picking that up from your error message
    ..jsp_servlet\__savename.java:17: package com.company.project.ejb does not exist import com.company.project.ejb.UserData; //[ /SaveName.jsp; Line: 1]
    The folder structure needs to mirror the package structure exactly (standard java)
    So yes, If you have a com.company.project.ejb package with a class UserData within it
    "UserData.class" needs to be in folder "WEB-INF/classes/com/project/ejb/"
    If you don't have that class, then check your import statement - its asking for it.
    Good luck,
    evnafets

  • ?? Eclipse question... where did my classes go??

    hi, i am using Eclipse and I ran the Project->rebuild all. When It completed all my
    classes had been deleted! What is going on? does anyone know? i am not THAT
    worried because my java files are still intact, but it is a bit odd i think.
    Any advice? thanks!

    otherwise, where's it going to put the new class files?

  • Where is PortableRemoteObject.class?

    In J2SDKEE1.2.1,I can find javax.rmi.PortableRemoteObject.class,but in J2SDKEE1.3,I can not find PortableRemoteObject.class.
    Who can tell me where is it?
    In developing EJB,the client code contains:
    " RemoteHome home=(RemoteHome)javax.rmi.PortableRemoteObject.narrow(obj,RemoteHome.class);"
    Does the client application work on J2EE1.3 Reference Implements?

    It in Java SE.Where in the Java SE??? I have it included in my CLASSPATH, and I have looked through the various JAR files, and I cannot find it! What JAR should I include???

  • Where are Parser Classes?

    Hello,
    I hate to be new, but I am. I am running jdk1.3.1 and I working out of the xml tutorial. I have a simple java class that is including the following classes:
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.FactoryConfigurationError;
    import javax.xml.parsers.ParserConfigurationException;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    import org.w3c.dom.Document;
    import org.w3c.dom.DOMException;
    // For write operation
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.TransformerConfigurationException;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.StreamResult;
    When I try and compile this class (classpaths are all good) my system says it cannot resolve symbol for class Transformer, TransformerException, TransformerFactory, etc.
    I don't know where to find these classes? Don't they come with the standard j2se? If not where do I go for them?
    Thanks

    Those classes are part of the api JAXP. You can download the sun implementation here : http://java.sun.com/xml/downloads/javaxmlpack.html or Apache's one with Xerces (http://xml.apache.org).
    They are also included with the j2se but the 1.4 version : http://java.sun.com/j2se/1.4/docs/api/index.html
    Regards

  • Unresolve classes - significance? Where are these classes?

    Hello,
    Does it mean I cant use any of these methods? as they are listed
    as the status when I loaded xmlparserv2.jar via loadjava. Where
    are these stored if not on xmlparserv2.jar? I am able to run
    xsutest.sql and it seems to execute okay. However, I still can
    not run the paginating samples, where one scroll or sample no 6
    the one that uses oracle.xml.sql.OracleXMLNoRowsException.
    ORA-29521: referenced name oracle/xml/sql/dml/OracleXMLSave could
    not be found
    ORA-29521: referenced name oracle/xml/sql/OracleXMLSQLException
    could not be found
    ORA-29521: referenced name oracle/xml/sql/query/OracleXMLQuery
    could not befound
    ORA-29521: referenced name
    oracle/xml/sql/OracleXMLSQLNoRowsException could not be found
    ORA-29521: referenced name oracle/xml/sql/query/OracleXMLQuery
    could not befound
    ORA-29521: referenced name oracle/xml/sql/dml/OracleXMLSave could
    not be found
    ORA-29521: referenced name oracle/xml/sql/OracleXMLSQLException
    could not be found
    errors : oracle/xml/xsql/actions/XSQLInsertRequestHandler
    errors : oracle/xml/xsql/actions/XSQLQueryHandler
    errors : oracle/xml/xsql/actions/XSQLRefCursorFunctionHandler
    errors : oracle/xml/xsql/actions/XSQLInsertParameterHandler
    loadjava: 7 errors

    I have the oracle 8.1.7 on SuSE Linux. Okay, I didnt recall
    which loadjava capture I have done those, but the point of my
    question is still, does it mean those methods that could not be
    found are not available for to call from java? Also, I noticed
    that a lot of the classes are already resolved, I assume it is
    loaded the first time I loadjava them in?
    Which version of database are you using? Also, please see my
    comments below.
    Hello,
    Does it mean I cant use any of these methods? as they are listed
    as the status when I loaded xmlparserv2.jar via loadjava. Where
    are these stored if not on xmlparserv2.jar? I am able to run
    xsutest.sql and it seems to execute okay. However, I still can
    not run the paginating samples, where one scroll or sample no 6
    the one that uses oracle.xml.sql.OracleXMLNoRowsException.
    ORA-29521: referenced name oracle/xml/sql/dml/OracleXMLSave could
    not be found
    ORA-29521: referenced name oracle/xml/sql/OracleXMLSQLException
    could not be found
    ORA-29521: referenced name oracle/xml/sql/query/OracleXMLQuery
    could not befound
    ORA-29521: referenced name
    oracle/xml/sql/OracleXMLSQLNoRowsException could not be found
    ORA-29521: referenced name oracle/xml/sql/query/OracleXMLQuery
    could not befound
    ORA-29521: referenced name oracle/xml/sql/dml/OracleXMLSave could
    not be found
    ORA-29521: referenced name oracle/xml/sql/OracleXMLSQLException
    could not be found These classed are in xsu12.jar(or xsu111.jar)
    errors : oracle/xml/xsql/actions/XSQLInsertRequestHandler
    errors : oracle/xml/xsql/actions/XSQLQueryHandler
    errors :
    oracle/xml/xsql/actions/XSQLRefCursorFunctionHandler
    errors : oracle/xml/xsql/actions/XSQLInsertParameterHandler
    loadjava: 7 errors These classes are in oraclexsql.jar.

Maybe you are looking for

  • Apple ID appearing on another iPhone device (Sync confusion)

    Issue iTunes is sporadically requesting access to my partner's Apple ID account when downloading applications and trying to install the other iTunes account applications also when syncing takes place within iTunes. System software/accounts seems conf

  • Can no longer secure wifi network

    I have a Linksys WRT54G router with the latest software upgrades and WMP54G adaptor with WPA security. Up until now these have been working together, and with 2 laptops and a Palm Tx. Suddenly last night, the network could not be detected although ne

  • The delegate has not been set!

    I am trying to get my java code to do a rebind with a OpenORB naming service. The connection to the naming service works, but when I get to the line: ncRef.rebind(nameComponent, server_name); I get the error: org.omg.CORBA.BAD_OPERATION: The delegate

  • Initial load from ECC/R3 to MDM

    Hi, Could any one tell me the process for one time intial load from  R3 to MDM. preferably without XI. how to extract data from R3 ? what format? how to map source to MDM repository? Farah

  • Consignment settlement in mrko

    Dear Experts, While i try to settle for consignment po in MRKO, it is showing " No tax information found ". But in info record for that consignment material and vendor, i have maintained tax code. Where might be the problem. Kind let me know. Regards