SCE Import Product Classes From Siebel

Hi All
Anybody know how to install SCE Studio in Eclipse to import product classes in Design Studio from Siebel CRM
Thank's in advance

What You need to do is to place ShoppingBasket class in a package and import to fully qualified class name (which is class name with package name). I also discourage You to use scriptlets - it's an obsolete, old technology.

Similar Messages

  • Importing a class from another context?

    Hi JSP techies,
    Im using RESIN and having a simple problem of figuring out how to import classes from another context, if Im using the right word.
    ie.
    My .jsp files are under $home/resin/doc/test dir. And in the jsp file, I would like to import a servlet class or a plain java class. But the servlet classes and all other classes are located under $home/resin/webapps/project/WEB-INF/classes/a/b/c
    Hence when I say
    <% page import="a.b.c.*" %>
    I get an error saying "a" not found.
    1. When I say "servlet classes are in a different CONTEXT", is that right? or is it just another directory?
    2. How can I make the jsp file import the classes from the servlets class path?
    Note: Ofcourse, when I copy the package to the
    $home/resin/doc/WEB-INF/classes dir, everything works fine. But thats simply not an efficient way to get around. Could anyone clear my doubts on this regd.?
    Thanks in advance.
    Arun

    Oh... I get it now. I'm sorry, I had you poorly misunderstood. You are trying to import servlets from another web app or servlet context. I would suggest you put servlets that are common to all web apps in the system classpath and not tie them to any particular web app. In other words create a package directory structure from the system's root directory or any where outside of any web apps and point the system classpath to the beginning of that directory structure. I have a similar thing going with Tomcat. I have a folder in my root called Java_Class which is in my classpath. I build all common utilities in this directory. So I have a com/craig/web structure that holds my AppServlet which is in package com.craig.web. This servlet is visible to all web apps via the Windows classpath. Servlets particular to an application like say an MusicOrderProcess servlet would reside in a package under the webserverhome/webapps/MusicStore/WEB-INF/classes directory where webserver home is the home directory of the webserver you are using. I've tested this across webservers as well (orionserver and Tomcat) and it works.
    From the prompt you include in your posts I am guessing that you are running on UNIX. Move your common servlets out of their respective web apps and into a common directory structure. Configure the UNIX $CLASSPATH (or is it $classpath?) environment variable to point to this sturcture and you'll be on your way!
    Post again if you have more questions!

  • Im using BlueJ, I want  to import a class from a path I set.

    Hi, I'm using BlueJ and I want to import a class from a path I set.
    Like this
    import "C:\myfolder\*";
    Instead of like this
    import java.thing.*;
    Any ideas why the above line is not working for me?

    The import statement takes a class name or package name + .*, not a file name. It has nothing to do with files.
    import package.name.ClassName; // to import a class
    import package.name.*; // to import all classes in the package named "package.name"
    You need to properly specify your classpath at compile-time as well as run-time.

  • Importing java class from forms 6i

    Dear people
    I want to import very simple java class from forms 6i, i went to programs then i choose import java classes, then it gives me error message PDE-UJ1001 failed to create the jvm.
    please tell me how to solve the problem.
    Yasser

    +... not a Java question. Post moved from the New To Java to the Forms forum.+

  • Import other class from other class file

    let say, i got class student in the file name "student.class".
    my main program is school.class.
    how to import student.class into school.class so i can use student class.?
    what is the directory i had to store the 2 file?

    School.java:
    class School {
        Student a, b, c;
        public static void main(String[] args) {
            a = new Student("fred","foobar");
            b = new Student("fred","barbaz");
            c = new Student("fred","bazqux");
            System.out.println("Student a is "+a.name+" "+a.surname);
            System.out.println("Student b is "+b.name+" "+b.surname);
            System.out.println("Student c is "+c.name+" "+c.surname);
    class Student {
        String name, surname;
        public Student(String nam, String sur) {
            name = name;
            surname = sur;
    }

  • I don't found "used model" after I imported proxy class from CAF

    Dear Everyone,
    I built up CAF knowledge skill by do follow the document in SDN and I've tried connect CAF and web dynpro together. This's document that I learned.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/504540a4-fd0d-2a10-7c8e-c88289cf6457
    and I found some problem. as you see in Page 22. after I import proxy classes. I have to found something in used model popup as same as Page 23 , but I don't found anything in "selected model" popup and I check in "Used DCs". It has classes that same in Page 21.
    Can someone help me? Thank you in advance.
    Amnart.

    Dear Ayyapparaj and Everyone,
    Yes, I did. and I saw something will be my mistake.when I create new project. Do the domain has to be "SAP xApps" because I usually doesn't change it ( default is "Basis" )?
    I follow this document 3 times, but it still doesn't have classes in "used model" popup.
    Can you help me?Thank you in advance.
    Amnart.

  • Import java class from model package

    I have a java class in model package.I create a managed bean in the view package and I want to import the first java class with "import model.class1" but this error "import model.class1 not found" is shown.What should I do?

    Hi,
    Why are you importing the Model classes to your backing bean? You should not be doing that. Instead, expose the method in model as client interface (whichever you want to call in the backing bean), create the method binding in your pagedef. Then, from the backing bean, you can execute the method programatically.
    -Arun

  • Import a class from a SWC into my source code

    Hi all --
    I'm a long-time Flash developer, relatively new to Flex.  I am using FlashBuilder 4.6.
    I have XMPCore.swc from Adobe, which I have added to my project in the libs/ directory.  It shows up in Project->Properties->Flex Builder Path->Library Path->Libs.
    XMPCore defines several classes, such as XMPMeta.
    In my source code, I want to be able to do
       var xmp:XMPMeta = new XMPMeta(...)
    but when I type that I get an orange error indicator, and when I compile I get a red error indicator stating that "Type was not found".  Just as a stab in the dark, I tried adding
    import XMPCore
    or
    import XMPCore.XMPMeta
    at the top of the file, but that gave error messages as well.
    I'm sure this is explained neatly somewhere, but I've spent several hours reading documentation and googling and I can't find that somewhere! 
    Any help greatly appreciated!  My project file is at
    http://dl.dropbox.com/u/63253361/eXeMPlary.fxp
    Bob

    Your import statement is not correct. Use the following:
    import com.adobe.xmp.core.XMPMeta;

  • How to import a class from a package at the same level

    Hello friends,
    i have a class as Plaf.java
    as
    package org.vaibhav.swing.plaf;
    import java.awt.*;
    import javax.swing.*;
    public class Plaf {
    other code
    }as you see, this is in org.vaibhav.swing.plaf package.
    I have one more class as
    package org.vaibhav.swing.frames;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class StartFrame extends JFrame implements ActionListener {
    other code
    }and this class is in package org.vaibhav.swing.frames
    Please hlp me how to use the class Plaf in StartFrame.java. Rather what import statement should i use in StartFrame.java.
    please help.
    thank you
    Message was edited by:
    vaibhavpingle

    but it then gives me this error
    StartFrame.java:11: package org.vaibhav.swing.plaf
    does not exist
    import org.vaibhav.swing.plaf.*;
    Have you first compiled Plaf.java and saved it in this directory strucuture
    /org/vaibhav/swing/plaf/
    And also have you set your classpath to the parent directory of org folder.
    Message was edited by:
    qUesT_foR_knOwLeDge

  • How to import custom classes from model to view controller in adf?

    hi...
    i have some custom classes in model layer in adf.
    i want to use them in view controller but i cannot import them.
    how is this possible?
    my jdev version is 11.1.1.5

    You normally don't have to do anything special. The view controller project has a dependency to the model project. So simply typing the class name should show you hte option to generate the need import statement for the class.
    However, not all classes which reside in the model project should be imported into the view Controller as it might break the MVC pattern.
    Timo

  • Is there a way I can have Business Catalyst automatically import product content from Amazon? (e.g. a Web App I could build, perhaps?)

    I'm currently building a site using Drupal that is basically a huge book database and book review site. In order to acquire basic information about certain books I'm using an Amazon module that automatically pulls information into my Drupal database (such as author name, page count, publication date, etc.) based on any ASIN (Amazon Standard Identification Number) I enter. It's a pretty nice arrangement. Also, people can click on a link that leads them to the item on Amazon so that they can purchase it and I can collect a puny affiliate commission. Yay Internet!
    But I'd like to use Muse and Business Catalyst instead. I was able to create a Web App version of my database but I can't figure out how to 1) automatically import based on ASIN and 2) automatically link each book record in the database to its page on Amazon. Honestly, if I could just get the info into the database alone I'd be happy.
    I'm afraid that Adobe would have to create some sort of connection on their end that interfaces with the Amazon API - and therefore there is no way to create such a website now using Muse. But, of course, I don't know everything so I ask you all: is there a way this can happen now?
    Thanks for all of your input!

    To do stuff like that will always need custom coding and things like API work. You will never be able to use Muse for that, its a basic site design tool that can hook up to BC modules. You will need to use coding software and have custom API work done for things like this.

  • Is there a way to import a class from another drive?

    I need to access a DB class that is sitting on another machine. Any help would be appreciated greatly. thanks.

    To use a class, it needs to be in your classpath. So either map a drive to the directory where the class is and put that drive in your classpath, or make a local copy of the class.

  • Importing class from different directory

    Hi, Can anyone tell me how to import a class from a different directory? I have a DGenerator class in ./generator directory.
    I have tried Import generator.DGenerator; to use the DGenerator class. However. I got the error:
    cannot access generator.DGenerator
    bad class file: ./generator/DGenerator.class
    class file contains wrong class: DGenerator
    Please remove or make sure it appears in the correct subdirectory of the classpath.
    Help please.
    Thank you!

    I don't understand why this is a Swing question, but at any rate if you want your DGenerator class to be found in a particular directory, you must do one of two things:
    1. Put that directory in your classpath and just refer to the class as DGenerator.
    2. Make the class belong to the package "generator".

  • Error-- Referencing classes from project 1 in project 2 using libraries option

    Using JDev 9.0.3
    I'm struggling with an error that's occuring that I know should not be...
    I have two projects (SessionUtils & TradingSumStruts).
    SessionUtils has 4 java files all of which have a package name of: com.arca.sessionutils.
    TradingSumStruts has 3 java files all of which have a package name of: com.arca.tradingsum.
    One of the java files in TradingSumStruts imports a class from SessionUtils
    import com.arca.sessionutils.SessionUtil;
    In TradingSumStruts project I have created a new user library and called it: SessionUtilsLib. This lib points to the classes directory of SessionUtils, and the src directory of SessionUtils in the same workspace.
    I've shut down the oc4j server, deleted any existing class files for the above two projects, and recompiled both projects. When I run the app, I get the following error:
    java.lang.NoClassDefFoundError: com/arca/sessionutils/SessionUtil
         void com.arca.tradingsum.TradingSumInfo.<init>(javax.servlet.http.HttpServletRequest)
              TradingSumInfo.java:67
    when I attempt to call SessionUtil.xxxMethod().
    I have double and triple checked my spelling, my library entries, my class files, and even re-booted my machine.
    ANY ideas would be greatly appreciated!
    -Teri
    [email protected]

    Don't use libraries for this. Define a project dependency for your project using the project properties dialog. This will automatically include your project classes without hardcoding the path into a library.

  • PDE-UJ1001, while trying to import java classes.

    Hi,
    When I try to import java classes into forms using the java
    importer, I get an error stating PDE-UJ1001-Failed to create
    JVM. I tried installing a patch in Developer 2000(Path 4a). But
    still it doesnt work. Could anybody guide me in this?
    Thanks,
    Karthick.

    am getting similar error - my dba has suggested that oracle developer uses the jvm from ie4 but i'm sure that cant be true as i thought the jvm was built in.
    could somebody out there clarify this or inform me whats missing..
    error
    from dev 6i forms builder (6.0.8.11.3) on 8i (8.1.7.2.0) when trying to select option 'import java classes' from program menu returns error 'PDE-UJ1001 Failed to create the JVM.'
    regards and thanks in anticipation....
    vin ferguson

Maybe you are looking for

  • Month View:start and END times

    Here is feature that i really need In the Month view: The option to have start and end times displayed. Now that their is no info drawer i have open and info drawer to see when the event is supposed to end. I have a lot of events in a day and some ar

  • ORA-00900: invalid SQL statement Error while Executing Procedure

    Hi: I am trying to execute following procedure through java code, but i am getting ORA-00900: invalid SQL statement error. Procedure is : <code> (vResult out int) as vCardId varchar2(16); vForacid varchar2(16); vApp_Entry_No varchar2(10); vSrNo numbe

  • How to de-activate PO printout when makes changes for PO

    A PO has been created, printed out and sent to our supplier. When user make the changes for PO, for example delivery date, then Change output message type will be triggered, and can print a Change To Purchase order (print the PO again with the change

  • Pros and cons of using DB LINK

    Hi I am planning to use dblink in my current project to acess external database .But is there any other alternative to this ? What are the pros and cons of using Oracle DB Links ? Can anybody help me on this ? Thanks in advance . Pradipta

  • USB memories (SD, mini SD) do not appear in the finder since last OSX update.

    When I connect USB memory (USB stick, SD thru adapter) it appear a few second in the Finder and desappears. The same happens with my phone in "disk" mode. it does not appear in the USB "tree" in About mac; more information. last update mid of novembe