Deciphering Cron log to try to determin system date change issue

Solaris 9 box, Sparc Sun V1280.
We had two events the past day or so where the system time of a server changed 3 hours forward and then changed back 3 hours later that day. We manually corrected the time after the first shift was noticed around 4pm.
Each time the time shifts took place, there were no logged in users and no root users at all during the shift. So, the assumption is that a script with root access did it.
However, I have yet to find any scripts that would do that yet.
The one place that I can see when the time changed is in the cron log.
It is a bit confusing looking at the log because I'm not exactly sure what I am seeing.
You can see when a command takes place with the CMD: entry, but what follows is not clear if it actually belongs to that command or is possibly from an entry above that was still running... It doesn't help that several of the entries take place at the same times, typically 00, 15,30 and 45 minutes after the hour.
I've changed that now, but only have the logs of when it happened to investigate with.
Of course, all parties involved say that they changed nothing that would cause this :-)
Below is a number of entries surrounding the inital time shift where the servers time moved forward 3 hours...
. > CMD: /usr/lib/sa/sa1
. > sys 20943 c Tue Oct 27 11:00:00 2009
. > CMD: /app/oraprod/admin/dba/scripts/check_concurrent_mgr.sh
. > oraprod 20944 c Tue Oct 27 11:00:00 2009
. > CMD: /usr/local/system/TOSCO/system-monitoring/filesysck.sh > /dev/null 2>&1
. > root 20945 c Tue Oct 27 11:00:00 2009
. < root 20945 c Tue Oct 27 11:00:21 2009
. < oraprod 20942 c Tue Oct 27 11:00:00 2009 rc=1
. < prodmgr 20941 c Tue Oct 27 11:00:00 2009
. < sys 20943 c Tue Oct 27 11:00:00 2009
. < oraprod 20944 c Tue Oct 27 11:00:01 2009
. > CMD: /usr/lib/sa/sa1
. > sys 29747 c Tue Oct 27 11:15:00 2009
. > CMD: /app/oraprod/admin/dba/scripts/check_concurrent_mgr.sh
. > oraprod 29748 c Tue Oct 27 11:15:00 2009
. > CMD: /usr/local/system/TOSCO/system-monitoring/filesysck.sh > /dev/null 2>&1
. > root 29749 c Tue Oct 27 11:15:00 2009
. < sys 29747 c Tue Oct 27 11:15:01 2009
. < oraprod 29748 c Tue Oct 27 11:15:01 2009
. < root 29749 c Tue Oct 27 *11:15:14* 2009
Note the time shift after this point...
. > CMD: /app/oraprod/admin/dba/scripts/check_workflow_mailer.sh
. > oraprod 3809 c Tue Oct 27 *15:06:32* 2009
. < oraprod 3809 c Tue Oct 27 15:06:32 2009 rc=1
. > CMD: /usr/local/system/TOSCO/system-monitoring/filesysck.sh > /dev/null 2>&1
. > root 4491 c Tue Oct 27 15:15:00 2009
. > CMD: /usr/lib/sa/sa1
. > sys 4492 c Tue Oct 27 15:15:00 2009
So, I'm trying to see if it is possible to know which (if any) entries might be the cause of the time shift. The entries appear to be mixed between the commands (CMD: lines) making it hard to know which actually belongs to which command.
I have actually looked at every script or function listed and don't see anything in them to cause this however.
This is a Solaris 9 box, Sparc Sun V1280.
It has been basically static for years and has 2 related servers that have not been effected. There are also three 3 identical servers used in test that are also uneffected. Each has ntpd which keeps them in sync except of course when the one box leaps ahead 3 hours or back 3 hours.
The time shifts happened both on the same day, once around 11:15am and again about 5:15pm
Server was rebooted the next day and has not done this since.

