RA&R Management Reports displaying 1 day behind

Hi forum guru's.
I am having an issue with the Risk Violations Management view on RA&R (i.e. the default screen after you log into RA&R). On the management view on the right hand side, the date "Summary as of" is always a day behind.  I need this date to be current.
The daily management report background jobs run at 5:00am each day and the jobs complete successfully with no errors.  The server date and time is correct as well.  Has anbody experienced something similar?
We are on AC5.3, SP10.
Rgds,
Prevo.

Hello Gurus,
I am new to GRC, I have to create a background job for RA&R daily  Management Reports. I have created a background job by going to Risk Analysis>user level->Risk level>Critical>Report Format>Management summary>clicking on Background>setting the backgorund job for daily.
But the background is failing to display the report. I ran in the foreground and it works fine.
Please let me know if I am doing anything wrong in the steps..
Thank you!
Regard's,
SA

Similar Messages

  • While displaying date its displaying 1 Day  behind

    Hi All,
    I am saving date using ,
    <t:inputCalendar renderAsPopup="true" value="#{Bean.startDate}" />
    After saving I am retriving date & displaying as,
    <h:outputText value="#{beanVar.startDate}"/>
    But its displaying 1 day behind.
    Do i need to use converter while displaying
    Thanks.

    Hello Gurus,
    I am new to GRC, I have to create a background job for RA&R daily  Management Reports. I have created a background job by going to Risk Analysis>user level->Risk level>Critical>Report Format>Management summary>clicking on Background>setting the backgorund job for daily.
    But the background is failing to display the report. I ran in the foreground and it works fine.
    Please let me know if I am doing anything wrong in the steps..
    Thank you!
    Regard's,
    SA

  • Report displaying days of a month and projects

    Hi,
    I want to create a spreadsheet-like report displaying the days of a month as columns and the projects as rows. It is a report of the daily hours worked on the projects.
    It should look like this:
    Sat Sun Mon Tue ... Mon
    1. 2. 3. 4. ... 31.
    project1 3.5 1.0 2.5 etc.
    project2 5.0 2.5 etc.
    project3 1.0 4.5 etc.
    I got two tables (a little simplified), a table "day" with the columns
    id NUMBER(9)
    day DATE
    and a depending table "hours"
    id NUMBER(9)
    day_id NUMBER(9)
    project_id NUMBER(9)
    worked_hours NUMBER(6,2)
    I got it together (a little simplified) what I want for the current day:
    select
    '', to_char(sysdate, 'Day')
    from dual
    union all
    select
    '', to_char(sysdate, 'DD.MM.YYYY')
    from dual
    union all
    select
    h.project_id, h.worked_hours
    from day d, hours h
    where d.id = h.day_id
    Now the big question: How do I expand that to the full month as shown above?
    How do I display the whole month and the corresponding hours of a project every day?
    Anyone has a done something similar or has a hint?
    Any help is highly appreciated,
    regards,
    Roger

    I see others have already given answers the same... but hey, I spent a few minutes on it so I'm giving mine too. ;)
    SQL> ed
    Wrote file afiedt.buf
      1  with day as (select rownum as id, to_date('01/10/2007','dd/mm/yyyy')+rownum-1 as Day from dual connect by rownum <= 31)
      2      ,hours as (select rownum as id, x.rn as Day_id, y.rn as project_id, rownum as worked_hours
      3                 from (select rownum rn from dual connect by rownum <= 31) x
      4                     ,(select rownum rn from dual connect by rownum <= 5) y
      5                     )
      6  -- end of test data
      7  select h.project_id
      8        ,CAST(MAX(decode(to_char(d.day,'DD'),'01',h.worked_hours,NULL)) as varchar2(3)) as D01
      9        ,CAST(MAX(decode(to_char(d.day,'DD'),'02',h.worked_hours,NULL)) as varchar2(3)) as D02
    10        ,CAST(MAX(decode(to_char(d.day,'DD'),'03',h.worked_hours,NULL)) as varchar2(3)) as D03
    11        ,CAST(MAX(decode(to_char(d.day,'DD'),'04',h.worked_hours,NULL)) as varchar2(3)) as D04
    12        ,CAST(MAX(decode(to_char(d.day,'DD'),'05',h.worked_hours,NULL)) as varchar2(3)) as D05
    13        ,CAST(MAX(decode(to_char(d.day,'DD'),'06',h.worked_hours,NULL)) as varchar2(3)) as D06
    14        ,CAST(MAX(decode(to_char(d.day,'DD'),'07',h.worked_hours,NULL)) as varchar2(3)) as D07
    15        ,CAST(MAX(decode(to_char(d.day,'DD'),'08',h.worked_hours,NULL)) as varchar2(3)) as D08
    16        ,CAST(MAX(decode(to_char(d.day,'DD'),'09',h.worked_hours,NULL)) as varchar2(3)) as D09
    17        ,CAST(MAX(decode(to_char(d.day,'DD'),'10',h.worked_hours,NULL)) as varchar2(3)) as D10
    18        ,CAST(MAX(decode(to_char(d.day,'DD'),'11',h.worked_hours,NULL)) as varchar2(3)) as D11
    19        ,CAST(MAX(decode(to_char(d.day,'DD'),'12',h.worked_hours,NULL)) as varchar2(3)) as D12
    20        ,CAST(MAX(decode(to_char(d.day,'DD'),'13',h.worked_hours,NULL)) as varchar2(3)) as D13
    21        ,CAST(MAX(decode(to_char(d.day,'DD'),'14',h.worked_hours,NULL)) as varchar2(3)) as D14
    22        ,CAST(MAX(decode(to_char(d.day,'DD'),'15',h.worked_hours,NULL)) as varchar2(3)) as D15
    23        ,CAST(MAX(decode(to_char(d.day,'DD'),'16',h.worked_hours,NULL)) as varchar2(3)) as D16
    24        ,CAST(MAX(decode(to_char(d.day,'DD'),'17',h.worked_hours,NULL)) as varchar2(3)) as D17
    25        ,CAST(MAX(decode(to_char(d.day,'DD'),'18',h.worked_hours,NULL)) as varchar2(3)) as D18
    26        ,CAST(MAX(decode(to_char(d.day,'DD'),'19',h.worked_hours,NULL)) as varchar2(3)) as D19
    27        ,CAST(MAX(decode(to_char(d.day,'DD'),'20',h.worked_hours,NULL)) as varchar2(3)) as D20
    28        ,CAST(MAX(decode(to_char(d.day,'DD'),'21',h.worked_hours,NULL)) as varchar2(3)) as D21
    29        ,CAST(MAX(decode(to_char(d.day,'DD'),'22',h.worked_hours,NULL)) as varchar2(3)) as D22
    30        ,CAST(MAX(decode(to_char(d.day,'DD'),'23',h.worked_hours,NULL)) as varchar2(3)) as D23
    31        ,CAST(MAX(decode(to_char(d.day,'DD'),'24',h.worked_hours,NULL)) as varchar2(3)) as D24
    32        ,CAST(MAX(decode(to_char(d.day,'DD'),'25',h.worked_hours,NULL)) as varchar2(3)) as D25
    33        ,CAST(MAX(decode(to_char(d.day,'DD'),'26',h.worked_hours,NULL)) as varchar2(3)) as D26
    34        ,CAST(MAX(decode(to_char(d.day,'DD'),'27',h.worked_hours,NULL)) as varchar2(3)) as D27
    35        ,CAST(MAX(decode(to_char(d.day,'DD'),'28',h.worked_hours,NULL)) as varchar2(3)) as D28
    36        ,CAST(MAX(decode(to_char(d.day,'DD'),'29',h.worked_hours,NULL)) as varchar2(3)) as D29
    37        ,CAST(MAX(decode(to_char(d.day,'DD'),'30',h.worked_hours,NULL)) as varchar2(3)) as D30
    38        ,CAST(MAX(decode(to_char(d.day,'DD'),'31',h.worked_hours,NULL)) as varchar2(3)) as D31
    39  from day d, hours h
    40  where h.day_id = d.id
    41  group by h.project_id
    42* order by h.project_id
    SQL> /
    PROJECT_ID D01 D02 D03 D04 D05 D06 D07 D08 D09 D10 D11 D12 D13 D14 D15 D16 D17 D18 D19 D20 D21 D22 D23 D24 D25 D26 D27 D28 D29 D30 D31
             1 1   6   11  16  21  26  31  36  41  46  51  56  61  66  71  76  81  86  91  96  101 106 111 116 121 126 131 136 141 146 151
             2 2   7   12  17  22  27  32  37  42  47  52  57  62  67  72  77  82  87  92  97  102 107 112 117 122 127 132 137 142 147 152
             3 3   8   13  18  23  28  33  38  43  48  53  58  63  68  73  78  83  88  93  98  103 108 113 118 123 128 133 138 143 148 153
             4 4   9   14  19  24  29  34  39  44  49  54  59  64  69  74  79  84  89  94  99  104 109 114 119 124 129 134 139 144 149 154
             5 5   10  15  20  25  30  35  40  45  50  55  60  65  70  75  80  85  90  95  100 105 110 115 120 125 130 135 140 145 150 155
    SQL>

  • Date Parameters displaying a day prior on Report Layout

    Hi,
    I am currently creating some reports using Oracle BI Publisher 11.1.1.6.2.
    The reports in question have a Start Date from Parameter and an End Date To Parameter.
    I also display the values for the parameters in the Report Layout which appears to display the values entered correctly in the Interactive Viewer, but looking at other outputs (i.e. HTML, Excel, PDF etc.) the value in the parameter field in the layout always displays a day prior to what has been entered.
    Has anyone come across this?
    Thanks in advance.

    This is an example of code:
    <?xdofx:substr(season_start_date,6,2)?>
    This would take the month out of the repository variable: season_start_date, in the format MM.
    (MM is on the 6th position, with a length of 2.)

  • How to display only Day value instead of DATE in Bex Report

    Hi Experts,
    We have a Month to date Report, in this report we need to display only day value instead of DATE value,
    Like
    if Date is 14.05.2010 we need to show only  14
    Regards,
    Chandra

    Hi ,
    Thanks for Quick Response
    we does have the option to create the char(calday or ...) value variable replacement with char (calday or ...) info object, we can  replace with Report r variable value only not with info object.
    i hope we can replace the with info object only with formula variable with replacement.
    My BEx Report is Designed like
    Columns
    0Calday
    Rows
    Plant
    Keyfigures
    Actual
    Plan
    Report output Looks like month to date
    0CALDAY            01.06.2010   02.06.2010  03.06.2010
    P1  ACTUAL            10                     8                    4
    P1  PLAN                 15                     6                    2
    P2  ACTUAL              5                   10                     7
    P2  PLAN                  4                      8                    3
    Report should be
    0CALDAY            1    2     3
    P1  ACTUAL      10     8      4
    P1  PLAN           15     6     2
    P2  ACTUAL        5    10    7
    P2  PLAN            4      8     3
    please let me know how can i achive this
    Regards
    Chandra

  • GRC 5.3 - Management Report Error: Cannot assign an empty string to host..

    Good day Kiran Kandepalli and Others.
    I have successfully executed the background jobs -
    Full User, Role, Profile Synchronization & a
    Full Batch Risk Analysis
    When I run the Management Reports I receive the following error -
    Error while executing the Job:Cannot assign an empty string to host variable 10.
    Has anybody had this error message before?
    When I check table VIRSA_CC_PRMVL, variable 10 is set to No in Nullable collumn.

    Hi Sahad,
    Thanks for your response.  I have checked the usr02 table and logs and do not see any empty fields or strings.  This process worked for 5.2 but fails in 5.3.  Here is the excerpt from the log for the Management Report run.  It seems to fail consistenly at a certain point.  If I knew what the batch job was looking for in host variable 10 I might be able to resolve the problem.  It seems to fail when it starts to report on users.
    Thanks.
    Dan.
    INFO: -
    Scheduling Job =>935----
    Jan 23, 2009 8:04:16 AM com.virsa.cc.xsys.bg.BgJob run
    INFO: --- Starting Job ID:935 (RISK_ANALYSIS_BATCH) - tst
    Jan 23, 2009 8:04:16 AM com.virsa.cc.xsys.bg.BgJob setStatus
    INFO: Job ID: 935 Status: Running
    Jan 23, 2009 8:04:16 AM com.virsa.cc.xsys.bg.BgJob findJobHistory
    FINEST: --- @@@@@@@@@@@ Find the Job History -
    1
    Jan 23, 2009 8:04:16 AM com.virsa.cc.xsys.bg.BgJob updateJobHistory
    FINEST: --- @@@@@@@@@@@ Updating the Job History -
    1@@Msg is tst started :threadid: 0
    Jan 23, 2009 8:04:16 AM com.virsa.cc.xsys.bg.dao.BgJobHistoryDAO insert
    INFO: -
    Background Job History: job id=935, status=1, message=tst started :threadid: 0
    Jan 23, 2009 8:04:16 AM com.virsa.cc.xsys.bg.BatchRiskAnalysis performBatchSyncAndAnalysis
    INFO: --- Batch Sync/Analysis/Mgmt Report started ---
    Jan 23, 2009 8:04:16 AM com.virsa.cc.xsys.bg.BatchRiskAnalysis runBkgMgmReport
    INFO: --- Running the Background Management Report -
    Jan 23, 2009 8:04:39 AM com.virsa.cc.xsys.mgmbground.dao.MgmStats execute
    INFO: Start insert int cc_mgriskd all violations.... 1232726679108
    Jan 23, 2009 8:04:49 AM com.virsa.cc.xsys.bg.BatchRiskAnalysis runBkgMgmReport
    WARNING: Exception in Management Report Job: Cannot assign an empty string to host variable 10.
    com.sap.sql.log.OpenSQLException: Cannot assign an empty string to host variable 10.
         at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:85)
         at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:124)
         at com.sap.sql.types.VarcharResultColumn.setString(VarcharResultColumn.java:57)
         at com.sap.sql.jdbc.common.CommonPreparedStatement.setString(CommonPreparedStatement.java:511)
         at com.sap.engine.services.dbpool.wrappers.PreparedStatementWrapper.setString(PreparedStatementWrapper.java:355)
         at com.virsa.cc.xsys.mgmbground.dao.MgmStats.execute(MgmStats.java:314)
         at com.virsa.cc.xsys.bg.BatchRiskAnalysis.runBkgMgmReport(BatchRiskAnalysis.java:1182)
         at com.virsa.cc.xsys.bg.BatchRiskAnalysis.performBatchSyncAndAnalysis(BatchRiskAnalysis.java:1430)
         at com.virsa.cc.xsys.bg.BgJob.runJob(BgJob.java:402)
         at com.virsa.cc.xsys.bg.BgJob.run(BgJob.java:264)
         at com.virsa.cc.xsys.riskanalysis.AnalysisDaemonBgJob.scheduleJob(AnalysisDaemonBgJob.java:240)
         at com.virsa.cc.xsys.riskanalysis.AnalysisDaemonBgJob.start(AnalysisDaemonBgJob.java:80)
         at com.virsa.cc.comp.BgJobInvokerView.wdDoModifyView(BgJobInvokerView.java:436)
         at com.virsa.cc.comp.wdp.InternalBgJobInvokerView.wdDoModifyView(InternalBgJobInvokerView.java:1225)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doModifyView(DelegatingView.java:78)
         at com.sap.tc.webdynpro.progmodel.view.View.modifyView(View.java:337)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.doModifyView(ClientComponent.java:481)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doModifyView(WindowPhaseModel.java:551)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:148)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:321)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Jan 23, 2009 8:04:49 AM com.virsa.cc.xsys.bg.BgJob run
    WARNING: *** Job Exception: Cannot assign an empty string to host variable 10.
    com.sap.sql.log.OpenSQLException: Cannot assign an empty string to host variable 10.
         at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:85)
         at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:124)
         at com.sap.sql.types.VarcharResultColumn.setString(VarcharResultColumn.java:57)
         at com.sap.sql.jdbc.common.CommonPreparedStatement.setString(CommonPreparedStatement.java:511)
         at com.sap.engine.services.dbpool.wrappers.PreparedStatementWrapper.setString(PreparedStatementWrapper.java:355)
         at com.virsa.cc.xsys.mgmbground.dao.MgmStats.execute(MgmStats.java:314)
         at com.virsa.cc.xsys.bg.BatchRiskAnalysis.runBkgMgmReport(BatchRiskAnalysis.java:1182)
         at com.virsa.cc.xsys.bg.BatchRiskAnalysis.performBatchSyncAndAnalysis(BatchRiskAnalysis.java:1430)
         at com.virsa.cc.xsys.bg.BgJob.runJob(BgJob.java:402)
         at com.virsa.cc.xsys.bg.BgJob.run(BgJob.java:264)
         at com.virsa.cc.xsys.riskanalysis.AnalysisDaemonBgJob.scheduleJob(AnalysisDaemonBgJob.java:240)
         at com.virsa.cc.xsys.riskanalysis.AnalysisDaemonBgJob.start(AnalysisDaemonBgJob.java:80)
         at com.virsa.cc.comp.BgJobInvokerView.wdDoModifyView(BgJobInvokerView.java:436)
         at com.virsa.cc.comp.wdp.InternalBgJobInvokerView.wdDoModifyView(InternalBgJobInvokerView.java:1225)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doModifyView(DelegatingView.java:78)
         at com.sap.tc.webdynpro.progmodel.view.View.modifyView(View.java:337)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.doModifyView(ClientComponent.java:481)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doModifyView(WindowPhaseModel.java:551)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:148)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:321)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Jan 23, 2009 8:04:49 AM com.virsa.cc.xsys.bg.BgJob setStatus
    INFO: Job ID: 935 Status: Error
    Jan 23, 2009 8:04:49 AM com.virsa.cc.xsys.bg.BgJob updateJobHistory
    FINEST: --- @@@@@@@@@@@ Updating the Job History -
    2@@Msg is Error while executing the Job:Cannot assign an empty string to host variable 10.
    Jan 23, 2009 8:04:49 AM com.virsa.cc.xsys.bg.dao.BgJobHistoryDAO insert
    INFO: -
    Background Job History: job id=935, status=2, message=Error while executing the Job:Cannot assign an empty string to host variable 10.
    Jan 23, 2009 8:04:49 AM com.virsa.cc.xsys.riskanalysis.AnalysisDaemonBgJob scheduleJob
    INFO: -
    Complted Job =>935----

  • CC 5.1:Incorrect Management Report

    Hi All,
    I have the following 2 queries:
    1. I have created one user 2 days  ago in production system 
       and assigned SAP_ALL profile. There are 2 background
       jobs scheduled to run daily and those are:
        1.User/Role/Profile Synchronization (Incremental)
        2.User/Role/Profile/Critical Actions Batch Risk Analysis
           (Incremental) with Management Report option selected
       I have been monitoring these jobs daily and these job are running fine and are in Ready status.
    However much to my surprise, the number of violations have not been increased inspite of assigning SAP_ALL profile! Earlier, when I assigned SAP_ALL profile to any user on temporary basis, CC immediately increased the number of SOD violations to 2 or 3 times what already is available.
    FYI: when I am doing user analysis from Informer Tab,
    the user Id what I have created is properly shown. If I
    select "Critical Roles/Profiles" as  Report Type, its showing
    that this user is assigned SAP_ALL profile.However what
    I expect is that SOD violations should also increase in
    Informer Tab. Otherwise, the results shown by CC are not
    reliable.
    Kindly suggest me any work arounds.
    2.When we run these reports, in Informer tab, CC shows all
        SOD violations based upon certain criterion. But my
        question is: Is there any way by which we can determine
        like what changes have been made to what objects (Users
        Roles or Profles) during a particular period of time, lets
        say during last two days?
    Hope somebody would answer or suggest!
    Thanks and Regards,
    Faisal

    Is SAP_ALL set as a critical role/profile and if so are you deliberately excluding critical roles/profiles from standard reports via configuration?

  • Possible reasons for a repository manager not displayed under KM Content

    Hi,
    I developed a repository manager and deployed the par file Archive uploader.
    Most time after deployment, I can see immediately an instance of the repository manager under KM Content. However, sometimes, when I made some changes to the code, it doesn't appear under KM Content. The deployment log in SYS/global/config/cm/reports shows no error.
    I tried to find some log in System Administration - Monitor, but found nothing.
    So, could anyone tell me:
    1. What might be the reason for the problem that the repository manager cannot display under KM Content after deploying the par?
    2. Where can I find the log explaining why my repository manager cannot display?
    Thanks,
    Ray

    Hi Ray,
    Deploying a repository manager means a hot KM deployment, which isn't supported at all, see https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bb1f18be-0801-0010-ffa0-e3495f7401bc and SAP note 894884. After such a deployment, the KM is restarted, but you have some kind of "shadow KM" in memory, which leads for most things to an unpredictable behaviour.
    In contrast to the documents reffered to above, also the standard KM delivery from SAP still behaves in an uncontrolled way for many issues.
    That's why after a KM hot deployment, you should restart your server if you realize anything "unusual". A workaround is to debug your code and using the hot code replacement feature (which only works in some situations, but that's better than nothing...).
    Hope it helps
    Detlev

  • New event on Wiki Calendar always saved a day behind

    I just did a fresh installation of Leopard Server & updated to 10.5.6 .
    Group wiki, blog and calendar are displaying as expected. I noticed that whenever I created a new event, the event date will be saved a day behind the selected date in the Event dialog window. For example, if I want to create an event on 3rd Jan 2009, I would have to set it on 4th Jan 2009.
    My time zone is Asia/Kuala Lumpur and time server is time.asia.apple.com .
    Any ideas ?
    Message was edited by: badrul

    Ways around it :
    1. Create an event with a duration (at least 5 min). You can have it begin at 12:00am if you want to.
    2. Create an all day event which MUST begin on or after 08:00am . Anything before this will be marked in the previous day box (even though the date and time values are as the way you have entered). I tried creating an all day event beginning from 07:55am and it was marked in the calendar a day behind. So 08:00am is the magic number.
    Question : Is 08:00am regarded as a new day in iCal server ?

  • My messaging usage for 1 of 4 lines is 5 days behind the others.  Can anyone explain?

    I have 4 lines for our wireless account.  When I check usage, 3 of the lines are up to date, but the 4th is 5 days behind on message usage.  It seems like this has happened to others.  Any solutions?

    iMessages won't show up on your My Verizon usage reports since they go through the Apple servers, not Verizon's.

  • BADI for SAP Claims Management Reporting

    Does anyone has information in regards to the 2 BADI´s for SAP Claim Management Reporting.
    - Business Add-In: Data Change in 'Claim Overview' Report
      CLAIM_REPORT_ADD_1
    - Business Add-In: Data Change in 'Claim Hierarchy' Report
      CLAIM_REPORT_ADD_2
    How to implement and what benefits do these BADI´s provide ?
    Thanks

    Hi,
    This is what the documentation for the BADI says,
    1) Business Add-In: Data Change in 'Claim Overview' Report - CLAIM_REPORT_ADD_1
    Use
    With this enhancement you can change data in the claim report 'Claim Overview'.
    Do not change the key QMNUM in the transfer table pt_qmel.
    Requirements
    If you want to display more columns than those stipulated by SAP in the standard system in structure RCLAIM001 you must first add these additional columns to the structure RCLAIM001.
    2) Business Add-In: Data Change in 'Claim Hierarchy' Report - CLAIM_REPORT_ADD_2
    Use
    With this enhancement you can change data for the claim report 'Claim Hierarchy'.
    Do not change the key fields QMNUM, MANUM and OBJNR in the transfer table pt_qmel.
    Requirements
    If you want to display more columns than those stipulated by SAP in the standard system in structure RCLAIM002 you must first add these additional columns to the structure RCLAIM002.
    It would be better if you could get in touch with your ABAP guys to know about how to implement these BADI's
    Regards,
    Gokul

  • SAP Time management reports for Ukraine

    Hi All,
    can anybody send me the list of Time management reports available for ukraine.
    i have checked in other sites also, i am getting only standard reports, but i am not getting reports for ukraine. i have given ukraine country grouping also.
    regards
    Vani

    Hai..
    Personal Work Schedules (Report RPTPSH10)
    Daily Work Schedules (Report RPTDSH20)
    Attendance
    Attendance/Absence Data: Overview (Report RPTABS20)
    Attendance/Absence Data: Calendar View (Report RPTABS50)
    Attendance/Absence Data: Multiple Employee View (Report RPTABS60
    Attendance Check (Report RPTEAB00)
    Attendances/Absences Overview Graphic (Report RPTLEA40)
    Absence
    Attendance/Absence Data: Overview (Report RPTABS20)
    Attendance/Absence Data: Calendar View (Report RPTABS50)
    Attendance/Absence Data: Multiple Employee View (Report RPTABS60
    Attendances/Absences Overview Graphic (Report RPTLEA40)
    Time Accounts
    Time Leveling (Report RPTCMP00)
    The Time Statement (Report RPTEDT00)
    Cumulated Time Evaluation Results: Time Balances and Time Wage T
    Time Accounts (Report RPTDOW00)
    Displaying Absence Quota Information (Report RPTQTA10)
    Displaying Time Evaluation Messages (Report RPTERL00)

  • CC Management Reports background job- no results

    I am conducting testing in CC and as part of that I have run the the background job to update Management Reports. The reports were already populated for September. I made changes to users in October and have run the job to populate the report today 4th October. The job is showing that it has completed successfully but when I go to run the risk Violation report for October, 10/2007 is not appearing in the month/year field. Does anybody know why October values are not displaying?

    You need to run the Incremental Updates first, one at a time starting with Users and then roles & profiles.  Make sure that Users has completed before starting the Roles and profile jobs otherwise they can crash.
    When these increments have completed, start running the Risk Analsysis increments jobs again 1 by 1, that way if you have any issues you do dnot lose the whole batch run, only one element.
    Only after the risk analyses have completed do you start the Management Report job.
    Please note that some of these jobs could take over 24hrs to complete.
    Also it is best to log off anf on once the management report job has completed to see the updates.

  • Dates one day behind after java upgrade to 1.6.0_27

    I have upgraded from Java 1.5.0_06 to 1.6.0_27
    After the upgrade ,I saw that dates are a day behind.All dates that lie between November 6th to March 10th are correct but dates
    lying between March 10th to November 5th for any year are wrong.(one day behind)
    Is it something to do with DayLight saying.
    I am using GMT-5 Eastern Time(US & Canada) and Server is set to automatically adjust time coressponding to day light saving.
    I checked,I get the date correct from database and in the factory class also it is correct,in the servlet it is correct but my Viewclass which calls this servlet shows date one day behind.
    I am doing no conversion ,the date fetched from database is stored like
    java.sql.Date beginDate= resultSet.getDAte("BeginDate")
    Schedule.setBegindate(beginDate)
    In the Schedule Object ,the beginDAte is of type Date.
    I am adding all dates to a treeset.I do a printout just after setting,it is correct
    But in my view class ,its one day behind,no manipulation is done.Dont know why is the day incorrect.
    IS it because of Java version.
    Please help

    As I mentioned That
    My view class TestView code is some what like this
    public class TestView extends JFrame
    public TestView(URL url, AppletContext appletContext)
    this.appletContext = appletContext;
    SwingUtilities.invokeLater(new Runnable() {
    public void run()
    testCommand test= new GetDatesCommand();//call factory class which fetches result from database
    Object returnValue = TestUtils.callServlet(test);//calls the servlet .
    if( returnValue instanceof TreeSet )
    TreeSet testSet= (TreeSet)returnValue;
    TestView.setDate(testSet));
    I am calling this constructor of viewtest class from my LoginTestApplet
    public class LoginTEstApplet extends JApplet
    public LoginApplet()
    TimeZone.setDefault(TimeZone.getTimeZone("EST"));
    LoginTestActionperformed()
    new testView(getDocumentBase(), this.getAppletContext());
    As I mentioned the values of dates as fetched from database ,factory class and getDatesCommand class prints fine.Its just inside this class after the call to servlet ,it displays wrong date.
    I have an applet ,LoginTestApplet which is the entry point for my application.Inside the default constructor ,I am doing
    TimeZone.setDefault(TimeZone.getTimeZone("EST"));
    I have mentioned in my second post what results it shows for getDefaults.
    I know its very strange ,the dates gets one day behind immedately only in the view class not in the servlet or the factory class.
    Please let me know if I need to post some more data .

  • Management Report - Cannot assign an empty string to host variable 10

    We ran a Management Report for the first time after completing the User/Role/Profile Full Sync and the user/Role/Profile Batch Risk Analysis.  The job failed with the following error:
    Oct 16, 2008 12:13:29 PM com.virsa.cc.xsys.bg.BatchRiskAnalysis runBkgMgmReport
    WARNING: Exception in Management Report Job: Cannot assign an empty string to host variable 10.
    com.sap.sql.log.OpenSQLException: Cannot assign an empty string to host variable 10.
    We are on GRC 5.3 support pack 4.  Has anybody encountered this error? What does host variable 10 refer to?

    I checked our USOBT_C table and we have a lot of empty values. If this is allowed to be empty in SAP and this is the table that is uploaded into CC, why would all the fields in CC tables then be defined as NOT NULL?  We suspect that since we had uploaded USOBT_C under 5.2 and if this had been an issue before, it may have been corrected when we upgraded to 5.3 but then the old data is still in our system. Is there an easy way to get around or correct this?
    Thanks.

Maybe you are looking for

  • Testing function TEXT_CONVERT_XML_TO_SAP

    Hi, Function "TEXT_CONVERT_XML_TO_SAP" has status not released for customer therefore I cannot use it. I have copied the whole function group TRUX bat I still get the error en I try to test "Z_TEXT_CONVERT_XML_TO_SAP" . I have done the SQL trace but

  • Creating a "4 word phrase" out of selected answers (4 grids of 14 words.. 1 word out each grid)   ----[ Urgent ;) ]

    Okay this is rather simple and "should" be straight forward. i have a grid of 14 words (buttons or clickbox)      1. the user has to choose one of these words.      2. on clicking on it the smae word is shown in a dedicated area on the screen.      3

  • Locking All E-Business 12.1.3 application schemas

    All: I have a situation where an auditor has come in and we have promised to lock all the E-Business 12.1.3 app schema accounts (i.e.: AR, GL, AP, etc.). Last time I did this things did not work as expected. Is this supported? I know I can change the

  • Goods receipt - Tricky situation

    Hi, Could you please help me find a solution for this tricky situation. We have a contract in a different country (island) and we procure goods locally and ship it to the island and the shipment usually takes about 6 weeks. Also, we buy these goods t

  • Having Problems with Kernel Panics and an External Hard Drive

    I've been having Kernel Panics for a month now and have yet to resolve the issue. I know about Dr. Smokes guide to resolving them, but I'm working on a time-sensitive editing project in Final Cut Pro and therefore have not had time to fix my computer