MSS - Manager -employees reporting not current date

Hi All,
There is  a requirement to have financial close date to be the date based on which the reportees need to be shown for a manager during compensation decision making months( 2 months from financial year close). During other times, the reportees as on current date need to be shown for a manager.
Please advise whether this needs to be accomplished through MSS customisation or HR config settings. If MSS, please advise how this can be accomplished.
Thanks and regards,
Arun

First off I want to thank you Siddharth for all your responses.  Ultimately, your responses helped me get on the right path for  resolving this issue. 
I ended up taking this into debug and finding out specifically why these absences did not appear on the team calendar.  I'd like to begin by indicating, in my opinion, this is a bug/programming flaw.
Within IF_EX_PT_ABS_REQ~AUTH_CHECK_AND_ANONYMIZE_DATA there was a check to determine if the rule group had the IT2001/2002 Authorization Check section, Employees: Deactivate Authorization Check and Managers: Deactivate Authorization Check boxes checked.  For 1 out of the 3 rule groups configured, one group did not have those boxes checked, while the other two did. 
What happened, is when the program built it's list of PERNA's that report directly to this manager, the first person in the list happened to be in the rule group that did not have the Deactivate Authorization boxes checked.  However, the remaining PERNA's in the list were in another rule group that did have the Deactivate Authorization boxes checked.  Based on my interpretation, the team calendar should have ommitted the absences of the one person, but should have displayed the absences for everyone else in the separate rule group. The code only reads what rule group the first PERNA in the list is and applies that MSS_NO_AUTHCHECK value to all the other PERNA's in the list.
Either the code should do a MSS_NO_AUTHCHECK lookup on every PERNA on the list or should check what rule group the approver/manager is in and apply it to all his employees.
Game - Set - Match.......

