Error while configuring credential for Adobe Forms

Hi,
While configuring Credential i am getting an error as popup. But when I click on OK, I am able to see the .pfx file in the top.
<b>Error Details:</b>
An error occurred while updating the credential expiry for alias 'ReaderRights':
com.adobe.service.sap.configuration.ConfigurationException:Unable to load keystore from credential. Please ensure the password is correct.
We have not received any password from SAP, only there was one password to download the file.
After all I am trying print forms, not an interactive form. But when I deploy and run it shows error.
<b>Error Details:</b>
com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Error during call to AdobeDocumentServer: Processing exception during a "UsageRights" operation.
Request start time: Sat Nov 26 11:54:53 GMT+05:30 2005
com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINNT\Temp\adobewa_J2E_00_1015779131\DM8997397967410486296.dir\DM-8285166541278556430.tmp
Specific error information:
$$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
GeneralError: Operation failed.
SecurityHandler.login:-1:
Could not open Digital ID file with the password provided. Please try again.
Please suggest the solution.
Thanks,
SA.

Hi,
Still I have not got any solution for this. But my bigest problem right now is, I am using print form and there is no interactive feature. There is lot of forum posts where it is specified that, credentials is not required for print forms..... But when I try to deploy the Adobe application I get below error....
com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Error during call to AdobeDocumentServer: Processing exception during a "UsageRights" operation.
Request start time: Thu Nov 24 20:00:50 GMT+05:30 2005
com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINNT\Temp\adobewa_J2E_00_1015779131\DM400443135109740914.dir\DM-4094495003961307306.tmp
Specific error information:
$$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
GeneralError: Operation failed.
SecurityHandler.login:-1:
Could not open Digital ID file with the password provided. Please try again.
General error information:
IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
Please suggest....
Thanks.
SA

