Informer is not reflecting the SOD conflicts

Hi all
We are installing Access Control to a customer which have 2 phisicsl systems
For now we have connector to one phisical system (TST)
   1) We created a logical system which include for now one phisical system (TST) and will include the second phisical system in   a few week.
   2) we upload the rule files as per master data guideline
  3) we generated the rules against logical
  4) we run all the job (full sync) and do not see the results in the informer tab - the analyse is not done
      we see users - roles and profile but not the result of analisys
your help will be appreciate in order to solve this issue
Thanks for your support
Sagi

Hi Sagi,
1. Verify that your IGS is working (by not having a broken pie chart in the managenent views).
2. Verify that you have a connection with the backend in CCDebugger
3. Verify in Rule Architect >> Rules that the rules are generated against the logical system
4. Plan User, Role, Profle full sync Job
5. Plan a full bach risk analysis + managament job. Check that it finish OK. A R3 backend with standard rule set might take some hours to analyze
6. Re-logon to CC as to flush the cache
7. The Managment View should now be populated (if not, hire me )
Kind regards,
Vit

Similar Messages

  • Tree table is not reflecting the updated model data changes at the front end

    I have two tables ,
    1) Provider table(tree table)  2)member table
    I have implemented drag and drop functionality using jQuery UI on both tables.
    In my scenario when I drag a member from the member table and drop it on the Provider table and also when I delete an assigned member from the provider table I will update the data fetched from odata model and again I will call the method which binds the data to the provider table so that the table will reflect the changes.
    here is the code,
    on drop:
    $("#Provider tbody tr").droppable({
      drop: function(event){
           oController.AssignMember(oProviderId, oMemberId)
      }).disableSelection();
    Assign member function:   here am updating the model.
    AssignMember : function(oProviderId, oMemberId){
      var oModel = new sap.ui.model.odata.ODataModel("../../../services/provider.xsodata/", true);
      var oParameters = {};
      oParameters.PROVIDER_ID = oProviderId;
      oParameters.MEMBER_ID = oMemberId;
      oParameters.CREATED_ON = new Date();
      oModel.setHeaders({"content-type" : "application/json;charset=utf-8"});
      oModel.create( "/PROVIDERMEMBERS", oParameters, null, function() {
      var oController = sap.ui.controller("adsm.provider.member_assignment_view");
      oController.GetProviderData();
      },function(jqXHR) {
      var errorMessage = jqXHR.response.body;
      var jsondata = JSON.parse(errorMessage);
      sap.ui.commons.MessageBox.alert(jsondata.error.message.value);
    GetProviderData function: here i bind the data to the table
    GetProviderData: function(){
    var oModel = new sap.ui.model.odata.ODataModel("../../../services/provider.xsodata/", true);
    var Context = "/PROVIDERS?expand=ASSIGNEDMEMBERS&$select=NAME,ID,ASSIGNEDMEMBERS/NAME,ASSIGNEDMEMBERS/ID,ASSIGNEDMEMBERS/PROVIDER_ID";
      var oTable = sap.ui.getCore().byId("tblProviders");
      oModel.read(Context, null, null, true, onSuccess, onError);
      function onSuccess(oEventdata){
      var outputJson = {};
      var p = 0;
      var r = {};
      if (oEventdata) {
      r = oEventdata;
      try {
      if (oEventdata.d){
      r = oEventdata.d;
      } catch(e){
      //alert('oEventdata.d failed');
      try {
      if (oEventdata.d.results){
      r = oEventdata.d.results;
      } catch(e){
      //alert('oEventdata.d.results failed');
      try {
      if (oEventdata.results){
      r = oEventdata.results;
      } catch(e){
      //alert('oEventdata.results failed');
      $.each(r, function(i, j) {
      outputJson[p] = {};
      outputJson[p]["NAME"] = j.NAME;
      outputJson[p]["ID"] = j.ID;
      outputJson[p]["PROVIDER_ID"] = j.ID;
      outputJson[p]["DELETE"] = 0;
      var m = 0;
      if (j.ASSIGNEDMEMBERS.results.length > 0) {
      $.each(j.ASSIGNEDMEMBERS.results, function(a,b) {
      outputJson[p][m] = { NAME: b.NAME,
      ID : b.ID,
      PROVIDER_ID: b.PROVIDER_ID,
      DELETE: 1};
      m++;
      p++;
    var oModel = new sap.ui.model.json.JSONModel();
      oModel.setData(outputJson);
      oTable.setModel(oModel);
      function onError(oEvent){
      console.log("Error on Provider Members");
    oTable.bindRows({
      path:"/"
    Its working fine in chrome but in IE the model data gets updated but the table is not reflecting the changes at front end.Can anyone suggest me a possible solution to fix this?
    Please have a look at the attached screen shots.
    Best regards,
    Amala Suganya.

    Hi Amala,
    I think this will help you:
    Disabling Cache for CRUD/FI OData scenarios for a UI5 Application on Internet Explorer
    Kind regards,
    RW

  • Output error:the name of the package "greet" does not reflect the location of this file...

    output error: The name of package 'greet' does not reflect the location of this file. Please change the package definition's name inside this file, or move the file. C:\Documents and Settings\Igal\My Documents\meiran\greet\Greeter.as
    I keep on recieving this output error although my source path is set to C:\Documents and Settings\Igal\My Documents\meiran\greet.
    any suggestions why this happens?

    The classpaths you define in your Flash software tell the compiler where to look when it needs to find a class.  According to your as file, the very top line indicates the Greeter.as file should be at a location specified by the path...
    one-of-your-classpaths\com\example\quickstart\
    So if one of your classpaths is:  C:\Documents and Settings\Igal\My Documents\meiran\greet\
    and you placed the file in the greet folder, then in your AS document you should not have the "com\example\quickstart" and your import statement in the fla should not be using that (should just be... import Greeter;)

  • WEBDAV rules repository not reflecting the changes

    WEBDAV rules repository does not reflect the changes unless i restart the application server. i dont have a problem with file repository because i can change the file repository using the link from the BPEL console and the changes are reflected immediately from the very next instance. .
    But in case of WEBDAV repository, even if i change the rules , they dont get reflected in any of the further instances unless i restart the server.
    Please help on this one.

    Another observation is that the entire bpel process(with decisionservice on webdav repository) works even if the webdav server is shut down.
    The webdav server needs to be up only for the first instance of the bpel process. After that, even shutting down the webdav server does not effect any further instances and they all run smoothly.
    This shows that the decison service builds up some kind of cache on the first call of the decisionservice. Some way to destroy this cache everytime the webdav repository changes will solve the problem.
    Any help on this topic is highly appreciated.

  • TS1646 When I try to buy music, I get message saying that my credit card information does not match the bank records. My information, formatting are exactly the same as the bank. Help!

    When I try to buy music, I get message saying that my credit card information does not match the bank records. My information, formatting are exactly the same as the bank. Help!

    Look on one of your bank statements and be sure to enter the billing address exactly as it shows on the statement. Some folks forget where they actually get the statement. They put their home address in iTunes/Mac App Store and they actually get the statement at their place of employment or vice versa.

  • I purchased a Pixma Pro-100. My prints do not reflect the edited images from CS6/LR5.

    I just got a Canon Pixma Pro-100 printer. I'm running CS6 and LR5. My monitors are calibrated, my color space is Adobe RGB (1998). I want the Photoshop /LR to manage my color. I (believe) am using the correct profile for the Canon paper (Pro Luster). However, my prints do not reflect the edited versions I am viewing on my monitors. The colors are darker, dull, a bit on the reddish side, and not as vivid as what I am expecting. Is there anyone out there who can guide me to the proper way to set the up my printer and color space? I this is very confusing to me.

    You don't need any additional gadgets to set up your monitor(s) and the printer.  Mostly you will just frustrate yourself and waste a lot of ink and paper.  Stop wasting your time with them, too.
    You do need to get three things set carefully.  You need the brightness, the contrast and the grey-scale set right for the printer.
    Big point to remember you are dealing with two completely different types of color.  One is light and the other is dyes.  They will never match exactly except for maybe one or two colors at a time.  I generally shoot for flesh tones as that is what people notice mostly.
    Always check the details and never let the printer do any color managing.  All Canon printers I have worked with have a reddish bias.  You can not or at least it is very difficult to get rid of it.  Canon engineers seem to prefer a warm tone in their printers.
    I curently use three of the Canon Pro printers form the 9000, 9500 II amd the 100.  All are great printers.  But right now what you are seeing and what you are sending to the printer is different.  These need to match or you need to know what to adjust in PS to make them match.  Don't use LR to print, it isn't as good as PS and it will be different.  If you must, stick to either/or but not both.   I prefer PS.
    Always shoot RAW and use ACR to convert in either LR or PS but I always print from PS.
    Let me know how you get along.
    EOS 1Ds Mk III, EOS 1D Mk IV, EF 50mm f1.2 L, EF 24-70mm f2.8 L,
    EF 85mm f1.2 L II USM, EF 70-200mm f2.8 L IS II,
    Sigma 120-300mm f2.8 EX APO, Photoshop CS6, ACR 9, Lightroom 6

  • Not reflecting the new value of the AWvariable

    I am working with Jdeveloper and BI beans
    we are using Java Analytical workspace API for connecting and saving the user input as a Analytical workspace Variable
    by using fallowing code
    awConn.executeCommand("awvariable=value");
    here the problem is i can not made this assignment perminent in Analytical Workspace
    i.e after execution of the program i checked with AnallyticalworkSpace manager's worksheet it not reflecting the new value of the AWvariable. It is showing only old value.
    how can i do that assignment it from java api .
    any one can help me

    That other post looks different, though - the OP is now manipulating the model.The OPs statement of the problem was:
    Adding new data to the exitsting model causes the JList to display blank when I refresh the screen.
    The suggestion in the other posting was to change the model not the array and the tutorial has a working example of this.
    The OPs question was:
    When my action performed creates a new instance of the model everything works fine but is this how it should work?
    The answer to this is no, you don't need to change the model, just update the model.
    So if the OP read the other posting and read the tutorial they should have an answer to their problem.
    As you suggested there is no need to create a custom model. The example in the tutorial uses the default list model, if the OP read the tutorial they would know that.

  • IPone 6, iOs 8.1.2 when removing the phone from the charging does not reflect the increase in the percent charge level , by reconnecting displays correctly

    when removing the phone from the charging does not reflect the increase in the percent charge level , by reconnecting displays correctly

    Addendum
    Last night charging for around 3-4 hours only charged a dead phone by 55% then left it to charge overnight
    Today the battery dropped from 6:15 am full charge to 53% at 10:38 am at time of writing this with
    1 phone call out for 30 secs
    1 incoming missed call,
    Whatsapp fetched around 10 msgs
    Email fetched around 20 ermail from 4 accounts but not viewed yet on phone

  • Not reflecting the sales offices for top down manual planning hierarchy

    Hi Experts,
    Please help me on this issue.
    I hava an Hierarchy like from District to Offices
    for eg: for district-                'ZBHDEL' I have salesoffice like 100, 101, 102, 103,105.
    like wise for other district          'zbhyd' i have salesoffices like 200, 201, 202.
    I have created the Mannual layout with Hierachy datamodel with BPS characteristics, TOP-DOWN, AND enabled check entry.
    In the additional setting i have select All Possible combinations.
    District at Headerlevl, along with Product and Division
    and selected salesoffice at Leadcoloumn.
    My Planning levell and package contains : for sales office slected Hierarchy at planning level. 
    BRAND
    Base Unit
    Company code
    Country
    Currency
    Division
    Fiscal year/period
    Fiscal Year Variant
    PRODUCT
    SIZE
    Sales District
    Sales Office
    Segment
    Version   
    *The Prolem is when i input some plan for a district ZBHDEL from the other layout, WHEN I RUN THE sALES OFFICE hIERARCHY
    Mannual Layout its not reflecting the sales office where i have to plan for the salesoffices by seeing the values
    of planned District.
    where as for one district i can able to see the sales offices. even i have maintained the masterdata at Infoobject level.
    Can anybody please help me out.
    thanks
    Deenu
    Edited by: deenu prasad on Aug 4, 2010 7:07 AM

    Create hierarchy for sales district info-object in following way.
    Sales District         Text Node                          Level 1
    Sales Distirct         Characteristics Node         Level 2         
                                  value 1 = ZBHDEL
                                  value 2 = ZBHYD
    sales Office          Characteristics Node         Level 3
                                  values will be according to district (include diff sales offices for diff districts in level 2)
    restrict district to this hierarchy in planning level and plan according by both approaches (create 2 seperate layouts):
    Top down  - to plan at main node i.e. sales district
    bottom up - to plan at sub node  i.e. sales office

  • Condition information is not reflecting in tables CDHDR and CDPOS

    Hi,
    When a Purchase order condition information is changed or created, the changes are not reflecting in the table CDHDR and CDPOS.
    Please can someone suggest a solution .

    Hi Raj
    When there are any changes in the conditions, the overall difference will be reflected in field <b>EFFWR i.e Effective Value of Item.</b> Please check...
    Kind Regards
    Eswar

  • WSP deployment to multyiple fronend server in sharepoint 2013 not reflecting the updated solution

    Hi I have created a wsp package and deployed it to the multiple  front end server. It was working fine on initial deployment. However after doing some change in JS file, I update the solution (through PowerShell update solution command)  and found
    it's not reflecting in Browser . Even if i have checked the file in both front end are updated (in 15 hive).
    Thanks and Regards
    Er.Pradipta Nayak
    Visit my Blog
    Xchanging

    If the files are updating on the front end servers, but not showing changes in the browser then the problem is that the .JS files have been cached by the browser.  You need to clear the Browser cache after this kind of change before the change will
    be reflected in the browser.  You can manually clear the browser cache in IE using the developer toolbar [F12].
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Iview for a tcode not reflecting the fields completely.

    Hi All,
    I made an iview for a business partner in portal for its tcode.The tcode of Buisness partner is showing all  fields in GUI.But when i am viewing the Business partner using it transaction  iview it is showing properly except at a particular dropdown where it is showing only two fields out of three.One of the fields is getting missed out in the dropdown.
    Regards.
    Adity.

    Ya ....just want to make my question little clear.
    We have CRM 5.0 and EP 7.0.
    We have a dropdown in tcode BP(Business Partner) called relationship.This dropdown when clicked shows only two fields ie.list and heirarchy and not reflecting field 'network' in portal but reflecting in GUI
    The client and the user are correct.Am using SAP gui for HTML.
    Regards.
    Adity.

  • My account balance does not reflect the redeemed B...

    I redeemed two Bing Rewards Vouchers, and each worths $1.46 (total $2.92).  However, I do not see the amount reflected in my balance.  I have original balance of $9.92 which does not change at all after I redeem these vouchers.  Please help.  Thank you.

    SJC9468 wrote:
    I redeemed two Bing Rewards Vouchers, and each worths $1.46 (total $2.92).  However, I do not see the amount reflected in my balance.  I have original balance of $9.92 which does not change at all after I redeem these vouchers.  Please help.  Thank you.
    Hello
    Did the vouchers have an expiry date?
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • Archiving mail on mobile does not reflect the archived state on Mail.app - it stays in "Inbox"

    I am using the latest MacBook Pro on the latest Mavericks. The rest of Mail.app seems to work fine, but I have this very annoying problem.
    I use multiple devices for email - my iPad, my Android phone, etc. The whole point of IMAP is that you can do this, without issues.
    When I archive a message on mobile, it does not reflect as archived on Mail.app, no matter how many times I restart Mail.app. I even took it offline, then back online a few times.
    This is specifically for gmail and Google Apps email accounts. Any ideas?
    thanks
    Amit

    Same problem here.
    I have several imap email accounts. They are different. Some are Gmail, some iCloud, some custom, etc...
    When I archive, reply, delete, etc... emails on my Mac using Mail.app, they reflect on the iPhone. But when I do the same on the iPhone and get back to the computer, they don't reflect that way on Mail.app
    I miss Mail.app that was in Mountain Lion. I didn't have this problem before.

  • User View is not reflecting the source data - Transparent Partition

    We have a transparent partition cubes. We recently added New fiscal year details to the cube (user view as well as source data cube). We loaded the data to the source data cube. From the user view, we tried to retrieve data, it shows up 0's. but the data is availble in the source data cube. Could anyone please provide the information what might be the issue?
    Thanks!

    Hi-
    If u haven't add the new member in the partition area, then Madhvaneni's advice is the one u should do. Because, if u haven't add the member, the target can't read the source.
    If u have already added the new member in the partition area, and still the data won't show up, sometimes it's worth to try re-save the partition, and see what's the outcome.
    -Will

Maybe you are looking for