Excluded objects

I was analyzing memory leaks in my application using DevPartner, i get to see columns called "Profiled Objects", and "Excluded Objects". What are these excluded objects?

I was analyzing memory leaks in my application using
DevPartner, i get to see columns called "Profiled
Objects", and "Excluded Objects". What are these
excluded objects?Sounds like some setting of your special tool that I don't know. Objects that are excluded from something: profiling or whatever. There is no such term in Java.
Neither do memory leaks exist in Java. All you can encounter is allocation of memory that's never released.

Similar Messages

  • GRC10 Exclude Objects (Roles) - Batch Risk Analysis Job

    All -
    We are setting up some non-production GRC 10.1 systems at this time and are trying to exclude project roles from our dashboards via the "Maintain Exclude Objects for Batch Risk Analysis" table [SPRO --> GRC --> AC --> ARA --> Batch Risk Analysis].
    The problem that we are encountering is that this Batch Risk Analysis is taking an extremely long time to run on our Project Users even though we have excluded the project roles that these users are assigned.
    For example, User A has 3 project roles which hit a very large number of SoD violations in our rule set, however in the exclusion list we have defined the three roles the user is assigned to be in the exclusion table for All systems and for the specific system that the job is running against. With no luck. The job still takes an average of 30 minutes to run on each user even though the roles they are assigned are excluded.
    We have tested that the exclusion table works because we can exclude the users by adding them to this table and we can also exclude the groups that they are in and this also works. However we have instances where there are other users in this groups that have other roles in addition to these excluded roles that need to be checked.
    Does anyone have any recommendations for how to excluded roles so that the job quickly checks the users with these roles? It is my understanding that if the roles are in the exclusion list they should be skipped by the Batch Risk Analysis job which is running to check these users for the dashboards.
    Thanks,
    Darnell

    Hi,
    Was a solution found for this error?
    Thanks,
    Glen

  • Exclude objects list in RAR

    When I exclude roles before scheduling background jobs the roles are excuded from Role analysis as expected but I want to know are those roles excluded from user analysis also when I run the batch user analysis job?
    Thank you,
    Partha

    The excluded roles in exclude objects aren't getting excluded from the user analysis.
    So I'm going to try the other option i.e defining those roles as critical roles and configuration is set to exclude critical roles.
    Now on running the full user analysis, I'll check if it excludes the roles from user analysis.
    Let me know if this is how it works.
    Thank you,
    Partha

  • Exclude object functionality in RAR

    Hi All
    While using the Exclude objects functionality in RAR.....is there any further configuration setting need to be checked/changed....coz while doing ROLE LEVEL analysis in RAR, it is still analysing the Role which is already excluded...
    Thanks
    Abhijeet

    Hi Abhijeet,
    Did you make the RAR configuration correctly?
    Please Goto -> RAR-> Configuration -> Default Values
    Here you will get,
    Exclude Locked Users
    Exclude Expired Users
    Exclude Mitigated Risks
    You can make these configuration to YES so that these will be excluded at the time of Risk analysis.
    Please let me know if it is satisfies your question
    Thanks,
    Sudip.

  • Exclude objects from generation process

    Hello,
    how can i disable the generation of objects like roles or useres to the database?
    The reason is the fact, that my dba doesn't want to delegate the security part to the PowerDesigner.
    The data modeller is only able to add tables/views/sequences/etc... to a role.
    kind regards
    Christian

    Hello Christian
    You can change the generation options to exclude creating or dropping types of object. In the Preview tab for a model, table, view etc, click on the 'Show Generation Options' button. You can tell PD what to include when generating from this model, and save the options as a 'set'. See screenshot below:

  • ARA: Excluded Roles considered for Risk Analysis???

    Hi,
    There are certain role which are to be excluded from risk analysis or some business reasons. To achieve this, I have added entries for these roles in SPRO and saved them.
    Actually, these roles are available in all the systems. Therefore, under "System" column I have selected "ALL" and saved the entries.
    I ran risk analysis for a specific business process (above roles are belonging to this business group) and surprisingly found that, those roles which are maintained as "Excluded", as shown in the risk analysis report as violating!
    Thinking that "ALL" option does not work, I maintained (excluded) these roles for specific systems in SPRO. Ran risk anlaysis, but with no luck.
    Then I ran risk analysis for excluded role(s), I am still getting the violations for these excluded roles!
    May I know why system is considering these "excluded" roles at the time of risk analysis?
    Please advise.
    Regards,
    Faisal

    Alessanrdo,
    I think the "excluded" objects in path:
    SPRO->GRC->AC->ARA->BRA->Maintain Exclude Objects for Batch Risk Analysis
    itself says that the objects will NOT be considered while performing Batch Risk Analysis (Analytic Reports). It seems to be working fine for me.
    I dont think that the objects maintained in above path will have any importance while performing Risk Analysis from NWBC->AM->Roles Analysis) and will NOT be considered.
    Please correct me, if required.
    Secondly, I found 2 relevant posts here on SCN:
    SAP GRC Access Control: Offline-Mode Risk Analysis
    SAP GRC 10.0 Offline Risk Analysis
    Both of them are talking about the offline mode of running risk analysis. Actually I have not used it yet therefore, wanted to know the real usage of it. These posts seem to be giving the details of "Offline" mode analysis.
    I believe this will not be used in my scenario as there is no such requirement and real need. Therefore, I think I should disable it (Offline Data) option from the analysis screen just to avoid any confusion.
    Currently all our risk analysis is taking place "Online". There is no "real" need to use "Offline".
    May you please let me know in which scenario this would be useful?
    Regards,
    Faisal

  • How to exclude recycling bin from tablespace usage calculations

    I have a generic query to tell me how much of a given tablespace is used. I want to exclude objects in the recycling bin.
    in dba_segments these segments all have names that begin with BIN$
    This is not the case in dba_extents where we get the calculations from. How do I exclude objects in the recylcing bin? Basically how do I exclude segments in dba_extents that are in the recycling bin
    select      f.tablespace_name,a.total,
         u.used,f.free,
         round((u.used/a.total)*100) "% used",
         round((f.free/a.total)*100) "% Free",
         round(((0.10*u.used)-f.free)/0.9) "10%",
         round(((0.15*u.used)-f.free)/0.85) "15%",
         round(((0.20*u.used)-f.free)/0.8) "20%",
         round(((0.25*u.used)-f.free)/0.75) "25%"
    from
    (select tablespace_name, sum(bytes/(1024*1024)) total from dba_data_files group by tablespace_name) a,
    (select tablespace_name, round(sum(bytes/(1024*1024))) used from dba_extents group by tablespace_name) u,
    (select tablespace_name, round(sum(bytes/(1024*1024))) free from dba_free_space group by tablespace_name) f
    WHERE a.tablespace_name = f.tablespace_name
    and a.tablespace_name = u.tablespace_name
    and a.tablespace_name=TRIM(UPPER('&&TS_NAME'))
    /

    You could join the two views or you could use dba_segments rather than extents in your query or you could use the built-in functionality rather than writing your own.
    http://www.morganslibrary.org/reference/dbms_space.html
    DBMS_SPACE.FREE_BLOCKS
    DBMS_SPACE.UNUSED_SPACE

  • How to create a notification subscription to send email for all alerts except exchange objects related alerts.

    Hi Team,
    We have notification subscription configured currently, which will send email notification for Central team for all alerts generated in SCOM. Recently we got complaint from messaging(exchange server) team, that the exchange related email notifications are
    going to other teams.
    How shall we exclude "All exchange 2010 entities" group from current subscription.
    Thanks,
    Dinesh
    Thanks & Regards, Dinesh

    Hi
    There is no functinality to exclude objects in notifications. You would have to select everything that you want to be alerted on. Either you select all Groups, classes or split up the subscription per "Technology" like SQL, IIS etc. and select
    the corresponding MPs to be alerted on like all rules and Monitors.
    Probably selecting the classes would be the best option
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/7e8a5d4a-1727-4448-a2d8-85950645e01a/notification-subscription-by-management-pack
    This might help also
    http://blogs.technet.com/b/kevinholman/archive/2008/06/26/using-opsmgr-notifications-in-the-real-world-part-1.aspx and
    http://myitforum.com/myitforumwp/2014/03/04/system-center-operations-manager-2012-r2-generating-notifications-by-management-pack/
    Cheers,
    Stefan
    Blog: http://stefanroth.net If my post helped you, please take a moment to vote as helpful and\or mark as an answer

  • How to find out object / schema / database level replication is active

    Hi,
    I am an experienced DBA but new to streams and I am asked to support an existing streams configuration between two Oracle 10g databases. I was told it is bi-directional but one database is standby and it never took traffic. My questions are
    1. How will I find out whether it is a database or schema level replication? Any queries that I can run to find it out?
    2. How do I find out it is bi-directional and it iis current. What queries I can run to confirm?
    3. How will I find out the excluded objects? Any queries please...
    Thanks for the help
    Regards
    Rama

    http://www.morganslibrary.org/reference/dyn_perf_view.html#dyst
    SELECT name FROM dba_dependencies
    WHERE referenced_name = 'DBMS_STREAMS_ADM' AND name LIKE 'DBA%'
    UNION
    SELECT referenced_name FROM dba_dependencies
    WHERE name = 'DBMS_STREAMS_ADM' AND referenced_name LIKE 'DBA%';

  • MDT 2013 USMT customization to exclude specific file types

    Hi,
    I have a need to exclude a specific file type from migration with USMT within MDT 2013.
    So far, I think I know the following:
    I have to create a custom XML file.
    I have to place the custom XML file in the deployment share's Tools\x86|x64\USMT5 folder.
    I have to reference the custom XML file customsettings.ini using USMTMigFiles003 (1 and 2 are used by the default files).
    I think I'll need to use unconditionalExclude.
    However, I am having trouble finding a proper example of a custom XML file. I can find the reference documentation, but actually having a single example isn't as easy to find.
    Specifically, I want to exclude all VMDK (VMware virtual hard disks) from being migrated, regardless of where on the machine they are.
    Thanks for any assistance,
    SA.

    You need something like the below. You can find it in the provided link:
    <unconditionalExclude>
    If you want to exclude a file type from the migration, regardless of the other <include> or <exclude> rules, you can use the <unconditionalExclude> element. This element excludes objects globally across all components. For example, you
    should use this element if you want to exclude all .mp3 files from the computer.
    <migration urlid="http://www.microsoft.com/migration/1.0/migxmlext/excludefiles">
    <component context="System" type="Documents">
    <displayName>Test</displayName>
    <role role="Data">
    <rules>
    <unconditionalExclude>
    <objectSet>
    <script>MigXmlHelper.GenerateDrivePatterns ("* [*.mp3]", "Fixed")</script>
    </objectSet>
    </unconditionalExclude>
    </rules>
    </role>
    </component>
    </migration>
    http://technet.microsoft.com/en-us/library/cc722303%28v=ws.10%29.aspx#Ex1
    Dustin Estes - MCP | www.dustinestes.com

  • How to Block Themes, Wallpapers and other Display Customizations (DPI, Scaling, Window Color and Appearance) with USMT 5.0?

    I'm doing something wrong, but I can't figure out what.
    I've read some great write ups on the subject:
    USMT Custom XML the Free and Easy Way
    USMT
    4.0 Custom Sample - Blocking Wallpaper and Theme Migration from Windows Vista and Windows 7
    Blocking
    Wallpaper Migration with USMT (or: you are a jerk)
    and used part of the XML in their example, but the wallpaper, themes and other display customizations are still coming over.  Now I'm trying to use MigXmlHelper.DestinationPriority() but really its just my last ditch effort.
    From an elevated command prompt in C:\USMT\amd64\, I'm executing:
    scanstate.exe E:\USMTBackup /config:nothemeuiconfig.xml /i:MigApp.xml /i:MigDocs.xml /i:MigUser.xml /i:unconditionalexclusions.xml /i:blockwallpaperandthemev3.xml /i:getlocalpsts.xml /i:inclusions.xml /ui:domain1\user1 /ue:*\* /vsc /c /o /nocompress /localonly /v:13 /l:\\path\to\scanstate.log /progress:\\path\to\scanstate_progress.log /listfiles:\\path\to\scanstate_listfiles.log
    The blockwallpaperandthemev3.xml contains:
    <?xml version="1.0" encoding="UTF-8"?>
    <migration urlid="http://www.microsoft.com/migration/1.0/migxmlext/blockwallpaperandthemev3">
    <component type="Documents" context="User">
    <displayName>Block Wallpaper, Theme and Display Registry Settings</displayName>
    <role role="Data">
    <rules>
    <unconditionalExclude>
    <objectSet>
    <!-- Blocks wallpaper, themes (which include wallpaper) and other display/visual customizations (DPI, Screen Saver, Window Color & Appearance etc.) in the registry when migrating from Vista, 7 and beyond -->
    <pattern type="Registry">HKCU\Control Panel\Appearance\* [*]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop [Pattern]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop [SCRNSAVE.EXE]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop [TileWallpaper]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop [WallPaper]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop [WallPaperStyle]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop\Colors [*]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop\WindowMetrics [*]</pattern>
    <pattern type="Registry">HKCU\Software\Microsoft\Internet Explorer\Desktop\General [WallpaperSource]</pattern>
    <pattern type="Registry">HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Wallpapers\* [*]</pattern>
    <pattern type="Registry">HKCU\Software\Microsoft\Windows\CurrentVersion\ThemeManager\* [*]</pattern>
    <pattern type="Registry">HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\* [*]</pattern>
    </objectSet>
    </unconditionalExclude>
    <merge script="MigXmlHelper.DestinationPriority()">
    <objectSet>
    <pattern type="Registry">HKCU\Control Panel\Appearance\* [*]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop [Pattern]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop [SCRNSAVE.EXE]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop [TileWallpaper]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop [WallPaper]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop [WallPaperStyle]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop\Colors [*]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop\WindowMetrics [*]</pattern>
    <pattern type="Registry">HKCU\Software\Microsoft\Internet Explorer\Desktop\General [WallpaperSource]</pattern>
    <pattern type="Registry">HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Wallpapers\* [*]</pattern>
    <pattern type="Registry">HKCU\Software\Microsoft\Windows\CurrentVersion\ThemeManager\* [*]</pattern>
    <pattern type="Registry">HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\* [*]</pattern>
    </objectSet>
    </merge>
    </rules>
    </role>
    </component>
    <!-- This component blocks wallpaper & screen saver files -->
    <component type="Documents" context="User">
    <displayName>Block Wallpapers and Theme Files</displayName>
    <role role="Data">
    <rules>
    <unconditionalExclude>
    <objectSet>
    <content filter="MigXmlHelper.ExtractSingleFile(NULL, NULL)">
    <objectSet>
    <pattern type="Registry">HKCU\Control Panel\Desktop [SCRNSAVE.EXE]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop [WallPaper]</pattern>
    <pattern type="Registry">HKCU\Software\Microsoft\Internet Explorer\Desktop\General [WallpaperSource]</pattern>
    <pattern type="Registry">HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\* [*]</pattern>
    </objectSet>
    </content>
    </objectSet>
    </unconditionalExclude>
    <merge script="MigXmlHelper.DestinationPriority()">
    <objectSet>
    <content filter="MigXmlHelper.ExtractSingleFile(NULL, NULL)">
    <objectSet>
    <pattern type="Registry">HKCU\Control Panel\Desktop [SCRNSAVE.EXE]</pattern>
    <pattern type="Registry">HKCU\Control Panel\Desktop [WallPaper]</pattern>
    <pattern type="Registry">HKCU\Software\Microsoft\Internet Explorer\Desktop\General [WallpaperSource]</pattern>
    <pattern type="Registry">HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\* [*]</pattern>
    </objectSet>
    </content>
    </objectSet>
    </merge>
    <unconditionalExclude>
    <objectSet>
    <pattern type="File">%CSIDL_LOCAL_APPDATA%\Microsoft\Windows\Themes\* [*]</pattern>
    <pattern type="File">%CSIDL_APPDATA%\Microsoft\Windows\Themes\* [*]</pattern>
    <pattern type="File">%CSIDL_WINDOWS%\Resources\Ease of Access Themes\* [*]</pattern>
    <pattern type="File">%CSIDL_WINDOWS%\Resources\Themes\* [*]</pattern>
    <pattern type="File">%CSIDL_WINDOWS%\Web\Wallpaper\* [*]</pattern>
    </objectSet>
    </unconditionalExclude>
    <merge script="MigXmlHelper.DestinationPriority()">
    <objectSet>
    <pattern type="File">%CSIDL_LOCAL_APPDATA%\Microsoft\Windows\Themes\* [*]</pattern>
    <pattern type="File">%CSIDL_APPDATA%\Microsoft\Windows\Themes\* [*]</pattern>
    <pattern type="File">%CSIDL_WINDOWS%\Resources\Ease of Access Themes\* [*]</pattern>
    <pattern type="File">%CSIDL_WINDOWS%\Resources\Themes\* [*]</pattern>
    <pattern type="File">%CSIDL_WINDOWS%\Web\Wallpaper\* [*]</pattern>
    </objectSet>
    </merge>
    <unconditionalExclude>
    <objectSet>
    <script>MigXmlHelper.GenerateDrivePatterns ("\Users\*\AppData\Local\Microsoft\Windows\Themes\* [*]","Fixed")</script>
    <script>MigXmlHelper.GenerateDrivePatterns ("\Users\*\AppData\Roaming\Microsoft\Windows\Themes\* [*]","Fixed")</script>
    <script>MigXmlHelper.GenerateDrivePatterns ("\Windows\Resources\Ease of Access Themes\* [*]","Fixed")</script>
    <script>MigXmlHelper.GenerateDrivePatterns ("\Windows\Resources\Themes\* [*]","Fixed")</script>
    <script>MigXmlHelper.GenerateDrivePatterns ("\Windows\Web\Wallpaper\* [*]","Fixed")</script>
    </objectSet>
    </unconditionalExclude>
    <merge script="MigXmlHelper.DestinationPriority()">
    <objectSet>
    <script>MigXmlHelper.GenerateDrivePatterns ("\Users\*\AppData\Local\Microsoft\Windows\Themes\* [*]","Fixed")</script>
    <script>MigXmlHelper.GenerateDrivePatterns ("\Users\*\AppData\Roaming\Microsoft\Windows\Themes\* [*]","Fixed")</script>
    <script>MigXmlHelper.GenerateDrivePatterns ("\Windows\Resources\Ease of Access Themes\* [*]","Fixed")</script>
    <script>MigXmlHelper.GenerateDrivePatterns ("\Windows\Resources\Themes\* [*]","Fixed")</script>
    <script>MigXmlHelper.GenerateDrivePatterns ("\Windows\Web\Wallpaper\* [*]","Fixed")</script>
    </objectSet>
    </merge>
    </rules>
    </role>
    </component>
    </migration>
    I generated a config.xml called nothemeuiconfig.xml and changed this:
    <component displayname="Microsoft-Windows-themeui" migrate="yes" ID="http://www.microsoft.com/migration/1.0/migxmlext/cmi/microsoft-windows-themeui/microsoft-windows-themeui/settings"/>
    To this:
    <component displayname="Microsoft-Windows-themeui" migrate="no" ID="http://www.microsoft.com/migration/1.0/migxmlext/cmi/microsoft-windows-themeui/microsoft-windows-themeui/settings"/>
    But themes, wallpapers - everything - still come over.
    Opened a case with Microsoft, sent them:
    the XML's I'm using
    the command I used to generate the config.xml
    the command I used for scanstate
    the log files generated by scanstate
    the command I used for loadstate
    the log files generated by loadstate
    Summary result of the MS case:
    After much review & scrutiny, the command line and XML files are syntactically correct and rules are sound.
    The articles I referenced in the ticket are indeed old and speak of an older version of USMT, so I can accept the possibility that something may have changed between USMT versions that render those suggested rules & instructions invalid.
    Despite using
    unconditionalExclude to unconditionally globally exclude objects, something else is trumping that rule, and there’s no way around that.
    Even using
    MigXmlHelper.DestinationPrioity() won’t help us here because, like above, something else trumps that rule, and there’s no way around that.
    The last proposed suggestion is to disable the shmig component, which may or may not break or otherwise adversely affect the backup/restore of other things.  (This may be too difficult to detect easily or in initial testing and the uncertainty doesn’t
    give us confidence problems won’t arise as a result of this change.  Also,
    Ned Pyle's post post says NOT to, but then again that's an old post.)
    Is this no longer possible or am I'm just doing it wrong?

    Thanks for the reply
    TimAmico!
    I saw your responses on Friday & Saturday, but didn't reply because I wanted to think this over a bit and try to get a second opinion.
    The 'Appearance and Display' component looks to have a has a number of sub-components.
    <component displayname="Appearance and Display" migrate="yes" ID="appearance_and_display">
    <component displayname="Windows Games Settings" migrate="yes" ID="appearance_and_display\windows_games_settings">
    <component displayname="Microsoft-Windows-GameExplorer" migrate="yes" ID="http://www.microsoft.com/migration/1.0/migxmlext/cmi/microsoft-windows-gameexplorer/microsoft-windows-gameexplorer/settings"/>
    </component>
    <component displayname="Taskbar and Start Menu" migrate="yes" ID="appearance_and_display\taskbar_and_start_menu">
    <component displayname="Microsoft-Windows-stobject" migrate="yes" ID="http://www.microsoft.com/migration/1.0/migxmlext/cmi/microsoft-windows-stobject/microsoft-windows-stobject/settings"/>
    <component displayname="Microsoft-Windows-explorer" migrate="yes" ID="http://www.microsoft.com/migration/1.0/migxmlext/cmi/microsoft-windows-explorer/microsoft-windows-explorer/settings"/>
    </component>
    <component displayname="Personalized Settings" migrate="yes" ID="appearance_and_display\personalized_settings">
    <component displayname="Microsoft-Windows-uxtheme" migrate="yes" ID="http://www.microsoft.com/migration/1.0/migxmlext/cmi/microsoft-windows-uxtheme/microsoft-windows-uxtheme/settings"/>
    <component displayname="Microsoft-Windows-themeui" migrate="yes" ID="http://www.microsoft.com/migration/1.0/migxmlext/cmi/microsoft-windows-themeui/microsoft-windows-themeui/settings"/>
    <component displayname="Microsoft-Windows-shmig" migrate="yes" ID="http://www.microsoft.com/migration/1.0/migxmlext/cmi/microsoft-windows-shmig/microsoft-windows-shmig/settings"/>
    <component displayname="Microsoft-Windows-shell32" migrate="yes" ID="http://www.microsoft.com/migration/1.0/migxmlext/cmi/microsoft-windows-shell32/microsoft-windows-shell32/settings"/>
    <component displayname="Microsoft-Windows-CommandPrompt" migrate="yes" ID="http://www.microsoft.com/migration/1.0/migxmlext/cmi/microsoft-windows-commandprompt/microsoft-windows-commandprompt/settings"/>
    </component>
    </component>
    If I'm understanding the XML correctly, setting 'Appearance and Display' to 'no' will not bring over any of the sub components:
    Windows Games Settings: Microsoft-Windows-GameExplorer
    Tarkbar & Start Menu: Microsoft-Windows-stobject
    Tarkbar & Start Menu: Microsoft-Windows-explorer
    Personalized Settings: Microsoft-Windows-uxtheme
    Personalized Settings: Microsoft-Windows-themeui
    Personalized Settings: Microsoft-Windows-shmig
    Personalized Settings: Microsoft-Windows-shell32
    Personalized Settings: Microsoft-Windows-CommandPrompt
    If so, that, to me at least, represents a pretty significant change!  We want the pinned items but not the backgrounds and themes so that specific change won't work for us, but glad to hear it meets your needs.  (Also greatly appreciate your sharing
    your results with us.)
    I'll admit, even before reaching out to MS, the logs clearly show that the themes/backgrounds are all part of the 'Microsoft-Windows-shmig' component but dang it if I want something of substance (read: official documentation) that covers what exactly that
    component handles.  (I like to know what I'm potentially getting myself into.)

  • Database connection error | created a new datasource | web application

    Hi,
    I am trying to deploy a J2EE web application on SAP Netweaver 7.0. I have to connect to a Oracle database schema (Not the default schema used by SAP). I am using Java and JDBC to make connections to the database.
    In order to accomplish this, I created a new data source in Visual Admin. Referenced this in the web.xml and deployed the application. The application is deployed successfully, without any errors or warnings.
    However, when ever the Java program connects and executes a prepared statement, I get this error in the database logs
    bc.direct.DirectPreparedStatement#Java#com.sap.sql_0003#com.sap.sql.log.OpenSQLResourceBundle#SQL error occurred on connection xxxx111:xxx:xxx: code=942, state="42000", message="ORA-00942: table or view does not exist
    SQL statement is "SELECT "XMLVALUE" FROM "BC_DDDBTABLERT" WHERE "NAME" = ?".#5#942#42000#ORA-00942: table or view does not exist
    #solad011:pidb:PIUSER#SELECT "XMLVALUE" FROM "BC_DDDBTABLERT" WHERE "NAME" = ?#
    In java code, there are no references to this table "BC_DDDBTABLERT". I am trying to execute a SQL select for entirely different table. Why I am I getting this error?

    Hi,
    System copy NW 70 - Error in "export from java database" phase
    I am doing system copy of BI7.0 (Abap+Java) stack, I am getting error in
    "export from java database" phase as mentioned below.
    When I tried to run the query mentioned in SAP Note 1120872: ,
    SQL> DELETE FROM BC_DDDBTABLERT WHERE NAME = 'CAF_GP_R3USRMPGCFG';
    DELETE FROM BC_DDDBTABLERT WHERE NAME = 'CAF_GP_R3USRMPGCFG'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL> DELETE FROM BC_DDDBTABLERT WHERE NAME = 'CAF_GP_IF_CONTEXT';
    DELETE FROM BC_DDDBTABLERT WHERE NAME = 'CAF_GP_IF_CONTEXT'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    I tried your Native_SQL also, but same error.
    Kindly help me on this.
    Regards,
    Sampath.
    SAP INST error log:
    ERROR 2010-10-15 10:32:35
    CJS-30049 Execution of JLoad tool '/usr/java/j2sdk1.4.2_12/bin/java
    -classpath /usr/sap/BD1/SYS/global/sltools/sharedlib/launcher. jar
    -showversion -Xmx512m com.sap.engine.offline.OfflineToolStart
    com.sap.inst.jload.Jload
    /usr/sap/BD1/SYS/global/security/lib/tools/iaik_jce .jar:/usr/sap/BD1/SYS/global/security/lib/tools/ia ik_jsse.jar:/usr/sap/BD1/SYS/global/security/lib/tools/ia ik_smime.jar:/usr/sap/BD1/SYS/global/security/lib/tools/ia ik_ssl.jar:/usr/sap/BD1/SYS/global/security/lib/tools/w3 c_http.jar:/usr/sap/BD1/SYS/global/sltools/sharedlib/jlo ad.jar:/usr/sap/BD1/SYS/global/sltools/sharedlib/ant lr.jar:/usr/sap/BD1/SYS/global/sltools/sharedlib/exc eption.jar:/usr/sap/BD1/SYS/global/sltools/sharedlib/jdd i.jar:/usr/sap/BD1/SYS/global/sltools/sharedlib/log ging.jar:/usr/sap/BD1/SYS/global/sltools/sharedlib/off lineconfiguration.jar:/usr/sap/BD1/SYS/global/sltools/sharedlib/ope nsqlsta.jar:/usr/sap/BD1/SYS/global/sltools/sharedlib/tc_ sec_secstorefs.jar:/oracle/client/10x_32/instantclient/ojdbc14.j ar
    -sec
    BD1,jdbc/pool/BD1,/usr/sap/BD1/SYS/global/security /data/SecStore.properties,/usr/sap/BD1/SYS/global/ security/data/SecStore.key
    -dataDir /oracle/expocopy/JAVA/JDMP -remove_trailing_blanks
    /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/EXP/CENTRAL/ AS/EXP/removeTrailingBlanks.txt
    -convert_empty_LOBs
    /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/EXP/CENTRAL/ AS/EXP/convertEmptyLobs.txt
    -convert_empty_strings
    /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/EXP/CENTRAL/ AS/EXP/convertEmptyStrings.txt
    -convert_empty_binary
    /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/EXP/CENTRAL/ AS/EXP/convertEmptyBinary.txt'
    aborts with return code 1.<br>SOLUTION: Check 'jload.log' and
    '/tmp/sapinst_instdir/NW04S/LM/COPY/ORA/EXP/CENTRAL/ AS/EXP/jload.java.log'
    for more information.
    Log details for jload.java.log:
    java version "1.4.2_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_12-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_12-b03, mixed mode)
    Oct 15, 2010 10:32:33 AM com.sap.inst.jload.Jload main
    INFO: Jload -sec
    BD1,jdbc/pool/BD1,/usr/sap/BD1/SYS/global/security /data/SecStore.properties,/usr/sap/BD1/SYS/global/ security/data/SecStore.key
    -dataDir /oracle/expocopy/JAVA/JDMP -remove_trailing_blanks
    /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/EXP/CENTRAL/ AS/EXP/removeTrailingBlanks.txt
    -convert_empty_LOBs
    /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/EXP/CENTRAL/ AS/EXP/convertEmptyLobs.txt
    -convert_empty_strings
    /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/EXP/CENTRAL/ AS/EXP/convertEmptyStrings.txt
    -convert_empty_binary
    /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/EXP/CENTRAL/ AS/EXP/convertEmptyBinary.txt
    Oct 15, 2010 10:32:35 AM com.sap.inst.jload.db.DBConnection
    connectViaSecureStore
    INFO: connected to BD1 on jdbc/pool/BD1
    Oct 15, 2010 10:32:35 AM com.sap.inst.jload.db.ExcludedObjects addObjects
    INFO: excluded objects (type TB): [EP_ATTR_HEADERS, EP_ATTR_VALUES,
    J2EE_CONFIGENTRY]
    Oct 15, 2010 10:32:35 AM com.sap.inst.jload.db.ExcludedObjects addObjects
    INFO: excluded objects (type EL): [EP_ATTR_HEADERS, KMC_DBRM_CONTENT,
    EP_ATTR_VALUES, J2EE_CONFIGENTRY]
    Oct 15, 2010 10:32:35 AM com.sap.inst.jload.db.ExcludedObjects addObjects
    INFO: excluded objects (type ES): [EP_ATTR_HEADERS, KMC_DBRM_CONTENT,
    BC_SCVERSION, J2EE_CONFIGENTRY]
    Oct 15, 2010 10:32:35 AM com.sap.inst.jload.db.ExcludedObjects addObjects
    INFO: excluded objects (type EB): [KMC_DBRM_CONTENT, J2EE_CONFIGENTRY]
    Oct 15, 2010 10:32:35 AM com.sap.inst.jload.JobStatus readStatus
    INFO: trying to read status file
    /tmp/sapinst_instdir/NW04S/LM/COPY/ORA/EXP/CENTRAL/ AS/EXP/EXPORT.sta
    Oct 15, 2010 10:32:35 AM com.sap.inst.jload.JobStatus readStatus
    INFO: commencing restart
    Oct 15, 2010 10:32:35 AM com.sap.inst.jload.Jload dbExport
    SEVERE: DB Error during export of CAF_GP_IF_CONTEXT
    Oct 15, 2010 10:32:35 AM com.sap.inst.jload.Jload printSQLException
    SEVERE: Message: ORA-00942: table or view does not exist
    Oct 15, 2010 10:32:35 AM com.sap.inst.jload.Jload printSQLException
    SEVERE: SQLState: 42000
    Oct 15, 2010 10:32:35 AM com.sap.inst.jload.Jload printSQLException
    SEVERE: ErrorCode: 942
    Oct 15, 2010 10:32:35 AM com.sap.inst.jload.db.DBConnection disconnect
    INFO: disconnected

  • Structural profile for HR conflicts with MRS

    Hi,
    We have ECC 6.0 and implemented mini-HR for mainly CATS use and to create the organisation for MRS (multi-resource scheduling). Now we are facing problems with managers who need to have a structural profiles to limit their access to HR information.
    A manager cannot execute transaction /MRSS/PLBOORGM - Planning Board for RP Node
    The other problem is that structural profiles (evaluation path O-S-P) seem to be interfaring with IW32 when user tries to change technical person (i.e. a partner) or sales order.
    CATS is classic, not CATS for Srvice providers which also brings problems with those users who have to accept hours or enter hours (CAT2) for other than their own subordinates; i.e. they are project managers.
    Any suggestion for structural profile corrections, evaluation path that should be used in addition to the "normal" O-S-P for the manager role?
    Help is highly appreciated.
    BR,
    Pia

    Hi,
    Firstly P_ORGINCON is used for context solutions where you want users to access specific infotypes for selected Objects in the Org structure and simultaneously perform other activities for some seperate set of Objects.
    P_ORGINCON won't understand the concept of exclusion.
    3) we assign to the manager a second structural profile in exclusion mode and a role with with a P_ORGINCON in order to exclude some infotypes.
    Why do you want to design such approach?
    Please remember when you assign PD profile to a position and check the exclusion Box, it means what all objects returned by that structural profile should be excluded from entering into T77UU and INDX table, when you run RHBAUS* programs.
    After reading through your Business requirement, I would only suggest you to drive this design through Function Modules and included those FMs in your structural.
    If required create multiple structural add them in separate nodes in P_ORGINCON in combination of Infotypes.
    In othe words, it is possibile to assign a structural profile to a user in exclusion mode and use this structural profile with a P_ORGINCON in order to exclude some inforypes ? -
    NO, assigning structural in exclusion mode will only exclude objects which are being pulled up by that structural and using the same with P_ORGINCON means, user will be able access set of Infotypes for all Objects in the Org Structure apart from the ones excluded because the structural assigned in exclusion mode.
    Hope this answers your question.
    Thanks,
    Deb

  • Available or Unavailable

    Hello
    Here are the message which may be delivered when Numbers import from XL or export to XL.
    So, you will be aware of a lot of plus and minus.
    "All Drawings from the Sheet"
    A chart whose data couldn’t be found was converted to an image.
    A chart whose data couldn’t be read was converted to an image.
    A chart with too many data points (%d) was converted to an image.
    A column too large for Excel was resized. Shapes and charts might look different.
    A row too large for Excel was resized. Shapes and charts might look different.
    A scatter chart was plotted by column. The chart was imported, but can’t be edited.
    A shape was removed because it wasn’t within the worksheet’s bounds.
    A shape was repositioned so that it is within the worksheet’s bounds.
    A worksheet’s background was removed.
    Accounting number formatting was converted to Excel accounting format.
    An unsupported number format wasn’t imported.
    An unsupported worksheet wasn’t imported
    Area charts will appear different because the series order was reversed.
    Bar charts will appear different because the series order was reversed.
    Bubble charts aren’t supported and were converted to images.
    Bubble charts aren’t supported and were removed.
    Bullets were removed from bulleted text.
    Can’t import more than 255 columns. Additional columns were removed.
    Can’t import more than 65,533 rows. Additional rows were removed.
    Cells in a hidden column or row were unhidden to show merged cells.
    Change tracking isn’t supported. All changes were accepted.
    Chart axes were moved to cross at chart corners. Chart “%@” will look different.
    Chart axes were moved to cross at chart corners. Your charts might look different.
    Chart references to external data aren’t supported and the last values were imported.
    Chart references to external data aren’t supported. The last data values weren’t available, so the chart was removed.
    Chart titles longer than 100 characters aren’t supported and were truncated.
    Charts with error bars or trendlines were converted to charts without error bars or trendlines.
    Charts with no data aren’t supported and were removed.
    Checkboxes aren’t supported in Excel. Selected checkboxes were replaced with True, and unselected checkboxes were replaced with False.
    Choosing to exclude objects from printing isn’t supported.
    Color gradients in tables might look different.
    Comment print settings aren’t supported and were removed. Visible comments will print.
    Content in %1$i cells in table “%2$@” was truncated because it’s too long for Excel.
    Couldn’t export a cell’s conditional formatting because it exceeded Excel’s three-rule maximum.
    Couldn’t export category axis labels.
    Couldn’t export date and time formatting in headers and footers.
    Couldn’t export date/time, page number, and page count fields inside cells because Excel doesn’t support them; the cell values were converted to text.
    Couldn’t export gradient fills because they’re not supported in Excel. The first color was used instead
    Couldn’t export hyperlinks outside table cells.
    Couldn’t export image fills because Excel doesn’t support them.
    Couldn’t export pop-up menus because they aren’t supported in Excel; the cell values were exported.
    Couldn’t export shadow on text in charts.
    Couldn’t export sliders because they aren’t supported in Excel; the cell values were exported.
    Couldn’t export stepper controls because they aren’t supported. The cell value was retained.
    Custom worksheet views aren’t supported and were removed.
    Data in hidden cells will be used in charts.
    Data in hidden cells won’t be used in charts.
    Data tables aren’t supported and were imported as regular table cells.
    Data validation isn’t supported and was removed. The last cell values were imported.
    Date and time values can’t be used in charts. Charts containing dates and times were removed.
    Dates before 1904 were converted to text because Excel doesn’t support them.
    Diagonal borders aren’t supported and were removed.
    Filename fields aren’t supported in headers or footers and were removed.
    Fill opacities were set to 100%.
    Filtered cells might have been imported as hidden. To show them, choose Table > Unhide All Rows and Unhide All Columns.
    Filtered table cells were exported hidden.
    Fit to Page isn’t supported and the setting was removed.
    Fonts with shadows might look different because Excel doesn’t support font shadow options.
    Form controls such as checkboxes and scroll bars were removed.
    Formulas in %1$i cells were removed from “%2$@” because they aren’t supported.
    Graphics aren’t supported in headers or footers and were removed.
    Header and footer cells were exported as body cells but will look the same.
    Header/footer content was truncated because it’s too long for Excel.
    Hidden worksheets were made visible.
    Hyperlinks in cells that don’t contain text weren’t imported.
    Hyperlinks on shapes aren’t supported and were removed.
    Hyperlinks within workbooks and hyperlinks to other files aren’t supported and were removed.
    Indents in table cells were imported but aren’t editable.
    Invalid charts were removed.
    Line charts with data points connected by smooth lines aren’t supported. The smoothed line setting was removed.
    Major and minor axis range units were recalculated and your charts might look different.
    Minimum and maximum axis values were recalculated and your charts might look different.
    Mixed-type charts aren’t supported. Chart “%1$@” was imported as %2$@ chart.
    More than one hyperlink was found in a cell. Only the first one was exported.
    Multicolumn text was exported as one column.
    Non-linear gradient table cell fills aren’t supported and were imported as regular gradient fills.
    None of the types of worksheets in the document are supported.
    Part of a header or footer corrupt. The readable portion was imported.
    Password protection was removed from a worksheet.
    Pathname fields aren’t supported in headers or footers and were removed.
    Pivot tables aren’t supported and were converted to regular tables.
    Pop-up lists in cells weren’t imported. The last value of the cell was used.
    Pop-up lists were removed. The last value was used.
    Print area isn’t supported and the setting was removed.
    Print settings for row and column titles aren’t supported and were removed.
    Radar charts aren’t supported and were converted to images.
    Radar charts aren’t supported and were removed.
    References to external data aren’t supported and were removed. The last calculated value was used.
    Reports aren’t supported and were removed.
    Rotated or flipped tables were returned to their original orientation because Excel doesn’t support rotating or flipping tables.
    Row or column outlines aren’t supported and were removed.
    Scatter charts plotted by column were imported but chart data can’t be edited.
    Scatter plot charts with data points connected by lines were converted to ones without connecting lines.
    Scenarios aren’t supported and were removed.
    Secondary chart axes aren’t supported and were removed.
    Some cells weren’t imported because the worksheet was too large.
    Some chart data might not have imported correctly.
    Sorting criteria were removed.
    Stock high-low-close charts aren’t supported and were converted to line charts.
    Stock open-high-low-close charts aren’t supported and were converted to line charts.
    Stock volume-high-low-close charts aren’t supported and were converted to column charts.
    Stock volume-open-high-low-close charts aren’t supported and were converted to column charts.
    Surface charts aren’t supported and were converted to images.
    Surface charts aren’t supported and were removed.
    Tab stops in table cells were replaced using four spaces.
    Table names were hidden because Excel doesn’t support displaying them on the canvas.
    The document can’t be opened because it’s not a valid Excel file.
    The document contains more colors than Excel supports; some colors may look different.
    The document is encrypted and can’t be opened.
    The document was created with an unsupported version of Excel.
    The formula could not be exported.
    The setting to reverse category order on the axis isn’t supported and was removed.
    The setting to view formulas isn’t supported and was removed.
    This document was exported from Numbers '08. Each table was converted to an Excel worksheet.
    Unsupported border styles were mapped to solid borders.
    Unsupported conditional formatting on %1$i cells was removed from %2$@ on “%3$@.”
    Unsupported conditional formatting was removed.
    Unsupported error values in %1$i cells were removed from %2$@ on “%3$@.”
    Unsupported formulas in %1$i cells were removed from %2$@ on “%3$@.” The last calculated value was used.
    Unsupported number formatting on %1$i cells was removed from %2$@ on “%3$@.”
    Unsupported orthographic camera view was converted to perspective.>
    Yvan KOENIG (from FRANCE mercredi 13 février 2008 12:48:37)

    1. No, but you might be able to upgrade to Lion. Choose About this Mac from the Apple menu, check that the computer has at least a Core 2 Duo(not Core Duo) CPU, and if so, click here.
    2. Check the RAM from the About this Mac window, choose Computer from the Finder's Go menu, control-click the internal drive, and choose Get Info. If the computer has a 32-bit EFI, it can't be upgraded to Mountain Lion or above regardless of the RAM and free drive space.
    (111990)

  • USMT - Move only file types that I specify

    All the documentation seems to indicate that the default user.xml file will only migrate specific file types (.doc, .xl*, etc.) However, I have created dummy files in c:\test with a file extension of *.abc and that file is being migrated as well.
    I know that I can exclude certain file types, but what if I only want to move specific types and everything else is not migrated.  The documentation seems to indicate this is the default behavior, but it's not working that way.  Anybody know how
    to NOT migrate file types unless I specifically state they should be migrated (regardless of location on the disk).
    Thanks,
    Chris

    Hi,
    If you want to exclude a file type from the migration, regardless of the other <include> or <exclude> rules, you can use the <unconditionalExclude> element. This element excludes objects globally across all components:
    <unconditionalExclude>
    http://technet.microsoft.com/en-us/library/cc722303(v=ws.10).aspx
    The following .xml file excludes all .mp3 files from migration:
    <migration urlid="http://www.microsoft.com/migration/1.0/migxmlext/excludefiles">
    <component context="System" type="Documents">
    <displayName>Test</displayName>
    <role role="Data">
    <rules>
    <unconditionalExclude>
    <objectSet>
    <script>MigXmlHelper.GenerateDrivePatterns ("* [*.mp3]", "Fixed")</script>
    </objectSet>
    </unconditionalExclude>
    </rules>
    </role>
    </component>
    </migration>
    If you have any feedback on our support, please click
    here
    Alex Zhao
    TechNet Community Support

Maybe you are looking for

  • Determine/read the value of parameter rdisp/max_wprun_time within ABAP

    Hi, I need to avoid program breaks caused by exceeding run time longer than defined in parameter rdisp/max_wprun_time. I will check the time since start of report in the critcal loop to bring the current data changes to a controlled end before gettin

  • Email process doesn't work

    Hello, I have procedure in my application that must send emails, but it is not working. So I tried to send a normal email from application using this block "DECLARE l_body CLOB; BEGIN l_body := 'Thank you for your interest in the APEX_MAIL package.'|

  • Source system compounded

    Hi Guys, At my client we need to make certain Info objects system compounded. The problem, when activating the Infoobjects an error message appears saying that the Infoobject contains data in the Infosource and ODS. Does anyone know how to bypass thi

  • How do I change the date format in safari?

    I am in the UK, and the date format is the US format (ie month first) - I have changed my language in the Settings app, but no dice. In Chrome, Firefox etc there are language settings that I can change to alter the date format, but not for Safari ...

  • How to read data from DOS?

    Hi I'm now using System Exec.vi to call a batch file to program a chip through COM port. The chip will return messages to PC for the current status and I want to get the message from LabVIEW. How to do that? Bill.