Set Security Question & Answer using UME API in Web dynpro Java

Hi Experts,
I;ve developed a Web Dynpro java application to create a user in UME.
I am able to set all the user account related attributes but I am not able to set the security question and answer as I do not see any attribute for the same.
Can anyone please suggest how to set the Security question and answer in UME?
This is required so that if the user wishes to reset his password / forgets password, we can ask him the security question which he selected at the time of registration.
Please let me know if it can be achieved at the code level and whether UME API supports security question and answer or any such attribute.
Also, if no such attribute is present by default in UME at the moment; can we create/configure some custom attributes in UME and store the security question and answer into those attributes. This would serve our purpose.
Kindly assist.
Regards,
Anurag

Hi,
Thanks a lot for the reply!!!
I have one doubt here:
You've mentioned the below code to fetch the security questions in your reply:
IUser user = WDClientUser.getCurrentUser().getSAPUser();
String CUSTOMER_NAMESPACE = "com.sap.security.core.usermanagement";
String attmotname [] = user.getAttribute(CUSTOMER_NAMESPACE,"MotherName");
String attlucknum [] = user.getAttribute(CUSTOMER_NAMESPACE,"LuckyNumber");
String attmobnum [] = user.getAttribute(CUSTOMER_NAMESPACE,"MobileNumber");.
But this would be only applicable when the user has already logged on to the portal as it uses "WDClientUser.getCurrentUser().getSAPUser();" code.
On the contrary, I want the security questions and answer to be accessed even when the user is not logged on to Portal so that based on the question & answer, the user can reset his password.
Please suggest, how can we achieve this and where and how to set the custom attributes for the same?
Do we have to set the Publicly Viewable Custom Attributes present at location you mentioned in your reply?
Also, if yes; please let me know how to set the custom attributes?
Thanks & Regards,
Anurag

