Standard Report to display locked records of an infotype

Hi All,
Is there any SAP standard report to display the locked records of an employee.
Suppose for an employee his two absence record has been locked and one additional payment has been locked. Is there any SAP standard report to display his locked records.
Thanks and Regards,
Visali. Malepati

Hi,
Hi there is no standard report  to get the locked records.
You create a query thru quick viewer.
where you can heve selection field as lock indicator and Personnel number.
Steps:
1. Goto SQ01
click Qucikviewer
or
SQVI
2.Create a new query
Datasouce:Table
Table:PA0006
3.Lst field Selection tab:
Add the fields pernr,lock indicator,enddat,begdate.
4.Selection fields Tab:
Add the fields pernr,lock indicator
5.Execute:
Your Query is ready now:

Similar Messages

  • Standard Report for displaying reason for action

    Hi Expets,
    Is there a standard report which displays the action and its reason for the action.
    eg.. ACTION - Direct Highering
          Reason- New Position
    Kaustubh.

    I Don't Think the standard report will give you this but you can use Query to extract this information.
    Afrasyab

  • Standard report to display char. attributes

    Dear Team,
    Is there any standard report / screen for the display of result recorded against the inspection lots.
    Currently we are using QA33 - work list, by the help of this work list we have to display char. attributes individually. But the requirement is to display char. attributes cumulatively against inspection lot. Kindly help. Is there any standard report available to full fill this requirement.
    Thank You !!!
    Regards,
    Laxmikanta.

    There is no standard report available in SAP to show Inspection lots & its results.
    You need to develop using tables QALS (Inspection Lot), QPMK (MIC), PLMK (Inspection Plan), QAMR (Characteristics Results), QASR (Sample wise MIC results), etc.,
    We have developed some report showing all the details like Inspection lot no., Material Description, MIC description, Its limits (upper, lower, target), actual results, valuation, etc.,

  • Report for displaying info record scale prices

    Hi all,
    Can any one provide me the sample code for a report  displaying info record scale prices.
    Thanks,
    Suresh

    Check t.code MEKP.

  • Report- not displaying some records in the report

    I have a query say q1 based on the query value. I am getting place holder colums obtained from a procedure. based on one of the place holder columns i want to display the data say i have place holder column err_ind if it y. i don't want to display the record in report.
    how can i do it ? ur help is much appreciated.

    Hi Praveen,
    Thanks for the response.
    Actually i did debug the program with the help of our technical guys but found nothing wrong in both the quality and the production system. We compared the program in both the systems and it seems to be same. I am exploring this issue. Will update the findings here.
    In case anyone has any suggestion please do suggest.
    Regards,
    Gokul

  • Custom Infotype not displaying locked records in the list screen (3000)

    I have a custom infotype (9xxx) that will not display the locked records (locked indicator (sprps) is set to X) in the list screen (3000) in PA20 and PA30.
    Any ideas on what may be causing the records to not display in the list screen?
    Thanks,
    Ted

    Hi,
    for creating both employee and appliciant infotype you must check 'Both'  in PM01  IT tab.
    Regards.

  • Standard Report not Displaying 'SAVE LAYOUT' Option

    Dear All,
    Using Tcode VF44, i am getting output list.But in that list when i click on select layout option from toolbar its not displaying 'save layout' Option. can anybody give me soln for the same.How can i get that option?
    Regards,
    Mayank

    hi ,
    it depends on the user parameters.
    U have to identify the parameter id and u have to activate it in user maintainance partameters .
    su01 -> parameters.
    ex .  parameter id ->  SD_VARIANT_MAINTAIN -> X
    so u can save layout now.
    regards,
    manikandan

  • Standard Report for PIR /Purchasing inforecord condition records.

    Hi ,
    Anyone knows of any standard report for PIR condition records?
    Thanks
    Regards,
    Clarice

    hi,
    There is no specific condition report for the condition records but you can check the table for the conditions, those are KONP, KONH, KONV ...
    Hope it helps..
    Regards
    Priyanka.P

  • Standard report which gives Record count of ODS, Cube and Source system.

    Hi-
    Is there any standard report which gives the record count of ODS, Cube and Source system?
    or
    If any one has ABAP program which takes care of record count pls let me know.
    Thanks in advance

    I don't understand. You need to check the data loads. What for do you want a list of ODS, Cubes and sources systems?
    You can use messages from process chains to monitor the data loads.
    You can also use an abap program inside teh process chains to save data into a table and then an abap report to see if everything went OK.
    But, thinking again, you may be able to use BW statistics to get some of the information you need. Check the help for BW statistics, it might give you an idea of what you can do.
    Regards,
    Diego

  • 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

  • Reading values from standard report in custom report dynamically

    Hello Gurus,
    I have a strange requirement, We have some standard reports which displays output in drop down blocked data. I want to create a custom report which will get that data in my internal tables.
    Just to elaborate this requirement, I will give you a example:
    I have a standard report which output as first line 'A' and second line as 'B'. Now when I press drop down in 'A', it displays line items say 1,2,3,4,5.... Similarly block 'B' once when pressed displays line items 6,7,8,9,10.
    Here I want a custom report which directly read data from this standard report and gives us the values of line items 1,2,3,4,5 in one internal table and similarly items 6,7,8,9,10 in another internal table.
    Hope the question clarifies the requirement now.
    Request you to please provide the resolution.
    Thanks,
    Harjeet

    Hi Harjeet,
    Use sumit statement for standard program and export the list to  memory. and then read list from memory and use in your custom program.
    Use below code for reference.
    DATA: t_list TYPE abaplist OCCURS 0.
    SUBMIT rfdopr10
                    ************** your options
                    AND RETURN
                    EXPORTING LIST TO MEMORY.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject       = t_list
      EXCEPTIONS
        NOT_FOUND        = 1
        OTHERS           = 2.
    BR,
    Vijay

  • Link based on value in column of a Standard Report

    I have a Standard Report the displays only the images (BLOBs) in a column of a table. In that same table I have a ciolumn that hold url's. I want to have the image link to its corasponding url.
    Currently I am displaying the image using a BLOB format mask. IMAGE:LC_SCSC_SPONSOR_CATALOG:SCSC_LOGO:SCSC_UID
    The url is in a column named SCSC_URL.
    I am running Application Express 4.0.1.00.03
    Thanks for any help.

    I know where to create templates but do not know how to make a "named column report template".Unfortunately the documentation is particularly pathetic on this important topic. Unfortunate as Custom Named Column templates are one of the best features in APEX. They can be used to do some cool stuff fairly simply.
    See:
    <li>About Generic Column Templates and Named Column Templates
    <li>Report Column Template Attributes for Named Column Templates
    and the online help from the property labels on the Report Row Template page.
    1. Go to: Shared Components > Templates > Create
    2. In the wizard select: Report > From Scratch
    3. Enter/select:
    Name: Photo/link list
    Theme: [Your current theme]
    Template Class: Custom 1
    Template Type: Named Column (row template)
    4. Click Create.
    5. Click the Photo/link list link in the Templates report.
    6. Enter the following properties:
    Row Template 1
    <li><a href="#SCSC_URL#">#SCSC_LOGO#</a></li>
    Before Rows
    <ul>
    After Rows
    </ul>

  • Standard Report to view the pegging status of the orders.

    Hi All,
    Is there any standard report which displays the pegging status for all the orders. The pegging status is currently being viewed from product view for every single product which is very tedious, thereby we are expecting a report that can display the pegging status for all the orders in a single report.
    Regards,
    S.Manjunath

    Hi Manjunath,
              I dont think there is any standard report to display the pegging relationship in one screen.there is one transaction /sapapo/peg1 which will show you the same pegging overview as in product view.
    You can develop one custom report which can show you all the details for entered material and location combination, for which you can use the std. function module /SAPAPO/EFPL_ORD_NET_GET which can give you the entire pegging relationship details for particular product location combination.
    Regards,
    Saurabh

  • Standard report for Request for down payment

    Dear All,
    Is there any standard report on request for down payment in case of vendor and Custm

    Hi,
    There is no standard report for displaying the Down Payment Requests.
    Workaround is go in standard line item reports for Vendor & Customer & select the line items for Noted Item with SPL GL Indicator F.
    Regards,
    Amit

  • Standard Report S_AHR_61016380

    Hi Gurus,
    I have a query..Their is a standard report which gives the record of last master data change with the T-Code S_AHR_61016380, I used th.at report where in it gives the data of few IT where the data is changes..but my user want the report for IT 0015 which it doesnt show results for, For which I got to know from few colleagues taht the IT has to be added in the log or Table for which we want to execute the report.
    Kindly let me know which Table is that for which we can enter the IT in some Table and it will start considering the same.
    Pls treat it as a urgent.
    Regards,
    RitIka..

    Hi,
    There are standard tabel where you can enter Infotypes that are to be logged.
    Please refer the followign thread for more info:
    RPUAUD00 Audit infotype changes
    Hope this Helps.
    Thanks & Regards,
    Param

Maybe you are looking for

  • I'm in a predicament.. Assistance??

    Howdy, First time poster. Better late than never, I suppose. First, a little background. For years, I was using a Nikon D60. Plenty fine entry-level DSLR. Then, in April of last year, I purchased a Canon 60D 18-135 kit. I also added the 70-300 USM, a

  • Using ipod mini power adapter for nano?

    I just got an ipod nano and I have a few questions: I noticed that it doesn't come with a charger (or power adapter?...not sure what it's called) which I thought was unhandy for traveling because then I can only charge it through a computer and I won

  • 9i New features

    Would like to know where I can find 9i new features. Just the new features. Internet sites would be very helpful. Thanks for all the help.

  • DW8 Background problem

    Hi! I can't position the gif. for a background image on my index pg. It keeps going to the upper left corner. Am I missing 'something'? How can I position it just where I need to have it? I have repeatedly tried to resizing the gif in PSCS2 to no ava

  • No Home Sharing after latest ATV2 update?

    I've been having incredibly annoying problems with Home Sharing for some time - ATV2 ethernet to wireless modem, iMac (latest version of Snow Leopard) connected to both via wireless.  If I start both up from sleep, I generally have to quit iTunes on