Similar Messages

  • Error while configuring credential for Adobe service

    Hi,
    While configuring Credential i am getting an error as popup. But when I click on OK, I am able to see the .pfx file in the top.
    <b>Error Details:</b>
    An error occurred while updating the credential expiry for alias 'ReaderRights':
    com.adobe.service.sap.configuration.ConfigurationException:Unable to load keystore from credential. Please ensure the password is correct.
    We have not received any password from SAP, only there was one password to download the file.
    After all I am trying print forms, not an interactive form. But when I deploy and run it shows error.
    <b>Error Details:</b>
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Error during call to AdobeDocumentServer: Processing exception during a "UsageRights" operation.
    Request start time: Sat Nov 26 11:54:53 GMT+05:30 2005
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINNT\Temp\adobewa_J2E_00_1015779131\DM8997397967410486296.dir\DM-8285166541278556430.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    Could not open Digital ID file with the password provided. Please try again.
    Please suggest the solution.
    Thanks,
    SA.

    Hi,
    Still I have not got any solution for this. But my bigest problem right now is, I am using print form and there is no interactive feature. There is lot of forum posts where it is specified that, credentials is not required for print forms..... But when I try to deploy the Adobe application I get below error....
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Error during call to AdobeDocumentServer: Processing exception during a "UsageRights" operation.
    Request start time: Thu Nov 24 20:00:50 GMT+05:30 2005
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINNT\Temp\adobewa_J2E_00_1015779131\DM400443135109740914.dir\DM-4094495003961307306.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    Could not open Digital ID file with the password provided. Please try again.
    General error information:
    IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
    Please suggest....
    Thanks.
    SA

  • Usage error while generating spool for adobe forms

    I need to create a function module which would be called from a BRF. The function module must generate an adobe form and sent to the spool.
    I get usage error at the call form function module level. could someone suggest if anything is missing in the below code.
    ""Local Interface:
    *" IMPORTING
    *" REFERENCE(I_FORM_NAME) TYPE FPNAME
    *" REFERENCE(I_BP_DETAILS) TYPE ZRP_STRU_RTRN_BP_DETAILS
    *" REFERENCE(I_AMT_DETAILS) TYPE ZRP_STRU_RTRN_AMT_DETAILS
    *" EXPORTING
    *" REFERENCE(E_RETURN) TYPE BAPIRET2_T
    DATA : gv_fm_name TYPE rs38l_fnam,
    ga_outputparams TYPE sfpoutputparams,
    gs_docparams TYPE sfpdocparams,
    le_result TYPE sfpjoboutput,
    gs_output TYPE fpformoutput,
    l_return TYPE bapiret2..
    Get the Form function module name
    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
    EXPORTING
    i_name = i_form_name
    IMPORTING
    e_funcname = gv_fm_name
    E_INTERFACE_TYPE =
    Open Print Job
    ga_outputparams-device = 'PRINTER'.
    ga_outputparams-nodialog = 'X'.
    ga_outputparams-preview = space.
    ga_outputparams-dest = 'LP01'.
    CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
    ie_outputparams = ga_outputparams
    EXCEPTIONS
    cancel = 1
    usage_error = 2
    system_error = 3
    internal_error = 4
    OTHERS = 5.
    call the generated Function Module
    gs_docparams-langu = 'E'.
    gs_docparams-country = 'US'.
    CALL FUNCTION gv_fm_name "'/1BCDWB/SM00000014'
    EXPORTING
    /1bcdwb/docparams = gs_docparams
    is_bp_details = i_bp_details
    is_return_details = i_amt_details
    IMPORTING
    /1bcdwb/formoutput = gs_output
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4.
    IF sy-subrc EQ 0.
    Close spool job
    CALL FUNCTION 'FP_JOB_CLOSE'
    IMPORTING
    e_result = le_result
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4.
    ELSE.
    l_return-type = 'E'.
    l_return-message = 'Print Error'.
    APPEND l_return TO e_return.
    ENDIF.

    Suri , Have you solve this  please replly as i am facing such a problem

  • Getting an error while configuring VMM for System Center 2012. error - An internal error has occurred trying to contact an agent on the WIN-NTJU8CNU server: : . Ensure the agent is installed and running.

    Hi,
    I am trying to install "System Center 2012 - Virtual Machine Manager by Using a Pre-Configured VHD".
    I downloaded install guide & the binaries from http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=10712
    I have followed the installation document & getting an error while configuring VMM for System Center 2012.
    error details from log file given below:
    01:12:24:VMMPostinstallProcessor threw an exception: Threw Exception.Type: Microsoft.Carmine.WSManWrappers.WSManProviderException, Exception.Message: An internal error has occurred trying to contact an agent on the WIN-NTJTNEJ1UCN.mydomain.com server: : .
    Ensure the agent is installed and running. Ensure the WS-Management service is installed and running, then restart the agent.
    01:12:24:StackTrace:   at Microsoft.Carmine.WSManWrappers.ErrorContextParameterHelper.ThrowTranslatedCarmineException(WsmanSoapFault fault, COMException ce)
       at Microsoft.Carmine.WSManWrappers.WsmanAPIWrapper.RetrieveUnderlyingWMIErrorAndThrow(SessionCacheElement sessionElement, COMException ce)
       at Microsoft.Carmine.WSManWrappers.WsmanAPIWrapper.Invoke(String actionUri, WSManUri targetUri, Hashtable parameters, Type returnType, Boolean isCarmineMethod, Boolean forceResponseCast)
       at Microsoft.Carmine.WSManWrappers.AgentManagement.AssociateLibrary(WsmanAPIWrapper wsmanObject, String CertificateSubjectName, String& ExportedCertificate, ErrorInfo& ErrorInfo)
       at Microsoft.VirtualManager.Setup.VirtualMachineManagerHelpers.AssociateAgentServer(String fullyQualifiedServerName)
       at Microsoft.VirtualManager.Setup.VirtualMachineManagerHelpers.AssociateDefaultLibraryServer()
       at Microsoft.VirtualManager.Setup.VirtualMachineManagerHelpers.SetupLibraryShare()
       at Microsoft.VirtualManager.Setup.InstallItemCustomDelegates.PangaeaServerPostinstallProcessor()
    01:12:24:InnerException.Type: System.Runtime.InteropServices.COMException, InnerException.Message: There is a time and/or date difference between the client and server.
    01:12:24:InnerException.StackTrace:   at WSManAutomation.IWSManSession.Invoke(String actionUri, Object resourceUri, String parameters, Int32 flags)
       at Microsoft.Carmine.WSManWrappers.MyIWSManSession.Invoke(String actionUri, Object resourceUri, String parameters, Int32 flags)
       at Microsoft.Carmine.WSManWrappers.WsmanAPIWrapper.Invoke(String actionUri, WSManUri targetUri, Hashtable parameters, Type returnType, Boolean isCarmineMethod, Boolean forceResponseCast)
    01:12:24:ProcessInstalls: Running the PostProcessDelegate returned false.
    01:12:24:ProcessInstalls: Running the PostProcessDelegate for PangaeaServer failed.... This is a fatal item.  Setting rollback.
    01:12:24:SetProgressScreen: FinishMinorStep.
    01:12:24:ProcessInstalls: Rollback is set and we are not doing an uninstall so we will stop processing installs
    I have completed MSSQL server configuration and while configuring VMM the below error displayed in the wizard:
    An internal error has occurred trying to contact an agent on the WIN-NTJTNEJ1UCN.mydomain.com server: : .
    Ensure the agent is installed and running. Ensure the WS-Management service is installed and running, then restart the agent.
    I have checked that the following services are running:
    1) Verified WS-Management srvice 2) MSSQL server + MSSQL (agent)  3)SC VM Manager Agent  4)  Windows management instrumentation .
    I have joined the VM (on which installing SC VMM) in a domain(as per install guide) and installing VMM using domain account & it is in local Administrators group.
    Also I would like know if there is any stand alone SC VMM installer. If yes then please let me know the installer location & install guide.
    thanks.
    ====

    Have you installed AppController on the same machine with VMM?

  • ColdFusion 11 wsconfig.exe -- Error while configuring connector for IIS.

    I ran into a problem with my ColdFusion 11 64-bit installation/migration on a Windows Server 2012 R2/IIS 8.5.  I was following the ColdFusion 11 Lockdown Guide - Pete Freitag (very helpful) and I ran into problems on page 35 "Run the ColdFusion Web Server Configuration Tool".  When I attempted to do this for ALL IIS websites I encountered a Windows error [APPCRASH - Exception Code:c0000005].  Also, note my Administrator-Command Prompt window provided this error message "Error while configuring connector for IIS. Make sure you have administrator privileges".  However, I did not experience this error with all of the migrated sites.  I traced my steps backward to discover the problem.  I used the Microsoft Web Deployment tool (good tool) to migrate the old IIS websites to the new IIS.  I utilized Metabase Explorer the IIS 6.0 Resource Tools to discover that some of the migrated sites that were crashing did not have the key/value ID:6006 | Name: DefaultDoc.  Once I added this key and redeployed the site the ColdFusion 11 connector (wsconfig.exe) worked fine.  In addition, I added this key/value to some of the larger previously migrated sites in IIS 8.5 ("Default Document") and it worked with the connector as well. 
    Knowing how IIS encapsulates information the DefaultDoc key/value should have passed from the website setting.  Why would this make wsconfig.exe crash?
    Thanks in advance and I hope this saves someone from hours of research and frustration.

    DiscoDelight,
    Have you forwarded this information directly to the ColdFusion product team?  If not, I'll try to draw their attention to it.  Only a few of them are active on these forums, so this issue might be overlooked.
    -Carl V.
    EDIT: I just pinged them on Twitter to take a look at this post.
    EDIT #2: They just pinged me back that they are looking into it.

  • Authorization error while configuring  TREX for HR - talent search

    Hi All
    HR team is performing  talent search configuration and they are using Tcode ESH_Cockpit. Here while creating, they  get this error "Error while preparing".
    For one of the failed connectors (eg: HRTMC AES Documents), job log is as given below:
    24.10.2011 08:34:16 Job started
    24.10.2011 08:34:16 Step 001 started (program ESH_SE_CONNECTOR_MOD_BGD, variant &0000000000027, user ID T710752)
    24.10.2011 08:34:50 Authorization check CP_USER_ALL:
    24.10.2011 08:34:50 Path-based authorization check CP_USER_ALL has wrong data
    24.10.2011 08:34:50 Authorization check CP_USER_ALL:
    24.10.2011 08:34:50 Path-based authorization check CP_USER_ALL has wrong data
    24.10.2011 08:34:50 Authorization check CP_USER_ALL:
    24.10.2011 08:34:50 Path-based authorization check CP_USER_ALL has wrong data
    24.10.2011 08:34:50 Authorization check TB_PLOG, auth. obj. field assignments:
    24.10.2011 08:34:50 Not all authorization fields are mapped to node fields or constants
    24.10.2011 08:34:50 Authorization check TB_PLOG, auth. obj. field assignments:
    24.10.2011 08:34:50 Not all authorization fields are mapped to node fields or constants
    24.10.2011 08:34:50 Authorization check TB_PLOG, auth. obj. field assignments:
    Here they have SAP_ALL assigned and even then they are getting above authorization related error . 
    Your advise will be really helpful. Thanks in advance for your help.
    Regards,
    Aditya

    TREX also uses gateway programs.
    Check with your basis folks or tcode SMGW (go to --> expert functions --> external security) to see whether it is restricted.
    There are also some SAP notes about this...
    Cheers,
    Julius

  • Error while configuring SSM for OES

    Hello,
    I have installed OES10g on Linux machine & i have to perform OES-Sharepoint integration,
    where Sharepoint is installed on windows machine & i have installed SSM on windows machine,but after
    installation of SSM there is step for Enrollment where i get following error
    javax.net.ssl.SSLKeyException: FATAL Alert:BAD_CERTIFICATE - A corrupt or unuseable certificate was received.
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireException(Lcom.certicom.tls.interfaceimpl.AlertEvent;)V(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertSent(Lcom.certicom.tls.record.alert.Alert;)Lcom.certicom.tls.interfaceimpl.AlertEvent;(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Lcom.certicom.tls.record.alert.Alert;)V(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(II)V(Unknown Source)
    at com.certicom.tls.record.handshake.ClientStateReceivedServerHello.handle(Lcom.certicom.tls.record.handshake.HandshakeMessage;)V(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessage(Lcom.certicom.tls.record.handshake.HandshakeMessage;)V(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessages([BILcom.certicom.tls.interfaceimpl.ProtocolVersion;)V(Unknown Source)
            at com.certicom.tls.record.MessageInterpreter.interpretContent([BIILcom.certicom.tls.interfaceimpl.ProtocolVersion;)V(Unknown Source)
            at com.certicom.tls.record.MessageInterpreter.decryptMessage(II[BIILcom.certicom.tls.interfaceimpl.ProtocolVersion;)V(Unknown Source)
            at com.certicom.tls.record.ReadHandler.processRecord()I(Unknown Source)
            at com.certicom.tls.record.ReadHandler.readRecord()I(Unknown Source)
            at com.certicom.tls.record.ReadHandler.readUntilHandshakeComplete()V(Unknown Source)
            at com.certicom.tls.interfaceimpl.TLSConnectionImpl.completeHandshake()V(Unknown Source)
            at javax.net.ssl.impl.SSLSocketImpl.startHandshake()V(Unknown Source)
            at com.bea.security.ssl.CerticomAdapter.initializeSocket(CerticomAdapter.java:847)
            at com.bea.security.ssl.CerticomAdapter.access$200(CerticomAdapter.java:64)
            at com.bea.security.ssl.CerticomAdapter$CerticomSSLSocketFactory.createSocket(CerticomAdapter.java:935)
            at com.bea.security.ssl.CerticomAdapter.createSocket(CerticomAdapter.java:204)
            at com.bea.security.ssl.Utils.getSSLSocket(Utils.java:688)
            at com.bea.security.ssl.EnrollmentClient.perform(EnrollmentClient.java:88)
            at com.bea.security.ssl.EnrollTool.main(EnrollTool.java:45)
            can anyone guide me how to resolve this error .
    Thank-You
    Rahul Shah                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    Still I have not got any solution for this. But my bigest problem right now is, I am using print form and there is no interactive feature. There is lot of forum posts where it is specified that, credentials is not required for print forms..... But when I try to deploy the Adobe application I get below error....
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Error during call to AdobeDocumentServer: Processing exception during a "UsageRights" operation.
    Request start time: Thu Nov 24 20:00:50 GMT+05:30 2005
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINNT\Temp\adobewa_J2E_00_1015779131\DM400443135109740914.dir\DM-4094495003961307306.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    Could not open Digital ID file with the password provided. Please try again.
    General error information:
    IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
    Please suggest....
    Thanks.
    SA

  • Error  While Genrating Document  in ADOB Form

    Hello Everybody ,
    When  I used  SFP  tcode  for  Design  ADOB  Form  Layout   I am getting  Error   "   Error While Generating Document  "  .
    Plz Sugget me  how to resolved it   ...
    Regards,
    Sandeep Jadhav

    Hi,
    You need additional License to create SAP Interactive Forms by Adobe
    Check the SAP Note No.  750784
    If you already have got the License then please check the below link and see if it helps you.
    http://help.sap.com/saphelp_nw70/helpdata/en/37/504b8cbc2848a494facfdc09a359b1/frameset.htm
    Let us know if this information is useful to you.
    with regards,
    Parin Hariyani

  • How to configure output for adobe forms in sap,,if i want to pront  an invo

    Hi,
    I used adobe forms in GTS.
    BUt in normal SAP system,i want to use adobe form to print an invoice data.
    I wantt o use the standard form and standard interface for that.
    But how to do configuration for this?
    normally for smartforms we do it in NACE transdaction?
    But for this adobe forms what is the driver program,,where to configure this form and interface.
    Thanks in advance,
    sasi

    Hello,
    it is the same way how you will configure for smart forms.
    Standard driver program is : RLB_INVOICE
    Please go through this link, how to configure print forms for invoice.
    http://****************/Tips/SmartForms/NACE/Configuration.htm
    Edited by: rakhi966 on Sep 9, 2011 9:22 PM

  • Error: while configuring logs for changes in infotype data

    Hi All,
    I am configuring the following Tables for maintain logs for changes in infotype data.
    V_T585A, V_T585B and V_T585C
    While configuring V_T585B, when i input * in 'field name' column it gives me an warning message " All data fields in **** infotype 31 will be deleted.
    Please let me know, what does this warning message means?
    Also, How is the report RPUAUD00 read?
    Regards
    Simran

    Hi Simran,
    you are not suppose to give the IT 0031-Reference Personnel Numbers in these tables. why because this will done at the time of Employee hiring only and we don't change this. if you change you will lost the old data in the IT.
    Normally we assign only the IT which we change frequently for the master data. example like 0 1 2 7 8 9 27 582 - 589 2001 2006.
    if you are configuring today means from today on-wards any changes had made to these IT's you can see in the report. before changes will not be seen. in the report you have to choose either long-term document / short-term document and remaining fields as per the requirement.
    Regards,
    Praneeth kumar

  • Getting error while Configuring NWA for PI 7.1

    Hello All,
    I'm presently working on PI 7.1, trying to configure /nwapi and for that purpose, implementing note # Note 1160261 - NWA for PI: Incomplete Component Tree.
    I'm presently in step # 5 for running Template Installer step -Configuring the Central NWA and getting error "Validation Error: Failed to retrieve CCMS Agents."
    To sort out, i did install CCMS agents for both ABAP & Java stack keeping Solution manager as my central system, although my both agents are running fine, still i'm getting this error, due to which i'm not able to proceed ahead. Please help me, if anyone has come across the same & wat should be the path forward for it.
    Eagerly waiting for some inputs...
    Thanks,
    Anand.

    Hi Anand,
    When configuring NWA for PI, it wants the PI system as CEN. So you have to register the CCMS agents at the PI system.
    With kind regards,
    Henk.
    Sorry for the same remark twice. The Expert Forums were experiencing a little hickup, I suppose...
    Edited by: H. Steenwijk on May 28, 2009 12:22 PM

  • MSS error while trying to access Adobe forms

    Hi all
    We are using EP 7 sp14. Delpoyed ESS/MSS BP SP 14. while trying to access certain functionalities in MSS which make use if standerd Adobe interactive forme through portal its coming up with the following error.
    com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized.
    I had done few settings in Visual Admin in
    1. server >services>web services security>web services clients>sap.com>tcwdpdfobject>com.sap.tc.webdynpro.adsproxy.Adsproxy*configPort_Document.
    2. In default URL gave : http://portalserver:port/AdobeDocumentServices/Config
    3. Authentication:Basic Authentication : gave username:ADSUSERpwd which is set in the backend.
    4. In Deploy stopped and started the application.
    Also in Destinations -> Created a new HTTP and set the URL pointing to the backend.
    Is there any additional configuration to be set on the Portal side.
    Regards,
    Sasha.

    Got corrected with changing data-type for a property in the definition file.

  • Error while configuring Debugging for WebDynpro Application

    Hi Experts,
    I am trying to configure Portal server for debugging a WebDynpro application.
    In NWDS , in Debug configuration
    When i tried to add my Webdynpro Project and application under Debug tab , No problem.
    But when i checked J2EE Engine tab : it showed the following error.
    <b>[J2EE Engine]: the selected server node does not run  in restricted load balancing mode, please configure it correctly so that the URL extention can be used</b>
    And ignoring it when i started debugging the application , the URL was formed like this :
    http://<host>:50000/@@@DEBUG@@@7672950/webdynpro/dispatcher
    /local/WDtest/WDtest?SAPtestId=1
    with the error :   The requested resource does not exist.
    Details: Go to main page of this application!
    Can anybody help me to fix the configuration.
    Regards,
    Ashish Shah

    Hi,
    To configure to the debugging mode... follow the steps:
    1. Select "SDM" from J2EE engine (To get this view navigate thru Window--> Show View --> J2EE Engine)
    2. Make a right click on "SDM" and choose "Enabling Debugging of Process"
    3. Now, Navigate to Run --> Debug --> Select your Project as "Webdynpro Application" and click "new" button
    4. Now give some name and Click BROWSE to select ur project and then click APPLY and DEBUG
    Or if u use 2004s, then u can do the settings in Portal itself...which gives u more clear information...  follow the link
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d0cb32c5-36a7-2910-2c9b-ba4a5bbdbb56">WebDynpro Java Debug Configurator</a>
    Hope it helps...
    Regards / Guru

  • Error while configuring  Webgate for simple mode authentication

    Trying to convert open mode authentication to simple mode. Followed the documentation.
    http://download.oracle.com/docs/cd/E12530_01/oam.1014/b32419/trnscrty.htm#BGBGEIFB
    Was able to get identity server and access server configured. As in...got no error. When trying to change to simple mode for Webgate getting the following error....
    Client authentication failed, please verify your WebGate ID.
    Command executed for one of the webgates is below....Any thoughts??
    ./start_configureWebGate -i /u01/app/oracle/product/10.1.4.2.2/OAM/webgate/access -t WebGate -R
    Please enter the Mode in which you want the Web Gate to run : 1(Open) 2(Simple) 3(Cert) : 2
    Please enter the Password for this Web Gate :
    Please note that the Global Access Protocol Pass phrase has to be the same across all Access Servers and Web Gates installed in Simple mode
    Please enter the Global Access Protocol Pass phrase :
    Preparing to generate certificate. This may take up to 60 seconds. Please wait.
    Generating a 1024 bit RSA private key
    ........................++++++
    .......................................++++++
    writing new private key to '/u01/app/oracle/product/10.1.4.2.2/OAM/webgate/access/oblix/config/simple/aaa_key.pem'
    writing RSA key
    Using configuration from /u01/app/oracle/product/10.1.4.2.2/OAM/webgate/access/oblix/tools/openssl/openssl_silent.cnf
    DEBUG[load_index]: unique_subject = "yes"
    Check that the request matches the signature
    Signature ok
    The Subject's Distinguished Name is as follows
    countryName :PRINTABLE:'US'
    stateOrProvinceName :PRINTABLE:'Some-State'
    localityName :PRINTABLE:'Locality Name'
    organizationName :PRINTABLE:'Some-Organization Pty Ltd'
    organizationalUnitName:PRINTABLE:'production'
    commonName :PRINTABLE:'hostName.domainName.com'
    emailAddress :IA5STRING:'[email protected]'
    Certificate is to be certified until Sep 29 18:20:01 2011 GMT (365 days)
    Write out database with 1 new entries
    Data Base Updated
    Client authentication failed, please verify your WebGate ID.

    Is the Access Server already in Simple Mode, and does the AccessGate definition in the Access System Console have "Simple" transport security mode set?
    Regards,
    Colin

  • Error while configuring database for foundation service on EPM 11.1.2.1

    Hi,
    I have installed the foundation service and the database is Oracle. Before I tried to configue database for it, I created a tablespace naming HYPFS in Oracle and also I created a user HYPFS whose default tablespace is HYPFS. I gave the user CONNECT and RESOURCE role, the privilege is also enough as SYSDBA.
    In the configue panal, I entered the sid as orcl, the username is HYPFS and password *********, but I clicked the next step ,there came out an error. When I read the relavent log, the error is as folllows:
    [2012-05-22T14:34:18.718-12:00] [EPMREG] [ERROR] [EPMREG-11073] [oracle.EPMREG.REG] [tid: 35] [ecid: 0000JTrYrcZFs1apxKc9yW1Fj45I00000N,0] execute SQL INSERT INTO HSS_COMPONENT_PROPERTY_VALUES(PROPERTY_VALUE, PROPERTY_NAME, COMPONENT_ID) VALUES(?, ?, ?) error。
    [2012-05-22T14:34:18.718-12:00] [EPMREG] [ERROR] [EPMREG-11099] [oracle.EPMREG.REG] [tid: 35] [ecid: 0000JTrYrcZFs1apxKc9yW1Fj45I00000N,0]
    java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist.
    Should these tables like HSS_* be created automatically? How comes out such kind of error? Does anyone have any idea? Thanks in advance.

    Hi,
    How are you creating the tablespace and user?
    Name of the Tablespace and User should be in Capslock otherwise it gives issues
    Is it through SQL Plus or through the Web Console?
    Login to SQL Plus and try to execute the following query. I am assuming that oracle is installed on the C drive. The path of data file is valid only if it is on C drive
    CREATE SMALLFILE TABLESPACE "HYPFS1" DATAFILE 'C:\app\Administrator\oradata\orcl\HYPFS1' SIZE 100M REUSE AUTOEXTEND ON NEXT 100M MAXSIZE 32767M LOGGING EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO DEFAULT NOCOMPRESS;After the tablespace is created provide with the following rights
    CREATE USER "HYPFS1" PROFILE "DEFAULT" IDENTIFIED BY "password" DEFAULT TABLESPACE "HYPFS1" TEMPORARY TABLESPACE "TEMP" ACCOUNT UNLOCK;
    GRANT UNLIMITED TABLESPACE TO "HYPFS1" WITH ADMIN OPTION;
    GRANT "CONNECT" TO "HYPFS1" WITH ADMIN OPTION;
    GRANT "DBA" TO "HYPFS1" WITH ADMIN OPTION;Then try to connect
    Database Type : Oracle's Driver(Thin)
    Server : localhost
    Port : 1521
    SID: orcl
    Username : Whatever username you have provided/HYPFS1
    Password : Password provided for the userand then try to connect.
    Thanks
    Saurabh
    Edited by: Saurabh on May 22, 2012 2:09 AM

Maybe you are looking for