krelvinaz wrote:
Solaris 9 box, Sparc Sun V1280.
We had two events the past day or so where the system time of a server changed 3 hours forward and then changed back 3 hours later that day. We manually corrected the time after the first shift was noticed around 4pm.I don't understand. Did the time shift back on it own after 3 hours, or did you correct the time after you noticed the shift.
>
Each time the time shifts took place, there were no logged in users and no root users at all during the shift. So, the assumption is that a script with root access did it. That is possible. It is also possible that this is a hardware error. The clock on the motherboard can fail in ways that drive the clock to different points in time. It also gives you a way to test.
If you can afford the trouble it would cause, can you change the time to just before the first shift and see if it shifts on its own?
>
However, I have yet to find any scripts that would do that yet.
The one place that I can see when the time changed is in the cron log.
It is a bit confusing looking at the log because I'm not exactly sure what I am seeing.
You can see when a command takes place with the CMD: entry, but what follows is not clear if it actually belongs to that command or is possibly from an entry above that was still running... It doesn't help that several of the entries take place at the same times, typically 00, 15,30 and 45 minutes after the hour.Each job launch starts with two lines (that are very difficult to display on this forum, even in tags)
{code}> CMD: /this/is/the/job{code}
{code}>  <user> <PID> c <start time>{code}
There will be a matching line with a less-than sign and the same PID to mark when the job completes.
If it is the hardware clock, my experience tells me that this will get worse until the motherboard fails completely.   Hopefully this is a script and you can find it.
If nothing else, you might consider writing a stupid job monitor.  Just something in perl that will sleep 1 second, then check the time.  If it notices a large jump in time, it can do a quick 'ps' and write down the time and what's running.
Darren
Edited by: Darren_Dunham on Oct 29, 2009 1:57 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • System data change....

    Hi all,
    when I log in my XI server says "License expiration data:01-11-2008(in 9 days)
    I know that I have to change the system date, but I need to know procedure
    to be followed before changing system date.
    Pl. help me out.
    Regards,
    Pankaj.

    Hello Pankaj,
    This means that you need to apply for license and not change system date.Please apply for license.
    Of course changing system date will make this problem not re occur but then such system will not be supported by SAP.
    Regards.
    Ruchit.

  • MSI FM2-A85XA-G65 system date & time issue

    Hello everyone!
    I have a MSI FM2-A85XA-G65 motherboard with an AMD 5800K processor. The date and time won't save in the bios. Sometimes it will sometimes it won't. The system will save for a few reboots, Then when I again enter the bios a different date and time will appear.
    I have reset the cmos and have removed the battery with the same results. Other than that the board appears fine. Any help or ideas?

    It appears to be a Linux UTC UEFI coordinated thing. So I think all is well. The correct time is on the desktop after all and all other settings remain.

  • System.Data.SqlClient.SqlException (0x80131904): SQL Server detected a logical consistency-based I/O error: incorrect checksum

    Hello,
    I am migrating client's database to my hosted environment, the client runs
    SQL Server 2008 R2, and we run SQL Server 2014.
    I am stuck on restoring one log file, which left below error message when I restore it:
    Restoring files
      DBFile_20150401030954.trn
    Error Message: System.Data.SqlClient.SqlException (0x80131904): SQL Server detec
    ted a logical consistency-based I/O error: incorrect checksum (expected: 0x512cb
    ec3; actual: 0x512dbec3). It occurred during a read of page (1:827731)
    in databa
    se ID 49 at offset 0x000001942a6000 in file 'F:\MSSQL12.INSTANCE9\MSSQL\Data\Ody
    sseyTSIAKL_Data.mdf'.  Additional messages in the SQL Server error log or system
     event log may provide more detail. This is a severe error condition that threat
    ens database integrity and must be corrected immediately. Complete a full databa
    se consistency check (DBCC CHECKDB). This error can be caused by many factors; f
    or more information, see SQL Server Books Online.
    RESTORE LOG is terminating abnormally.
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolea
    n breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception
    , Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObj
    ect stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand
     cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler,
    TdsParserStateObject stateObj, Boolean& dataReady)
       at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
       at System.Data.SqlClient.SqlDataReader.get_MetaData()
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, Run
    Behavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBe
    havior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 time
    out, Task& task, Boolean asyncWrite, SqlDataReader ds)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehav
    ior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletio
    nSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehav
    ior, RunBehavior runBehavior, Boolean returnStream, String method)
       at System.Data.SqlClient.SqlCommand.ExecuteScalar()
       at OnBoardingTrnRestore.FileRestorer.FileIsRestored(SqlConnection connection,
     String sourceBackupFileName, String sourceDatabaseName, String destinationDatab
    aseName, String databaseName, String strFileName) in c:\Dev\WiseCloud\OnBoarding
    TrnRestore\OnBoardingTrnRestore\FileRestorer.cs:line 223
    ClientConnectionId:6f583f98-9c23-4936-af45-0d7e9a9949ea
    Finished
    I have run restore filelistonly and verifyonly in both client and my box, and both worked well:
    XXX_Data D:\Program Files (x86)\XXX\Data\YYY_Data.mdf
    restore filelistonly:
    D PRIMARY
    70922469376 35184372080640
    1 0
    0 00000000-0000-0000-0000-000000000000
    0 0
    0 512 1
    NULL 279441000014839500242
    66CC6D17-575C-41E5-BB58-3FB4D33E288C
    0 1 NULL
    XXX_Log E:\Program Files (x86)\XXX\Log\YYY_Log.ldf
    L NULL
    31985762304 35184372080640
    2 0
    0 00000000-0000-0000-0000-000000000000
    0 0
    0 512 0
    NULL 0
    00000000-0000-0000-0000-000000000000 0
    1 NULL
    restore verifyonly:
    Attempting to restore this backup may encounter storage space problems. Subsequent messages will provide details.
    The path specified by "D:\Program Files (x86)\XXX\Data\YYY_Data.mdf" is not in a valid directory.
    Directory lookup for the file "E:\Program Files (x86)\XXX\Log\YYY_Log.ldf" failed with the operating system error 3(The system cannot find the path specified.).
    The backup set on file 1 is valid.
    Dbcc checkdb also confirmed there is no error in client sql server database.
    dbcc checkdb (XXX, NOINDEX) 
    Results as follows:
    DBCC results for 'XXX'.
    Warning: NO_INDEX option of checkdb being used. Checks on non-system indexes will be skipped.
    Service Broker Msg 9675, State 1: Message Types analyzed: 17.
    Service Broker Msg 9676, State 1: Service Contracts analyzed: 9.
    Service Broker Msg 9667, State 1: Services analyzed: 7.
    Service Broker Msg 9668, State 1: Service Queues analyzed: 7.
    Service Broker Msg 9669, State 1: Conversation Endpoints analyzed: 0.
    Service Broker Msg 9674, State 1: Conversation Groups analyzed: 0.
    Service Broker Msg 9670, State 1: Remote Service Bindings analyzed: 0.
    Service Broker Msg 9605, State 1: Conversation Priorities analyzed: 0.
    DBCC results for 'sys.sysrscols'.
    There are 23808 rows in 350 pages for object "sys.sysrscols".
    DBCC results for 'BMBoard'.
    There are 0 rows in 0 pages for object "BMBoard".
    DBCC results for 'CusOutturnHeader'.
    There are 0 rows in 0 pages for object "CusOutturnHeader".
    CHECKDB found 0 allocation errors and 0 consistency errors in database 'XXX'.
    DBCC execution completed. If DBCC printed error messages, contact your system administrator.
    We use ftp to transfer the log files from the another country to here, I confirmed the file's MD5(checksum) is same as the copy in client's environment, we have tried to upload the file a couple of times, same outcome.
    The full backup is fine, I have successfully restored a series log backups prior to this file.
    Has anyone seen this issue before? It is strange, all information indicates the file is good,but somehow it goes wrong.
    Below are the version details:
    Client: 
    MICROSOFT SQL SERVER 2008 R2 (SP2) - 10.50.4000.0 (X64) 
    My environment:
    Microsoft SQL Server 2014 - 12.0.2480.0 (X64) 
    Jan 28 2015 18:53:20 
    Copyright (c) Microsoft Corporation
    Enterprise Edition (64-bit) on Windows NT 6.3 <X64> (Build 9600: )
    Thanks,
    Albert

    Error Message: System.Data.SqlClient.SqlException (0x80131904): SQL Server detec
    ted a logical consistency-based I/O error: incorrect checksum (expected: 0x512cb
    ec3; actual: 0x512dbec3). It occurred during a read of page (1:827731)
    in databa
    se ID 49 at offset 0x000001942a6000 in file 'F:\MSSQL12.INSTANCE9\MSSQL\Data\Ody
    sseyTSIAKL_Data.mdf'.  Additional messages in the SQL Server error log or system
     event log may provide more detail. This is a severe error condition that threat
    ens database integrity and must be corrected immediately.
    Hi Albert,
    The above error message usually indicates that there is a problem with underlying storage system or the hardware or a driver that is in the path of the I/O request. You can encounter this error when there are inconsistencies in the file system or if the database
    file is damaged.
    Besides other suggestions, consider to use the
    SQLIOSim utility to find out if these errors can be reproduced outside of regular SQL Server I/O requests and change
    your databases to use the PAGE_VERIFY CHECKSUM option.
    Reference:
    http://support.microsoft.com/en-us/kb/2015756
    https://msdn.microsoft.com/en-us/library/aa337274.aspx?f=255&MSPPError=-2147217396
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Java setting system date

    Hi,
    How should i going to set the date to be display realtime?
    As the system date change it would update my displaydate too.
    Please help

    Use a thread or java.util.Timer*

  • CALL_FUNCTION_SINGLE_LOGIN_REJ- No authorization to log on as a Trusted System (L- RC=1 T-RC=1).

    Hi All,
    i have created a trusted connection(say system A_100 and B_100,---100 is a client) as per SAP note 128447 - Trusted/trusting systems
    I have all required authorisation i.e s_rfcacl,S_rfc ,s_rfc_tt.
    i am able to remote logon from system B_100 to system A_100 ,but issue in when i try to logon from system A_100 to system B_100.
    error is -
    No authorization to log on as a Trusted System (L- RC=1 T-RC=1).
    i can see run time error in system B_100 as with user SAPSYS and client 000(why it is showing this user and client )
    CALL_FUNCTION_SINGLE_LOGIN_REJ
    Details-
    Category               Installation Errors
    Runtime Errors         CALL_FUNCTION_SINGLE_LOGIN_REJ
    Date and Time          08.08.2014 09:07:04
    Short text
         No authorization to log on as a Trusted System (L-RC=1 T-RC=1).
    What happened?
         The current program had to be terminated because of an
         error when installing the R/3 System.
    What can you do?
         Note which actions and input led to the error.
         For further help in handling the problem, contact your SAP administrator
         You can use the ABAP dump analysis transaction ST22 to view and manage
         termination messages, in particular for long term reference.
    Error analysis
         An RFC call (Remote Function Call) was send with an invalid user ID
         "XXXX " or the caller system is not registered as a Trusted System in the
         target system.
    Information on where terminated
        Termination occurred in the ABAP program "SAPMSSY1" - in
         "REMOTE_FUNCTION_CALL".
        The main program was "SAPMSSY1 ".
        In the source code you have the termination point in line 113
        of the (Include) program "SAPMSSY1".
    Source Code Extract
    Line  SourceCde
       83   COMMUNICATION SEND ID convid BUFFER header.
       84   IF sy-subrc EQ 0.
       85     PERFORM (sy-xform) IN PROGRAM (sy-xprog).
       86   ELSE.
       87     MESSAGE a800.
       88   ENDIF.
       89 ENDFORM.                    "cpic_call
       90
       91 *&---------------------------------------------------------------------*
       92 *&      Form  remote_function_call
       93 *&---------------------------------------------------------------------*
       94 *       text
       95 *----------------------------------------------------------------------*
       96 *      -->VALUE      text
       97 *      -->(TYPE)     text
       98 *----------------------------------------------------------------------*
       99 FORM remote_function_call USING value(type).
      100   DATA rc             TYPE i VALUE 0.
      101   DATA: l_syxform     TYPE syxform,
      102         l_syxprog     TYPE syxprog,
      103         l_cbe         TYPE i.
      104
      105 * necessary variables for class based exceptions
      106   DATA: l_root        TYPE REF TO cx_root.
      107
      108   DO.
    109 *
    110 * with ID 'CLException' we determine, whether the caller is
    111 * class based excptions or not
    112 *
    >>>>     CALL 'RfcImport' ID 'Type'        FIELD type
    114                      ID 'SYXForm'     FIELD l_syxform
    115                      ID 'SYXProg'     FIELD l_syxprog
    116                      ID 'CLException' FIELD l_cbe.
    117
    118     IF l_syxprog = 'JAVA'.
    119       SYSTEM-CALL plugin
    120                   ID 'JAVA' VALUE 'FORW_JAVA'
    121                   ID 'RC'   VALUE RC.
    122 *   if there is no rollout on the JAVA side which
    123 *   rolls both, JAVA and ABAP, we return to the
    124 *   C-Stack and reach this point
    125
    126 *   in case there was an rollout, the ABAP-C stack is lost
    127 *   and we jump direkt to this point
    128
    129 *   here we trigger the rollout on this Abap side with
    130 *   the following statement
    131       SYSTEM-CALL plugin
    132                   ID 'JAVA' VALUE 'ROLL_OUT'
    I have also referred sap note-1627901 - Trusted RFC troubleshooting
    No luck.
    Do let me know if additional information is needed .
    Kind Regards,
    Sumit

    Hi Sumit
    1.  Is this both system Support pack level are same?
    2. As you said that you SAP_Basis 7.31 - support package level?
    3. Have you check the SAP note 128447 - Trusted/trusting systems they are given ABAP runtime correction  2021691 - CALL_FUNCTION_SINGLE_LOGIN_REJ and trusted RC=1
    4.
    one question -  why it is working in system B and not in system A.
    Its may be software bug for that they give ABAP runtime correction
    Regards
    Sriram

  • Error message 'Please log on to the SAP system' when selecting 'shop'

    In SRM when we click on 'shop' or 'Goods Receipt' we get the error 'ITS System Information 'Please log on to the SAP System' where it prompts user to log on again. However when user logs on it opens up the same screen again saying please log on to the sap system.
    This only happens when we shop using the External ITS (wgate), EBP works fine using the Internal ITS.
    Please can someone help.
    Kindest Regards
    Paul

    Hi
    <b>Please try this -></b>
    <b>Look using SRM transaction SITSPMON and RZ20, RZ21.</b>
    Also Please check <u>SAP OSS Note 517860</u>
    <b>-> For ITS,  You need to maintain the RFC connection in the connection type "T" i.e TCP/IP. Maintain in the Table - TWPURLSVR.
    Ensure that you have maintained correct entries in the TWPURLSVR table using SM30 transaction for the ITS Web path (http or https address path). Note you are passing port - 8001 in the address here. Incase you face problems, Please ask you BASIS person to help you out.
    -> Please ask you BASIS person to help you out for maintaining ITS settings. (Ensure IACOR service is running properly - ITS server is running), through the transaction SMICM
    -> What all logs appear in SLG1 and SM21 transactions after publishing all the Internet services.
    -> If you are using ITS 6.2,you need to do the IACOR settings for SRM on the ITS server.Also in SE80 mainatin the Site for SRM system.After this ,you can publish all the ITS services usig the report,W3_PUBLISH SERVICES.</b>
    <u>Related links -></u>
    Integrated ITS :Login Problem
    Re: ITS_CANT_LOAD_INCLUDE in BBPstart service
    Re: ITS_DEST_NOT_FOUND
    Re: ITS Configuration
    Re: ITS Template not found
    Do let me know.
    Regards
    - Atul

  • How to determine Default Table Logging (log data changes )

    Does anyone know how to view exactly what tables and related data fields have change logging enabled by default? I know that some of the standard reports will produce "edit reports" show who changed what field, when ,old and new values, etc, but I don't know how to determine where the data is retrieved from.
    For example: If I look in the ABAP Dictionary at table LFA1, technical settings, it shows that log data changes is not "checked" or enabled. But if I run the standard AR Master Data Change Report, I get output showing valid field changes.
    I have seen other threads that refer to SCU3 but I can't determine the above this from report.
    Any assistance would be greatly appreciated.

    Hi Arthur,
    As far as I am aware, these are 2 different things. 
    There is table logging which is at the table level & if activated (i.e. it's listed in table DD0LV, PROTOKOLL=X and the table logging parameter is set in the system profile/s).
    The second one is programatical logging for change documents when data is maintained though a program that has been written to include a log.  I'm not sure how to identify a complete lit of these though unfortunately.
    Hope that is of some assistance.

  • Broken screen, not able to log in, need to do system restore

    1. Pavilion dv6500 laptop with broken screen.
    2. Operating system: Vista
    3.Error message: "The User Profile Service service failed the logon. User profile cannot be loaded"
    4. Microsoft updates?
    I need to know (a) the key stokes required to carry out a system restore to a saved restore point and (b) the key strokes to carry out a hp system recovery without being able to see the screen.
    I need this to try to retrieve the data I have on a laptop with a broken screen and vga port. I have been using an HDMI cable to connect it to a monitor but recently, vista stopped allowing me to log into my user account (giving the error above). To fix this I would use safe mode to modify my registry but safe mode does not project through the HDMI port to the external screen.
    Therefore, I would like to know (a) the key strokes required to restore to a saved restore point and (b) the key strokes to carry out a hp system recovery without being able to see the screen or use the mouse.
    Thanks.

    Simplest solution to retrieve data under those circumstances to me would be to remove your HDD
    Plug it into another computer by eSata
    Then just copy whatever you wanted onto the other HDD.
    If my reply was helpful please click the "Kudos" star.
    If your problem is solved please click the "Accept as Solution" button

  • Project system : system status changes log?

    Dear PS experts,
    Kindly let me know where i can see the Project Definition ; system status changes done by users as & when required.
    CRTD to REL
    REL to TECO
    TECO to REL (cancel)
    so on
    I wud like when the project status - system status changed by user thru any log report?
    regards
    srihari

    Hi...
    why don't you try the following:
    in project builder CJ20N (project definition) use the I (informaton button) where the System/User status ism and then in the next screen use the menu Extras->Changed Documents ->All.
    Next screen press button history...
    (or even CN60 transaction)
    i hope it helps
    pan

  • Unable to log in to portal after system copy

    Good day
    I have copied my production portal system to a test system.  I am using an ECC Abap system as my user store.  The portal start successfully and I am able to access the Visual administrator.
    I am however unable to log on to the portal.  The error I get is "User authentication error".
    Below is an extract from the security log:
    #1.5#0011259C05FB0054000002F500001B9800043F56F6157AED#1195542635224#/System/Security/Authentication#sap.com/irj#com.sap.engine.services.security.authentication.logincontext#Guest#0##sapsep.sap.lonmin_SEP_32623050#Guest#af93b280973711dc980a0011259c05fb#SAPEngine_Application_Thread[impl:3]_35##0#0#Error#1#com.sap.engine.services.security.authentication.logincontext#Plain###LOGIN.FAILED
    User: N/A
    Authentication Stack: ticket
    Login Module                                                            Flag        Initialize  Login      Commit     Abort      Details
    com.sap.security.core.server.jaas.EvaluateTicketLoginModule             SUFFICIENT  ok          false      false      true      
    com.sap.security.core.server.jaas.CreateTicketLoginModule               SUFFICIENT  ok          false      false      true      
    com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   REQUISITE   ok          true       true       true      
    com.sap.security.core.server.jaas.CreateTicketLoginModule               REQUISITE   ok          true       exception  true       null#
    #1.5#0011259C05FB0054000002F700001B9800043F56F61580BC#1195542635240#/System/Security/Audit#sap.com/irj#com.sap.security.core.util.SecurityAudit#Guest#0##sapsep.sap.lonmin_SEP_32623050#Guest#af93b280973711dc980a0011259c05fb#SAPEngine_Application_Thread[impl:3]_35##0#0#Warning#1#com.sap.security.core.util.SecurityAudit#Plain###Guest     | LOGIN.ERROR     | null     |      | Login Method=[default], UserID=[oostw], IP Address=[172.27.2.137], Reason=[Access Denied.]#
    Please can someone assist.
    Thanks
    Wilhelm

    Hello!
    It looks like your system is configured for ticket authentication. As you did a system copy the SSO-ticket might not be working anymore. If this is the case you need fix the SSO or you need to re-configure your Portal (at least temporarily) to allow other authentication methods (like basic password authentication).
    You can configure the order of the authentication methods in VisualAdmin and set the 'levels' (Required/Sufficient/etc.) there as well.
    Hope this helps,
    Jörg

  • How system determine delivery date in sales order

    Hi, sap gurus
    I am new to sdn forum please help me regarding my question
    1) how the system will determine delivery date in sales order
    2) what are factors effects to conform sales order stock
    3) what is different between static check and damanic check in credit mgt
    Thanks and regards
    nishad

    hi,
    Reg question:1 - System determines the Requested Delivery Date based on the Scheduline assigned to the item category of the item in sales order.the schedule line in the order transfers the requirements trhu MRP (can be individual or collective) . If its ruch order , you configure the order type "Deliver Immediately".
    In Detail:
    The TOR depends on the Requirement Type (MMR), Requirement Class(MMR), Checking group(MMR) and the Sc line category (Line Item). For the TOR to happen u need Plant at line item, scheduline category markd for TOR, Requirement Class marked for TOR and Checking group in MMR (Availability check)
    What all stocks need to be checked during Availability check is controlled by using the checking rule.. for example for AV -02 Ind Requirements a checking rule will be assigned and this checking rule- and then what all stocks need to be considered to determine the delivery can be maintained here.
    Rgds
    Sai

  • BPC 10.1 - dump in unified model when I try to open System Reports

    Hi, we use BPC 10.1 unified and every time when try to use "System Reports" it dumps. I can select e.g. BPF Activity Report and Templates -> Template Verions -> Instances and finally "Display Report" but there is no result besides the endless loading screen. Is there a certain web Service that has to be activated first? Thx for any hint

    Hi Christian,
    Which connection type did you use in EPM Add-in? Please take a look at note 2002609 - RUBPC101N: EPM connection error message: No connection
    extension has been discovered for the ConnectionClass 'Firefly_BW' . It might resolve your issue.
    Best regards,
    Jingjing

  • Appraisals having error "Unable to lock action log, Please try again"

    Hi all,
    We have some appraisal issues wherein most of the appraisal docs under certain appraisers cannot be opened.  We are receiving error "Unable to lock action log, Please try again".  Would anyone have an idea where to look in order for us to fix this problem?

    Hi Maria,
    Are you able to resolve this issue ? If yes, can you share your findings and solution, please ? Thank you.
    Regards
    Kir Chern

  • Can't log-in to iCloud in System Preferences using Apple ID

    Hi,
    I've recently updated to iCloud and have now also recently got a new MacBook Pro Retina running Lion 10.7.4
    I'm trying to log in to iCloud through System Preferences but when I enter my Apple iD password - it won't accept it - the process just hangs.
    I can sign in to iCloud.com without any problem - I can also sign into iTunes and my Mac email without any problem either. I can log in using my Apple iD on my iPhone and iPad too with no problem.
    I had already verified my me/mac.com email address with iCloud before this.
    A possible related problem is that now the Mail program will not remember my mac.com email address settings (I have to re-enter all the details each time I open Mail - have swapped over to Thunderbird for now) and Safari won't remember any of my bookmarks when I quit the program.
    I have also tried resetting my Apple iD password and this made no difference to logging into iCloud.
    Anybody else having similar problems?
    Thanks
    John

    I do have the same problem, can't access to my iCloud account on my Mac, but have no problems accessing with my mobile devices and through internet.
    I get a message error: "password or user name not recognized"
    On the other hand, before this problem, iCalendar was working properly, but adressbook didn't sync.
    Lets see if we get soon this problem solved!

Maybe you are looking for

  • Itunes store wont go to the internet

    it keeps saying that itunes could not connect to the music store and its request has been denied

  • How to open multiple sql files in only one ssms instance

    how to open multiple sql files in only one ssms instance, I can't get anything to work that I find online..I hope you can help us.

  • Grapher doesn't import point sets??

    Howdy, I'm trying to import a CSV of points into Grapher as a point set. I go to the "Points" panel of the Point Set, where I see a button that says "Import...". I select my CSV file to import, but nothing happens. The file selection box closes and I

  • Missing Labels on XML forms

    All  I am unable to view any labels on the any of the custom XML forms or the SAP devlivered forms when I preview the forms on our dev system.  The fields are showing up but the labels are not    Anyone with any ideas on why this is happening? Thanks

  • JDBC Querying Null Values

    I'm using the JDBC Query Multiple Rows as XML to query an Oracle database. Many of the fields I'm querying are nullable and in fact some contain null values. I can't figure out why the JDBC component queries a null value as the string "null". I've tr