Query on Cats data, employees that have not filled in their data.

Hi,
I have to create a query that will report on all the employees that have not filled in their timesheets. The 0CATS_C01 cube does not contain that data, it only has the employees that have filled in their  timesheets.
The route I have decided to take with this requirement is to create a cube with each employee and ecah day of the year and then create a multiprovider with the 0CATS_C01 cube and create an exception report with this multiprovider. I am not sure that this is the best way to go about this report.
However I am stuck at the new employee cube - I don't know how to add a record for each employee and each day to the cube.
Experts, could you please suggest a  better way of developing this query, and also a solution to adding a record for each employee and each day of the year, I think that I could do this in the "Start Routine" of the update rule, but am uncertain.
Please help.
Thanks in advance !

I have not worked with CATS data, but consider an InfoSet of employee and the InfoCube. This would provide a list of all emplyees and their CATS data. Create a query, and select by time, and filter by a key figure in the CATS infoCube < 1.
Also consider using a one characteristic DSO instead of the employee master data of "active" employees and using that in the InfoSet. (We probably don't need to know that an an employee who quit six months ago did not fill in his time sheet!)
Good luck,
John Hawk

Similar Messages

  • How to Retire Employees who have not been Payed their Dues.

    Well i have a situation where by employee's assignment have been suspended or the employee is retired by the company now this company does not want to pay their dues as of same pay period as it takes some time and payments are usually issued in some future date so how can we Retire or Suspend such employees? "Usually we try to do it normal way of retiring or suspending an employee through Navigating to People >Enter & Maintain window Query the employee click on Other Button End Employement." Now the issue is...
    since the employee is being payed in some future date we are failing to see those employees(i.e. End Employement) in the Payable Module....?
    All Suggestion/Comments are appreciated.
    Regards,
    Chetan

    Ankur please note I have defined all my elements as of Last standard process.
    so does that mean that what you have suggested earlier will work fine.
    ( i.e."From the payroll point of view, While terminating , enter only Actual termination date and leave Final process date blank. This will let you process employee payroll even though he is terminated".)
    Regards,
    Chetan

  • How to get master data records that do not have transaction data in a query

    Hi,
    How to get master data records that do not have transaction data in a query output. Can we create a query or any other way to get the master data records that do not have transaction data?

    Hi,
    Create a multiprovider which includes transactional data target and master data info object. Make sure that identification for this master data info object is ticked on both the provider.
    Create report on this multiprovider , keep the master data info object in rows , and now you should able to see all the values which are there in master data info object irrespective of transaction happened or not .
    Next you may create condition showing only zero keyfigure values , ie. master data without any transaction.
    Hope that helps.
    Regards
    Mr Kapadia

  • How to store xml data fragments, that will not be queried?

    Hello,
    Delphi Client application communicates with Java Server application via XML messages. Client sends XML message over HTTP Post method. Java Servlet gets XML message, parses it, performs requested action (select/insert/update/delete), generates resulting response and sends it back to the Client.
    I use Oracle DB XE 10.2.
    For example: Client sends a request to the server, to append certain Order with new Product info:
    Request:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <Request OrderID="123123123" Action="NewProduct">
    - <Product TempProdID="2" ProdName="L01" VisualID="1" Amount="1" TechClass="1" TechSubject="1" TechVersion="0" TechName="TestTech" ElemOk="0">
    <Modified UserID="XXX" UserGroup="XXX" GroupLevel="0" />
    - <QuickInfo>
    <ProdIcon Format="PNG"
    Encoding="Base64">iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAIAAAA
    lC+aJAAAAA3RSTlP////6yOLMAAAAvElEQVR42u3aQQ6EIAwAQP7/afe0
    mo1mBVur0emJgwGmRDFNWwvH9I153OpjyoisefqXW3afm4WypP+MgomvT
    z8AAAAAAAAAAAAAAMAzAClzAWQAdvexfqATEKmA/Fm0rYs5ozvoAWyWj4
    ZqJ9efQKR8BJAHOPEdKAAc/lLdAhC/K68EBG+JWwAixfABgF8Jf6MAAAA
    AAAAAAAAAAAAALwRUGgAAAAAAsgGJ3cfVrcfFl2jiIZzV+V7Zd/8BOtNi
    0MnJ58oAAAAASUVORK5CYII=
    </ProdIcon>
    <Parameters />
    </QuickInfo>
    - <TechProduct CurVer="1" MinVer="1" TotalItems="330" ItemNodeSize="55074">
    - <SubItem Class="TPlGraph" BindID="00B9C004">
    <PropList />
    - <SubItem Ident="Profiles" Class="TProfileList" Child="1" BindID="0188598C">
    <PropList />
    - <SubItem Class="TPlProfile" Child="1" BindID="018CA6CC">
    - <PropList>
    <Property PropIdent="ProfBaze0X" ValText="0" />
    <Property PropIdent="ProfBaze0Y" ValText="990" />
    <Property PropIdent="ProfBaze1X" ValText="990" />
    <Property PropIdent="ProfHier0" ValText="0" />
    - <Property PropIdent="InBorder" ValIdent="None" ValText="N&#279;ra">
    <ExtValue ColIdent="ItemCode" Value="None" />
    <ExtValue ColIdent="Type" Value="" />
    <ExtValue ColIdent="Filter" Value="" />
    <ExtValue ColIdent="Width" Value="0" />
    <ExtValue ColIdent="TechCall" Value="" />
    </Property>
    </PropList>
    </SubItem>
    </SubItem>
    </SubItem>
    </TechProduct>
    </Product>
    </Request>
    I use DOM parsers to parse the received requests, extract certain info and insert it into relational tables using standart SQL queries.
    My question is: what is the best way to store XML data fragments, that are not required to be saved relationally? I need to save the content of node <TechProduct> from the above example to relational table's column. There will be no need to query this column, no need to use relational views. I will use it only when Client application will request to modify certain order's product. Then I will have to send back the same <TechProduct> node via XML response.
    So what column type do I have to use? CLOB? XMLType? Is it better to use object types? Do I have to register XML Schema for better performance? The size of the fragment can be ~2MB.
    Thanks for your help
    Message was edited by:
    Kichas

    Thank you for reply,
    As you suggested, I will use XMLType storage as CLOB (without XML Schema).
    As I mentioned before, I use Java Servlet, deployed on Tomcat WebServer, to receive XML messages from Client application via HTTP POST method.
    I use these libs to get the XML payload and parse it into a Document:
    import org.w3c.dom.*;
    import org.xml.sax.InputSource;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    And here is the code:
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    try {
    // get the XML payload and parse it into a Document
    DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
    Document dom;
    InputSource input = new InputSource(request.getInputStream());
    dom = docBuilder.parse(input);
    catch(Exception ex) {
    System.out.println("Exception thrown in XmlService");
    ex.printStackTrace();
    throw new ServletException(ex);
    I create a relational table, that contains XMLType column:
    CREATE TABLE xwarehouses (
    warehouse_id NUMBER,
    warehouse_spec XMLTYPE)
    XMLTYPE warehouse_spec STORE AS CLOB;
    Now I want to insert all DOM Document into XMLType column. So I do like this:
    import oracle.xdb.XMLType;
    String SQLTEXT = "INSERT INTO XWAREHOUSES (WAREHOUSE_ID, WAREHOUSE_SPEC) VALUES (?, ?)";
    XMLType xml = XMLType.createXML(con,dom);
    PreparedStatement sqlStatement = con.prepareStatement(SQLTEXT);
    sqlStatement.setInt(1,2);
    sqlStatement.setObject(2,xml);
    sqlStatement.execute();
    sqlStatement.close();
    dom is the Document, that I got from HTTP Request input stream.
    My servlet throws an exception:
    java.lang.NoClassDefFoundError: oracle/xml/parser/v2/XMLParseException
    at XmlService.GetMatListServiceHandler.processRequest(GetMatListServiceHandler.java:111)
    at XmlService.XmlServiceHandler.handleRequest(XmlServiceHandler.java:43)
    at XmlService.XmlServiceServlet.doPost(XmlServiceServlet.java:69)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:716)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
    why does he needs oracle.xml.parser.v2.XMLParseException? I don't use Oracle parser? Does this code line throws the exception (I am not able to debug my code, because I have not configured JDeveloper to be able to use Remote Debuging):
    XMLType xml = XMLType.createXML(con,dom);
    Does it reparses the given dom Document or what?. When I deploy xmlparserv2.jar to Tomcat, everything is ok, application inserts XML data into XMLType column.
    Is there another way to insert the whole org.w3c.dom Document or Document fragment (that is already parsed) into XMLType column. Can you provide any sample code?
    The Document may contain national symbols, so they should be correctly stored and then later retrieved.
    Many thanks.

  • A report that lists all non-exempt employees that do not have a supervisor

    HI all,
    Please help. This is urgent.
    bold "A report that lists all non-exempt employees that do not have a supervisor assigned in R/3." bold
    I have already selected non-exempt employees but don't know how to select people who do not have a supervisor" What selection criteria I should choose in the ad-hoc query
    Thanks a bunch,
    Rashmi

    Hi
    Actually its not that difficult. You can give a criteria in selection where relationship A002 is equal to a space . Replace A002 in this example with the relatioship you have defined for 'Reports(line) to'.
    Regards
    Waz

  • Query Help - PO's That Have Not Been Sent

    Is it possible to make a query for PO's that have not been sent? I tried a few things and couldn't get it to work.

    I think I understand what you mean let me try and answer that,
    Yes the order comes into SAP from our website then we have someone who then creates the PO based off the sales order. During that process the person who creates the PO then sends it via email in the messaging system to the vendor. My end game is to be able to run some type of query where we could see if that person has missed any.

  • How do I delete photos in Iphoto library that have not been imported?

    How do I delete photos in Iphoto library that have not been imported?

    How did they get there and how do you know that they are there?
    If they were not imported and iPhoto is not aware of them then you can be sure your current backup is up to date and tested, quit iPhoto and drag them to the finder trash - But be very careful because if you trash any items that iPhoto knows about you will corrupt your library
    Before you empty the trash, launch iPhoto again and be sure everything is working correctly
    It is recommended that you never modify the iPhoto library using anything except iPhoto or iPhoto aware programs like iPhoto Library Manager including adding, modifying or deleting items, files or folders within the iPhoto library
    Your current case may be one of the very unusual exceptions to this - if they were put there without iPhoto's knowledge
    LN
    Message was edited by: LarryHN

  • Accounts that have not been logged into for more than 90 days

    Hi Folks,
    Good Day.
    Can anyone help me to update below powershel script?
    below script find in my domain all the AD users accounts that have not been logged into for more than 90 days and export the report to .csv file. in addition what I want:
    1. OU=Others, Sales --> exclude this OUs
    2. Disable all the user based on 90 days export report .csv file 
    import-module activedirectory 
    $domain = "test.com" 
    $DaysInactive = 90 
    $time = (Get-Date).Adddays(-($DaysInactive))
    $timer = (Get-Date -Format yyyy-mm-dd)
    # Get all AD User with lastLogonTimestamp less than our time and set to enable
    Get-ADUser -Filter {LastLogonTimeStamp -lt $time -and enabled -eq $true} -Properties LastLogonTimeStamp |
    # Output Name and lastLogonTimestamp into CSV
    select-object givenname,Name,@{Name="Stamp"; Expression={[DateTime]::FromFileTime($_.lastLogonTimestamp).ToString('dd-MM-yyyy_hh:mm:ss')}} | Export-Csv c:\temp\90DaysInactive-$(Get-Date -format dd-MM-yyyy).csv –NoTypeInformation
    Many thanks for advance Help:

    Hi Anna,
    Good Day.
    Many thanks for your responce.
    with your help i can manage to exclude the OUs as wellas can get the .csv report via mail.
    Now i want to disable all the user based on 90 days export report .csv file.
    could you help me on this please? the report will come everyday like below:
    filename=90DaysInactive-dd-mm-yyyy.csv
    sample output:
    Given name User Name
    Last LogOn
    Test User1 user1
    03-10-2006_05:30:59
    Test User2 user2
    02-10-2006_12:00:34
    import-module activedirectory 
    $domain = "test.com" 
    $DaysInactive = 1 
    $time = (Get-Date).Adddays(-($DaysInactive))
    $timer = (Get-Date -Format yyyy-mm-dd)
    $FileName="c:\temp\90DaysInactive-$(Get-Date -format dd-MM-yyyy).csv"
    $from = "[email protected]"
    $to = "[email protected]"
    $smtpHost = "smtpservername"
    $Subject = "90 Days Inactive Accounts"
    $body = "90 Days Inactive Accounts report"
    # Get all AD User with lastLogonTimestamp less than our time and set to enable
    Get-ADUser -Filter {LastLogonTimeStamp -lt $time -and enabled -eq $true} -Properties LastLogonTimeStamp | where {($_.distinguishedname -notlike "*OU=HR*") -and ($_.distinguishedname -notlike "*OU=OT*")} | 
    # Output Name and lastLogonTimestamp into CSV
    select-object givenname,Name,@{Name="Last Logon"; Expression={[DateTime]::FromFileTime($_.lastLogonTimestamp).ToString('dd-MM-yyyy_hh:mm:ss')}} | Export-Csv c:\temp\90DaysInactive-$(Get-Date -format dd-MM-yyyy).csv -NoTypeInformation
    Send-MailMessage -From $from -To $to -Subject $subject -cc $cc -SmtpServer $smtpHost -Attachments $FileName -Body $body -BodyAsHtml
    Thanks for your advance help.

  • Can we have some one (Adobe Guru's or Adobe Employees) please have a look at the "Data Services" forum?

    My evaluation and testing of the FlashBuilder 4 beta 2 is stopped because there are so many questions that have not been answered.  To be clear:
    - I desperately need an alternative to the Micro$oft "vendor lock in"  (front end, middleware, backend)
    - Adobe is a recognized name in the I.T. world.  (My biggest opponents to change are the I.T. guys & gals)
    - I need to do some heavy duty "convincing" by SHOWING customers and their trusted I.T. crowd that there is a viable alternative
    - I can't show them if your product doesnt' work
    - Plan B is to show them that even though your product doesn't work, your support is responsive, and bugs will be fixed next release, and that there is a work around for now
    - There is no Plan C if the previous two points aren't resolved
    This forum seems really busy compared to Data Services forum.  That forum is dead.  Very few views and 98% unanswered questions.
    Should I re-post all my questions in this forum?  In an attempt to get some help?

    A few thoughts...
    These forums are user / customer forums. They are not an official Adobe support channel.  Did you read the disclaimer on the first page that said "Forums ... are an alternative to Adobe’s official customer support channels"? ( http://forums.adobe.com/index.jspa ).
    To say that Adobe support sucks because questions were not answered on these forums is the wrong conclusion.  Adobe support may suck, but these forums are not an indication of that.
    If your questions are Flex related, feel free to repost them to this board, though.  I imagine that there are just more people using Flex than their are LiveCycle or BlazeDS.

  • [svn] 2841: Fix bug loading untrusted applications that have not been sized .

    Revision: 2841
    Author: [email protected]
    Date: 2008-08-14 04:45:09 -0700 (Thu, 14 Aug 2008)
    Log Message:
    Fix bug loading untrusted applications that have not been sized.
    QE:YES
    Doc:
    Checkintests: YES
    Reviewer: Alex
    Bugs: SDK-16470
    SWFLoader:
    Fixed a security violation trying to access untrusted content. The problem happened in doScaleContent() when the loaded content had not been sized yet. The fall back is to check the class type of the content, but the SWFLoader did not have access to the content. The security violation was caught and the FlexLoader size is set when it shouldn't be. The problem is solved by checking access rights before accessing the content and not generating an exception.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16470
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/SWFLoader.as

    Ignoring what is causing the errors for a moment, what would help is a way to get the application loader to restart from the point of error rather than going back to the beginning of the "Loading applications" step each time.
    I imagine this to be something of a big ask. Any other suggestions in a similar vein?
    Nick.

  • Just invoices that have not been credited

    Is there a view or query around that will just return invoices that have not been credited?
    I know that transactions can be reversed and an entry is made int the credited field such as:
    SELECT rct.trx_number invoice_number, pdi.draft_invoice_num,
    pdi.draft_invoice_num_credited, rct.trx_number
    FROM pa_draft_invoices_all pdi, ra_customer_trx_all rct
    WHERE rct.trx_number = pdi.ra_invoice_number
    but I want to return a 'N' if the transaction has been credited or a 'Y' if it has...
    Thanks

    john95127
    Put this query in the appropriate forum. General EBS forum General EBS Discussion might be a good place.
    --Shiv                                                                                                                                                                                                                                                                                                                               

  • Is there a way track who you have distributed the form to and who has responded? If yes, is there a way to message all that have not responded?

    Is there a way track who you have distributed the form to and who has responded? If yes, is there a way to message all that have not responded? This would be a great way to manage supplier questionnaires to ensure everyone is providing information back to you.

    FormsCentral, itself, does not have a method of distributing forms, so it would not know about your distribution list. It's either an open online form, which can be gotten to by anyone with the URL, or it's a pdf, which could be distributed via e-mail or a web page download.
    You can always track the completion of the form by looking in the form's collected data set. Then, you could work backward to contact those recipients who have not yet responded. But that means you need to keep track of where the form was sent, or at least know which people/companies were supposed to get the form.
    I hope that helps,
    Brian

  • I have not been storing my data i.e. contacts  emails to itunes or icloud so i bought a new 5 s and want to transfer my data from 4s to 5s please guide me

    Hi there,
    I have not been saving my data in my iphone 4s to itunes or iclude so now i bought a new 5S and want to transfer to my new phone,  anybody can advise?

    If you still have the old phone, back it up using iTunes, then restore your new one from that backup.

  • HT1296 I already have an itunes account on my laptop but have been setup on a mac and have songs that have not been purchased from the itunes store, I cannot get the songs from my iPhone onto my itunes account on the mac. how can I do this?

    I already have an itunes account on my laptop but have been setup on a mac and have songs that have not been purchased from the itunes store, I cannot get the songs from my iPhone onto my itunes account on the mac. how can I do this?

    You copy them from your old computer or your backup copy of your old computer.
    The iphone is not a backup/storage device.

  • How do I find all the purchased items on my iPhone? When I try to update the iPhone iOS while connected to my MacBook it says there are purchased items on the phone that have not been transferred to my iTunes library and that I should transfer them.

    How do I find all the purchased items on my iPhone? When I try to update the iPhone iOS while connected to my MacBook it says there are purchased items on the phone that have not been transferred to my iTunes library and that I should transfer them before updating.

    Thanks. This seems to have worked easily.

Maybe you are looking for