CUP 5.3 Java Authorisations

All,
After spending far too long messing about with Java Roles, I'm admitting partial defect and asking for help!!
I am trying to create a role within CUP 5.3 which restricts a specific support team to only being able to access the Request administration element of the Configuration Tab.
I have assigned the following actions to the role.
AE.ViewAccessEnforcer
AE.ViewConfiguration
AE.ViewRequestsAdministration
AE.ViewSearchRequestAll
AE.ViewSubmitRequest
AE.ViewSuperAccess
AE.ViewReject
AE.ViewApproverDelegation
AE.ViewHold
AE.ViewSaveRequest
AE.ViewApprove
AE.ViewRemoveAccess
However, when I try to action this I receive the following error message.
Problems occurred while performing operation:
com.virsa.ae.commons.utils.framework.NavigationException : User not authorized
Can any of you please suggest what maybe missing from this authorisation as I am really struggling with it now!
Thanks, Simon

All,
Through a painstaking trial and error method of assigning actions, I have found that you need to have the AE.ModifyWorkflowConfiguration action assigned in parallel to be able to use the Request administration functionality.
So much for SOD then!!!
Simon

Similar Messages

  • Request  submitted for provisioning through CUP

    HI All
    I am using SAP GRC 5.3
    i am using Compliant User Provisioning for creating requests.
    After submitting the requests  does CUP directly talk to target System or does it talk to any provisioning engine
    In short I want to know what actually happens( internally)  when a request is submitted for provisioning through CUP
    Thanks
    Jagan

    Mph,
      Once you complete the request in CUP and when it passes through all the approval stages, CUP will directly connect to target SAP system to provision users and roles. CUP has the java front-end which initiates the request and then it connects to the ABAP programs which are installed target SAP system for provisioning.
    Hope this helps.
    Regards,
    Alpesh

  • Common causes of java.io.filenotfoundexception

    hi,
    what are the most obvious causes of a java.io.FileNotFoundException being thrown.
    this is occuring in an application i have written - the exception is being thrown everytime a new FileReader is tried to be created.
    the files i am trying to read in are not read only files, they do exist and the pathname is correct...
    thanks in advance

    i specify the pathname as one of the arguments that i pass to the application so when it throws the exception (which i do have a catch clause for btw) it shows me the pathname i have previously specified.
    everyones help is well appreciated (this is after one or two cups of irish java!!!).
    the full code for the program is as follows:
    import java.io.*;
    public class tArray {
         public static void main(String[] args) {
              tArr arr = new tArr(args[0], args[1]);
              arr.convert();
    class tArr {
         String sourceName;
         String sourceString;
         tArr(String sourceArg, String sourceArg1) {
              sourceName = sourceArg;
              sourceString = sourceArg1;
         void convert() {
              try {
                   File source = new File(sourceName);
                   File temp = new File(sourceName + ".tmp");
                   File[] fileArr = source.listFiles();
                   for (int y = 0; y < fileArr.length; y++)
                        System.out.println("listFiles: "
                        + fileArr[y].toString());
                   FileReader fr = new FileReader(source);
                   BufferedReader in = new BufferedReader(fr);
                   if (source.isDirectory())
                        System.out.println("is a directory");
                   FileWriter fw = new FileWriter(temp);
                   BufferedWriter out = new BufferedWriter(fw);
                   boolean eof = false;
                   String inChar = "";
                   String outChar = "";
                   do {
                        inChar = in.readLine();
                        if (inChar != null) {
                             if (inChar.startsWith(sourceString))
                                  inChar = (" 64 64");
                             else {
                                  outChar = (inChar);
                                  out.newLine();
                             outChar = (inChar);
                             out.write(outChar);
                        } else
                             eof = true;
                   } while (!eof);
                   in.close();
                   out.close();
                   boolean deleted = source.delete();
                   if (deleted)
                        temp.renameTo(source);
              } catch (IOException e) {
                   System.out.println("Error... " + e.toString());
              } catch (SecurityException se) {
                   System.out.println("Error... " + se.toString());
    }the listfiles() method is part of the checking process i am going thru to make sure im not going mad (some would say a lost cause...)

  • 1.5.0_04: Firefox yes, IE no.

    An installation of jre-1_5_0_04-windows-i586-p.exe on XP SP2 is recognized by Firefox 1.0.4 but not Internet Explorer 6.0 SP2. (XP and IE are up-to-date with MS patches.) The following suggestions have proven unsuccessful so far:
    In IE:
    1. Tools, Internet Options, Advanced, choose "Use JRE 1.0.5_04 for <applet>" then restart IE; however, Tools, Sun Java Console still returns the message that "Sun Java is not currently selected as the default�"
    2. Uninstall JRE, then in Tools, Internet Options, Security, Internet Zone, Custom Level, select Prompt for "Download unsigned ActiveX controls," then reinstall JRE and reset from Prompt to Disable. (suggested by http://www.spicer.com/Product_Web/ViewCafe/VC_2D_Demo/VC_2D_Demo_FAQs.htm)
    In Java Control Panel:
    Advanced, Settings, <APPLET> tag support, Internet Explorer, checked and applied.
    Assuming the installation executable is not corrupt, since Firefox recognizes it (about:plugins) as does Sun's test page while running Firefox, is there any IE setting, registry entry or other setting somewhere I must change? Both Sun Java versions 1.5.0_02 and 1.4.2_06 were recognized by IE.
    Your assistance is greatly appreciated; I've struggled with this for days.

    I think my problem was with IE6 simply not acknowledging the presence of the Sun Java Console, for some reason unknown to me, rather than its ability to run java apps, at least my "research and testing" today indicates this.
    at
    http://java.sun.com/products/plugin/index-1.4.html
    the Applet tags demos will NOT run in IE, whereas the OBJECT and EMBED tags demos will. Not being a programmer, I'll assume this is for reasons related to html coding rather than indicating inherent problems within the java.
    However...
    at
    http://java.sun.com/products/plugin/1.5.0/demos/plugin/applets.html
    every demo app runs fine in IE.
    The difference between Firefox and IE seems to be IE's specific lack of recognition and then launching of the console; with Firefox the "coffee cup" icon appears in the task tray and the small corner window I'm used to seeing when java apps launch pops up on my Web page identifying the correct version of Sun's Java followed by the several lines of code which I then "Clear" and "Close." No coffee cup icon & no java console with IE.
    Learning, always learning; the more I learn the more I realize I don't know, as I think Albert Einstein supposedly once said.

  • Attempting to run applet but .....

    I'm new to java and I'm trying to run a beginners applet,
    which is basically a label.
    My program compiles fine but when I attempt to run it all I get is a grey box with nothing in it and have to close the window to free things up.
    Here's the code:
    import java.awt.*;
    import java.applet.*;
    public class Label extends Applet {
         public void init() {
              Label NewLabel = new Label( "This is a label" );
              add( NewLabel );
    and here's the html:
    <HTML>
    <HEAD>
    </HEAD>
    <BODY BGCOLOR="000000">
    <CENTER>
    <APPLET
         code     = "Label.class"
         width     = "500"
         height     = "300"
         >
    </APPLET>
    </CENTER>
    </BODY>
    </HTML>
    when I move my cursor over the edges of the box I get:
    load Class Label not found
    Here's my ie: address
    C:\mypgms\Java\Applets\HelloWorld\Label\classes\Label.htm

    i dont think you need to define it as a class label when you dont use it any where else. So what you had was fine. Although it would be better practice. Make sure you have closed all instances of IE. Then try opening it again.
    Also is java enabled in IE? if it is you will get a little java cup appear ( the java console) in the sys tray when you load an applet. even if the applet doesnt work you will get a error read out if double click the icon.
    Hope this was helpful

  • SRM 7.0: Authorisation object? Aliases for services in java portal?

    Here's how we did in old SRM 5.0 system (the old and working scenaio):
    In SRM 5.0 we employed S_ICF object to determine, whether a particular user who has just logged in to a system via web using a particular alias - is authorised to use this service.
    We want external and internal users to use different ways to get into system. We have two aliases:
    for internal users: http://srm5.domain.com/srmint
    for external users: http://srm5.domain.com/srmext
    We make aliases using transaction SICF:
    /srmext
    /srmint
    to service /default_host/sap/bc/gui/sap/its/bbpstart
    For alias /srmext we set field  SAP Authoriz. = EXT.
    For alias /srmint we set field  SAP Authoriz. = INT.
    We make 2 roles, both containing just a S_ICF auth object with differend values of field ICF_VALUE, an appropriate role to a user. If a particular user logs in to the system using an alias matching to the authorization value set in his role, he gets in, otherwise he gets an error upon logon. So that his logon is only successful if he used the right alias in URL (provided correct login name and password of course).
    Question. How do we apply similar scenario in new SRM7?
    Is there an authorisation object for java portal in SRM 7.0 - similar to S_ICF object for ABAP portal in SRM 5.0?
    Is it possible and how to make an aliases to java portal, or otherwise automatically detrermine at runtime upon logon, which way (which URL or using some parameter in address line) the user has logged in?

    This question has been answered by the following blog:
    /people/ulli.hoffmann2/blog/2009/10/07/srm-70-running-it-without-the-portal

  • How to change the java cup icon for all the JFrames?

    Hi,
    I would like to know if I can change the Java cup defult icon that appears in the upper left corner of the JFrames in one time, instead of setting the JFrame's icon in every created JFrame.
    Regards,
    Gabriel

    Then don't set the parent to null. If you don't want a parent, just set it to
    JOptionPane.showMessage(new IconFrame(), ...
    [\code]
    where IconFrame extends JFrame and sets the icon in it's constructor.  The optionpane will then use the icon from it's parent frame.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Authorisation Variable throwing Internal Server Error - Java NullPointer Ex

    Hi,
    I've created an Authorisation Object on Service Organisation (0CRMSE_OG_R) and restricted it to a few values, assigned this to a role. On the BEx query, I've created a variable on Service Organisation of type Authorisation. When the report is executed on Web (Portal iView), the values for this Service Organisation variable are populated by default on the Variable Entry screen based on the Authorisation. On executing the report, it brings values based on the Authorisation.
    All fine so far.
    However, if on the Variable Screen when the user tries to select more values (or different values) for this Service Organisation by hitting the browse button, it throws Internal Server Error -- Java Null Pointer Exception.
    I have a feeling that since it is an Authorisation Variable, it doesn't allow user to see any other values for which user is not authorised. However, should it not give a proper message instead of throwing an Null Pointer Exception?
    Please advise...
    Many thanks.
    Regards,
    Sri.

    Fail to make OCI connection Using JDeveloper

  • Change the java cup picture in the top left corner

    Does any one knows how to change the java cup picture in the top left corner of the frames and applets
    Thanks in advance

    Hi,
    I have the following code added and get this error:
    non-static method setIconImage(java.awt.Image) cannot be referenced from a static context
    private static void SetUpGUIApplication(){
            //This must be invoked before
            //creating the JFrame.  Native look and feels will be set here
            // Comment this out to see the differences
           FrmMain.setDefaultLookAndFeelDecorated(true);
            ImageIcon appIcon = new ImageIcon(getClass().getResource("resources/FLGCAN.ICO"));
            if (appIcon != null)
                    setIconImage(appIcon.getImage());
        }What does this mean when adding static verses non static?
    Thanks

  • Java cup parser error!!!!!!!!!!!

    I am encountering an error in my parser made using java cup. When the parser is generated it creates action tables, conflict and reduce table. The error is in the action table. It is reading -1 from the action table starting, which gives ArrayIndexOutOfBound Exception.
    I dont know how to debug this since i have checked the lexer and the grammar thouroghly.
    Can anyone suggest me how to debug this code?
    PLease help asap

    Have you worked with Java cup parser specifications
    before?
    Please Stop amusing yourself on the forum. I am not a
    novice java programmer. Everyone knows there are
    print commands for debugging.
    Can any one help genuinely?I have used Cup on two projects. One was overkill - a simple XML file would have done - but the other was quite complex. Without seeing your definition files what hope have we got of saying what is wrong. Give us a chance.

  • CUP 5.3 SP11.1 - Role Reaffirm - Java Overflow error

    Hi!
    We are currently using the CUP Role Reaffirm.  An user is trying to access the role reaffirm screen, he received an error message:
    Java.lang.StackOverflowError:Null   Exception: (00145EC6363A0065000005F100174014000490DB915AF7A1).
    The application log shows: 3]_20##0#0#Error#1#/Applications/AccessEnforcer#Plain### Ignoring Exception - U
    ser : 10102021  not found to get full name #.
    Does anyone know what this error message is?
    Thank you.
    Lynn

    Hi Alpesh,
    Yes, 10102021 is a valid user id.
    Here is the CUP system log:
    2010-09-22 12:51:04,289 [SAPEngine_Application_Thread[impl:3]_8] ERROR Requested navigation control not found
    com.virsa.ae.commons.utils.framework.ControlNotFoundException: Action not found - loadRequestorLoginPage
         at com.virsa.ae.commons.utils.framework.ScreenDefn.getActionDefn(ScreenDefn.java:141)
         at com.virsa.ae.commons.utils.framework.NavigationEngine.execute(NavigationEngine.java:157)
         at com.virsa.ae.commons.utils.framework.servlet.AEFrameworkServlet.service(AEFrameworkServlet.java:431)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:219)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    2010-09-22 13:05:57,833 [SAPEngine_Application_Thread[impl:3]_7] ERROR java.lang.VerifyError: com/virsa/cc/xsys/ejb/RiskAnalysis.execRiskAnalysis(Lcom/virsa/cc/xsys/webservices/dto/WSRAInputParamDTO;)Lcom/virsa/cc/xsys/webservices/dto/RAResultDTO;
    java.lang.VerifyError: com/virsa/cc/xsys/ejb/RiskAnalysis.execRiskAnalysis(Lcom/virsa/cc/xsys/webservices/dto/WSRAInputParamDTO;)Lcom/virsa/cc/xsys/webservices/dto/RAResultDTO;
         at com.virsa.ae.service.sap.RiskAnalysisEJB53DAO.execRiskAnalysis(RiskAnalysisEJB53DAO.java:305)
         at com.virsa.ae.service.sap.RiskAnalysisEJB53DAO.getViolations(RiskAnalysisEJB53DAO.java:277)
         at com.virsa.ae.service.sap.RiskAnalysisEJB53DAO.getViolations(RiskAnalysisEJB53DAO.java:419)
         at com.virsa.ae.service.sap.RiskAnalysisEJB53DAO.determineRisks(RiskAnalysisEJB53DAO.java:527)
         at com.virsa.ae.service.sap.RiskAnalysis53DAO.determineRisks(RiskAnalysis53DAO.java:103)
         at com.virsa.ae.accessrequests.bo.RiskAnalysisBO.findViolations(RiskAnalysisBO.java:182)
         at com.virsa.ae.accessrequests.actions.RiskAnalysisAction.doRiskAnalysis(RiskAnalysisAction.java:1108)
         at com.virsa.ae.accessrequests.actions.RiskAnalysisAction.doAnalysis(RiskAnalysisAction.java:335)
         at com.virsa.ae.accessrequests.actions.RiskAnalysisAction.execute(RiskAnalysisAction.java:112)
         at com.virsa.ae.commons.utils.framework.NavigationEngine.execute(NavigationEngine.java:295)
         at com.virsa.ae.commons.utils.framework.servlet.AEFrameworkServlet.service(AEFrameworkServlet.java:431)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
         at com.virsa.ae.commons.utils.framework.servlet.AEFrameworkServlet.service(AEFrameworkServlet.java:461)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:219)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    2010-09-22 13:05:57,835 [SAPEngine_Application_Thread[impl:3]_7] ERROR Exception during EJB call, Ignoring and trying Webservice Call
    com.virsa.ae.service.ServiceException: Exception in getting the results from the EJB service : com/virsa/cc/xsys/ejb/RiskAnalysis.execRiskAnalysis(Lcom/virsa/cc/xsys/webservices/dto/WSRAInputParamDTO;)Lcom/virsa/cc/xsys/webservices/dto/RAResultDTO;
         at com.virsa.ae.service.sap.RiskAnalysisEJB53DAO.getViolations(RiskAnalysisEJB53DAO.java:295)
         at com.virsa.ae.service.sap.RiskAnalysisEJB53DAO.getViolations(RiskAnalysisEJB53DAO.java:419)
         at com.virsa.ae.service.sap.RiskAnalysisEJB53DAO.determineRisks(RiskAnalysisEJB53DAO.java:527)
         at com.virsa.ae.service.sap.RiskAnalysis53DAO.determineRisks(RiskAnalysis53DAO.java:103)
         at com.virsa.ae.accessrequests.bo.RiskAnalysisBO.findViolations(RiskAnalysisBO.java:182)
         at com.virsa.ae.accessrequests.actions.RiskAnalysisAction.doRiskAnalysis(RiskAnalysisAction.java:1108)
         at com.virsa.ae.accessrequests.actions.RiskAnalysisAction.doAnalysis(RiskAnalysisAction.java:335)
         at com.virsa.ae.accessrequests.actions.RiskAnalysisAction.execute(RiskAnalysisAction.java:112)
         at com.virsa.ae.commons.utils.framework.NavigationEngine.execute(NavigationEngine.java:295)
         at com.virsa.ae.commons.utils.framework.servlet.AEFrameworkServlet.service(AEFrameworkServlet.java:431)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
         at com.virsa.ae.commons.utils.framework.servlet.AEFrameworkServlet.service(AEFrameworkServlet.java:461)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:219)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Caused by:
    java.lang.VerifyError: com/virsa/cc/xsys/ejb/RiskAnalysis.execRiskAnalysis(Lcom/virsa/cc/xsys/webservices/dto/WSRAInputParamDTO;)Lcom/virsa/cc/xsys/webservices/dto/RAResultDTO;
         at com.virsa.ae.service.sap.RiskAnalysisEJB53DAO.execRiskAnalysis(RiskAnalysisEJB53DAO.java:305)
         at com.virsa.ae.service.sap.RiskAnalysisEJB53DAO.getViolations(RiskAnalysisEJB53DAO.java:277)
         ... 28 more
    Thank you.
    Lynn

  • JAVA Fresher-Should I join Sun Authorised learning Centre?

    Hello friends,
    I m a BCA Graduated in 2004 from India. I have 2 years of experience as Web Developer(PHP). Due to Family problems I could not go for regular MCA. Presently persuing MCA from ICFAI, Tripura first Semester. But I m not able to get any job in Big IT Giants like Infosys, TCS as these companies don't have requirements for PHP Developers and to join as a fresher I m not eligible to apply as I m 2004 passout and these companies demand atleast 2005 passout.
    Therefore I m thinking of migrating to JAVA. I don't know ABC of JAVA. There are a number of local institutes teaching JAVA for 10k-15K INR in Delhi/NCR region and providing fake experience certificate for 2 years in JAVA to me as I have 2 years of industry experience.
    I need help from all experienced people out there. Should I join a local institute or should I go for Sun authorised learning Centre?
    I know about one Authorised learning Centre, SQLStar International. They charge around 33000 INR for 256 hrs of training to be completed in 64 working days. They claim that their training prepares a person for SCJP and SCWCD exam cost of which is 7200 Per Exam.
    So total cost is 33000 + 7200 + 7200 = 47400 INR
    Please tell me if its a right decision to spend this much amount on training and certification?
    Does it make any difference while on a Job Hunt if you are trained from a Authorised learning Centre or a local centre?
    Will it be easy to get job after this training and certification?
    If someone want, I can mail him/her couse contents of SQLStar and a local Institute for comparison.
    Please guys I need honest advice.
    Thankyou all for your time and efforts.

    Hi, my name is Jeffry (Indonesia)
    Actually, if you can do self-study, you can do self learning with java book, after that, you can submit E-practice Exam for scjp, and then you take the exam
    If the employer has a choice, he or she will choose the job seeker with the SCJP certification.
    Sun microsystems created the Java technology, of course their training courses support for the material covered in any certification exam such as SCJA, SCJP, SCJD, SCMAD, etc.
    I already get certified in 27 August 2007, in my experience, I studied so many Java books, and then I took SL-275 training, E-practice exam, and the the SCJP exam. That's all that I can do to share my experience, the choice is yours. When you passed the exam, don't forget to share experience and score (if you want to share your score, my score is 68%)
    regards
    Jeffry Kristianto Yanuar
    E-mail : [email protected]

  • How to remove and change the color of Java cup and border

    Hi to all,
    How to remove and change the color of Java cup and border.
    Thanks in advance
    khiz_eng

    This is just an Image. You would need to create your own image and call setIconImage(Image) on your JFrame.

  • J2EE 5.0 questions esp. re: "First Cup of Java"

    Ok So I downloaded the latest "First Cup of Java".
    I have Win XP Home. (Not professional).
    I can't seem to find J2EE 5.0
    I see SDK 5.0, and I have Net Beans 5.0. I downloaded the J2EE SDK, not the whole package. (B/C i don't have xp pro).
    Can anyone help me re: this? I can't use the @ headers b/c supposedly i dont have EE 5.0.
    -a little confused.

    You don't need EE. That's the Enterprise Edition. It's for doing more advanced, complex things than you'll be ready for for a while.
    J2SE 5.0 SDK is what you want--should be spelled out in the "First Cup" stuff.
    When you say you "can't use the @ headers," can you be more specifc? Paste in the exact code you created and what you did to compile it, and exactly what error message you got.
    When you post code, please use[code] and [/code] tags as described in Formatting tips on the message entry page. It makes it much easier to read.
    Does First Cup use NetBeans? I thought it use the command line. Follow its instructions exactly. Don't even try to use NetBeans yet.

  • Icon file for windows, of Duke and java cup, etc.

    Hi Folks,
    I'm looking for a file that contains icons of Duke, the Java steaming cup, and other generic Java icons.
    I want to associate these icons with my *.java, *.class, and *.jar files on my windows platform.
    I found Duke in
    C:/WINNT/system32/plugincpl131_01.cpl
    but I'd like others, too.
    Thanks,
    Jeremy |-)
    [email protected]

    Hi Folks,
    I'm looking for a file that contains icons of Duke,
    the Java steaming cup, and other generic Javaicons.
    I want to associate these icons with my *.java,
    *.class, and *.jar files on my windows platform.
    I found Duke in
    C:/WINNT/system32/plugincpl131_01.cpl
    but I'd like others, too.
    Thanks,
    Jeremy |-)
    [email protected]
    Hi Folks,
    Me again. I used iconRipper in my Java installation
    (at the suggestion of another poster in this forum)
    and found the steaming cuppa Joe in:
    .../jdk1.3.1_01/jre/bin/awt.dll
    and a thumbs up Duke and arms akimbo Duke in:
    .../jdk1.3.1_01/jre/bin/jpishare.dll
    What icons do others use (if any) for their various
    Java files on windows?
    Thanks,
    Jeremy |-)
    [email protected]
    Hi Folks,
    Me again. Looks like I'm talking to myself. Well, that's ok. Us English are known to do that (but only after years of acquaintance).
    I guess we're out of luck. In Java 1.4, all the Duke icons disappeared from the files mentioned above. The steaming java ones are mostly still there, but sligtly modified. And the one file (jpishare.dll) has fuzzy low-res cups in place of the Dukes!
    Ah well,
    Jeremy |-)

Maybe you are looking for