Similar Messages

  • Report not displaying data from one of the infoproviders

    Hi Experts,
    Issue: Report not displaying data from one of the infoproviders
    I have a report 'ReportA' which has multiprovider MP1 as the source.
    MP1 has two Infocubes IC1, IC2 in its design.
    Now, when i execute the report, data from IC1 is displayed. But no data from IC2 is displayed.
    Is there a setting i need to enable in MP1 ? or is there anything else that needs to be enabled ?
    Please reply.
    Regards,
    Suraj S Nair

    Hi All,
    When i display data directly from the multi provider, without any restrictions, i cannot view the data from infocube IC2.
    I feel its not an issue with the Query. It must be a problem with the setting in the Multiprovider MP1.
    Infocube IC2 is a copy of Infocube IC1. Multiprovider MP1 first only had IC1 in its design. It was recently IC2 was also included.
    I checked the Characteristics, all of them are assigned corectly.
    Now, this issue sure has something to do wiht the setting of Multiprovider or please correct me if wrong.
    Regards,
    Suraj S Nair

  • Stock Aging report with current date

    Dear Experts
    Can we able to take stock aging report with current date?
    Thanks&Regards,
    Vinoth Raj K

    You're posting in the Portuguese B1 space.
    You might want to post in the English one: SAP Business One Application

  • Pls help on error on ereader "this document is protected by DRM ( adobe digital rights management ) and is not currently authorized for use with your adobe id

    how do i solve this in order for the e reader to open the file?“this document is protected by DRM ( adobe digital rights management ) and is not currently authorized for use with your adobe id
    thnaks

    This is something you will need to talk to the publisher of the document. They might have to do something to allow you to open the file. (If you changed Adobe ID since buying the file, for instance, they might have to allow for that).

  • BI Projects Report Not showing data

    Hi
    I am a new to BI.I am trying to configure BI for Oracle Projects.So the problem here is couple of reports are not loading data on dashboard.
    The issue is with Most of report that use data from Organization table
    1.My BI is integrated with EBS.(I am wondering id HR security has anything to do with same)
    2.Is there any step that should taken care while configuration?
    3.Currently my log level is 3,But I am not able to see the query in Manage session.Show that I can get more information on specific table which is causing the query to return no data
    Thanks in advance.

    Hi,
    The query is having some restrictions in the filter area. And also there are 2 conditions in the query.
    I am checking the Multiprovider data with the tcode LISTCUBE. I am giving all the selections and the restrictions in the Multiprovider , some data is there in the multiprovider.
    But in report its not showing any data.
    Where shall I check, whetehr I need to check the MultiProvider assignment characterstics?

  • Can distributed reports use current data?

    My company bought Crystal Reports 2008 because we wanted to give users reports that reflected the data currently in the database.  After doing the following:
    1. Installed Crystal Reports 2008 on my computer.
    2. Built a report using data from our database server.
    3. Installed the Crystal Reports Viewer and my report on another user's desktop.
    We discovered to our dismay that the data in the report was old -- I mean, it was data from the last time I'd run it on my computer.
    We don't have any use for outdated reports... we need each user to produce reports that reflect the data that is CURRENTLY in the database.
    Is there any way to do this, short of installing Crystal Reports 2008 on each user's computer?  (Which is one thing we will NOT do.)
    Is there an interface in VB or C# that we can use to this end?
    Is there some other means of distributing reports so we can get fresh data when they are run?

    Try to save the report without saved data (go to file-->uncheck save data with report) and refresh the report in crystal report viewer to get the latest data.
    Regards,
    Raghavendra

  • SSRS report not displaying data in correct order

    Guys,
    I have a SSRS 2012 report not displaying returned records from SQL in the correct order.  Running the stored procedure in SSMS and supplying the parameter values returns the data correctly and running Query Designer in SSRS using the stored procedure
    on the dataset in question, likewise returns the data correctly.  Only when I run the actual report does the data display incorrectly(always last name order).  I've done similar reporting using very similar stored procedures and I've never had this
    problem.  Below is the stored procedure.  "@SortBy" is the parameter with the sorting value. 1=Due Date; 2=Denial Amt and 3=Last name and is passed by SSRS to SQL.  Wish I could supply screen shots.  
    Thanks for any help,
    Dave
    ALTER PROCEDURE [dbo].[RAC_PT_List]
    @Level as int,
    @SortBy as int,
    @PTLName as varchar(30) = NULL,
    @User as varchar(10) = NULL
    AS
    SELECT pat.headerID,
    pat.PT_LName + ', ' + pat.PT_FName AS PTName,
    pat.PT_AcctNo,
    rco.RCO_CLMREF,
    rco.RCO_AppealLevel,
    rco.RCO_LevelNo,
    rco.RCO_AuditorStatus,
    let.LET_DEN_DueDate,
    CONVERT(varchar(12),let.LET_DEN_DueDate) as DueDate,
    let.LET_DEN_Dollars,
    let.userID
    FROM Master_PT_List pat
    INNER JOIN Master_RCO_Work rco on RCO.PT_headerID = pat.headerID
    INNER JOIN Master_Letters let on LET.PT_headerID = pat.headerID
    WHERE (@PTLName IS NULL OR(pat.PT_LName LIKE + '%' + @PTLName + '%'))
    AND (rco.RCO_LevelNo = @Level)
    AND (let.userID = @User)
    --AND (rco.RCO_AuditorStatus <> 'Closed' and rco.RCO_AdminStatus <> 'Closed')
    ORDER BY 
    CASE WHEN @SortBy = '1' THEN LET_DEN_DueDate
    END
    DESC,
    CASE WHEN @SortBy = '2' THEN let.LET_DEN_Dollars
    END
    DESC,
    CASE WHEN @SortBy = '3' THEN pat.PT_LName
    END

    Hi DaveMac1960,
    According to your description, when you render data in report, you find it always shows the data with unexpected order. Right?
    In Reporting Services, if we don't set any sorting in tablix, it will order the data as your query in SSMS or Query Builder. In some scenario, for example, we add parent group for data rows, it will have the rows sort by the group on data field by default,
    and the "order by" in your query will be ignored. So please check the Sorting tab in Tablix Properties, in this scenario, we suggest you delete any sorting in the Sorting tab so that the "Order By" clause can work.
    Reference:
    Sort Data in a Data Region (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Performance: How to manage large reports with high data volume

    Hi everybody,
    we actually make some tests on our BO server system, to define limitations and oppertunities. Among other things we constructed a large report with a high data volume (about 250.000 data records).
    When executing the query in SAP Query Designer it takes about 10 minutes to display it. In Crystal Reports we rebult the row and column structure of the query. The data retrieval in Crystal Reports Designer last about 9 minutes - even faster as in the query.
    Unfortunately in BO InfoView the report is not displayed. After 30 minutes of loading time we get a timeout error RCIRAS0244.
    com.crystaldecisions.sdk.occa.managedreports.ras.internal.ManagedRASException:
    Cannot open report document. ---
    The request timed out because there has been no reply from the server for 600.000 milliseconds.
    Also a refresh of an report with saved data is not possible.
    Now we are asking us some questions:
    1. Where can we set the timeout for InfoView to a value larger than 30 minutes?
    2. Why is InfoView so slow compared to Crystal Designer? Where is the bottleneck?
    3. Whats the impact of SAP single sign-on compared to Enterprise logon on the performance?
    Thanks for any helps and comments!
    Sebastian

    Hi Ingo,
    thank you for your reply.
    I will check the servers and maybe change the time limits.
    Unfortunately we have a quite slow server system that probably cause this timeout. In CR Designer we have no problems, its really quick. Is it to expect that CR Designer and InfoView have almost the same performance?
    Another nice point: When we execute the query in SAP BEx Query Designer it takes about 10 minutes to open it, in Crystal Designer it needs just about 5-6 minutes. We integrated exactly the same fields in the report, which exist in die SAP BEx query.
    What may cause the difference?
    - Exceptions and conditions in the query?
    - Free characteristics in the query?
    - anything else?
    Best regards,
    Sebastian

  • Scheduling siebel BI report not pulling data

    Hi Gurus,
    i have created report in Siebel with BI publisher, My report is working fine when i am running report from the icon. But when the same report running with scheduling option not pulling data in to my report. Is any other properties to set like viewmode something or user properties under integration object? If anyone have tried please provide me the steps.
    Thanks in advacne,
    Regards,
    madhv

    Hi ,
    Please check the following :-
    Is an appropriate summarization level defined?
    Are fixed values stored in the definition of the summarization level?
    Is the use of a summarization level necessary?
    Was test mode activated in summarization level maintenance ?
    Are the summarization levels in status "active" ?
    Please have a detailed look into the SAP OSS Note :  67342 - CO-PA: No summarization level found which contains detials explanations and solutions for the issue ..
    Kindly revert back for any further clarifications
    Regards
    Sarada

  • Usage Report not showing data

    Hello,
    When I am opening usage reports under Site Settings > Site Administraton > Popularity Trends, i cannot see any data after 9th May 2014. It stopped working and all the numbers coming to zero after 9th may. 
    I tried many solutions that are given on internet for this issue like restarting timer job, enabling usage on usage service application, permission on log files, etc.. but none of them worked for me.
    Please help me out. Is usage report depend on any service? search is working fine, usage service application is working fine.
    Thanks.
    chirag

    Hi  chirag,
    For troubleshooting your issue, please take steps as below:
    Make sure the Web Analytics Data Processing Service and Web Analytics Web Service are started on each server.
    Make sure web analytics service application is started
    Deactivate and Activate the site collection Features on Reporting.
    Check the detail error message of ULS log  to determine the exact cause of the error.
    Also you can have a look at the article:
    http://geekswithblogs.net/bjackett/archive/2013/08/26/powershell-script-to-workaround-no-data-in-sharepoint-2013-usage.aspx
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/30d11d27-6708-4bfe-a7d3-4b0aed522e7d/site-web-analytics-reports-no-more-data?forum=sharepointadminprevious
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Reports not displaying data in Portal.

    I am currently working on BI 7.0 and xRPM 4.0.
    http://help.sap.com/saphelp_nw70/helpdata/en/5e/800ebe94d6ea4dbccb269e3f0dada7/frameset.htm
    I have implemented the Scenarios of Capacity Management described in BI Content. I have loaded the cubes and can execute the queries in RRMX. But when i try running the reports on portal it displays a message saying :
    No Applicable data found
    As descibed in data flow i have already activated the templates. I can see all other reports based on other cubes in the portal but not for the Capacity management scenario.
    Respective queries :
    Availability vs Allocation (0RPM_C02_Q0204)
    Demand vs Allocation (0RPM_C02_Q0202)
    Templates are :
    Availability vs Allocation (0TPLI_0RPM_C02_Q0204)
    Demand vs Allocation (0TPLI_0RPM_C06_Q0001)
    Please Help.

    Hi Amit,
       I am trying to make this reports work Under CAPACITY MANAGEMENT - Availiablity Vs. Allocation , but it's not working for us. I have activated the templates in BW, .We used our central BW systems to turn on the PPM cubes. Should i make any configuration to make this report work?
       Could you please help us ?
    Thanks,
    Suba

  • SharePoint 2010 Web Analytics Reports Not Displaying Data

    Hi,
    I'm currently having some issue with the Web Analytics Reports. It had been working fine for the past 1 year and suddenly a few months back, the Web Analytics is not showing any data. Have already troubleshoot the issue using the
    Troubleshooting SharePoint 2010 Web Analytics Article and all values show the correct date and time. 
    Therefore, I have performed a more in-depth analysis and found out that the WAHierarchyData table in the Reporting Database only have Root ID
    I have verified with a working SharePoint environment and the table should contain all the SharePoint site ID. Also, I have looked into all the SharePoint and Windows logs and all found to be showing the services to be running normally. I would like to check
    if there is a way to restore the data in this table or is there any other ways I can trace and troubleshoot this issue.
    Background information
    SharePoint Version: Service Pack 2
    SQL Server: Cluster Environment
    3vild3vil

    Hi,
    I queried the WAHierarchyData table in my environment, and there should be id column in returning result.
    You could manually run timer job related to Web Analytics service application and check ULS log for error message.
    To narrow down the root cause, we need query SharePoint database tables and compare query result, which might exceed the supported scenario. I'd recommend you open a ticket with MS support, they could reach your envrionment and troubleshoot the issue for
    you. For your convenience:
    https://support.microsoft.com/contactus
    Thanks for the support.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Report not  retrieving data

    Hi Friends,
    I have a problem with retrieving data from Crystal Reports. I have three parameters to get the records from OINV and INV1.
    The frist two is 'from date' and  'to date' for the DocDate. The third one is for getting Sales Employee and has to be selected based on 'like' condition. I am able to fetch the records based on dates; but not when i select sales employee.
    Following is the query from the Crystal Report, which is working perfectly fine when i run it on the SQL server.
      SELECT "OINV"."DocDate", "OINV"."DocNum", "OINV"."CardCode", "OINV"."CardName", "INV1"."ItemCode", "INV1"."Dscription", "INV1"."Quantity", "INV1"."PriceBefDi", "INV1"."DiscPrcnt", "OSLP"."SlpName", "OINV"."U_Commission"
    FROM   ("JELLYCAT_LIMITED (Training)"."dbo"."OINV" "OINV" INNER JOIN "JELLYCAT_LIMITED (Training)"."dbo"."OSLP" "OSLP" ON "OINV"."SlpCode"="OSLP"."SlpCode") INNER JOIN "JELLYCAT_LIMITED (Training)"."dbo"."INV1" "INV1" ON ("OINV"."OwnerCode"="INV1"."OwnerCode") AND ("OINV"."DocEntry"="INV1"."DocEntry")
    WHERE  "OSLP"."SlpName" LIKE N'%JC%' AND ("OINV"."DocDate">={ts '2009-01-01 00:00:00'} AND "OINV"."DocDate"<{ts '2010-01-01 00:00:00'})
    ORDER BY "OSLP"."SlpName"
    The formula syntax i gave for sales employee was - {OSLP.SlpName} like "%" + LTRIM({?SalesEmployee}) + "%"
    Any help would be great.
    Thanks & Regards
    Shiva

    Hi Shiva,
    Try this,
    SELECT T0.DocDate, T0.DocNum, T0.CardCode, T0.CardName, T0.U_Commission,
    T1.ItemCode, T1.Dscription, T1.Quantity, T1.PriceBefDi, T1.DiscPrcnt,
    T2.SlpName
    FROM OINV T0
    INNER JOIN INV1 T1 ON T1.DocEntry = T0.DocEntry
    INNER JOIN OSLP T2 ON T0.SlpCode = T2.SlpCode AND T0.OwnerCode = T1.OwnerCode
    WHERE
    T2.SlpName = '[%0]'
    AND
    T0.DocDate>= '[%1]'
    AND
    T0.DocDate=< '[%2]'
    ORDER BY
    T2.SlpName
    OR
    SELECT T0.DocDate, T0.DocNum, T0.CardCode, T0.CardName, T0.U_Commission,
    T1.ItemCode, T1.Dscription, T1.Quantity, T1.PriceBefDi, T1.DiscPrcnt,
    T2.SlpName
    FROM OINV T0
    INNER JOIN INV1 T1 ON T1.DocEntry = T0.DocEntry
    INNER JOIN OSLP T2 ON T0.SlpCode = T2.SlpCode
    WHERE
    T2.SlpName = '[%0]'
    AND
    T0.DocDate BETWEEN '[%1]' AND '[%2]'
    ORDER BY
    T2.SlpName
    Regards,
    Madhan.

  • Crystal Report not fetching data

    Hi Everyone,
    I have a crystal report which is not fetching any data but when I run the same sql in the database the data comes.Can anyone please help me in finding what exactly the problem is.
    Regards,
    Neeraj

    Sorry we can't help you, not enough info.
    See Rules Of Engagement.
    What have YOU done to debug the problem?
    Version of CR and any patches?
    Database connecting to and any patches?
    Version of Database Server and Client?
    How are you connecting, ODBC, OLE DB or Native?
    What error are you getting?
    Don

  • Report not displaying data in Viewer

    Hi All,
    I have a problem, wherein when I run a report on Discoverer Desktop or Plus the report runs fine (with data displayed) but when the same report is run from Discoverer Viewer the report does not fetch any data. It does not even give the error of 'No rows returned'.
    If there are any settings or any other change that needs to be done, please help.
    This is again something very urgent i am looking for. An immediete help will be really appreciated.
    Regards,
    Shruti

    Hi,
    what is the version of Discoverer you are using?
    Also, Is this workbook created in previous versions and upgraded to the existing version?
    log entries in application.log would help in debugging. If you are facing any difficulty to look at the log entires being huge,
    Make sure that you clear or take a backup of the existing application.log, restart the middletier. This will create a fresh application.log file.
    Now, immediately reproduce your issue.This will record the exact log for the event which Viewer is failing to render the report.
    Hope this helps!
    Cheers,
    Prasad Bolla.

Maybe you are looking for

  • Can I install Windows 7 with boot camp on my computer, but install all my PC games for it on an external hardrive?

    I have a new Mac, but I want to install Windows 7 with boot camp on it. However, I would only really be using it for gaming. On another post, someone said that you could not install boot camp entirely onto an external hardrive. As boot camp would onl

  • Why won't my new macbook pro recognise a recorded dvd?

    I have a burned dvd of family wedding photos. It works fine in my old HP laptop (Windows) but isnt recognised as anything other than a blank disc in the MacBook Pro harddrive...... any ideas?

  • Delete Row In Matrix

    Hello All, I have a UDO and a form for it. The UDO has a child table, which is binded to a matrix in the form. Everything works well except Delete Row in the matrix. If I don't do anything when Delete Row menu is clicked, the row is deleted. But as s

  • AirPort Express in Client mode

    If you configure a current (summer 2012) simultaneous dual band AirPort Express in client mode: 1) are both the LAN and WAN ethernet ports available or only one of them, the LAN port presumeably? 2) If you unplug the ethernet cable momentarily to con

  • Allowing user to run an optional test

    I'm new to Teststand and Labview. Can anyone tell me a simple way for allowing users to run an optional test sequence at the end of another test sequence. I've played around with the message popup step, hoping that I could just call the optional sequ