Jobs Credentials Problem

Hi All
I've installed Oracle 9.2.1 version (personal) on my local machine (Win xp proffessional)
I've created A database on which I can work,
I've created a user in the database name MARK(user and pass) and rolled him as a DBA.
Created a node whuch was created by the inteligent agent service,
Created an Administrator user on the OEM name MARK, and I gave him Credentials to te database, and the node. user is MARK.
In my machine, at the Local Security Settings, under User Rights Assignments I checked that the user MARK (which is declared at the ORA_DBA group, and this is the only user that logon to the machine) appears undet the Log on as a batch job.
I log on to the OEM as user MARK, and when I try to create an export job thrue the OEM, I get a failure message:
"VNI-2015 : The Node preferred credentials for the target node are either invalid
or do not have sufficient privileges to complete the operation.
On Windows platforms, the Node credentials specified for the Windows target
should have the "Logon as a batch job" privilege."
What do I miss here?
Thanks

Thanks Ugonic
You helped me a lot.
The bloody password of the user MARK in the windows user was the problem.
I canged it to be the same as I declared in the DB, and the OEM
Yesterday I spent the whole day to find the problem.
Thanks again.

Similar Messages

  • Background job scheduling problem

    Hai..Can anyone check the below program and correct it.
    I am unable to see the output in SP01 (SPOOL REQUEST)
    MY PROGRAM:-
    REPORT  zh_test4.
    TABLES : mara, TBTCO.
    DATA : BEGIN OF itab OCCURS 0,
          matnr LIKE mara-matnr,
          END OF itab.
    ****background data declarations
    data : job_name like TBTCO-JOBNAME.
    data : job_num like TBTCO-JOBCOUNT,
           rep like sy-repid.
    ***selection screen
    PARAMETERS : p_matnr LIKE mara-matnr default '1500-610'.
    SELECT matnr FROM mara INTO TABLE itab WHERE matnr EQ p_matnr.
    job_name = 'HARI'.
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
      DELANFREP              = ' '
      JOBGROUP               = ' '
        jobname                = job_name
      SDLSTRTDT              = NO_DATE
      SDLSTRTTM              = NO_TIME
    IMPORTING
       jobcount               = job_num
    EXCEPTIONS
       CANT_CREATE_JOB        = 1
       INVALID_JOB_DATA       = 2
       JOBNAME_MISSING        = 3
       OTHERS                 = 4
    IF sy-subrc <> 0.
    write :/ ' Job opening problem'.
    else.
    write :/ 'Job succesfully opened', sy-subrc.
    ENDIF.
    MOVE SY-UNAME TO TBTCO-AUTHCKNAM.
    rep = sy-repid.
    job_name = 'HARI'.
    CALL FUNCTION 'JOB_SUBMIT'
      EXPORTING
      ARCPARAMS                         =
        authcknam                         = SY-UNAME
        jobcount                          = job_num
        jobname                           = job_name
      LANGUAGE                          = SY-LANGU
      PRIPARAMS                         = ' '
       REPORT                            = 'ZH_TEST4'
      VARIANT                           = 'VAR'
    IMPORTING
      STEP_NUMBER                       =
    EXCEPTIONS
       BAD_PRIPARAMS                     = 1
       BAD_XPGFLAGS                      = 2
       INVALID_JOBDATA                   = 3
       JOBNAME_MISSING                   = 4
       JOB_NOTEX                         = 5
       JOB_SUBMIT_FAILED                 = 6
       LOCK_FAILED                       = 7
       PROGRAM_MISSING                   = 8
       PROG_ABAP_AND_EXTPG_SET           = 9
       OTHERS                            = 10
    IF sy-subrc <> 0.
    WRITE :/ 'JOB SUBMIT PROBLEM',
              job_name,
              job_num,
              rep,
              sy-subrc.
    else.
    write :/ 'Job succesfully submitted in background', sy-subrc.
    ENDIF.
    CALL FUNCTION 'JOB_CLOSE'
      EXPORTING
        jobcount                          = job_num
        jobname                           = job_name
      LASTSTRTDT                        = NO_DATE
      LASTSTRTTM                        = NO_TIME
      PRDDAYS                           = 0
      PRDHOURS                          = 0
      PRDMINS                           = 0
      PRDMONTHS                         = 0
      PRDWEEKS                          = 0
      PREDJOB_CHECKSTAT                 = ' '
      PRED_JOBCOUNT                     = ' '
      PRED_JOBNAME                      = ' '
      SDLSTRTDT                         = datum
      SDLSTRTTM                         = uzeit
      STARTDATE_RESTRICTION             = BTC_PROCESS_ALWAYS
       STRTIMMED                         = 'X'
      TARGETSYSTEM                      = ' '
      START_ON_WORKDAY_NOT_BEFORE       = SY-DATUM
      START_ON_WORKDAY_NR               = 0
      WORKDAY_COUNT_DIRECTION           = 0
      RECIPIENT_OBJ                     =
      TARGETSERVER                      = ' '
      DONT_RELEASE                      = ' '
      TARGETGROUP                       = ' '
    IMPORTING
      JOB_WAS_RELEASED                  = 'X'.
    EXCEPTIONS
       CANT_START_IMMEDIATE              = 1
       INVALID_STARTDATE                 = 2
       JOBNAME_MISSING                   = 3
       JOB_CLOSE_FAILED                  = 4
       JOB_NOSTEPS                       = 5
       JOB_NOTEX                         = 6
       LOCK_FAILED                       = 7
       INVALID_TARGET                    = 8
       OTHERS                            = 9
    IF sy-subrc <> 0.
    write :/ 'Unable to close the Job', rep, sy-subrc.
    else.
    write :/ 'Succesfully closed the job', sy-subrc.
    ENDIF.

    Here is an example, slightly different from your version.
    REPORT ztest.
    PARAMETERS: p_vbeln LIKE vbak-vbeln,
                p_bkrun NO-DISPLAY.
    DATA: ls_vbak LIKE vbak.
    DATA: v_answer,
          v_jobcount LIKE tbtcjob-jobcount.
      IF p_bkrun IS INITIAL.
    *-- not background processing
        CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
             EXPORTING
                  textline1      = 'This may time out.'
                  textline2      = 'Do you want to run in background?'
                  titel          = 'Warning!!!'
                  cancel_display = space
             IMPORTING
                  answer         = v_answer.
        IF v_answer = 'J'.
    *-- run in the background
          CALL FUNCTION 'JOB_OPEN'
               EXPORTING
                    jobname          = 'ZTEST'
               IMPORTING
                    jobcount         = v_jobcount
               EXCEPTIONS
                    cant_create_job  = 1
                    invalid_job_data = 2
                    jobname_missing  = 3
                    OTHERS           = 4.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE 'E' NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            EXIT.
          ENDIF.
    *-- submit the program in the background
          SUBMIT ztest
            WITH p_bkrun = 'X'
            WITH p_vbeln = p_vbeln
            USER sy-uname
            VIA JOB 'ZTEST' NUMBER v_jobcount AND RETURN.
    *-- close the job
          CALL FUNCTION 'JOB_CLOSE'
               EXPORTING
                    jobcount             = v_jobcount
                    jobname              = 'ZTEST'
                    strtimmed            = 'X'
               EXCEPTIONS
                    cant_start_immediate = 1
                    invalid_startdate    = 2
                    jobname_missing      = 3
                    job_close_failed     = 4
                    job_nosteps          = 5
                    job_notex            = 6
                    lock_failed          = 7
                    OTHERS               = 8.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE 'W' NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
          EXIT.
        ELSE.
          CLEAR v_answer.
        ENDIF.
      ENDIF.
      CHECK v_answer IS INITIAL.
      SELECT SINGLE * FROM vbak
                      INTO ls_vbak
                     WHERE vbeln = p_vbeln.
      IF sy-subrc <> 0.
        WRITE:/ 'Invalid Order Id.'.
      ENDIF.
    END-OF-SELECTION.
      CHECK v_answer IS INITIAL.
      IF p_bkrun IS INITIAL.
        WRITE:/ 'Here is the result running the program in foreground.'.
      ELSE.
        WRITE:/ 'Here is the result running the program in background.'.
      ENDIF.
      WRITE:/ ls_vbak-vbeln,
              ls_vbak-vkorg.

  • Enterprise Manager Host Credentials Problem on Windows Vista

    I have similar problem as discribed here before, but the difference is, that I am using Windows Vista and I have tried "Log as a batch job" and "Log as a service" privilleges. It does not help. I have Oracle Personal Edition 10.2.0.3 on Windows Vista. May there be some other security issues on Vista? The error message is not "Wrong password for user" but simply "Error" with no explanation. In addition to that, windows displayes error window which says "Oracle Enterprise Manager executable has stopped working" and there comes another window with detiled information like that:
    Files that help describe the problem:
    C:\ProgramData\Microsoft\Windows\WER\ReportQueue\Report1a37c9af\WERBBCB.tmp.version.txt
    C:\ProgramData\Microsoft\Windows\WER\ReportQueue\Report1a37c9af\WERBBCC.tmp.appcompat.txt
    C:\ProgramData\Microsoft\Windows\WER\ReportQueue\Report1a37c9af\WERC993.tmp.mdmp
    Read our privacy statement:
    http://go.microsoft.com/fwlink/?linkid=50163&clcid=0x0409
    Can anyone help me please?
    Mati

    I have this exact same issue on Win server 2008. Not sure where to start.
    My backup jobs have started failing because the host credentials will not work.
    HELP!

  • "Perform whole database Recovery" Host Credentials problem

    Hello,
    I have minimal knowledge of the Oracle database system but currently I need to recover a Oracle 10G database on a Windows Server 2003 Standard edition.
    Im trying to use the Oracle Enterprise Manager. Im logged into the instance with SYS as SYSDBA. On the Perform Recovery page there are fields for "Host Credentials" Could someone explain to me what credentials EM is asking for. Whatever account I try to use EM gives a Validation Error stating
    Error - Connection to host as user test failed: ERROR: Wrong password for user
    Ive tried both local and Active Directory accounts that have full admin rights on the Host machine. With the AD account I tried using just the user name and allso domain\username. The page asks for "To perform recovery, supply operating system login credentials to access the target database." which sounds like the account has to have both access to the host and the database. Does that mean I have to create an external account in the instance? I even tried that but im not sure I configured it properly.

    Well found the solution. Atleast to this problem. Had to give the account "Log on as batch job" rights under Local Policy -> User Rights Assignment

  • Px4-300d copy job setup problem. Firmware version 4.1.108.32627

    Hello. 
    I have a wierd problem with copy job setup on my  px4-300d (4.1.108.32627) . I was able to set up one job, where I take a folder from my NAS and put it to a remote machine. That job ran fine. 
    When I go to setup a similar job but for a different folder, I have two possible outcomes: 
    1. When I go to chose the remote folder I see it fine and the job is setup fine as well. However when I run the job it throws an error. And in the log I see that instead of going to the folder I setup like "\\remoteserver\backupfolder" it's going to "\\remoteserver\u_myremoteserverusername\backupfolder" , which is obviously not there. 
    2. I can see my remote server, but I don't see my shares on it. I don't get no "Access denied" error or anything - I simply don't see any shares on that particular server. I do see shares on other servers, which use the same credentials. In addition the job that I was able to set up previously stops working. 
    Then when I reboot, the first job (the one setup successfully) may or may not properly run, yet I still cannot set up the second job. 
    I did check permissions and all the stuff that you would regularly check (connectivity, ports etc). Seems to me the script that is being generated from the UI is a bit too smart and is in fact outsmarting the NAs itself. 
    I also suspect that the fact that I could set up the first job and not the second is that the second job goes to a subfolder of a shared folder. Or that the shared folder's name starts with an underscore "_" . But these are just my guesses - I cannot verify this yet. 
    Any ideas how to fix this or how to bypass the problem? 
    Thanks. 

    Hello fimine
    I recommend double checking that the remote server's folders that are not being seen by the px4 are infact shared from that remote machine.  If they are not, copy jobs will have problems accessing the folders.
    I also recommend trying to use the remote machine's ip address for now to see if there is any change in behavior.
    If the issue does not happen when using the ip address, it my be an issue with how your network's DNS is setup.
    LenovoEMC Contact Information is region specific. Please select the correct link then access the Contact Us at the top right:
    US and Canada: https://lenovo-na-en.custhelp.com/
    Latin America and Mexico: https://lenovo-la-es.custhelp.com/
    EU: https://lenovo-eu-en.custhelp.com/
    India/Asia Pacific: https://lenovo-ap-en.custhelp.com/
    http://support.lenovoemc.com/

  • Job Cancelled Problem

    Hi Masters,
    In SM37 I seen that 3 jobs were cancelled.
    Pls see below:
    ======
    Job started
    Step 001 started (program RSSTAT1, variant &0000000002410, user name ALEREMOTE)
    Log:Programm RSSTAT1; Request REQU_3ZAF2Q2IY0EE5RZCTYPE2FCAT; Status ; Action Start
    Deleting/reconstructing indexes for InfoCube ZSRVPUR01 is not permitted
    Deleting/reconstructing indexes for InfoCube ZSRVPUR01 is not permitted
    Log:Programm RSSTAT1; Request REQU_3ZAF2Q2IY0EE5RZCTYPE2FCAT; Status @08@; Action Callback
    Report RSSTAT1 completed with errors
    Job cancelled after system exception ERROR_MESSAGE
    How to investigate cancelled jobs under ALEREMOTE? How can i know this cancelled Job's request is assigned for what task.?
    How to rerun a cancelled job? Pls tell steps.
    Please suggest me.
    Thanks,
    BW26.

    Hi,
    it looks like you have an authority problem with aleremote. But anyway, did you check the syslog (sm21) or the dump overview (st22)? Are there any problems logged for the run time of the job?
    regards
    Siggi
    PS: Have look here it might be of some help for you! /people/siegfried.szameitat/blog/2005/07/28/data-load-errors--basic-checks
    Message was edited by: Siegfried Szameitat

  • JOB Scheduling problem

    Hi All,
    My problem is the next:
    I would like to call two functions, in one function module, but I cannot schedule the second job after the first. I wrote the code, use the parameter PREDJOB_CHECKSTAT of JOB_CLOSE, but when the mother function called two jobs started immediately and paralell. What is worng in the following code?
    Thanks /and points :)/ for your help!
    Tamas
          L_JOBNAME = 'REQUEST_COPY'.
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              JOBNAME  = L_JOBNAME
            IMPORTING
              JOBCOUNT = L_JOBCOUNT.
          SUBMIT RSSEM_REQUEST_COPY
                       WITH RNR = I_RNR
                       WITH S_CUBE = LS_CUBES-SOURCE_CUBE
                       WITH T_CUBE = LS_CUBES-TARGET_CUBE
                       USER SY-UNAME VIA JOB L_JOBNAME NUMBER L_JOBCOUNT
                       AND RETURN.
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              JOBCOUNT  = L_JOBCOUNT
              JOBNAME   = L_JOBNAME
              STRTIMMED = 'X'.
          L_JOBNAME2 = 'REQUEST_CLOSE'.
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              JOBNAME  = L_JOBNAME2
            IMPORTING
              JOBCOUNT = L_JOBCOUNT2.
         SUBMIT Z_REQUEST_CLOSE_ZSD_P25
                   USER SY-UNAME VIA JOB L_JOBNAME2 NUMBER L_JOBCOUNT2
                   AND RETURN.
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              JOBCOUNT  = L_JOBCOUNT2
              JOBNAME   = L_JOBNAME2
              STRTIMMED = 'X'
              PREDJOB_CHECKSTAT = 'X'
              PRED_JOBCOUNT = L_JOBCOUNT
              PRED_JOBNAME = L_JOBNAME.

    Hi Thomas,
    Thanks for all helps, I found the solution!
    Inserted a select from the Job Status Table into th second job definition.
    Thanks for the ideas!
    Tamás
    The finally code is the the following:
          L_JOBNAME = 'REQUEST_COPY'.
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              JOBNAME  = L_JOBNAME
            IMPORTING
              JOBCOUNT = L_JOBCOUNT.
          SUBMIT RSSEM_REQUEST_COPY
                       WITH RNR = I_RNR
                       WITH S_CUBE = LS_CUBES-SOURCE_CUBE
                       WITH T_CUBE = LS_CUBES-TARGET_CUBE
                       USER SY-UNAME VIA JOB L_JOBNAME NUMBER L_JOBCOUNT
                       AND RETURN.
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              JOBCOUNT  = L_JOBCOUNT
              JOBNAME   = L_JOBNAME
              STRTIMMED = 'X'.
          L_JOBNAME2 = 'REQUEST_CLOSE'.
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              JOBNAME  = L_JOBNAME2
            IMPORTING
              JOBCOUNT = L_JOBCOUNT2.
          DO.
            SELECT SINGLE STATUS FROM TBTCO INTO L_STATUS
              WHERE JOBNAME = L_JOBNAME
              AND JOBCOUNT = L_JOBCOUNT.
            IF L_STATUS = 'F'.
              EXIT.
            ELSE.
              WAIT UP TO 1 SECONDS.
            ENDIF.
          ENDDO.
          SUBMIT Z_REQUEST_CLOSE_ZSD_P25
                    USER SY-UNAME VIA JOB L_JOBNAME2 NUMBER L_JOBCOUNT2
                    AND RETURN.
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              JOBCOUNT          = L_JOBCOUNT2
              JOBNAME           = L_JOBNAME2
              STRTIMMED         = 'X'
              PREDJOB_CHECKSTAT = 'X'
              PRED_JOBCOUNT     = L_JOBCOUNT
              PRED_JOBNAME      = L_JOBNAME.

  • Background job scheduling problem in APO

    Hi fellow SDNers,
    i am going through this peculiar problem of background job scheduling:
    scenario is like , i have an CSV (excel file) in aplication server which would load data into the infosource, which i have scheduled to run in backhround (in infopackage) ,after event is triggered (option in scheduling tab of infopackage...THE SCHEDULING OPTIONS)
    now everything seems to be fine.. but the data is not getting loaded...?? could u lease help me out..how to load data from excel file (in background), after an event gets triggered.
    thanks in advance,
    Rohan

    hi Alexander,
    i am triggering the event from BP_EVENT_RAISE FM in APO  by passing the  event id... this would automaitically raise the event...just like sm64
    Thanks
    Rohan

  • Host credentials problem in Vista Basic

    Dear All,
    I am using Vista basic OS. I have installed Oracle 10g. I have to use import functionality to import the data. In order to use that in enterprise manager,It asks to enter Host credentials. I tried with DBA credentials, It gives invalid password error. I also tried to add ora_dba group,but unfortunately I cann't add in vista basic as it doesn't support adding Local security group snapin. So please help me how and where to add host credential in order to access import functionality in enterprise manager.
    Thanks in advance.
    Regards,
    Sangamesh

    Helllo,
    As you already know Vista basic and home premium not supported but you can give a try by going to
    First create a user with a password (hope you can do this vista basic)
    control panel --> adminstrative tools--> look for local security policy (if it exists in vista basic) --> local policies and search for user assignments--> log on as a batch job , add your new user and apply changes. Then use this new user as host credentials.
    Regards

  • Host Credentials problem

    I am trying to 'Export to Export file' some individual schemas. I will take this information to a test/development server and import it there to work on.
    When prompted for the Host Credentials I have problems. I am logged on as the Administrator of the domain and I am using these same credentials here only I get one of 2 different error messages.
    1) When I use the credentials of
    Username: Administrator
    Password: admin_password
    I get
    -- Examine and correct the following errors, then retry the operation:
    Error - ERROR: Failed to create command process
    2) When I use the credentials of
    Username: DOMAIN/Administrator
    Password: admin_password
    I get
    -- Examine and correct the following errors, then retry the operation:
    Error - ERROR: Wrong password for user
    This is on Windows 2003 server.
    Any suggestions would be apprecitated.

    Ok. Could you check if the DBConsole Service is started as a Domain User or as a Local User.
    My guess is that yoiu are facing the same problem as this thread. Check the solution to it. If it is not the same, then let me know.
    DBconsole (on Windows) issues after changing to run as domain user

  • Plz: Replication 9i Job Network Problem Hang

    Hi ,This problem is posted on this forum by other users
    but all of them remained unresponsed!
    I hope somebody will help me now:
    I have a hang problem in 9i
    We are using bidirectional Replication (Materialized View Replication)
    and when mview refresh group is being refreshed if there happens a network problem( on the VPN) then our refresh job seems to hang, it will never end (once we waited a week but nothing happened) and the materialized views remain locked
    the session won't be killed at all, the only way for us is to restart the database,
    I hope there is a better way or some settings to prevent this.
    somebody help me please

    Personally, I've never seen this behavior. If other reports of the same problem in the forum haven't been answered, it's likely because none of the folks that answer questions here have seen this behavior elsewhere.
    Have you logged a TAR in Metalink? It certainly sounds like a bug. Have you tried upgrading to the latest patchset?
    Justin

  • TrustServices Credentials problem

    Hi,
    I installed the Adobe Document Services by importing the ADSSAPOFF16_0-20000262.SCA file into my SP16 installation. After a few hickups which needed MSSQL Server parameters to be changed the Software Deployment Manager imported all the components in the Software Component Archive.
    So now I need to install the TrustManagerServices\trust\credentials. However this directory has not been created as a result of the deployment of the SCA.
    I downloaded a credential file from SDN and tried to create the above directory in
    usr\sap\J2E\SYS\global\AdobeDocumentServices but to no avail. I get the below mentioned exception.
    name=com.adobe~DocumentServicesConfiguration,j2eeType=SAP_J2EEServiceRuntimePerNode,SAP_J2EEClusterNode=19311950,SAP_J2EECluster="" listCredentials [Ljava.lang.Object;@4a422 [Ljava.lang.String;@b3f3ca ]
    [EXCEPTION]
    {0}#1#javax.management.MBeanException:
    Exception invoking method listCredentials
         at com.sap.pj.jmx.introspect.DefaultMBeanInvoker.invoke(DefaultMBeanInvoker.java:80)
         at com.sap.pj.jmx.mbeaninfo.AdditionalInfoProviderMBean.invoke(AdditionalInfoProviderMBean.java:289)
         at com.sap.pj.jmx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:944)
    caused by
    Caused by:
    com.adobe.service.sap.configuration.ConfigurationException: An error occurred while indexing the credential files:
    com.adobe.service.sap.configuration.ConfigurationException: An error occurred while locating the document services trust manager:
    com.adobe.service.sap.configuration.ConfigurationException: Unable to locate the document services trust manager
         at com.adobe.service.sap.configuration.ConfigurationService.listCredentials(Unknown Source)
    and finally
    com.adobe.service.sap.configuration.ConfigurationException: An error occurred while indexing the credential files:
    com.adobe.service.sap.configuration.ConfigurationException: An error occurred while locating the document services trust manager:
    com.adobe.service.sap.configuration.ConfigurationException: Unable to locate the document services trust manager
         at com.adobe.service.sap.configuration.ConfigurationService.listCredentials(Unknown Source)
    So, my questions are...
    1. Is there a problem with my installation since the directory TrustManagerServices\trust\credentials did not automatically get created when I deployed ADSSAPOFF16_0-20000262.SCA.
    2. If there is no problem, or if there are some additional steps in the installation, any hints or suggestions will be helpful.
    Regards
    Sumit.

    Uma,
    Regarding your point number 1. - The folder TrustManagerService\trust\credentials has not been created when I import the Adobe Component Archive.
    I tried to register the password for the credentials(downloaded from SDN) from DocumentServicesConfiguration import from the Visual Admin. But like Wang said, I get three exceptions, and the Browse button for the certificate does not work. My starting post has these exceptions.
    I am afraid there are some post installation steps that need to be done for getting the Adobe Doc Services up and running. Check your folder
    usr\sap\J2E\SYS\global\AdobeDocumentServices. This should have a complex folder structure. I have only one folder in this directory, which has nothing to do with TrustService Certificate.
    Again, any help will be appreciated.
    Thank you for your help.
    Sumit.

  • [SOLVED]JDBC Dynamic credentials problem

    Hello everyone. I have been trying to implement Steve Muench example 14 about JDBC Dynamic Credentials on my own web app., I am using Jdeveloper 10.1.3.2 and JSF/ADF.
    The thing is that the JDBC dynamic credential works well but when I enter a non-existant username/password the login.jsp page sends me to the main.jsp page and in the table that I have placed there (in the main.jsp page) it shows "Access Denied". Is there any way to tell the app. to redirect the users to the login.jsp page if they try to acces other parts of the app. and they are not logged in???, or is it thay I am missing something from the Steve Muench's example???
    I have been cheking the "DynamicJDBCBindingFilter.java" code and, if I understand correctly ('cause I consider myself a newbe), the "super.doFilter(request, response,chain)" is suppoused to throw an exception if the authentication fails and the "catch" code then sends the user to the login.jsp page... but for some reason this doesn't work!!!
    Can anybody help me on this one please?
    Thanks.
    * By the way, no errors are thrown!
    Message was edited by:
    dragonov7

    Hi Frank, thanks for your response. That same idea crossed my mind but the thing is that the line "super.doFilter(request, response,chain);" is supouseded to throw an exception if it fails to do its job but for some reason it does not... I have placed a "System.out.printline("XXX");" line inmediatly after the "catch" statement to see if an exception is thrown but apparently it doesn't, so I can't set a flag if I don't know for sure if the process ended well (or wrong).
    I think I'll clear my mind for 1 hour and start all over again... maybe I am missing something...

  • Lync 2013 credentials problems on domain computers

    Hi folks,
    We are having trouble with Lync 2013 and credentials on our domain computers. We have been using Office 365 and Outlook for our email for a couple years and it has worked well enough, so recently we decided we wanted to start using Lync as well. We deployed
    the Office 365 Pro Plus suite available to us through our Office 365 subscription and signed in. The first sign-in went as expected. It asked for a username and password, asks if it should remember those credentials for next sign-in (yes), then connects and
    everything with Lync itself functioned normally. Subsequent sign-ins have not been normal.
    When a user restarts their computer and launches Lync it remembers their user name but not their password. Once they type their password in it asks if it should remember those credentials for next sign-in again, then connects. If a user exits and re-launches
    Lync without restarting it remembers their credentials and signs in properly, but then immediately a popup box appears saying that "Credentials are required" in order for Lync to get calendar information from Outlook ( http://i.imgur.com/hqcK426.png
    We know the problem is only happening with computers on our domain, but we don't know why. I tested things out on my home desktop and network by installing Office 365 Pro Plus, setting up Outlook, and then Lync. Both Outlook and Lync auto-discovered everything
    normally after getting my credentials and Lync behaves as expected every time the program launches. I then brought my personal laptop in and tried the same thing on my work network to see if it is network related, but Lync behaves normally on that computer
    as well.
    I originally worked on the problem at the Office 365 Community Forums ( http://community.office365.com/en-us/f/166/t/246014.aspx ), but after we isolated the problem to something with the domain computes I was told that they could not help me any further
    and was referred here. Does anyone have any ideas as to what is keeping Lync from behaving properly on our domain computers? We have a mix of Windows 7 x64 and Windows 8.1 x64 computers, all joined to the same domain and with the same basic suite of software.
    Thanks,
    ~Misharum
    PS: How do I verify my account? The outlook.com email address has been verified, but I don't see anywhere to do verification in my TechNet profile here.

    Yeah, the clients are fully patched. I put a support ticket in through Office 365 and the rep there was able to help me. It ended up being two separate problems.
    Lync was not remembering my credentials to automatically log me in between restarts:
    Installed the latest version of the Microsoft Online Services Sign-In Assistant.
    After signing signing into Lync another popup appeared asking for credentials again to access calendar information. (two steps to solve this one).
    In Active Directory Users and Computers, open up the properties of each affected user, go to the Attribute Editor tab, find and double click the proxyAddress attribute, and add in
    sip:[email protected] where the userid is the user's login name and domain.com is your domain. I'd imagine this is scriptable in PowerShell but I don't know enough to do it.
    Then on the computer that the users will be using, while the user is logged in, add a dword of NoDomainUser = 1 in the registry at HKCU\Software\Microsoft\Office\15.0\Common\Identity. The most sensible way to do this in my mind is with a group policy so
    it will get written to each user's registry under their profile when they log in.
    After doing all of this Lync remembered my credentials between restarts, signed me in automatically, and only gave that credentials popup on the first sign-in after applying both changes in step 2.

  • Archive data of using DART : Job lock problem in table TSP01

    Hi ,
    I'm facing problem while archiving from Production system to UNIX using DART.
    Using TC: FTW1A to data extract, once data has extracted, we need to do verifaction progess through TC. FTWE1(run a BG jobRTXWCHK4) and FTWD(BG Job RTXWCHK2).
    When I am running TC: FTWD(BG Job RTXWCHK2)to verify, it was holding an extensive lock on the TSP01 table for long period of time which blocking others processing with this table, So We need to terminate this job. For the time being solution is to run this job during weekends.But I want solution for this.
    Is any boby can help me in this problem?
    Regards,
    Nupur S Jaipuriyar

    Locking a row that does not exist can be difficult.
    On most database you can lock an entire table through "LOCK TABLE <table>", however this may be extreme. Potentially you could also insert an empty row into the table with the id that you want to lock, then you would have a write lock on the row until you commit the transaction.

Maybe you are looking for

  • RoboHelp 8 HTML - context sensitive chm file does not open?

    This works: RoboHelp_CSH.RH_ShowHelp(0, "C:\\RoboHelp\\!SSL!\\WebHelp\\XHelp_File.htm", RoboHelp_CSH.HH_HELP_CONTEXT, 2); This doesn't RoboHelp_CSH.RH_ShowHelp(0, "C:\\RoboHelp\\!SSL!\\Microsoft_HTML_Help\\XHelp_File.chm", RoboHelp_CSH.HH_HELP_CONTEX

  • Arabic characters disappear on e-mail

    Hello everybody I have a BB curve 8520 when i want to send an e-mail in arabic characters, the one to who i'm writting receives that e-mail in characters "????" i try all my best to rectify this problem but i don't know from where it comes! thank you

  • E70 - SMS don't show correct time of reception

    I own a E70 with 3.xx firmware. Unfortunately none of the firmware updates have so far solved a very simple issue: whenever I switch on my phone and receive an SMS that was sent to me while the E70 was switched off, the time associated with the SMS i

  • Workload Analysis - No results to show

    Hi Guys, Im trying to perform a workload analysis on an user using STAD/ST03N transaction My concern is that im unable to display any actual data from the current users logged on the system On the ST03N, under Expert Mode --> Instance Name --> Day --

  • MIGO _Low value asset _ error

    Hi I am testing the FI MM integration - Asset acquisition through PO. I created a PR and a PO for Laptop @ rs. 200000 At the time of posting goods receipt I am getting the following error: Total value per quantity should be more than 5000 in this cla