Report needed for infotype changes

hi all
i need a standard report that provides employee numbers for which master data changed  in a particular infotype.
plz suggest
regards
niki

Hi nikki,
First in Spro : PM->PA->Tools->Revision-> Set up change doc: Determine log of which infotypes you wanna see.
Then execute report S_AHR_61016380.
Regards,
Dilek
Edited by: Dilek Ersoz on Aug 6, 2008 10:01 AM

Similar Messages

  • Setting up Mail Connection for Infotype Changes

    Hello Experts
    I would like to set up an email notification which will be sent from the SAP to non HR personnel as soon as a Hire action is completed in order for them to know that there was an employee hired and that they need to enter relevant data in other infotypes.
    I found the option to setting up Mail Connection for Infotype Changes but is there a standard way to send a work item notification? maybe add a link to the PA40?
    Tx
    Maya

    No help available out there? If you need it explained clearer just say so and I'll do so. Thanks in advance.

  • Report needed for storage costs in WM

    Hi All,
    I need a report for the storage costs for utilising the warehouse by plants. Cost of space utilised per m3 will be provided in selection screen. For each material the volume should taken from material master. Warehouse will be utilised by three plants and report needed to calculate the space occupied by the materials in warehouse per plant per month. I am not able to find the logic to calculate average space utilised(as day to day there will putaways,transfer postings and picking).All stocks to be taken into consideration.Let me know how to proceed.
    Regards,
    Manik

    Dear Experts,
    Cud u plz throw some light on this...
    Regards,
    Manik

  • Tweak for sql query - help needed for smalll change

    Hi.
    I am trying to run a script that checks for used space on all tablespaces and returns the results.
    So far so good:
    set lines 200 pages 2000
    col tablespace_name heading 'Tablespace' format a30 truncate
    col total_maxspace_mb heading 'MB|Max Size' format 9G999G999
    col total_allocspace_mb heading 'MB|Allocated' format 9G999G999
    col used_space_mb heading 'MB|Used' format 9G999G999D99
    col free_space_mb heading 'MB|Free Till Max' like used_space_mb
    col free_space_ext_mb heading 'MB|Free Till Ext' like used_space_mb
    col pct_used heading '%|Used' format 999D99
    col pct_free heading '%|Free' like pct_used
    break on report
    compute sum label 'Total Size:' of total_maxspace_mb total_allocspace_mb used_space_mb - free_space_mb (used_space_mb/total_maxspace_mb)*100 on report
    select
    alloc.tablespace_name,
    (alloc.total_allocspace_mb - free.free_space_mb) used_space_mb,
    free.free_space_mb free_space_ext_mb,
    ((alloc.total_allocspace_mb - free.free_space_mb)/alloc.total_maxspace_mb)*100 pct_used,
    ((free.free_space_mb+(alloc.total_maxspace_mb-alloc.total_allocspace_mb))/alloc.total_maxspace_mb)*100 pct_free
    FROM (SELECT tablespace_name,
    ROUND(SUM(CASE WHEN maxbytes = 0 THEN bytes ELSE maxbytes END)/1048576) total_maxspace_mb,
    ROUND(SUM(bytes)/1048576) total_allocspace_mb
    FROM dba_data_files
    WHERE file_id NOT IN (SELECT FILE# FROM v$recover_file)
    GROUP BY tablespace_name) alloc,
    (SELECT tablespace_name,
    SUM(bytes)/1048576 free_space_mb
    FROM dba_free_space
    WHERE file_id NOT IN (SELECT FILE# FROM v$recover_file)
    GROUP BY tablespace_name) free
    WHERE alloc.tablespace_name = free.tablespace_name (+)
    ORDER BY pct_used DESC
    The above returns something like this:
    MB MB % %
    Tablespace Used Free Till Ext Used Free
    APPS_TS_ARCHIVE 1,993.13 54.88 97.32 2.68
    APPS_TS_TX_IDX 14,756.13 1,086.88 91.37 8.63
    APPS_TS_TX_DATA 20,525.75 594.25 80.18 19.82
    APPS_TS_MEDIA 6,092.00 180.00 74.37 25.63
    APPS_TS_INTERFACE 13,177.63 366.38 71.49 28.51
    The above works fine, but I would like to further change the query so that only those tablespaces with free space less than 5% (or used space more than 95%) are returned.
    I have been working on this all morning and wanted to open it up to the masters!
    I have tried using WHERE pct_used > 95 but to no avail.
    Any advice would be appreciated.
    Many thanks.
    10.2.0.4
    Linux Red Hat 4.

    Thanks for that.
    What is confusing is that the below query works for every other (about 10 others) database but not this one (?)
    SQL> set lines 200 pages 2000
    SQL>
    SQL> col tablespace_name heading 'Tablespace' format a30 truncate
    SQL> col total_maxspace_mb heading 'MB|Max Size' format 9G999G999
    SQL> col total_allocspace_mb heading 'MB|Allocated' format 9G999G999
    SQL> col used_space_mb heading 'MB|Used' format 9G999G999D99
    SQL> col free_space_mb heading 'MB|Free Till Max' like used_space_mb
    SQL> col free_space_ext_mb heading 'MB|Free Till Ext' like used_space_mb
    SQL> col pct_used heading '%|Used' format 999D99
    SQL> col pct_free heading '%|Free' like pct_used
    SQL>
    SQL> break on report
    SQL> compute sum label 'Total Size:' of total_maxspace_mb total_allocspace_mb used_space_mb - free_space_mb (used_space_mb/total_maxspace_mb)*100 on report
    SQL>
    SQL> select /*+ALL_ROWS */
    2 alloc.tablespace_name,
    3 alloc.total_maxspace_mb,
    4 alloc.total_allocspace_mb,
    5 (alloc.total_allocspace_mb - free.free_space_mb) used_space_mb,
    6 free.free_space_mb+(alloc.total_maxspace_mb-alloc.total_allocspace_mb) free_space_mb,
    7 free.free_space_mb free_space_ext_mb,
    8 ((alloc.total_allocspace_mb - free.free_space_mb)/alloc.total_maxspace_mb)*100 pct_used,
    9 ((free.free_space_mb+(alloc.total_maxspace_mb-alloc.total_allocspace_mb))/alloc.total_maxspace_mb)*100 pct_free
    10 FROM (SELECT tablespace_name,
    11 ROUND(SUM(CASE WHEN maxbytes = 0 THEN bytes ELSE maxbytes END)/1048576) total_maxspace_mb,
    12 ROUND(SUM(bytes)/1048576) total_allocspace_mb
    13 FROM dba_data_files
    14 WHERE file_id NOT IN (SELECT FILE# FROM v$recover_file)
    15 GROUP BY tablespace_name) alloc,
    16 (SELECT tablespace_name,
    17 SUM(bytes)/1048576 free_space_mb
    18 FROM dba_free_space
    19 WHERE file_id NOT IN (SELECT FILE# FROM v$recover_file)
    20 GROUP BY tablespace_name) free
    21 WHERE alloc.tablespace_name = free.tablespace_name (+)
    22 ORDER BY pct_used DESC
    23 /
    ((alloc.total_allocspace_mb - free.free_space_mb)/alloc.total_maxspace_mb)*100 pct_used,
    ERROR at line 8:
    ORA-01476: divisor is equal to zero

  • Customer Master Report needed for jurisdiction, tax code, and district

    I am trying to pull a customer master report and need to include the following fields:
    Name (NAME1)
    Account (KUNNR)
    Jurisdiction ( TAXJURCODE)
    Tax Code (TAXKD)
    District, which is County for US addresses (CITY2)
    I haven't seen a report with CITY2 and have tried S_ALR_87012180 or opening KNA1, KNVI, etc.
    Any ideas?
    Thanks,
    Michelle

    No there is not such report or transaction.
    You may look at tables KNA1 + ADRC.
    In table KNA1 there are fields ORT01, ORT02, COUNC and CITYC that could help
    Otherwise you must link KNA1 and ADRC with field KNA1-ADRNR = ADRC-ADDRNUMBER
    Sorry
    BR
    Alain

  • Report needed for overall view of update compliancy

    I've been asked to provide a custom report to give an overall status for the update compliancy for the servers in place.
    Have been fiddling about in sql mgmt studio and kind of understand where to get the information from, but am missing something.  so I was hoping someone could point me in the right direction
    I realize that this kind of report might take some querying time, but this is what the customer wants: instead of him going to the builtin report compliance 7 (category sw updates - compliance A) where he has to select a collection AND a baseline AND a compliance
    status, he wants to obtain a list of all server systems being compliant to some server baselines and a list of all server systems being non-compliant to some server baselines
    currently the sqlcode i Have to show the compliant servers, is:
    SELECT
         v_R_System.Name0
    AS Servername,
    v_GS_OPERATING_SYSTEM.Caption0
    AS OS,
    v_ConfigurationItems.CI_ID,
    v_AuthListInfo.Title,
    v_StateNames.TopicType,
                          v_StateNames
    .StateID,
    v_StateNames.StateName
    FROM
             v_ConfigurationItems
    INNER
    JOIN
                          v_AuthListInfo
    ON v_ConfigurationItems.CI_ID
    = v_AuthListInfo.CI_ID
    CROSS
    JOIN
                          v_R_System
    INNER
    JOIN
                          v_GS_OPERATING_SYSTEM
    ON v_R_System.ResourceID
    = v_GS_OPERATING_SYSTEM.ResourceID
    CROSS
    JOIN
                          v_StateNames
    WHERE    
    (v_R_System.Client0
    = 1) 
    AND(v_R_System.Operating_System_Name_and0
    LIKE
    '%server%')
    AND
    (v_AuthListInfo.Title
    LIKE
    '%server%')
    AND(v_StateNames.TopicType
    = 300)
    AND(v_StateNames.StateID
    =
    '1')
    ORDER
    BY Servername
    BUT if I now change the stateid to 2 in the query I get the same amount of rows back (being 134 servers with an sccm client times 4 server update groups)
    so my problem is: how and when do i make the correct join here ?

    I was thinking that it might be better to use the assignmentstate views, and I quickly came up with this alternative:
    SELECT
         v_R_System.Name0
    AS ServerName,
    v_CIAssignment.AssignmentName
    as
    'Deployment Name',
    v_StateNames.StateName
    FROM
             v_AssignmentState_Combined
    INNER
    JOIN
                          v_R_System
    ON v_AssignmentState_Combined.ResourceID
    = v_R_System.ResourceID
    INNER
    JOIN
                          v_FullCollectionMembership
    ON v_R_System.ResourceID
    = v_FullCollectionMembership.ResourceID
    INNER
    JOIN
                          v_CIAssignment
    ON v_AssignmentState_Combined.AssignmentID
    = v_CIAssignment.AssignmentID
    INNER
    JOIN
                          v_StateNames
    ON v_AssignmentState_Combined.StateID
    = v_StateNames.StateID
    WHERE    
    (v_StateNames.TopicType
    = 300)
    AND(v_StateNames.StateID
    = 1
    OR
                          v_StateNames
    .StateID
    = 2)
    AND(v_FullCollectionMembership.CollectionID
    =
    N'D01003FE')
    ORDER
    BY servername
    at first glance this produces what I want, let me check with the customer.
    you guys agree with that or not?

  • Is Z report needed for FBCJ Balance?

    Hi,
    There are  5 cash journals  and client needs the balance for all cash journals along with Responsible Person, Balance, Debit and Credit.
    In FBCJ I couldnt found, is there any report available with above requirement??
    Anybody can suggest please.
    Raju

    Hi,
    Are these five cash journals assigned to same GL or different GL??
    Using that you can consolidate all the five cash journals..
    Cheers
    Raghu

  • Report needed for checking where pers. nr. is used in SAP

    Hello,
    I am currently searching if there is a report available which is checking where in SAP a Pers. nr. is used. e.g. partner in an open order or responsible of a costcenter or appraiser in an appraisel, open workflow document etc. This is needed to confirm that all the tasks of the emplloyee has been transferred to another employee before the leave action is made.
    With kind regards,
    Ronald van Eeuwen

    Hi,
    There are more than 9000 programs and classes where field PERNR is used.
    You have to be more specific with your question.
    You can see all programs where PERNR is used by starting transaction SE11, enter data type PERNR, display and then CtrlShftF3.
    Cheers

  • Report needed for Red (High) Incidents only

    Hi,
    My boss would like me to be able to run a report that includes red (high) incidents only. I've looked through all of the possible reports and can't find anything remotely close to his request. Any help would be appreciated.
    Thanks,
    Kerry

    Kerry;
      You should be able to create a query to gather only red severity events, and then make this query part of a report.
      In the query, you will want to click the "ANY" under the 'Events' column.  In the resulting pane, you will want to set the "Restrict to Severity" drop-down to "Red".  From there you can further tune the query to restrict it to specific reporting devices, events, etc.  This query should return only red severity events.  From there, you can make this query a report by clicking the "Save As Report" button.
    Scott

  • How to schedule the webi report based on data changes in the report data

    Hello,
    I want  to schedule a webi report based on data change in a column in the report.
    The scenario is something like below:
    1. If a data of a particular column changes from 2 to 3 than I would like to schedule this report and sent it to users mail box.
    I know how to apply alerts or schedule a report or data tracking for capturing changes in the report but I dont know how to schedule the report only for data changes.
    Anybody done this before.
    Thanks
    Gaurav

    Hi,
    May be these links can help you:
    http://devnet.magicsoftware.com/en/library?book=en/iBOLT/&page=SAP_R_3_Master_Data_Distribution_Defining_Change_Pointers.htm
    SEM-BCS: Load from data stream schedule
    Attribute Change Run

  • Solution Manager 4.0 BI Reporting Content for SP13

    Hi,
    I'm looking for a listing of BI Reporting Content for Solution Manager 4.0 SP13.  I've heard rumors that standard BI Reporting content exists for the Change Request Management and Service Desk domains, but all I can find are references for system and performance report content for SP12.
    See the matrix of content listed in help.sap.com at this url... <a href="http://help.sap.com/saphelp_sm40/helpdata/en/44/1ed74368b66491e10000000a1553f7/content.htm">SP12 SolMan BI Reporting Content from help.sap.com</a>
    Any guidance for standard BI reporting content for SolMan Change Request Management or Service Desk domains would be appreciated.
    Thanks,
    Josh

    I was on session LCM264 - Reporting and Performance Analysis Using SAP NetWeaver BI at TechED and there was no talking about Change Request Management or Service Desk reporting.... This doesn't mean it's not available but I have never heard about it...
    I'm setting up Performance Analysis right now and it is working really fine.
    /Mikael

  • Need to see changes to user security

    I have a requirement to run a report weekly for all changes done on all users.
    So, if users had a new responsibility added or removed we would like to see that on a report weekly.
    We would like to also capture who made the change also with a date stamp.
    Anyone have a SQL that will help us get this data?

    900441 wrote:
    I have a requirement to run a report weekly for all changes done on all users.
    So, if users had a new responsibility added or removed we would like to see that on a report weekly.
    We would like to also capture who made the change also with a date stamp.
    Anyone have a SQL that will help us get this data?Use AuditTrail.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=AuditTrail&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Audit+AND+Trail&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    If you just want a query to get the list of users/responsibilities, please see this link -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Users+AND+Responsibility+AND+Query&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Infotype screen headers needs to be changed for all the infotypes

    Hi Guys,
    This would be for a global implementation question.
    For the US for a particular region, the screen header needs to be changed for all the infotypes.
    The existing field (in the infotype header) is Employee Group which needs to be replaced with employment status.
    The know how to change the headers but my question is STAT2 exists in IT 0000 but does not exist in 0001, 0002 0007.........etc
    When i go to Table T588J to add an entry , Screen Header 42......,
    I get an error " No Field STAT2 exists for infotype 0001"
    No field STAT2 exists for infotype 0001.
    Message no. PG811
    Diagnosis
    No STAT2 field exists for infotype 0001.
    Procedure
    Please contact your system administrator.
    Procedure for System Administration
    In Customizing, determine the incorrect entry in Personnel
    Administration in the Header structure per infotype view, step " Determine infotype header and correct it
    I would like to have some inputs from you guys ..... Any Suggessions...
    Thanks,
    Aastha

    Hi Aastha,
    Correct me if I am wrong.
    First you need to maintain the header in T588J.
    Screen header of an infotype is defined in view V_582A_B. We can define one screen header for employee and another for applicant in view V_T588I. The header modifier selected from view V_T588I has a definition in table T588J, which finally gets shown on the screen.
    Depending on the transaction class (A = Personnel Administration, B = Recruitment) and the country grouping, a header modifier is assigned to the infotype header in the u201CHeader Modificationu201D view V_T588I.
    For example like
    Screen Header / Tr. Class / Header modifier
    00                    /        A      /  60
    In the view u201CHeader Structure per Infotypeu201D (V_582A_B), a header has been assigned to every infotype. It also determines whether the data is valid from the system date or the start date of the infotype record
    Hope this is useful.
    Regards
    RK

  • Report for logged changes in infotype data

    Hi
    Can anybdy suggest me the steps for configuring  logged changes in inotype data.
    My client wants a report to view the changes in any infotype record, specially in 0008 and absences.
    Reagrds
    Waseem

    Hi
    I already config these table but it is not refelecting
    In table V_T585A
    maintain Transaction Class is A and maintained IT
    in table V_T585B
    Maintained field group 01
                     Field Name is * (for all)
    In tabel V_T585C
    Maintained Doc Field Gr. 01
                     Doc Type is S
                     SupFldGr. is blank
    After this run report RPUAUD00
    and TC S_AHR_61016360
    But nothing to display.
    Please Help me.
    Regards
    Waseem

  • Infotype Changes Log Report

    Hi,
    I’m trying to trace the changes made infotypes using the report RPUAUD00, if some changes made in the Infotype 0000, 0001, 0002 then the changes are not traced in report. I have checked the viewV_T585A,V_T585B,V_T585C .
    I need to know why the changes are not reflecting in the report...
    Regards,
    SindhujaVC

    HI Sven,
    The last changed date for the infotype 0002 of the pernr is not displayed in the report.
    Regards,
    Sindhuja

Maybe you are looking for