BI reports to KM folder in EP

Hi,
We are working on BI 7.0 SP 6 and EP 7.0 SP 15.
We want to broadcast BI reports to KM folder in EP. After reading note 969040, we decided to use WebDAV with Storing documents in the consumer portal.
I have following quetions:
1. Do we need to upgrade BI SP to match EP SP? As per note its not needed , but as per FAQs in below link its required.
http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/5c6b686a-0901-0010-8aab-c4d0e5a093a7&overridelayout=true
2. Do I need to configure BI Metadata Repository Manager? There is no such step in note 969040.
I guess,  during BEx setup it will be created in BI portal. But should I create in EP as well?
http://help.sap.com/saphelp_nw70/helpdata/EN/85/905640a2f78437e10000000a155106/frameset.htm
3. Are there any other steps to be performed apart from 3 steps in Note 969040 ?
4. Apart from Note 969040 is there any document which gives step by step solution with screenshots?
Thanks & Regards,
Apurva

Hi Mohan,
Do you mean ABAP & Java Stack of BI server ? Yes, they are same in my case(SP 6).
But we have seperate enterprise portal server and we want to display BI report in this enterprise portal(EP) (online as BI web application iView as well as precalculated to KM folder).
But this EP server is on higher SP level  (SP 15) than BI(SP 6).
So, do we need to upgrade our BI ABAP & Java stack to 15 to match it with EP?
Has anyone come across any official documentation (SAP Note, Help.sap link) about version compatibility between EP & BI Java and EP & BI ABAP?
Regards,
Apurva