Similar Messages

  • Attach to Mail using FileUpload UI in Web dynpro Java

    Hi,
    I need to send a file from my system as attachment with a mail in a web dynpro java application.
    I am trying to implement it by uploading the file to server using FileUpload UI and then sending the file as attachment
    using java mail api which is not working at the moment.
    Can anyone please suggest possible solution for this. Is there anyother approach to implement this?
    -- Arnab

    I am using the following code to upload the file. Its not showing any error only the mail is sent without the attachment.
        IPrivateFormView.IFileUploadElement element = wdContext.currentFileUploadElement();
        InputStream text = null;
        int temp=0;
        try{
             File file = new File(element.getFilename().getResourceName());
             FileOutputStream out = new FileOutputStream(file);
             if(element.getFilename()!= null){
                  text = element.getFilename().read(false);
                  while((temp = text.read()) != -1){
                       out.write(temp);
             out.flush();
             out.close();
             String filePath = file.getAbsolutePath();
             wdContext.currentContextElement().setAttachFileExtension(filePath);
              msg.reportSuccess("File:" + filePath);
        }catch(Exception e){
    And the following code to attach the file to mail
              MimeBodyPart bodyPart = null;
              Multipart mp =  new MimeMultipart();
              try {
                   bodyPart = new MimeBodyPart();
                   bodyPart.setContent("Attached Mail","text/plain");
                   mp.addBodyPart(bodyPart);
                   //FileDataSource fds = new FileDataSource("http://dcwwdvsaprt02:50000/irj/go/km/docs");
                   MimeBodyPart attachmentBodyPart = new MimeBodyPart();
                   //attachmentBodyPart.setDataHandler(new DataHandler(fds));
                   URL URLattachedFileName = new URL(wdContext.currentContextElement().getAttachFileExtension());
                   attachmentBodyPart.setDataHandler(new DataHandler(URLattachedFileName));
                   attachmentBodyPart.setFileName("Attachment");
                   mp.addBodyPart(attachmentBodyPart);
              } catch (Exception e1) {
                   // TODO Auto-generated catch block
                   e1.printStackTrace();

  • Use loadrunner to test Web Dynpro Java Application

    Hi Gurus,
             I'm using Loadrunner 11.0 to do load test to Web Dynpro Java Application. At first, I used web(http/html) protocel script, and I could record the whole business process successfully.  But the script seems very hard to understand. For example, the following script is so complex.
    After this, I tried 'SAP Click and Script'. At this time, loadrunner only record my logon action, while my business operation was not recorded in the script.
    "Body=sap-ext-sid=nYCksrUa3nHq2NIwTPpTKg--LpNoVBU_d2sS7nCHLaG*qQ--&sap-wd-cltwndid=WID1411644055966&sap-wd-norefresh=X&sap-wd-secure-id=kNh-egwklSanOHIGRb7-eA%3D%3D&SAPEVENTQUEUE="
      "ComboBox_Select%EE%80%82Id%EE%80%84aaaa.App_Property_FormCompView.ANLKL%EE%80%85Key%EE%80%84FA040%EE%80%85ByEnter%EE%80%84false%EE%80%83%EE%80%82ClientAction%EE%80%84submit%EE%80%83%EE%80%82urEventName%EE%80%84COMBOBOXSELECTIONCHANGE%EE%80%83%EE%80%81Form_Request%EE%80%82Id%EE%80%84...form%EE%80%85Async%EE%80%84false%EE%80%85FocusInfo%EE%80%84%40%7B%22sFocussedId%22%3A%20%22aaaa.App_Property_FormCompView.ANLKL%22%7D%EE%80%85Hash%EE%80%84%EE%80%85DomChanged%EE%80%84false%EE%80%85IsDirty%EE%80%84fal"
      "se%EE%80%83%EE%80%82EnqueueCardinality%EE%80%84single%EE%80%83%EE%80%82%EE%80%83",
    Could anyone give me the clue or materials about WDJ load test using loadrunner? Thanks very much
    regards.
    zhihua

    Hi Zhihua,
    First delete all the cookies from your browser.
    Close all the internet sessions which are opened in your system. During your script recording
    Open only 1 session which you will be recording for java script.
    The above mention log is the cookies from the internet explorer.
    its of no use for the script you can even delete from the script.
    Regards
    Mohammed

  • Accessing UWL API from Web Dynpro Java

    Hi experts,
    I need to retrieve the data from UWL into Web Dynpro java, I have gone through many blogs and solutions but since I am new to portal I am unable to a get hang of it. Can anyone provide me step by step solution including codes for my problem?
    Thanks & Regards,
    Amit Sinha.
    P.S. Points will rewarded.

    Hi Amit,
    just gothrough this below link... here they given the coding also.....
    Accessing UWL-API out of Web Dynpro Java
    it may be helpful to you.... pls comeback if you are struck any where......
    Regards,
    Srinivas.

  • Problems in using EP API in web dynpro

    Hi all,
    I am using of the UME API of EP in my web dynpro application. I have inlcuded the 'com.sap.security.jar' file in my build path and did a local build and deployed the application on my development system, it works well. But while moving the same to the quality system, while activating it is throwing syntax errors saying the classes that i have used are undefined. The same erros come even when i do a DC level build.
    I have tried including the jar file in the 'lib' folder of the DC, even then, i dont get any errors when i build it locally, where as there are errors while doing a DC level build.
    Please tell me if there is any way of including this jar file some where so that it does not throw any erros in DC level build and also while activating.
    Regards,
    Narahari

    Hi Ravi,
    Sorry for the late reply.
    I inlcuded the security.jar file. but still i get the following errors,Please advice :-+
            Enumeration enum = store.aliases();
                        ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:392: warning: as of release 1.5, 'enum' is a keyword, and may not be used as an identifier
    (try -source 1.5 to use 'enum' as a keyword)
            while(enum.hasMoreElements()) {
                  ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:393: warning: as of release 1.5, 'enum' is a keyword, and may not be used as an identifier
    (try -source 1.5 to use 'enum' as a keyword)
                alias = (String)enum.nextElement();
                                ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\IAuthentication.java:3: package javax.servlet.http does not exist
    import javax.servlet.http.*;
    ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\IAuthentication.java:31: cannot find symbol
    symbol  : class HttpServletRequest
    location: interface com.sap.security.api.IAuthentication
         public IUser forceLoggedInUser(HttpServletRequest req, HttpServletResponse resp);
                                           ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\IAuthentication.java:31: cannot find symbol
    symbol  : class HttpServletResponse
    location: interface com.sap.security.api.IAuthentication
         public IUser forceLoggedInUser(HttpServletRequest req, HttpServletResponse resp);
                                                                   ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\IAuthentication.java:42: cannot find symbol
    symbol  : class HttpServletRequest
    location: interface com.sap.security.api.IAuthentication
         public IUser getLoggedInUser(HttpServletRequest req, HttpServletResponse resp);
                                         ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\IAuthentication.java:42: cannot find symbol
    symbol  : class HttpServletResponse
    location: interface com.sap.security.api.IAuthentication
         public IUser getLoggedInUser(HttpServletRequest req, HttpServletResponse resp);
                                                                 ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\IAuthentication.java:51: cannot find symbol
    symbol  : class HttpServletRequest
    location: interface com.sap.security.api.IAuthentication
         public void logout(HttpServletRequest req,HttpServletResponse resp);
                               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\IAuthentication.java:51: cannot find symbol
    symbol  : class HttpServletResponse
    location: interface com.sap.security.api.IAuthentication
         public void logout(HttpServletRequest req,HttpServletResponse resp);
                                                      ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\IAuthentication.java:68: cannot find symbol
    symbol  : class HttpServletRequest
    location: interface com.sap.security.api.IAuthentication
         public void forceLogoffUser(HttpServletRequest req, HttpServletResponse resp, String url);
                                        ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\IAuthentication.java:68: cannot find symbol
    symbol  : class HttpServletResponse
    location: interface com.sap.security.api.IAuthentication
         public void forceLogoffUser(HttpServletRequest req, HttpServletResponse resp, String url);
                                                                ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSEObject.java:3: package iaik.asn1 does not exist
    import iaik.asn1.ASN1Object;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSEObject.java:8: cannot find symbol
    symbol  : class ASN1Object
    location: interface com.sap.security.api.keystore.secudePSEObject
        public ASN1Object getObject   ();
               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\PKList.java:3: package iaik.x509 does not exist
    import iaik.x509.X509Certificate;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\PKList.java:4: package iaik.asn1.structures does not exist
    import iaik.asn1.structures.Name;
                                ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\PKList.java:16: cannot find symbol
    symbol  : class Name
    location: interface com.sap.security.api.keystore.PKList
        public void     removeCertificate (Name subject);
                                           ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\PKList.java:21: cannot find symbol
    symbol  : class X509Certificate
    location: interface com.sap.security.api.keystore.PKList
        public void     addCertificate (X509Certificate cert);
                                        ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:10: package iaik.asn1 does not exist
    import iaik.asn1.SEQUENCE;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:11: package iaik.asn1 does not exist
    import iaik.asn1.ASN1Object;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:12: package iaik.asn1 does not exist
    import iaik.asn1.DerCoder;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:13: package iaik.asn1 does not exist
    import iaik.asn1.SET;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:14: package iaik.asn1 does not exist
    import iaik.asn1.INTEGER;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:15: package iaik.asn1 does not exist
    import iaik.asn1.OCTET_STRING;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:16: package iaik.asn1 does not exist
    import iaik.asn1.ObjectID;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:17: package iaik.asn1 does not exist
    import iaik.asn1.PrintableString;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:18: package iaik.asn1 does not exist
    import iaik.asn1.UTCTime;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:19: package iaik.x509 does not exist
    import iaik.x509.X509Certificate;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:20: package iaik.asn1.structures does not exist
    import iaik.asn1.structures.Name;
                                ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:42: cannot find symbol
    symbol  : class INTEGER
    location: class com.sap.security.api.keystore.secudePSE
        static INTEGER  integer       = new INTEGER (2);
               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:43: cannot find symbol
    symbol  : class ObjectID
    location: class com.sap.security.api.keystore.secudePSE
        static ObjectID oid           = new ObjectID ("1.2.840.113549.3.7", "", "");
               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:44: cannot find symbol
    symbol  : class OCTET_STRING
    location: class com.sap.security.api.keystore.secudePSE
        static OCTET_STRING os        = new OCTET_STRING (new byte [] { 0x00, 0x00,
               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:48: cannot find symbol
    symbol  : class PrintableString
    location: class com.sap.security.api.keystore.secudePSE
        static PrintableString user   = new PrintableString ("SYSTEM");
               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:49: cannot find symbol
    symbol  : class INTEGER
    location: class com.sap.security.api.keystore.secudePSE
        static INTEGER  integer2      = new INTEGER (1);
               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:50: cannot find symbol
    symbol  : class SEQUENCE
    location: class com.sap.security.api.keystore.secudePSE
        static SEQUENCE oidseq        = new SEQUENCE ();
               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:198: cannot find symbol
    symbol  : class ObjectID
    location: class com.sap.security.api.keystore.PKListImpl
        private static ObjectID pkloid  = new ObjectID ("1.3.36.2.6.1", "", "");
                       ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:201: cannot find symbol
    symbol  : class ASN1Object
    location: class com.sap.security.api.keystore.PKListImpl
        private ASN1Object  asn   = null;
                ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:213: cannot find symbol
    symbol  : class X509Certificate
    location: class com.sap.security.api.keystore.PKListImpl
        public void     addCertificate (X509Certificate cert)
                                        ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:223: cannot find symbol
    symbol  : class ASN1Object
    location: class com.sap.security.api.keystore.PKListImpl
        public synchronized ASN1Object getObject   ()
                            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:261: cannot find symbol
    symbol  : class Name
    location: class com.sap.security.api.keystore.PKListImpl
        public void removeCertificate (Name subject)
                                       ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:261: removeCertificate(java.lang.String) is already defined in com.sap.security.api.keystore.PKListImpl
        public void removeCertificate (Name subject)
                    ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\logon\ILogonAuthentication.java:3: package javax.servlet.http does not exist
    import javax.servlet.http.*;
    ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\logon\ILogonAuthentication.java:44: cannot find symbol
    symbol  : class HttpServletRequest
    location: interface com.sap.security.api.logon.ILogonAuthentication
        public javax.security.auth.Subject logon (HttpServletRequest req, HttpServletResponse resp, String authscheme)
                                                  ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\logon\ILogonAuthentication.java:44: cannot find symbol
    symbol  : class HttpServletResponse
    location: interface com.sap.security.api.logon.ILogonAuthentication
        public javax.security.auth.Subject logon (HttpServletRequest req, HttpServletResponse resp, String authscheme)
                                                                          ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\logon\WebCallback.java:8: package javax.servlet.http does not exist
    import javax.servlet.http.HttpServletRequest;
                              ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\logon\WebCallback.java:9: package javax.servlet.http does not exist
    import javax.servlet.http.HttpServletResponse;
                              ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\logon\WebCallback.java:20: cannot find symbol
    symbol  : class HttpServletRequest
    location: class com.sap.security.api.logon.WebCallback
        private HttpServletRequest  request;
                ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\logon\WebCallback.java:21: cannot find symbol
    symbol  : class HttpServletResponse
    location: class com.sap.security.api.logon.WebCallback
        private HttpServletResponse response;
                ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\logon\WebCallback.java:45: cannot find symbol
    symbol  : class HttpServletRequest
    location: class com.sap.security.api.logon.WebCallback
        public void setRequest(HttpServletRequest request) {
                               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\logon\WebCallback.java:54: cannot find symbol
    symbol  : class HttpServletRequest
    location: class com.sap.security.api.logon.WebCallback
        public HttpServletRequest getRequest() {
               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\logon\WebCallback.java:90: cannot find symbol
    symbol  : class HttpServletResponse
    location: class com.sap.security.api.logon.WebCallback
        public HttpServletResponse getResponse() {
               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\logon\WebCallback.java:99: cannot find symbol
    symbol  : class HttpServletResponse
    location: class com.sap.security.api.logon.WebCallback
        public void setResponse(HttpServletResponse response) {
                                ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\permissions\ValuePermission.java:6: package com.sap.engine.lib.logging does not exist
    import com.sap.engine.lib.logging.LoggingHelper;
                                      ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\session\ISSOSession.java:3: package javax.servlet.http does not exist
    import javax.servlet.http.*;
    ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\session\ISSOSession.java:24: cannot find symbol
    symbol: class HttpSession
    public interface ISSOSession extends HttpSession
                                         ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\session\SessionFactory.java:6: package javax.servlet.http does not exist
    import javax.servlet.http.HttpServletRequest;
                              ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\session\SessionFactory.java:7: package javax.servlet.http does not exist
    import javax.servlet.http.HttpServletResponse;
                              ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\session\SessionFactory.java:68: cannot find symbol
    symbol  : class HttpServletRequest
    location: class com.sap.security.api.session.SessionFactory
        public        abstract ISSOSession      getSSOSession (HttpServletRequest req,
                                                               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\session\SessionFactory.java:69: cannot find symbol
    symbol  : class HttpServletResponse
    location: class com.sap.security.api.session.SessionFactory
                                                                HttpServletResponse resp);
                                                                ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:29: package iaik.x509 does not exist
    import iaik.x509.X509Certificate;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:30: package iaik.asn1.structures does not exist
    import iaik.asn1.structures.Name;
                                ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:31: package iaik.asn1 does not exist
    import iaik.asn1.ObjectID;
                     ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:32: package iaik.pkcs does not exist
    import iaik.pkcs.*;
    ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:376: cannot find symbol
    symbol  : class X509Certificate
    location: class com.sap.security.api.ticket.TicketVerifier
        public abstract X509Certificate getSignerCertificate()
                        ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:453: cannot find symbol
    symbol  : class PKCSParsingException
    location: class com.sap.security.api.ticket.TicketVerifier
                   PKCSParsingException,
                   ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:478: cannot find symbol
    symbol  : class X509Certificate
    location: class com.sap.security.api.ticket.TicketVerifier
        public static X509Certificate findCert(X509Certificate[] certs, Name issuer, BigInteger serial)
                                               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:478: cannot find symbol
    symbol  : class Name
    location: class com.sap.security.api.ticket.TicketVerifier
        public static X509Certificate findCert(X509Certificate[] certs, Name issuer, BigInteger serial)
                                                                        ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:478: cannot find symbol
    symbol  : class X509Certificate
    location: class com.sap.security.api.ticket.TicketVerifier
        public static X509Certificate findCert(X509Certificate[] certs, Name issuer, BigInteger serial)
                      ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:510: cannot find symbol
    symbol  : class X509Certificate
    location: class com.sap.security.api.ticket.TicketVerifier
        public static boolean verifyCertificate (X509Certificate[] certs, X509Certificate test, boolean verifyChain)
                                                 ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:510: cannot find symbol
    symbol  : class X509Certificate
    location: class com.sap.security.api.ticket.TicketVerifier
        public static boolean verifyCertificate (X509Certificate[] certs, X509Certificate test, boolean verifyChain)
                                                                          ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\ticket\TicketVerifier.java:570: cannot find symbol
    symbol  : class Name
    location: class com.sap.security.api.ticket.TicketVerifier
        public static Name newName(String country, String loc, String org, String orgUnit, String commonName) {
                      ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\umap\IUserMappingData.java:8: package javax.xml.soap does not exist
    import javax.xml.soap.SOAPMessage;
                          ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\umap\IUserMappingData.java:82: cannot find symbol
    symbol  : class SOAPMessage
    location: interface com.sap.security.api.umap.IUserMappingData
        public void enrich (SOAPMessage msg)
                            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\umap\IUserMappingData.java:82: enrich(java.util.Properties) is already defined in com.sap.security.api.umap.IUserMappingData
        public void enrich (SOAPMessage msg)
                    ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\UMFactory.java:26: package com.sap.engine.lib.logging does not exist
    import com.sap.engine.lib.logging.LoggingHelper;
                                      ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:42: cannot find symbol
    symbol  : class INTEGER
    location: class com.sap.security.api.keystore.secudePSE
        static INTEGER  integer       = new INTEGER (2);
                                            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:43: cannot find symbol
    symbol  : class ObjectID
    location: class com.sap.security.api.keystore.secudePSE
        static ObjectID oid           = new ObjectID ("1.2.840.113549.3.7", "", "");
                                            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:44: cannot find symbol
    symbol  : class OCTET_STRING
    location: class com.sap.security.api.keystore.secudePSE
        static OCTET_STRING os        = new OCTET_STRING (new byte [] { 0x00, 0x00,
                                            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:48: cannot find symbol
    symbol  : class PrintableString
    location: class com.sap.security.api.keystore.secudePSE
        static PrintableString user   = new PrintableString ("SYSTEM");
                                            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:49: cannot find symbol
    symbol  : class INTEGER
    location: class com.sap.security.api.keystore.secudePSE
        static INTEGER  integer2      = new INTEGER (1);
                                            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:50: cannot find symbol
    symbol  : class SEQUENCE
    location: class com.sap.security.api.keystore.secudePSE
        static SEQUENCE oidseq        = new SEQUENCE ();
                                            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:88: cannot find symbol
    symbol  : class SET
    location: class com.sap.security.api.keystore.secudePSE
            SET      set= new SET ();
            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:88: cannot find symbol
    symbol  : class SET
    location: class com.sap.security.api.keystore.secudePSE
            SET      set= new SET ();
                              ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:89: cannot find symbol
    symbol  : class UTCTime
    location: class com.sap.security.api.keystore.secudePSE
            UTCTime  utc= new UTCTime ("020101000000Z");
            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:89: cannot find symbol
    symbol  : class UTCTime
    location: class com.sap.security.api.keystore.secudePSE
            UTCTime  utc= new UTCTime ("020101000000Z");
                              ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:90: cannot find symbol
    symbol  : class SEQUENCE
    location: class com.sap.security.api.keystore.secudePSE
            SEQUENCE outerSequence = new SEQUENCE ();
            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:90: cannot find symbol
    symbol  : class SEQUENCE
    location: class com.sap.security.api.keystore.secudePSE
            SEQUENCE outerSequence = new SEQUENCE ();
                                         ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:91: cannot find symbol
    symbol  : class SEQUENCE
    location: class com.sap.security.api.keystore.secudePSE
            SEQUENCE otherSequence = new SEQUENCE ();
            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:91: cannot find symbol
    symbol  : class SEQUENCE
    location: class com.sap.security.api.keystore.secudePSE
            SEQUENCE otherSequence = new SEQUENCE ();
                                         ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:111: cannot find symbol
    symbol  : variable DerCoder
    location: class com.sap.security.api.keystore.secudePSE
            DerCoder.encodeTo (outerSequence, os);
            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:171: cannot find symbol
    symbol  : class X509Certificate
    location: class com.sap.security.api.keystore.secudePSE
                    pklist.addCertificate (new X509Certificate (new FileInputStream (args[1])));
                                               ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:198: cannot find symbol
    symbol  : class ObjectID
    location: class com.sap.security.api.keystore.PKListImpl
        private static ObjectID pkloid  = new ObjectID ("1.3.36.2.6.1", "", "");
                                              ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:230: cannot find symbol
    symbol  : class SEQUENCE
    location: class com.sap.security.api.keystore.PKListImpl
            SEQUENCE s = new SEQUENCE ();
            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:230: cannot find symbol
    symbol  : class SEQUENCE
    location: class com.sap.security.api.keystore.PKListImpl
            SEQUENCE s = new SEQUENCE ();
                             ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:231: cannot find symbol
    symbol  : class PrintableString
    location: class com.sap.security.api.keystore.PKListImpl
            PrintableString str = new PrintableString (name);
            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:231: cannot find symbol
    symbol  : class PrintableString
    location: class com.sap.security.api.keystore.PKListImpl
            PrintableString str = new PrintableString (name);
                                      ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:232: cannot find symbol
    symbol  : class SET
    location: class com.sap.security.api.keystore.PKListImpl
            SET     ss = new SET ();
            ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:232: cannot find symbol
    symbol  : class SET
    location: class com.sap.security.api.keystore.PKListImpl
            SET     ss = new SET ();
                             ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:240: cannot find symbol
    symbol  : class SEQUENCE
    location: class com.sap.security.api.keystore.PKListImpl
                SEQUENCE cert = (SEQUENCE)
                ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:240: cannot find symbol
    symbol  : class SEQUENCE
    location: class com.sap.security.api.keystore.PKListImpl
                SEQUENCE cert = (SEQUENCE)
                                 ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:241: cannot find symbol
    symbol  : class X509Certificate
    location: class com.sap.security.api.keystore.PKListImpl
                                  ((X509Certificate)certs.get (keys.nextElement())).toASN1Object();
                                    ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\keystore\secudePSE.java:258: cannot find symbol
    symbol  : variable DerCoder
    location: class com.sap.security.api.keystore.PKListImpl
            return DerCoder.encode (asn);
                   ^
    C:\Documents and Settings\Narahari_Vedula\.dtc\1\DCs\bp.com\securityAPI\_comp\src\packages\com\sap\security\api\permissions\ValuePermission.java:28: cannot find symbol
    symbol  : variable LoggingHelper
    location: class com.sap.security.api.permissions.ValuePermission
         private static Category cat = Category.getCategory(LoggingHelper.SYS_SECURITY, "Usermanagement");
                                                               ^
    Note: * uses or overrides a deprecated API.
    Note: Recompile with -Xlint:deprecation for details.
    Regards,
    Narahari

  • Using Room API inside Web DynPro

    Hello,
    I've developed a Web DynPro Application which uses the Room API of the KMC.
    Unfortunately I can not set the Service Reference variable "com.sap.netweaver.coll.shared" as mentioned in the guide.
    A Deploy Exception will be thrown ("Missing Arguments...")
    If i do not set this variable the following Exception will be thrown:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create delegate for view com.xy.demo.kmc.room.RoomManagerView. (Hint: Is the corresponding DC deployed correctly? Does the DC contain the component?)
         at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.<init>(DelegatingView.java:41)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.createUninitializedView(ViewManager.java:487)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:524)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:422)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:130)
         at com.sap.tc.webdynpro.progmodel.view.InterfaceView.initController(InterfaceView.java:41)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.displayToplevelComponent(ClientComponent.java:134)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:374)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:593)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:249)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at com.sap.tc.webdynpro.progmodel.generation.ControllerHelper.createDelegate(ControllerHelper.java:74)
         ... 31 more
    Caused by: java.lang.NoClassDefFoundError: com/sap/ip/collaboration/room/api/IRooms
         at com.xy.demo.kmc.room.wdp.InternalRoomManagerView.<init>(InternalRoomManagerView.java:97)
         ... 36 more
    Greetings
    Florian

    Hi Valery,
    thanks for the reply.
    I have feared that you say exactly this.
    First I have to mention that I of course added the reference variable at the right place (the entry has successfully added to the portalapp.xml)
    I looked to the services and do NOT find anything about "com.sap.netweaver.coll.shared" so my next question is:
    Where to get it and how to deploy it?

  • Specific SC Dependency for using KM API in Web Dynpro DC

    Hi,
    I want to use KM API in my Web Dynpro DC.
    Currently, I have created it as Local DC and I am using External Lib DC to make use of JARs required for KM APIs.
    So my question->
    While doing it in NWDI track, is there any special KM specific SC dependency I should include in my track?
    Or just standard dependecies (SAP-JEE, SAP_BUILDT, SAP_JTECHS) would be sufficient?
    Thanks and regards,
    Amey Mogare

    Hi Amey,
    Since you have created an external library DC for the jars, Just add all this jars to public part and use this public part in the required DC.
    You have to add the following sharing referece to ur project (which is used at runtime).
    Go to webdynpro refernces>sharing references in properties of webdynpro project
    Add   PORTAL:sap.com/com.sap.km.application
    No need to add any SC dependency, the standard dependecies would be sufficient
    For more information pls go through this blog
    /people/rohit.radhakrishnan/blog/2005/05/27/uploading-files-to-km-repository-using-webdynpro-apis
    Hope this helps you..
    Regards,
    Saleem

  • Generating PDF file using FOP API in Web Dynpro

    Hi experts,
    I would like to generate PDF files from a WebDynpro application without using Adobe Interactive forms.
    I think that I can export context data to XML stream and then apply XSLT transformation to produce XSLFO format and then pass it to xlfo processor i.e FOP to generate the PDF file.
    Has someone already try this way of generating PDF files?
    Is it a good way of processing ?
    Thanks in advance.
    Thomas.

    hi Thomas,
    You can make use of the iText API to create pdf documents through webdynpro.
    For this you'll have to download  the Itext api jar file.
    Right click your webdynpro project include this jar file using the 'add external jar files'.Now you'll be able to make use of this api in your webdynpro project.
    http://javaboutique.internet.com/tutorials/iText/ .
    The above link will help you in using iText API.
    hope this one helps you.
    Regards,
    Rahul.

  • How to use chart engine for web dynpro java(EP) for Graphics generation.

    Hi Frndz..
    now lookiing out for different types of dynamic graphics generations according to my requirment, n i saw the followiing blog
    Testing BusinessGraphics in Web Dynpro for Java
    Itz very nice to see that we can generate planty of types, but here our server is EP 7.0(not CE 7.1) and i gone thru  these links also
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/86/243f403f0a9354e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/0b/79553b066d9414e10000000a114084/frameset.htm
    https://help.sap.com/saphelp_nw04/helpdata/en/0c/95c83956852b51e10000000a114084/frameset.htm
    here it seems to be Chart Engine n Chart Designer is mainly for BSP(R3), how best we can use this for web dyn pro java.
    Thanks in Advance
    Regards
    Rajesh

    hi
    if you want to use BusinessGraphics in WebDynpro java you have to configure IGS.
    IGS Configuration
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/4846ac90-0201-0010-099d-d3b4e271849c
    Business Graphics docs.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/3261cd90-0201-0010-268c-d8d72e358af6
    ChartDeigner Usage
    http://help.sap.com/saphelp_nw04/helpdata/en/18/d4d43fb9490c65e10000000a114b1d/frameset.htm
    Generating Gantt chart using web dynpro business graphics

  • Use external libraries in web dynpro java

    Dear Experts,
    I need to add an external library to my project.
    Anyway, I do not know how to do it because it gives me many problems.
    I tried modifying the classpath and placing it in the lib folder of the project from "Navigator".
    Also project properties, add. jar outside, and throws me the following error:
    [javac] Compiling 213 source files to D:\WORK\WORKSPACE\7.2.jdi\LocalDevelopment\t\2BF09F48E6D0E2C201262098A0E4D79F\classes
         [javac] ERROR: D:\WORK\WORKSPACE\7.2.jdi\LocalDevelopment\t\2BF09F48E6D0E2C201262098A0E4D79F\gen_wdp\packages\elsys\com\.....\wd\comp\....\MainView.java:34: package com.estaf does not exist
         [javac] ERROR: import com.estaf.jpay;
         [javac] ERROR:             
    Given these errors, I know my includes without problems and I can instantiate objects from library classes, but these errors I can not deploy.
    I read the following link:
    /people/raphael.vogel/blog/2008/05/05/how-to-use-external-libraries-in-the-sap-component-model-part-ii
    I did everything the tutorial. I created the external library. I can see in my project "DC-Definition -> Used DCs" The public parts assembly and compilation. Now the problem is that it still does not recognize the classes of the libraries you want to use.
    A level of code, when I try to instantiate the class does not recognize me. What could be missing? I did a couple of times step by step and gives me the same results.
    I use SAP NetWeaver Developer Studio SAP NetWeaver 7.2 SP03 PAT0007 version.
    Infinitely appreciate any help. Thank you very much.
    Rasim
    Edited by: Rasim Donmez on Apr 11, 2011 4:50 PM
    Edited by: Rasim Donmez on Apr 11, 2011 4:51 PM

    Hi,
    please find below path for adding External Jar files.
    right click on the webdynpro dc and select the properties .
    then clcik on Java Build path->select libraries->select External External Jars.
    after that just rebuild your project (not Build).
    Regards,
    Govindu
    Edited by: Govindu Nagotla on Apr 12, 2011 2:28 PM

  • I forgot my security question answers. It has never asked me what they were, and now they are and I have already put a gift card on my account. I have used all my tries, but I need me some music!lol

    I have forgotten my security question answers. I have never had to use them while purchasing, but I tried today, and they asked for them. So I now can't buy my music which really *****, because I am sitting in the hospital waiting room wanting to get some music, and I can't now. Is there a way I can get around that? Cause I seriously can't remember my answers. I don't even remember setting them up when I set up my account a couple years ago.

    See Kappy's great User Tips.
    See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities https://discussions.apple.com/docs/DOC-4551
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Send Apple an email request for help at: Apple - Support - iTunes Store - Contact Us http://www.apple.com/emea/support/itunes/contact.html
    Call Apple Support in your country: Customer Service: Contacting Apple for support and service http://support.apple.com/kb/HE57
     Cheers, Tom

  • Trying to redeem iTunes card told first time purchase on computer needs security question answered which I did not set up or know the answer to

    Trying to redeem iTunes card. Was told first time purchase needs security questions answered and don't remeber setting them up to start with and I have made several purchases before without answering questions. Getting no help from Apple support. How can I make new answers for new security questions.

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then the steps half-way down this page give you a reset link on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 link above to add a rescue email address for potential future use

  • My account is asking for 2 security question answers. I have never had to do this before. Saying it is the first time I have used this computer to purchase not true I have used this computer everythime. Then it tells me that I put in the wrong answers.

    My account keeps asking for 2 security question answers saying this is the first time I used this computer not true used this computer many times. Then when I put ansers in says incorrect answers. What's up with this?

    There have a few other posts from people saying that they are being asked their questions despite it not being the first purchase on the computer or device.
    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then go to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you should see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you won't get the reset option - you will need to contact iTunes Support or Apple to get them reset.
    e.g. you can try contacting iTunes Support :http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then 'Forgotten Apple ID security questions'
    or try ringing Apple in your country and ask to talk to the Accounts Security Team :http://support.apple.com/kb/HE57
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312 . Or you could change to 2-step verification : http://support.apple.com/kb/HT5570

  • HT5622 I forgot my Apple ID password, as well as the security questions answers. Also, I currently can't use any of the rescue e-mails. Is there any other way I can reset my security answers or maybe reset the rescue e-mail?

    I forgot my Apple ID password, as well as the security questions answers. Also, I currently can't use any of the rescue e-mails. Is there any other way I can reset my security answers or maybe reset the rescue e-mail? I called the Apple customer service and it was helpful, except I recieved an e-mail that expired 3 hours later, I can't call them again because I am overseas and it's really expensive to keep on calling international numbers! . Can anyone PLEASE help me?
    I can't use any of my apple products properly such as my iphones because of iCloud and I can't purchase items on Apple TV!
    Thank you.

    Security questions:
    https://discussions.apple.com/docs/DOC-4551
    http://support.apple.com/kb/HT5312
    This is also useful:
    http://www.macworld.co.uk/ipad-iphone/news/?newsid=3463233&olo=email
    If you don’t know your security questions, phone Apple (using the number listed here:  http://support.apple.com/kb/HE57  ) and ask for the Account Security Team.

  • People Please help, I forgot my security questions answers but I know how to reset them but the problem is my rescue email is not longer used ( DELETED ) so what can I do please help me

    People Please help, I forgot my security questions answers but I know how to reset them but the problem is my rescue email is not longer used ( DELETED ) so what can I do please help me??????????

    EZZTHEKILLER wrote:
    is there any other way ...
    Not in your case.
    EZZTHEKILLER wrote:
    I forgot my security questions answers but I know how to reset them but the problem is my rescue email is not longer used ( DELETED )

Maybe you are looking for

  • Configurating the SOAP-Adapter

    Hallo, i'm trying to run the SOAP-Adapter. The Adapter Engine offers an Test-Environment. With this Test-Client you can send SOAP-Messages and receive some kind of response. First try faild. So i read every posting in this forum, but i still can't ge

  • Itunes won't recognise changes in iphoto

    I noticed that when I did a sync, my recent photos were not appearing on my iphone. Then I discovered that the lists of albums and events on the itunes sync page were not registering new events or any changes that I had made in iphoto for the previou

  • Regarding PO Module Data Fields

    Hi, I am working in Reports for Purchasing module. I have issue to find the following data fields in the Purchasing responsibility front end.Could you please help me regarding this... 1. Bill to Phone 2. Bill to Fax 3. Ship to Phone 4. Ship to Fax 5.

  • Getting error 150:30 when launching DW.

    Says to contact you.

  • Migrate SqlServer BigInt DataType to Ora Number data type - customizable ?

    Hello, i'm trying to migrate a sql-server 2005 db to oracle 10 using Sql-Developer v 1.2.0. Every column having datatype bigint is converted to a Number(10,0) column. Is it possible to customize this convertion cause i would like to have a Number(19,