Work status custom report

Hi Gurus,
I have built a work status custom report. The user was able to change status. When i run my custom EVDRE report no values are retrived for status, user and date/time stamp columns. I am using simple
EVLCK function. I think something is blocking/filtering retrival of data.
Best Regards,
Suresh.

Hi Suresh,
I am looking for the functionality in which we can display the current work status in our BPC excel sheet.
Do you mean the same when u tell work status custom report.
My actual idea is to display the current work status to the user. If you are meaning the same... can you please let me know how have you built the custom report?
Regards,
Swetha

Similar Messages

  • Work Status Report Date and Time Setting

    Hi all
    We are running BPC10 on servers configured with Central European Time which is currently 2 hours ahead of GMT allowing for Daylight Savings Time.
    From what i can see in BPC10 date and times are now stored in GMT (Zulu time) in the Audit activity tables so when a user updates the work status at say 11:00AM local CET time then a value of 09:00AM GMT is stored in the Audit Activity Header table.
    We have a report in excel that uses the EVLCK formula and will return the correct value of 11:00 am however if we run the Work Status Audit report on the Planning and Consolidation home page with user preferences set to Central European Time +1 then the time is displayed as 10:00am suggesting that daylight savings time is not accounted for. We need to set the time to Eastern European time +2 hours to display the correct figure.
    Can anyone explain why this happens? Has DST been overlooked?
    Rgds
    Alan

    Hi Alan,
    probably it's a bug, I think it's better you open an OSS message to SAP.
    Regards
         Roberto

  • Is there anyone at all here who has successfully compiled and deployed an SSRS custom report item in VS2012?

    Is there anyone at all here who has successfully compiled and deployed an SSRS custom report item in VS2012?  Is there a demo out there that actually works in VS2012?  Is there anyone who has actually been able to compile and deploy that
    apparently obsolete Polygons demo?  (Pardon my impatience but I'm running a bit short of time here.)
    After much hacking and googling I was able to get Polygons to compile but I still can't deploy it to the toolbox.  ('The custom report item type PolygonsDesigner is not installed').   I've modified the RSReportDesigner.config
    as instructed but I have no rssrvpolicy.config file on my local machine and
    as yet I have no idea if that is necessary for local development.
    In order to get it to compile I first added the reference  C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportingServices.ProcessingCore.dll to both projects.
    To the PolygonsDesigner Project I also added the references:
    C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportDesigner.Controls.dll
    C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportingServices.Designer.11.0.dll
    C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\Microsoft.ReportingServices.Interfaces.dll
    Are these the correct references?  
    Exactly what software do you need installed on your local machine in addition to VS2012 in order to create a custom control?
    (Designer.11.0 was added per the instructions in reference: https://connect.microsoft.com/VisualStudio/feedback/details/783391/unable-to-integrate-previously-working-ssrs-custom-report-item-to-vs-2012s-toolbox  
    After that I added the alias RSDesigner to it's properties and   extern alias RSDesigner; at the top of the PolygonsDesigner.cs file. )
    As of now, the top of the PolygonsDesigner.cs is as follows.  I don't recall making any other changes to the code.  As far as I can remember this is all I did in order to be able to compile the code in VS2012.
        extern alias RSDesigner;
        using System;
        using System.ComponentModel;
        using System.ComponentModel.Design;
        using System.Collections;
        using System.Collections.Generic;
        using System.Diagnostics;
        using System.Drawing;
        using System.Windows.Forms;
        using Microsoft.ReportDesigner;
        using Microsoft.ReportDesigner.Design;
        using Microsoft.ReportingServices.Interfaces;
        using Microsoft.ReportingServices.RdlObjectModel;
        using System.Xml;
        using System.Xml.Xsl;
        using System.Xml.XPath;
        [LocalizedName("Polygons")]
        [Editor(typeof(CustomEditor), typeof(ComponentEditor))]
        [ToolboxBitmap(typeof(PolygonsDesigner), "Polygons.ico")]      
        [CustomReportItem("Polygons")]
        [ToolboxItem(typeof(RSDesigner::Microsoft.ReportDesigner.Shell.CRIToolboxItem))] 
        [System.CLSCompliant(false)]
        public class PolygonsDesigner : CustomReportItemDesigner
        {   etc...

    Just fixed this myself.
    It appears the documentation online is wrong and the sample code is missing a reference to a reporting services dll and an attribute.
    What you need to do to get it working in VS2012 is add a reference to: Microsoft.ReportingServices.designer.11.0.dll to the PolygonsDesigner project and then add the following attribute to the PolygonsDesigner class: [ToolboxItem(typeof(Microsoft.ReportDesigner.Shell.CRIToolboxItem))]
    I also removed the [System.CLSCompliant(false)] attribute.
    You then recompile and place both dlls in C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies directory and the PolygonsDesigner.dll into the C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\bin
    or what ever is you reporting services path.
    You also need to change the Microsoft example for the rereportserver.config file to:
        <ReportItemDesigner>
       <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsDesigner, PolygonsDesigner" />
        </ReportItemDesigner>
        <ReportItems>
       <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsCRI,PolygonsCRI"/>
        </ReportItems>
     Notice that I changed the namespaces and class to what is in the actual code so if you change it make sure you change it here.
    And here in the RSReportDesigner.config:
    <ReportItems>
          <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsCustomReportItem,PolygonsCRI" />
        </ReportItems>
        <ReportItemDesigner>
          <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsDesigner, PolygonsDesigner" />
        </ReportItemDesigner>
        <ReportItemConverter>
          <Converter Source="Chart" Target="Polygons" Type="PolygonsCRI.PolygonsConverter, PolygonsDesigner" />
        </ReportItemConverter>
    Notice I haven't changed the last part as I didn't know what the PolygonsCRI.PolygonsConverter was.
    And make sure the rssrvpolicy.config looks like this:
         <CodeGroup class="UnionCodeGroup" version="1" PermissionSetName="FullTrust" Description="This code group grants PolygonsCRI.dll FullTrust permission. ">
           <IMembershipCondition class="UrlMembershipCondition" version="1" Url="C:\Program Files\Microsoft SQL Server\MSRS10_50.SQLSERVER\Reporting Services\ReportServer\bin\PolygonsCRI.dll" />
        </CodeGroup>
    After a restart of ssrs and relaunch of VS2012 I opened a test project and added the PolygonsDesigner.dll to the toolbox and it works.
    Jamie

  • PP-PM-QM combined customized report doubts

    Dear all,
    I am working on customized reports.Its a repetitive manufacturing
    This report combined all the three modules
    According PM-Mech Breakdown,Electrical Breakdown,Material shortage due to transport
    According to qm-Tell me the basic things in QM  how will collect qm reports by keeping with reference to what?
    Note:To make this report PP is the basic plat form
    since its repetitive manufacturing we can not take any order number for reference to develop this report.
    Kindly let me know your suggestions and also please give the related tables for repetitive manufacturing,PM & QM
    Regards
    Rajasekaran

    Once invoice posted via LIV is blocked, it needs to be released, there is no automatic block removal. Normally MRBR prog. is scheduled to run once a night, this will do the clearing.

  • Custom report for Workflow approval status

    Hi Friends,
    For one of my custom workflow the client needs a custom report to know the approval status. This custom workflow will be a multilevel approval and they want to know the status based on the object key(document number) like who has approved it at what time, who else has to approve etc which standard workflow tables can be used for this? Please advice.

    >
    sapient wrote:
    > Solved as per Arghdip,Martin and Mike's Suggestions.
    Thanks for the update, but how is this possible if two of them are completely different solutions? 
    This is a tecnical forum, accuracy is key. The word "and" doesn't really work in the above statement.

  • Work Status Report

    Hi,
    I was wondering if there is a work status report available in the system?  What I would like to see is a summary of which dimensions are locked in BPC so that I can monitor it to ensure that someone doesn't accidentally open something by mistake. 
    Currently I have to go through BPC Web and check the dimensions manually.  If there is no report can someone confirm where the work status data is stored so that I can have one built.
    Is this the table (where "finance" is the application)   -  [dbo].[tblFinanceLock]  ??
    thanks in advance.

    Hi,
    You're right, work status information are stored in "tbl<App>Lock".
    Concerning your first question, you can build a BPC for Excel report that retrieves work states.
    Having for example an expansion on all entities, you can use EVLCK function (from 5.1 version) or EVASV function (in CPM 4.2). You can then do whatever you would like to send it to others via distribution list or other.
    Hope this will help.
    Kind Regards,
    Patrick

  • Link in my customized Report Template doesn't work – Apex 3.1

    I created a report template based on columns of my report
    My query report is:
    SELECT MEM_NAS ID, MEM_NOM NAME, MEM_DATE_NAIS BIRTH
    FROM ACMT_MEMBRE;
    My customized report template have this Row Template definition:
    <tr onclick="redirect('f?p=&APP_ID.:6:&SESSION.:::6:P6_NAS:#ID#');">
    <td #ALIGNMENT# class="t16data_edit">#NAME#</td>
    <td #ALIGNMENT# class="t16data_edit">#BIRTH#</td>
    </tr>
    This would redirect to the page 6 when user click anywhere on a row but it doesn’t work.
    I have this error message:
    CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');">
    I realized that problem is caused by #ID# because if I hardcode this ID, it works.
    How can my report template get the “ID” from my query report ?
    Apex version: 3.1
    Edited by: mario_romero77 on Jun 8, 2012 10:06 AM

    mario_romero77 wrote:
    I created a report template based on columns of my reportAlways post code wrapped in <tt>\...\</tt> tags to prevent the forum software mangling it.
    My query report is:
    SELECT MEM_NAS ID, MEM_NOM  NAME, MEM_DATE_NAIS  BIRTH
    FROM ACMT_MEMBRE; My customized report template have this Row Template definition:
    &lt;tr onclick="redirect('f?p=&APP_ID.:6:&SESSION.:::6:P6_NAS:#ID#');"&gt;
    <td #ALIGNMENT# class="t16data_edit">#NAME#</td>
    <td #ALIGNMENT# class="t16data_edit">#BIRTH#</td>
    </tr>
    Is the report template definitely of type Named Column (row template) (defined on App Builder page 4000:4654) and not Generic Columns (column template) (defined on page 400:258)?
    Note that the <tt>#ALIGNMENT#</tt> substitution string is not supported in named column templates. Set column alignment explicitly using HTML attributes in the template, or use CSS.
    This would redirect to the page 6 when user click anywhere on a row but it doesn’t work.
    I have this error message:
    CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');"> CHECK$01');">
    {code}Where do you see this? It looks like there's a mismatch between the report columns returned by the query and those referenced in the report template. Or the data contains unsafe HTML characters that aren't being escaped.
    Yes, my report query has a column called ID and it's set as Hidden. This could be the problem. In a report based on a named column template any columns referenced in the template must be +shown+ in the report, even if (as in this case) the column value is not visible to the user: the positioning of the <tt>#ID#</tt> column placeholder in the <tt>onclick</tt> attribute rather than in a table cell is what makes it "hidden". *The Show checkbox for the ID column must be checked.*
    From the gobbledygook being generated it looks like there could be a row selector checkbox column in this report as well? Named column row templates must include substitution placeholders for every shown column. It's also advisable to keep the columns in the same order in the SQL, report column attributes and row template.
    Something like
    {code}
    &lt;tr onclick="redirect('f?p=&APP_ID.:6:&SESSION.:::6:P6_NAS:#ID#');"&gt;
    <td class="t16data_edit">#CHECK$01#</td>
    <td class="t16data_edit">#NAME#</td>
    <td class="t16data_edit">#BIRTH#</td>
    </tr>
    {code}
    I realized that problem is caused by #ID# because if I hardcode this ID, it works.
    How can my report template get the “ID” from my query report ?If the above doesn't help then the easiest way to troubleshoot this would be for you to upload the app to apex.oracle.com and post guest developer credentials for the workspace so we can see the whole thing: template, SQL, and report attributes. Otherwise we're likely to and up with a lot of tedious to and fro here posting bits of code and attribute values.

  • Custom report definition file (.rdf) not working in release 12

    I have created a custom report XXX_VENDORS.rdf and uploaded to the server. While executing the concurrent program, it asks for XXX_VENDORS.rep file. How can I execute an .rdf file in Release 12?

    While executing the concurrent program, it asks for XXX_VENDORS.rep file.rdf files should work with R12. The CM would ask for the .rep if it could not find the .rdf file. Please make sure you have uploaded the file to <PROD>_TOP/reports/<lang> directory.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Custom Report Items in VS2010 or VS2012 ? Does it work

    Does anyone know if Custom Report Items actually work in either VS2010 or VS2012.
    I have taken the 2008R2 Polygons sample and compiled it using VS2010 and VS2012 and neither actually work in either version.
    There are no assembly linking errors, but the compiled dlls either can't be added to the toolbox in VS2012 or can't load the type in VS2010.
    I have tried everything and was interested if Microsoft had been able to get it working them selves.
    My next step is to write my own, but was wondering if it actually works before I try.
    Jamie

    Just fixed this myself.
    It appears the documentation online is wrong and the sample code is missing a reference to a reporting services dll and an attribute.
    What you need to do to get it working in VS2012 is add a reference to: Microsoft.ReportingServices.designer.11.0.dll to the PolygonsDesigner project and then add the following attribute to the PolygonsDesigner class: [ToolboxItem(typeof(Microsoft.ReportDesigner.Shell.CRIToolboxItem))]
    I also removed the [System.CLSCompliant(false)] attribute.
    You then recompile and place both dlls in C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies directory and the PolygonsDesigner.dll into the C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\bin
    or what ever is you reporting services path.
    You also need to change the Microsoft example for the rereportserver.config file to:
        <ReportItemDesigner>
       <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsDesigner, PolygonsDesigner" />
        </ReportItemDesigner>
        <ReportItems>
       <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsCRI,PolygonsCRI"/>
        </ReportItems>
     Notice that I changed the namespaces and class to what is in the actual code so if you change it make sure you change it here.
    And here in the RSReportDesigner.config:
    <ReportItems>
          <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsCustomReportItem,PolygonsCRI" />
        </ReportItems>
        <ReportItemDesigner>
          <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsDesigner, PolygonsDesigner" />
        </ReportItemDesigner>
        <ReportItemConverter>
          <Converter Source="Chart" Target="Polygons" Type="PolygonsCRI.PolygonsConverter, PolygonsDesigner" />
        </ReportItemConverter>
    Notice I haven't changed the last part as I didn't know what the PolygonsCRI.PolygonsConverter was.
    And make sure the rssrvpolicy.config looks like this:
         <CodeGroup class="UnionCodeGroup" version="1" PermissionSetName="FullTrust" Description="This code group grants PolygonsCRI.dll FullTrust permission. ">
           <IMembershipCondition class="UrlMembershipCondition" version="1" Url="C:\Program Files\Microsoft SQL Server\MSRS10_50.SQLSERVER\Reporting Services\ReportServer\bin\PolygonsCRI.dll" />
        </CodeGroup>
    After a restart of ssrs and relaunch of VS2012 I opened a test project and added the PolygonsDesigner.dll to the toolbox and it works.
    Jamie

  • Can Actions Menu of Interactive Reports work with Custom Authentication?

    My testing is leading my to believe that Actions Menu do not work with Custom Authentication (but only work with APEX Authentication) in APEX 3.1.2? If that's true then is there a work around to this?
    Just to clarify, I've posted/asked this question twice before:
    1) Re: Actions Menu in Interactive Reports does not sort, filter, select cols etc
    2) Interactive Report actions don't work for users (i.e. for non-developers)
    But I've come to believe this is the main problem. I just don't know how to resolve/work around this?
    Thanks for any help.

    I haven't setup a sample because my custom authentication is using LDAP authentication. I'm not sure how I can replicate that on the samples server?
    I'm using LDAP authentication with a Page Sentry function. My further testing reveals that the Page Sentry function is setting the APEX variable user to NULL (ie blank) whenever there's any code in the Page Sentry function box. PL/SQL code as simple as
    BEGIN return TRUE; END;
    in the Page Sentry function box sets the "user" is set to <null>. When the Page sentry function box is left empty (no code specified) it sets the "user" properly after authentication against the specified LDAP directory.
    What all this has to do with Interactive Reports...
    It seems like when the user is NULL it messes-up Interactive Reports that are stored in the flows database. Although it shows the default report properly, but no runtime interactive actions (filtering, sorting, column break, etc.) work.
    Can someone please correct or confirm this?
    Thanks.

  • SAP CRM Interactive Reporting - Custom reports not working

    Hello All,
    We have set up C41 step by step in our system (CRM 7.0) .When I try to create a new report, and share it, it gets shared. Till here all is well.
    Post this if I try to execute this new custom report (which is just a copy of std report), it doesnt work.
    Please advise.
    Regards
    Priyanka

    Hi,
    RE:
    it doesnt work.
    Could you elaborate problem more detailed?
    Denis.

  • Stopping Customer Report doens not work

    Hi All,
    I implemented my customer report, which deletes versions of documents which has the same content (comparing the hashcodes).
    For traversing a folder hierarchy I used the HierarchyWalker-API.
    Now my problem:
    How can I stop my report? - I cannot find a method for stopping within the IReport interface.
    Many thanks for helping me
    Bye Steve

    Hi epexpert,
    thanks for your reply.
    Only two questions:
    (1) What do you mean with "confuse the reporting framework"?
    (2) In the SAP Reports you can stop the reports manally, why shouldnt this work with the custom reports?
    Many thanks
    Steve

  • Incompatibility for custom Report is not working properly

    Hi Gurus,
    Need your help to diagnose the issue here.
    The problem here is as under
    We have a custom report CP1 which fills a table T1 during the process (table is truncated in the begining of the procedure). This CP1 is set incompatible to itself so that table architecture will work properly.
    but the problen here is the next run starts ( 2sec, 5 secs or 10 secs) prior to the actual completion of the last run.
    the data is as
    CONCURRENT_ REQUEST ACTUAL_START ACTUAL_COMPLETION_
    PROGRAM_ID ID                DATE     DATE
    138361     3033673     7/3/2012 10:31:46 AM     7/3/2012 10:57:13 AM
    138361     3033671     7/3/2012 10:28:47 AM     7/3/2012 10:31:42 AM
    138361     3033670     7/3/2012 10:25:22 AM     7/3/2012 10:28:48 AM
    138361     3033669     7/2/2012 7:07:21 PM     7/3/2012 10:25:37 AM
    138361     3033665     7/2/2012 7:05:10 PM     7/2/2012 7:07:15 PM
    here as you see the req 3033670 starts @7/3/2012 10:25:22 AM whereas the req 3033669 ends at 7/3/2012 10:25:37 AM (though we have terminated the 3033669 ) similarly for 3033670 and 3033671.
    the following query is giving 1 row
    select * from FND_CONCURRENT_PROGRAM_SERIAL
    where RUNNING_CONCURRENT_PROGRAM_ID = 138361 is
    We have bounced the CM after setting the incompatibility as per the
    Setting up Incompatibility Rules for Custom Reports [ID 107224.1] suggested by Hussein on this forum.
    This is happening on our prod env. kindly suggest something.
    We are on 12.1.1 (r12).
    Thanks
    -Shivdeep Singh
    Edited by: user1054040 on Jul 2, 2012 10:58 PM

    Hi Srini,
    We have raised a SR with oracle for this it seems to be a bug in 12.1.1 release I will update the same once I got any fix or patch from oracle.
    from the intial investigation it seems to be that the imcompatibility wit itself feature is not working as expected.
    Also this is the latest case
    CONCURRENT_
    PROGRAM_ID REQUEST_ID ACTUAL_START_DATE ACTUAL_COMPLETION_DATE COMPLETION_TEXT
    150364     3036174     7/3/2012 4:55:03 PM     7/3/2012 4:57:04 PM     Normal completion
    150364     3036178     7/3/2012 4:55:57 PM     7/3/2012 4:57:47 PM     Normal completion
    150364     3036181     7/3/2012 4:57:27 PM     7/3/2012 4:58:09 PM     Normal completion
    the request id 3036178 should have been started after the completion of 3036174 ie after 7/3/2012 4:57:04 PM but it actually starts 7/3/2012 4:55:57 PM
    hope this give the better understanding for the scenario here.
    Thanks
    -Shivdeep Singh
    Edited by: user1054040 on Jul 4, 2012 11:36 PM

  • Displaying current work status in BPC Excel report

    Hi All,
    Could any of you tell me how do we retrive the current work status that has been set for a particular application on to a Excel?
    We would get this in BPC WEB reports, but we are lookin gto display it in excel itself.
    Does EVLCk function have any link with this?
    can any one share the details of list of EV functions that can be used in BPC 7.0.
    Regards,
    Swetha

    Hi Swetha-
    SAP Note 1348997 "BPC NW 7.0 SP03 Work Status Explanation" provides a detailed PowerPoint deck that explains the specifics around Work Status.  Please note slide #39 and the mention of EVLCK.
    A few additional notes that may be of interest:
    EVLCK became available to SAP BPC 70 NetWeaver with SP02 (pls review SAP note 1310443, as well as the "BPC 7.0 SP03 NW Documentation Updates" in Note 1349538).
    Regards,
    Sheldon

  • Material Order Status Report - Custom report error

    Hi,
    It is a Custom report to list Open PO's with the following logic.
    1. If validity date is less than today, PO is considered closed and that PO wont appear in the report.
        If point 1 failed, (means validity date in future) then goes to point 2.
    2. At item level,
       (a) Check if the quantity ordered is delivered (in service PO if planned/unplanned limit got reached)
                                     or
       (b) if Delivery completed indicator is checked
    in point 2 if either a or b is there, the PO is considered closed and should not appear in the report.
    We checked the program logic is fine.
    Problems:
    1.But the list shows few Closed PO's with Delivery comp ind checked.(Material PO's)
    2.In some service PO's the unplanned limit is not reached but so far some thing is delivered and Del   comp is marked. But still it appears in the report.
    In both cases the PO should not appear in the report. How to check?
    Regards
    Ramprakash

    Hi,
    If the logic that you checked proved correct, then you will have to get your ABAPer to debug your program to find out if change shall be made in the program logic coding.
    Cheers,
    HT

Maybe you are looking for

  • Calling a BSP application's View directly

    Hello, I am using BAB to simplify 'Maintain Opportunity' BSP. After the simplification, when calling the BSP in portal, I could not call the view 'ACT_LEAN' directly. I can see only the standard BSP in the portal and not the changed one. Following ar

  • Installing the Mobile Client

    Hello, I am following the document Oracle® Database Mobile Server Mobile Client Guide Release 11.1.0. My client platform happens to be Blackberry RIM 5.0. http://<mobile_server>:<port>/mobile/setup takes me to the setup page in the Blackberry Simulat

  • Do I uninstall CS5 & CS6 before downloading CC?

    I have Master Creative Suite CS5 (disk) installed on my iMAC running Mountain Lion 10.8.5.  Some time ago I subscribed to Creative Cloud and installed CS6.  Major computer problem caused me to have to wipe the hard drive and restore from the backup d

  • Powershell termination script to remove manager from direct reports

    Working on a powershell script for termination and I want it to remove the terminated user from the manager field of any users that currently have it.  I know I can't use the direct reports data as it doesn't link correctly. Looking essentially for a

  • Why can't I download Airport 5.6.1

    I am unable to download AirPort 5.6.1. What am I doing wrong?