Similar Messages

  • Diff b/w creation of Report in Shared folder and in My folder

    Dear All,
    May i know what's the diff b/w creation of Report in Shared folder and in My folder.
    Is there any features changes.
    Regards..

    Hi,
    you can add shared folders to roles and so give users assigned to this role the permission to use the reports in that folder. Reports and folders in My Folders are not sharable.
    Regards
    Rainer

  • How to control the permission for reports in share folder?

    Hi Experts,
    In OBIEE 11.1.1.6.0.
    I have created two folders in share folder,one is sales folder which contains some sales reports,and the other is dashboard folder which contains some dashboard pages that have these sales reports.
    So I want to new users who do not access the sales folder, but can view the sales reports in dashboard pages.
    How to control the permission for reports in share folder? Thanks for your help.
    Note: Dashboard pages have whole sales reports for showing.

    Hi User,
    1. Give access to the users for all reports.
    2. Give No Access to Retail Folder
    3. GIve read or full access to dashboard folder.
    To set the permission , click on the object/folder bottom left you will find Permission. you set there.
    Mark if correct,
    fiaz

  • Not able to deliver report to a folder through WEBDAV method in BIP 11g

    Below is the log from file bipublisher.log which i am getting wen trying to deliver report to a folder in UCM sever:-
    [2011-11-18T13:20:47.300+05:30] [AdminServer] [WARNING] [] [oracle.xdo] [tid: 39] [userId: <anonymous>] [ecid: af46278784e183e2:d1c6cf7:133aaf95e34:-8000-00000000000145f0,0] [APP: bipublisher#11.1.1] Context: 0, code: U9KP7Q94, message: Path not found (/users/weblogic/_temp/eb917ceb-18f0-4960-b168-5f8ba22c4b30.xdm)
    [2011-11-18T13:20:47.300+05:30] [AdminServer] [WARNING] [] [oracle.xdo] [tid: 39] [userId: <anonymous>] [ecid: af46278784e183e2:d1c6cf7:133aaf95e34:-8000-00000000000145f0,0] [APP: bipublisher#11.1.1] Context: 0, code: U9KP7Q94, message: Path not found (/users/weblogic/_temp/eb917ceb-18f0-4960-b168-5f8ba22c4b30.xdm/_datamodel.xdm)
    [2011-11-18T13:20:47.300+05:30] [AdminServer] [WARNING] [] [oracle.xdo] [tid: 39] [userId: <anonymous>] [ecid: af46278784e183e2:d1c6cf7:133aaf95e34:-8000-00000000000145f0,0] [APP: bipublisher#11.1.1] User (weblogic) with session id: guo7kalh2s401806emk26s5nraol7hniu0eelcq is looking for object in biee path: /users/weblogic/_temp/eb917ceb-18f0-4960-b168-5f8ba22c4b30.xdm/_datamodel.xdm[[
    Object Error [Context: 0, code: U9KP7Q94, message: Path not found (/users/weblogic/_temp/eb917ceb-18f0-4960-b168-5f8ba22c4b30.xdm/_datamodel.xdm)]
    Object found [path: /users/weblogic/_temp, type: 0]
    Can any one pls help me out in this regard.
    Thanks in advance
    Vijay kumar G M
    Edited by: 888074 on Nov 22, 2011 3:10 AM

    Try the following:
    Do not generate the report to .rep file, but rename/copy the .rdf file to .rep file and execute it.

  • Getting all webI reports in a folder and its sub-folders using java sdk.

    hi,
    I need a java code to get the Id of all webi  reports in a folder and recursive sub folders .
    Is there any sample code or tutorial  available for It?
    regards,
    nitin

    I didn't test this but it should work. Import required packages.
    <%
    String username = "administrator";
    String password = "<password>";
    String cmsname = "<cmsname>";
    String authtype = "secEnterprise";
    IEnterpriseSession oEnterpriseSession = CrystalEnterprise.getSessionMgr().logon(username, password, cmsname, authtype);
    IInfoStore oInfoStore = (IInfoStore)oEnterpriseSession.getService("","InfoStore");
    getWebi(oInfoStore,0,out);
    oEnterpriseSession.logoff();
    %>
    <%!
    public void getWebi(IInfoStore oInfoStore, int sourceFolderID, javax.servlet.jsp.JspWriter out)
    try
         String query = "select * from ci_infoobjects where si_kind='webi' and si_instance =0 and si_parentid =" + sourceFolderID ;
         IInfoObjects oInfoObjects = oInfoStore.query(query);
         for(int i=0;i< oInfoObjects.size(); i++)
              IInfoObject oInfoObject = (IInfoObject) oInfoObjects.get(i);
              out.println(oInfoObject.getID() + "  " + oInfoObject.getTitle() +"<br>");
         String query = "select * from ci_infoobjects where si_kind='folder' and si_parentid = " + sourceFolderID ;
         oInfoObjects = oInfoStore.query(query);
         for(int i=0;i< oInfoObjects.size(); i++)
              IInfoObject oInfoObject = (IInfoObject) oInfoObjects.get(i);
              getWebi(oInfoStore, oInfoObject.getID(), out);               
    catch(SDKException e)
         out.println(e.toString());
    %>

  • OBIEE - add button for exporting report into specified folder

    Hi all,
    How do I add button for exporting report into specified folder?
    See example below (this is print screen from working OBIEE report)
    http://s9.postimage.org/xqs9cellb/BI_report_export.png
    Oracle Business Intelligence 11.1.1.6.0

    What version of Crystal Reports are you using?  Any service packs or hot fixes installed?
    Can you open other xls files with 2007?  
    Have you ever exported to excel before?
    I export to -excel (97-2003) data only- and open the files with Excel 2007 with no problems. Excel 2007 complains about the old format (xls) and wants to convert it to the new excel format. I alsways ignor it.
    Maybe the 'garbage' you are seeing is because the layout of your crystal report is not working for the export. Is all the data there but you have extra cells and/or lines, or the data is pushed to the left? I find that I must have the fields packed tightly with no space between them and no space above or below the fields, or I get extra cells between and lines above or below them.
    Most of my exports are detail lines with a single line header and columns are set to match the detail line. When exporting multiple lines where the fields do not line up exactly with the ones above them, I may use one or more empty text fields that matches the size of the fields above them to fill the empty space. Sort of like:
    line 1:{field1.}{field2...}{field 3}
    line 2:(text...}{text.....}{field 4)
    And you may need to turn off 'can grow' on all fields as they may cause miss-alignment. All the data will be there when you export it, even what you can not see in Crystal. You will just need to format the cells in Excel to see it.
    Debi  (hi Don)

  • Error when trying to display a Webi report through the Folder iView

    Hi all
    I am getting the following error when Im trying to display a Webi report through the SAP Portal. We have installed the SAP Integration Kit and are able to see the content of the Infoview. However when we click on a Webi report, we receive the following error:
    Could not get page number. (Error: RWI 00223) (Error: INF)
    Have anyone else encountered this problem? Please assist! Any help will be rewarded.
    (We are running XI Rel 2).
    Addition from trace file (tomcat):
    com.businessobjects.rebean.wi.CommunicationException: Could not get page number. (Error: RWI 00223)
         at com.businessobjects.rebean.wi.occa.OccaReportComAdapter.setBlobKey(OccaReportComAdapter.java:542)
         at com.businessobjects.rebean.wi.occa.OccaReportComAdapter.getView(OccaReportComAdapter.java:376)
         at com.businessobjects.rebean.wi.occa.OccaReportComAdapter.getView(OccaReportComAdapter.java:297)
         at com.businessobjects.rebean.wi.ReportImpl.getView(ReportImpl.java:384)
         at com.businessobjects.rebean.wi.ReportImpl.getView(ReportImpl.java:407)
         at org.apache.jsp.viewers.cdz_005fadv.viewReport_jsp._jspService(viewReport_jsp.java:1182)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:704)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:474)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:409)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
         at org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:670)
         at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:637)
         at org.apache.jsp.viewers.cdz_005fadv.report_jsp._jspService(report_jsp.java:325)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    Furthermore I'd like to see an example of the cms_name entry. The documentation states: In addition, specify the Application Parameter for each iView. For this property, enter cms_name=[cms] for the fully qualified server name., but I have doubts as to what format to use.
    Kind regards,
    Martin Søgaard

    Hi Jim Ji
    The report can be displayed from the java infoview, no doubt, so the report itself works.
    But the report cannot be seen from the "SAP Infoview" (:/businessobjects/enterprise115/sap) which is the infoview, I reference from the Folder iView (through the system in the SAP portal). And since the SAP Portal Integration Kit seems very old - the Folder iView was created 12-08-2004 by Ingo Hilgefort - there might be an old version of the jar-files somewhere in the installation.
    I guess I should check the version of the jar-files in WEB-INF/lib of our web application (Tomcat) folder, and see if they have been overwritten by the SAP Portal Integration Installation or are an older version of the files in Program FilesBusiness Objectscommon3.5javalib? And also check if somewhere in the .../sap installation there are some old jar-files?
    Kind regards,
    Martin Søgaard

  • Script Error in Webi Report when using Fold / Unfold

    Hi,
    We are using BO XI 3.1 sp3. We have a report in which we are uisng the Fold / Unfold option in Webi. The report is folding and displaying summaries at 3 levels. Account Group -> Sub group -> Cost center. When we expand Account Group it'll have 3 or 4 sub levels, but on expanding Subgroups we'll have a number of rows, may be 100 or more. On this action we are getting a script error.
    The error msg is
    " Stop Running teh Script?
    A script on this page is causing the Internet Exploer to run slowly.
    If it continues to run your computer may become unresponsive"
    If we press NO to this message we are able to work with report, but if we press 'YES', we are not able to use fold /unfold
    Can anyone help us to find out why we are getting this error and any resolution for the same.
    Thanks,
    Sivakami

    This is an IE not a BO issue. I would recommend to take a look here:
    http://support.microsoft.com/kb/175500
    Regards,
    Stratos

  • Report on Mapping folder with DB Tables

    Hi Gurus,
    One of the user came with a weird requirement. I hope someone can shed some light on this or is it possible in a report
    Here is the requirement:
    We have a mini site where all the images relates to catalog are stored in a folder. Now the req is that segment 1 (which is a number) from mtl_system_items_b table should map with the images in the folder. In the report When i filter on a segment 1: 1234-00-3456 the report should display the field names (Name,Date Modified,Type,Size) and the related details of that segment 1. The user want to see the if there are any images for all the segment 1
    Regards

    The only way is that you got to have this relationship between 'images in the catalog' and the Segments defined in a table... or in an ER diagram.

  • Need efficient queries to retrieve reports inside a folder

    Case 1:
    To retrieve reports in a particular folder -
    I am currently using 2 queries -
    a) retrieving parentid given a folder name
    b) retrieving all reports given the above parent id.
    Can I combine these into 1 query ?
    Case 2:
    I also need to retrieve all reports within a given folder and subfolder. Can this be done with 1 query?
    or do I need to retrieve all objects in the folder and then iterate in a loop
    if folder exists and retrieve the reports.

    Hi Jam
    For Case1:  To retrieve Crystal reports in a particular folder, the following query should work.
    Select COUNT (SI_ID) From CI_INFOOBJECTS where SI_KIND = 'CrystalReport' and SI_PARENT_FOLDER = 22826 and SI_INSTANCE = 0
    Hope this helps.
    ThanksSoni

  • IBOT report to "backup"folder

    Hi,
    i want to make an ibot to save a report (in excel or other fileformat) to a folder on the server. This report should also get a creation date.
    I search for it, but could find anything about it. Or if you know another way to save a report to a file daily it's also a sollution.
    regards,
    Osman

    Check out this blog
    http://oraclebizint.wordpress.com/2007/12/17/oracle-bi-ee-101332-calling-java-scripts-and-java-classes-from-ibots/
    We are in a Unix environment so I will be looking at using the Java solution and if you are on a windows platform you can call the scripts passing the parameters in.

  • How to Restrict user to copy reports to other folder except favorites

    Hi
    I have created web intelligence reports and saved it in folders
    now i have to give rights to the user
    that he should only copy that report to favorites not to any other folder
    how to restrict this in cmc pls somebody help me ....
    or else there is one more case
    user can chage the report but the changes should reflect only to him not to other user who see that report

    Hi
    I have created web intelligence reports and saved it in folders
    now i have to give rights to the user
    that he should only copy that report to favorites not to any other folder
    how to restrict this in cmc pls somebody help me ....
    or else there is one more case
    user can chage the report but the changes should reflect only to him not to other user who see that report

  • We have requirement to share reports without shared folder...

    Hi to all,
    we have requirement where we want End-user to share their build report in prod. enviorment with out having access to share folder!!
    for e.g. if i am user xyz and you are user abc. if user xyz creates one report using answers and he can't save that report to shared directory, he can save that only in my folder.
    and now he wants to share that report with user abc, is their anyway to enable these functionality?
    Thanks in advance!!!

    OK, then you have to do this:
    1) Go to the Advance tab of the report. Click in the XML window, and press Cntrl-A then Cntrl-C.
    2) Paste the XML in an email and send it to the other user.
    3) The recipient then copies the XML to the clipboard.
    4) Log on to OBIEE and click on any Subject Area.
    5) Click on the Advance tab, delete the contents and paste the XML that was in the email.
    6) Click on the "Set XML" button.
    There you go. The recipient can view the report exactly as it was built and save it to his "My Folders."

  • Batch report in seperate folder

    Hi,
    I have a requirement where all the Batch reports to be store in a seperate folder than the one where the UUT reports gets stored.
    Can any one help out in this?
    regads,
    Ramjee V
    Solved!
    Go to Solution.

    Hi,
    You could try using Expressions to Customize Report File Paths.
    Checkout the following link: http://zone.ni.com/reference/en-XX/help/370052H-01/tshelp/infotopics/42whatsnew/#expreports
    the following is an extract from the above link:
    Using Expressions to Customize Report File Paths
    In addition to the existing options to customize reports, you can now use predefined macros and custom expressions on the Report File Pathname tab of the Report Options dialog box to specify the filename of reports and the directory in which TestStand stores reports. For example, you can use expressions to save reports in a directory that uses the sequence filename, save reports in different directories based on execution status, and generate report filenames that include the serial number, user name, or execution status. You can use expressions to replicate all existing report filename options.
    Select Specify Report File Path by Expression in the File Name/Directory Options drop-down list in the Generate Report File Path section on the Report File Pathname tab of the Report Options dialog box to enter an expression in the Report File Path control. The following table lists common report options and the equivalent expression for the Sequential model using the client sequence file directory as the base directory.
    Current Report Option Equivalent Expression
    New UUT Report File for Each UUT  <ClientFileDir>\Report_<UUT>.<FileExtension>
    Prefix Sequence File Name to Report File Name <ClientFileDir>\<ClientFileName>_Report.<FileExtension>
    Add Date and Time to File Name <ClientFileDir>\Report_<FileDate><FileTime>.<FileExtension>
    Force File Name to Be Unique <ClientFileDir>\Report_<Unique>.<FileExtension>
    Client Sequence File Directory + Prefix Sequence File Name to Report File Name + New UUT Report File for Each UUT + Add Date and Time to File Name <ClientFileDir>\<ClientFileName>_Report_<UUT>_<FileDate><FileTime>.<FileExtension>
    The following table lists example expressions for common tasks using the Sequential model.
    Task Equivalent Expression
    Save reports in a directory that uses the sequence filename C:\<ClientFileName>\Report.<FileExtension>  Note  TestStand overwrites existing files unless you use the <Unique> macro or enable the Append if File Already Exists option.
    Save reports in different directories based on execution status C:\<ClientFileName>\<UUTStatus>\Report.<FileExtension>  Note  TestStand overwrites existing files unless you use the <Unique> macro or enable the Append if File Already Exists option.
    Generate report filenames that include the UUT serial number C:\<ClientFileName>\Report_<UUT>.<FileExtension>
    Generate report filenames that include the user name C:\<ClientFileName>\Report_<UserName>.<FileExtension>
    Generate report filenames that include the execution status C:\<ClientFileName>\Report_<UUTStatus>.<FileExtension>
    TestStand supports the following macros:
    <Batch>—Batch serial number the user provides during execution. If the batch serial number is empty, TestStand uses the Empty_Batch_SerialNo resource string.
    <ClientFileDir>—Directory that contains the client sequence file.
    <ClientFileName>—Name of the client sequence file.
    <Desktop>—Directory path of the desktop.
    <FileExtension>—File format extension that corresponds to the report format you specify on the Contents tab of the Report Options dialog box.
    <FileDate>—String that contains the date that TestStand when first writes the file to disk during execution.
    <FileDay>—String that contains the numeric day (1 through 31) when TestStand first writes the file to disk during execution.
    <FileMonth>—String that contains the numeric month (1 through 12) when TestStand first writes the file to disk during execution.
    <FileTime>—String that contains the time when TestStand first writes the file to disk during execution.
    <FileYear>—String that contains the year when TestStand first writes the file to disk during execution.
    <PublicDocumentsDir>—Public documents directory.
    <StationID>—Station ID during execution.
    <TempDir>—Temporary directory.
    <TestSocket>—Test socket number during execution. This value is always 0 for the Sequential model.
    <TestStandExecutableDir>—Directory of the TestStand executable.
    <TestStandPublicDir>—<TestStand Public> directory.
    <Unique>—A unique numerical value if the path evaluated already exists on disk.
    <UserDocumentsDir>—My Documents directory path during execution.
    <UserName>—Username currently logged in during execution.
    <UUT>—UUT serial number users specify during execution. If the serial number is empty, TestStand uses the Empty_UUT_SerialNo resource string.
    <UUTStatus>—UUT status during execution.
    Refer to Specifying Report File Paths by Expression for more information about each macro and about using expressions to specify the filename of reports.
    Using <Batch> maybe what you are looking for.
    There is probably an example in the TestStand\Examples folder on how to use these.
    Regards
    Ray Farmer
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Create/run Report on specific folder size on machines?

    Done some searching but can't seem to get a suitable solution for this. Essentially I want to run a report which will tall the the total size of a folder, if it exists, on all my machine. "C:\myprograms\tax". It's not in the user context which
    should make this somewhat easier?
    Does anyone know any relatively straightforward ways of getting a report on this?
    Thanks!

    ok; here's what I did in my lab (and it worked for me):
    1. Create a new ConfigItem -- check the box about "This Configuration item contains application settings".  For this example, I'm going to name it "InetPub Folder Size"
    2. Detection methods, use a custom script, powershell
       if (Test-Path c:\inetpub) {write-host exists}
    3.  Setting, New, Script, String data type, add script of Powershell.  I know your script appended "MB"; but I think from the standpoint of what I'd do with the data (potentially) once I get a report out, I'd want it to be just a raw number,
    so if I had to do stuff with that number in sql or excel, I don't have to strip out the MB part.  You'll know it's MB, right?
    if (Test-Path c:\inetpub) {
    $colItems = (Get-ChildItem c:\inetpub -recurse | Measure-Object -property length -sum)
    $result = [int]($colItems.sum / 1MB)
    write-host $result
    4.  Compliance Rules; Value EQUALS the phrase  "Report Any Value" 
    Since it will never ever return that result, everything will be a non-compliant (which is what we want)
    5. Supported Platforms: select all or just select the OS' you care about.
    6.  Create a baseline (name doesn't matter), add this CI to it.  after you add it, make sure you change Purpose from "Required" to "Optional".
    7. Deploy the Baseline on a (for example) daily re-run schedule to a collection--probably just a test box for now.
    8. Bunch of policy refreshes, and interactively run the baseline.  in the control panel applet, it SHOULD say it's non-compliant.  Locally check the report there, see what the results are (just so you see it working).
    9. in SQL Management Studio (might take a few minutes for the non-compliant value to show up from the client through your MP into your database, i.e., wait 15-20 min maybe), run this against your CM_ database:
    select
      s1.netbios_name0,
      ci.displayname,
      rooles.RuleName,
      perclientdetails.DiscoveredValue
    from
    v_localizedciproperties ci
    join vDCMDeploymentNonCompliantRuleDetailsPerClientMachine perclientDetails
     on perclientdetails.ci_id=ci.ci_id
    join v_CIRules rooles on rooles.rule_id=perclientdetails.rule_id
    join v_r_system s1 on s1.ResourceID=perclientDetails.ItemKey
    where
      ci.displayname = 'InetPub Folder Size'
     and
     ci.localeid = 1033
    order by s1.Netbios_Name0
    Standardize. Simplify. Automate.

Maybe you are looking for

  • Return of Free goods item - Problem in item category

    I am trying to create return order of Free sample billing (ZFDP). The return order type for the free sample is ZFDR. We have specified Item category for the ZFDR is RENN (Free good item) in IMG Activity -> Assign Item categories. When I create order

  • Dynamic File Name in Data Source?

    In Data Model, there is a option "File" as Type. My question is can file name be dynamic, say I set a parameter "ReportID", can this parameter be part of file name. something like {$ReportID}.xml or {:ReportID}.xml If yes, what is the syntax. Thanks.

  • How to enable "Forget Password" link on Apps 11i Login Page?

    Hi All, How to enable the functionality of "Forget Password" link on Apps login page? Apps 11i DB: 10g OS: HP-UX Thanks,

  • Can't import PSD from Photoshop

    This is weird. Trying to import a PSD file. Error message from PPro cs6 is "We were unable to open the file on disk." The file is a still image that came to me as a JPG. I read it into Photoshop cs6, cropped it, made the canvas 1920 x 1080 (to match

  • DVD writer invisible in Explorer

    After i installed iTunes on my Windows XP SP2 system and reboot it, the DVD writer/CD reader do not show up anymore. It happened already 2 times and i had to reinstall Windows. Is there a way to solve this more elegantly ?