Worker Evaluation Status Reporting Question

When I run a report for "Task Name for Worker Role" and "Performance Task Status' I get results that show some Worker's have a performance task that is "Ready" and one that is "In Progress". I'm not sure why the status is not one or the other. Does anyone have any idea why or how worker's can have an Evaluation that is both "Ready" and "In Progress". Or does anyone know how to set-up the report so that I can accurately report on where Workers are in the process?
See attached for screenshot of report returns.

Hi,
Multiprovider Works on Union relation.
Your requirement is based on Join.
Infoset works on Join.
Solution:
1.You can create a infoset if the data is comparitively less.(Infoset will have performance issue,Where at runtime joins will happen and SID would be generated)
2.Add Created date in the Snapshot Infocube and load the data from Infoobject.Then you can restrict the same.
I hope it helps.
Thanks and Regards,
MuraliManohar.

Similar Messages

  • Work Order Status report

    Hi,
    Any body have ideal?
    What are the work order summary report mean for?
    I am using T-code ZPM02 to view the report but the report display the work center according to the category CRTL,REL,PCNF,CNF,TECO and CLSD with each colunmn display the figure.
    What is mean for CRTL,REL,PCNF,CNF,TECO and CLSD?

    PeteA,
    Thank you for the information, the report is indeed a customized report.
    Could advice how to diffrentiaze between customize and standard report in SAP system?
    Can the IW39 list all orders with all the status in IW39?
    The reason being I am having problem with the customize report display (work order summary report)the status diffrence with the IW39 is the detail report.I am now looking for the SAP standard report for work order summary report to compare with the customize report to verify which report are display not correct.
    Do you have any ideal others than IW39 what others report in SAP system show the work order summary report?
    Many thanks.
    Karen

  • RSP - System Status Report question

    Hello everybody,
    I am studying RSP to tap its full power. On a system, RSP 2.1 SP01 PL00 is installed. In the "System status report", everything is nice in the section about backups: RSP "sees" backups are created. What bugs me is that backups are not created by RSP service, but by a Backup Plan in MS SQL. The how come RSP knows backups are created regularly ? Does it check for Backup plans in MS SQL, or how does the magic operates ?
    Thanks
    Gilles Plante

    Thanks Gordon.
    Last time I worked with this tool was with the beta of EWA, so I have to catch up a bit !
    This tool is quite handsome.
    Gilles Plante

  • 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

  • Status Reports - Project Online 2013

    Hey folks,
    Does Project Online 2013 support Status Reports?
    On the PWA > Status Report page, I can not seem to find where I could click to add/ configure a status report.
    \Spiro Theopoulos PMP, MCITP. Montreal, QC (Canada)

    Hi,
    when you click into a titel line, ribbon will be displayed.
    Does that work?
    Regards
    Barbara
    To increase the value of this forum, please mark the replies that helped to solve your issue as answer. If you find answers to questions from other forum participants to be helpful, please mark them as helpful. Your participation will help others to find
    an appropriate solution faster. Thanks for your support!

  • Photosmart 7520 - How to view on screen the printer status report

    How do I view on the monitor or printer screen the 'Total pages printed' figure, which otherwise I need to frequently print out via "Maintain your computer>Device reports>Print Status report"?  I'm using HP Photosmart 7520e, wireless connected, Windows 7 Ult.  Thanks.
    This question was solved.
    View Solution.

     Hello emmandell,
    Welcome back to the HP Support forums.  I understand that you would like to learn how to view your page count without having to print a Printer Status Report.
    The information can be viewed online using the printer's embedded web server (EWS).  Please follow the steps below:
    1)       Press the wireless icon  on the front panel of the printer to find the printer's ip address.
    2)      Type the ip address of the printer into the address bar of your browser, this will bring up the EWS. I recommend that you bookmark this web page for future use.  Then please click on 'Tools' tab.
    3)      Click on 'Reports' along the left hand side menu
    4)      This will print up a usage screen with the total page count shown across the top
    Hope this helps you save on ink and paper.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Group by day - evaluation date formula question

    Hello,
    I am currently working on a report for on-call coverage.  I am having difficulty grouping by date and I'm hoping someone can help me.  Here is my situation.
    The on-call database has a coverage start date and coverage end date.
    Person A has a coverage start date of 9/1/2009 and a coverage end date of 10/5/2009.
    Person B has a coverage start date of 9/15/2009 and a coverage end date of 10/10/2009.
    The report I am trying to create needs to be grouped by the calendar day of coverage.  What I mean is, I need to be able to evaluate the coverage for a particular day.
    If I run the report for the evaluation date of 9/10/2009, it would show Person A, their coverage start date and coverage end date.
    If I run the report for the evaluation date of 9/20/2009, it would show Person A and Person B, with their respective coverage start and end dates.
    My question is, how do I create this evaluation date?
    Since this is a report for on-call coverage, I will also need to run this evaluation date into the future to confirm that there aren't any gaps in coverage.
    What I need to do is run this report for so the evaluation date would be for the next month.  So if I ran the report today, it would show me the on call coverage for November 2009, grouped by day.
    Any help you can provide would be greatly appreciated.

    You will need a calendar-type table, with one record per date.  Then, base your report on something like (MS SQL):
    select calendar.date, on-call.name
    from calendar, on-call
    where calendar.date between '{?lowDate}' and '{?highDate}'
    and calendar.date between on-call.start_date and on-call.end_date
    The first condition of the Where clause selects all of the dates that you want to report.  The second selects each person on-call for each of the dates from the calendar.
    You could also code a loop in the SQL Command, but calendar tables are really quite handy.  (For example, to indicate what dates are company holidays, where no on needs to be on call...)  I'd suggest setting one up if you don't have one available.
    HTH,
    Carl

  • What is the USE for a TEST PAGE/Printer Status REPORT

    Have you read post or forums and a tech wants you to see if you can print a test page or Printer status report?
    This is a test to make sure the printer's function is working correctly. Sometimes you can't print from your printer and everything is stuck and you may think it's the printer. If you can print this test page, then most likely it will be a software issue or connection issue. 
    The information contained in a test page can help diagnose a printer problem or to review information particular to the printer. Test pages can be printed by using the print control panel or the computer.
    The print test page function prints a page with several cartridge print patterns and a numbered list containing printer specific information.
    I hope this is helpful to the community. 
    **Click the KUDOS star on the left to say 'Thanks'**
    Please mark a reply "ACCEPTED AS SOLUTION" if it solved your problem, so others can find it.
    This question was solved.
    View Solution.

    Thanks for reading. 
    **Click the KUDOS star on the left to say 'Thanks'**
    Please mark a reply "ACCEPTED AS SOLUTION" if it solved your problem, so others can find it.

  • EAM Maintenance Work Order Detail Report

    Hello All,
    I have a requirement to add new fields to the Maintenance Work Order Detail Report which is run from the web page. This report's RTF template works based on the fields which are defined in the seeded data definition. This seeded data defintion has an seeded XSD file with the fields in it. By the RTF template I got the standarad concurrent program name as Maintenance Work Order Detail Report.
    I assumed the following process to happen when the Run button on the EAM work order page is clicked.
    1. Concurrent program Maintenance Work Order Detail Report is submitted
    Executable: PL/SQL Package EAM_WOREP_PUB.Work_Order_CP
    Seeded Data Definition: Work Order Details -- This DD has a seeded XSD file EAMWOREPORT.xsd
    2. So the RTF template based on the pl/sql package and the XSD file generates the report and displays.
    Please correct if my assumptions are wrong.
    I want to add new fields to this report. So I have customized the pl/sql package, modified the code with new fields and created a custom data defintion with a new XSD file with the new fields added in it. Also created a new template linked to new data defintion. After doing all this I am not able to see the new fields on the report generated they come as NULL.
    My question is Is it feasible to add new fields to this Maintenance Work Order Detail Report or we can use only the fields which the seeded one gives?
    Version: R12.1.2
    I tried and tried but couldn't find a solution to it. If anyone has faced the same issue please let me know.
    Thank You!!

    IW47 should give you the required information.
    Regards
    Narasimhan

  • PO - Line Items Payment Status Report

    Hi Friends,
    Is it possible to get a PO (Line Items wise) Payment Status Report.
    My client wants PO Line wise payment status as a MM report development.
    We have Down Payment, Residual & Retention money as a business practise with our vendors
    Following is the MM-FI flow in our company code..
    Create & Release PR u2013 MM - Creating PR
    Create & Release PO (ME21N) u2013 MM u2013 Creating PO
    F-47 Down Payment Request u2013 MM u2013 Creating DPR
    F-48 Post Vendor Down Payment u2013 FI - Posting DPR
    FBZ5 Print Check for Payment Document u2013 FI - For printing cheques for DP only
    MIGO/ML81N, GR u2013 MM u2013 SES/GR for PO
    MIR7/MIR6 IR - MM/FI u2013 Parking & IR
    F-44 Clear Vendor u2013 Linking advance with IR (as residual clearing)
    F-53/F-58 u2013 Posting Payments after deducting Retention
    F-04 Post with Clearing u2013 Clearing Outgoing account entries with Main account
    Thanks in advance.
    Regards,
    Vikrant Sood
    Moderator: This thread has been locked due to crossposting.
                       Please do not post the same question in different forums.

    hi
    there is no sap standard report available you have to develop your z report.

  • Status report 404 on tomcat

    I have hit a bit of a wall with regard to deploying a servlet using tomcat.
    I have followed and endless list of instructions I found on various web sites, but still I am having trouble.
    The versions of tomcat I have is 5.0 with the j2sdk1.4.2_03.
    My project allows for a user to enter a url in a form, which is then processed by a java servlet, and links within the url are validated. The problem I�m having is that when the form is submitted, tomcat returns the status report: 404 requested resource unavailable.
    The url entered is http://localhost:8080/sitevalidation/INDEX.HTM - this works fine and the home page appears.
    When the form is submitted, the url changes to http://localhost:8080/sitevalidation/SiteValidation - which I assume is then looking for the servlet declared in the web.xml file, this is when the problems start!
    I think I have the correct file structure as I have included the application dir �sitevalidation� in the webapps directory of tomcat. Sitevalidation contains the web-inf dir, which in turn contains the web.xml file, and the classes dir, which contains SiteValidation.class.
    my web.xml file reads:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC
    "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <display-name>Site Validation</display-name>
    <description>
    This is the Site Validation Program Written in Java
    </description>
    <servlet>
    <servlet-name>SiteValidation</servlet-name>
    <servlet-class>SiteValidation</servlet-class>
    </servlet>
              <servlet-mapping>
    <servlet-name>SiteValidation</servlet-name>
    <url-pattern>/SiteValidation</url-pattern>
    </servlet-mapping>
    </web-app>
    Any suggestions to where I might be going wrong would be most appreciated.
    Many thanks,
    Dan Williams

    Hello.
    Uncomment the InvokerServlet in the $CATALINA_HOME/conf/web.xml.
    <servlet>
    <servlet-name>invoker</servlet-name>
    <servlet-class>
    org.apache.catalina.servlets.InvokerServlet
    </servlet-class>
    <init-param>
    <param-name>debug</param-name>
    <param-value>0</param-value>
    </init-param>
    <load-on-startup>2</load-on-startup>
    </servlet>
    and
    <servlet-mapping>
    <servlet-name>invoker</servlet-name>
    <url-pattern>/servlet/*</url-pattern>
    </servlet-mapping>
    Then your target URL will http://localhost:8080/sitevalidation/servlet/SiteValidation .
    Good luck.

  • Status report time machine backup by e-mail

    Hello,
    i'm using Leopard server (workgroup mode) and want to know if there is a way to get a time machine backup status report by e-mail
    It's important for us to know every day if time machine was able to backup ok or if there are problems.
    thanks for suggestions
    Marco

    Although you can restore messages from a Time Machine snapshot within the Mail application, it generally won't work with messages that were saved by an older version of Mail. In that case, you have to use an alternative method.
    Triple-click the line below to select it:
    ~/Library/Mail/V2
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder selected. Inside that folder are subfolders representing your Mail accounts. The names refer to the email addresses you use. Decide which ones you want to restore messages from.
    Enter Time Machine and scroll back to the snapshot you want. Select the account folders you want and then select  Restore ... to... from the action menu (gear icon) in the toolbar of the snapshot window. Restore the folders to the Desktop, not to their original location.
    From the Mail menu bar, select
    File ▹ Import Mailboxes...
    Import from the mailboxes in the folders you restored to the Desktop. The imported messages will appear in a new mailbox. Move the ones you want to keep wherever you like and delete the rest. Then delete the folders on the Desktop.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Status report template activation and assignment

    Hi,
       when I try to create Status report after selecting the Document folder and clicking the New Status report in  Status Report tab of cproject,  an error message is appearing as
    'No templates for status reports have been entered for the project type' .
    Where can assign the templates for staus reports?(SPRO or somewhere)
    Also We have configured ADS already and able to generate Approval Documents. Can anyone guide this problem?
    Regards,
    Ramesh
    muthurameshsap at gmail com

    Hi Bharathi,
    First check whether ADS is installed on Java stack. For this goto SA38 transaction and give report name FP_TEST_00 and execute it. Leave the fileds as it is and execute it. A dailog box will pop up asking printer name. Give it as PDF1 and check preview.
    If it is working fine, check if any forms are active for the project type you have taken.
    For example, if you took upgrade project, goto spro > cprojects > basic settings > forms for printing and for status reports > Execute activate forms per project type.
    Select Your project type and double click on PDF print form. If you are not able to see any entries, goto new entries and select DPR_STATUS_REPORT_AIF and check the boxes Active and Status Report.
    Revert if any issue.
    Regards,
    Syam
    Edited by: syam sundar on Oct 28, 2008 4:55 AM

  • How to configure a new status report in cProjects?

    First of all, the standard status report PDF is not rendering at all when we generate the status report - we CAN send it with the appropriate data, though, so we know that the program is gathering the data. All of our other custom interactive PDFs are working fine.
    Our issue is that we'd like to create a new custom status report but can't figure out how to do it.
    We've done the following:
    1) create a read only form (zstat_rpt)
    2) in SPRO, for our capital and expense project types, we've entered
    ZSTAT_RPT in the PDF Print Form sub-folder. Marked it as ACTIVE and
    checked the Status Rpt checkbox.
    3) Unchecked the DPR_STATUS_REPORT_AIF Status Rpt and Active checkboxes
    4) Under Badi: PDF-Based Forms in SPRO, we created a new Enhancement
    Implementation (zrp_eimp_stat). It uses BAdi Implementation DPR_STATUSREPORT_AIF
    and the description shows as Izrp_eimp_statmplementation: BAdI: PDF-Based Forms
    5) In SE19, I go to the badi implementation, into method GET_FORM_NAME and changed
    the Returning parameter RV_FORM_NAME to ZSTAT_RPT (my pdf form).
    Now, when i go to generate the status report, I get a message "No templates for status reports have been entered for the project type" - I know my project type is capital.
    any help on this? any steps I'm missing?

    Hi,
       I dont think that we can insert new records in WE47, but we can develop the logic in the idoc population program to add status to the idoc.
       Please let me know if you need the program code.
    Regards,
    donepudi

  • How to Extract data from a Request management tool to Apex to avoid working on Excel reports

    Client uses a ticketing tool,I donot know what is the database for the tool,but I would like to know the best way to extract data from the tool to pex so that we can eliminate working on Excel reports.These excel reports are basically the open request log,resolved tickets,aging tickets etc,currently we work on many excel reports,can we achieve this in Apex ,if so how do we achieve this.Then we would like to use this report and prepare multiple charts,how the above two requirements can be mapped.

    A very important function for the system will be - one sends an email in certain format to a dummy email address, then some data will be extracted from the email based on the pre-defined format and inserted into the database my APEX application is using.
    Any idea on how I can make it happen please? I agree that this is not really an Apex question, but a more general PL/SQL question.
    There are many approaches, all boiling down to one of these two:
    1) Push: Some process in the mail server sends/forwards information to your database when new mail arrives.
    The language/tools used to do this, and the way it would connect to your database, depends on your environment (what is your operating system? mail server? existing middleware/tools? security protocols used? etc.).
    2) Pull: Some process in the database contacts the mail server and polls for new information.
    Ie. some PL/SQL code would communicate with the mail server. Again, it depends on your environment (what is your operating system? mail server? existing middleware/tools? security protocols used? etc.).
    For example, if you are using Exchange 2007 or newer, it has a web services API:
    http://msdn.microsoft.com/en-us/library/dd877045.aspx
    The challenge here will be to build the correct SOAP requests from PL/SQL, and to handle the security protocols used.
    - Morten
    http://ora-00001.blogspot.com

Maybe you are looking for